From owner-svn-ports-all@freebsd.org Sun Jul 3 00:10:44 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 4A2E0B81370; Sun, 3 Jul 2016 00:10:44 +0000 (UTC) (envelope-from wen@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 0C2122209; Sun, 3 Jul 2016 00:10:43 +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 u630AhSv069281; Sun, 3 Jul 2016 00:10:43 GMT (envelope-from wen@FreeBSD.org) Received: (from wen@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u630AgIc069276; Sun, 3 Jul 2016 00:10:42 GMT (envelope-from wen@FreeBSD.org) Message-Id: <201607030010.u630AgIc069276@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: wen set sender to wen@FreeBSD.org using -f From: Wen Heping Date: Sun, 3 Jul 2016 00:10:42 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r417945 - in head/lang: python-doc-html python27 python27/files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 03 Jul 2016 00:10:44 -0000 Author: wen Date: Sun Jul 3 00:10:42 2016 New Revision: 417945 URL: https://svnweb.freebsd.org/changeset/ports/417945 Log: - Update to version 2.7.12 - Remove patch that is included upstream - Switch USE_OPENSSL to USES= ssl [1] - Update documentation for python27 - Don't set CPE_VERSION, default is PORTVERSION [1] PR: 210685 Submitted by: wen@(myself), brnrd@ [1] Exp-run by: antoine Differential Revision: https://reviews.freebsd.org/D6994 Deleted: head/lang/python27/files/patch-Modules_zipimport.c Modified: head/lang/python-doc-html/distinfo head/lang/python27/Makefile head/lang/python27/Makefile.version head/lang/python27/distinfo head/lang/python27/pkg-plist Modified: head/lang/python-doc-html/distinfo ============================================================================== --- head/lang/python-doc-html/distinfo Sat Jul 2 23:02:42 2016 (r417944) +++ head/lang/python-doc-html/distinfo Sun Jul 3 00:10:42 2016 (r417945) @@ -22,3 +22,11 @@ SHA256 (python/python-3.4.3-docs-pdf-a4. SIZE (python/python-3.4.3-docs-pdf-a4.tar.bz2) = 11803193 SHA256 (python/python-3.4.3-docs-pdf-letter.tar.bz2) = 6441397672b65c95cb589e8a9b0ccde3b32063906ee980df2d1db021337bcc3a SIZE (python/python-3.4.3-docs-pdf-letter.tar.bz2) = 11894229 +SHA256 (python/python-2.7.12-docs-html.tar.bz2) = 40891e010cdd9a752a17bd02e30aa853f9a2a7767ee82911cf4507dfa3b13de8 +SIZE (python/python-2.7.12-docs-html.tar.bz2) = 4601696 +SHA256 (python/python-2.7.12-docs-pdf-a4.tar.bz2) = d7d2d1941855520220ab37f474d5534b8ffe1e0f073e62b14e5d5780caae7ddc +SIZE (python/python-2.7.12-docs-pdf-a4.tar.bz2) = 10687064 +SHA256 (python/python-2.7.12-docs-pdf-letter.tar.bz2) = c501cd12eb666b3dab32dd4ecf91d873e9a578401afcb94f7e0a3529a971eee0 +SIZE (python/python-2.7.12-docs-pdf-letter.tar.bz2) = 10741538 +SHA256 (python/python-2.7.12-docs-text.tar.bz2) = 83a39db742ccae75c2660ea816a5c71ceffb8ad67238a7cbbb31d992725e87ea +SIZE (python/python-2.7.12-docs-text.tar.bz2) = 1610618 Modified: head/lang/python27/Makefile ============================================================================== --- head/lang/python27/Makefile Sat Jul 2 23:02:42 2016 (r417944) +++ head/lang/python27/Makefile Sun Jul 3 00:10:42 2016 (r417945) @@ -2,7 +2,6 @@ PORTNAME= python27 PORTVERSION= ${PYTHON_PORTVERSION} -PORTREVISION= 3 CATEGORIES= lang python ipv6 MASTER_SITES= PYTHON/ftp/python/${PORTVERSION} DISTNAME= Python-${PORTVERSION} @@ -13,14 +12,12 @@ COMMENT= Interpreted object-oriented pro LICENSE= PSFL -USES= cpe ncurses pkgconfig readline tar:xz +USES= cpe ncurses pkgconfig readline ssl tar:xz USE_LDCONFIG= yes -USE_OPENSSL= yes GNU_CONFIGURE= yes CPE_VENDOR= python CPE_PRODUCT= ${CPE_VENDOR} -CPE_VERSION= ${PORTVERSION} CONFIGURE_ARGS+= --enable-shared CONFIGURE_ENV+= ac_cv_opt_olimit_ok=no OPT="" # Null out OPT to respect user CFLAGS and remove optimizations Modified: head/lang/python27/Makefile.version ============================================================================== --- head/lang/python27/Makefile.version Sat Jul 2 23:02:42 2016 (r417944) +++ head/lang/python27/Makefile.version Sun Jul 3 00:10:42 2016 (r417945) @@ -1,4 +1,4 @@ # Mk/Uses/python.mk includes this file, don't remove it! # $FreeBSD$ -PYTHON_PORTVERSION= 2.7.11 +PYTHON_PORTVERSION= 2.7.12 Modified: head/lang/python27/distinfo ============================================================================== --- head/lang/python27/distinfo Sat Jul 2 23:02:42 2016 (r417944) +++ head/lang/python27/distinfo Sun Jul 3 00:10:42 2016 (r417945) @@ -1,2 +1,3 @@ -SHA256 (python/Python-2.7.11.tar.xz) = 962b4c45af50124ea61f11a30deb4342fc0bc21126790fa1d7f6c79809413f46 -SIZE (python/Python-2.7.11.tar.xz) = 12277476 +TIMESTAMP = 1467158541 +SHA256 (python/Python-2.7.12.tar.xz) = d7837121dd5652a05fef807c361909d255d173280c4e1a4ded94d73d80a1f978 +SIZE (python/Python-2.7.12.tar.xz) = 12390820 Modified: head/lang/python27/pkg-plist ============================================================================== --- head/lang/python27/pkg-plist Sat Jul 2 23:02:42 2016 (r417944) +++ head/lang/python27/pkg-plist Sun Jul 3 00:10:42 2016 (r417945) @@ -1436,8 +1436,8 @@ lib/python2.7/ensurepip/__init__.pyo lib/python2.7/ensurepip/__main__.py lib/python2.7/ensurepip/__main__.pyc lib/python2.7/ensurepip/__main__.pyo -lib/python2.7/ensurepip/_bundled/pip-7.1.2-py2.py3-none-any.whl -lib/python2.7/ensurepip/_bundled/setuptools-18.2-py2.py3-none-any.whl +lib/python2.7/ensurepip/_bundled/pip-8.1.1-py2.py3-none-any.whl +lib/python2.7/ensurepip/_bundled/setuptools-20.10.1-py2.py3-none-any.whl lib/python2.7/ensurepip/_uninstall.py lib/python2.7/ensurepip/_uninstall.pyc lib/python2.7/ensurepip/_uninstall.pyo @@ -1729,12 +1729,18 @@ lib/python2.7/idlelib/idle_test/test_con lib/python2.7/idlelib/idle_test/test_delegator.py lib/python2.7/idlelib/idle_test/test_delegator.pyo lib/python2.7/idlelib/idle_test/test_delegator.pyc +lib/python2.7/idlelib/idle_test/test_editmenu.py +lib/python2.7/idlelib/idle_test/test_editmenu.pyo +lib/python2.7/idlelib/idle_test/test_editmenu.pyc lib/python2.7/idlelib/idle_test/test_formatparagraph.py lib/python2.7/idlelib/idle_test/test_formatparagraph.pyo lib/python2.7/idlelib/idle_test/test_formatparagraph.pyc lib/python2.7/idlelib/idle_test/test_grep.py lib/python2.7/idlelib/idle_test/test_grep.pyo lib/python2.7/idlelib/idle_test/test_grep.pyc +lib/python2.7/idlelib/idle_test/test_helpabout.py +lib/python2.7/idlelib/idle_test/test_helpabout.pyo +lib/python2.7/idlelib/idle_test/test_helpabout.pyc lib/python2.7/idlelib/idle_test/test_hyperparser.py lib/python2.7/idlelib/idle_test/test_hyperparser.pyo lib/python2.7/idlelib/idle_test/test_hyperparser.pyc @@ -2723,13 +2729,12 @@ lib/python2.7/test/badsyntax_future7.py lib/python2.7/test/badsyntax_future8.py lib/python2.7/test/badsyntax_future9.py lib/python2.7/test/badsyntax_nocaret.py -lib/python2.7/test/buffer_tests.py -lib/python2.7/test/buffer_tests.pyo -lib/python2.7/test/buffer_tests.pyc +lib/python2.7/test/capath/0e4015b9.0 lib/python2.7/test/capath/4e1295a3.0 lib/python2.7/test/capath/5ed36f99.0 lib/python2.7/test/capath/6e88d7b8.0 lib/python2.7/test/capath/99d0fa06.0 +lib/python2.7/test/capath/ce7b8643.0 lib/python2.7/test/cfgparser.1 lib/python2.7/test/check_soundcard.vbs lib/python2.7/test/cmath_testcases.txt @@ -2929,7 +2934,6 @@ lib/python2.7/test/gdb_sample.py lib/python2.7/test/gdb_sample.pyo lib/python2.7/test/gdb_sample.pyc lib/python2.7/test/greyrgb.uue -lib/python2.7/test/https_svn_python_org_root.pem lib/python2.7/test/ieee754.txt lib/python2.7/test/imghdrdata/python.bmp lib/python2.7/test/imghdrdata/python.gif @@ -3252,9 +3256,6 @@ lib/python2.7/test/test_codecs.pyc lib/python2.7/test/test_codeop.py lib/python2.7/test/test_codeop.pyo lib/python2.7/test/test_codeop.pyc -lib/python2.7/test/test_coding.py -lib/python2.7/test/test_coding.pyo -lib/python2.7/test/test_coding.pyc lib/python2.7/test/test_coercion.py lib/python2.7/test/test_coercion.pyo lib/python2.7/test/test_coercion.pyc @@ -3770,6 +3771,9 @@ lib/python2.7/test/test_operator.pyc lib/python2.7/test/test_optparse.py lib/python2.7/test/test_optparse.pyo lib/python2.7/test/test_optparse.pyc +lib/python2.7/test/test_ordered_dict.py +lib/python2.7/test/test_ordered_dict.pyo +lib/python2.7/test/test_ordered_dict.pyc lib/python2.7/test/test_os.py lib/python2.7/test/test_os.pyo lib/python2.7/test/test_os.pyc @@ -3788,15 +3792,9 @@ lib/python2.7/test/test_peepholer.pyc lib/python2.7/test/test_pep247.py lib/python2.7/test/test_pep247.pyo lib/python2.7/test/test_pep247.pyc -lib/python2.7/test/test_pep263.py -lib/python2.7/test/test_pep263.pyo -lib/python2.7/test/test_pep263.pyc lib/python2.7/test/test_pep277.py lib/python2.7/test/test_pep277.pyo lib/python2.7/test/test_pep277.pyc -lib/python2.7/test/test_pep292.py -lib/python2.7/test/test_pep292.pyo -lib/python2.7/test/test_pep292.pyc lib/python2.7/test/test_pep352.py lib/python2.7/test/test_pep352.pyo lib/python2.7/test/test_pep352.pyc @@ -3980,6 +3978,9 @@ lib/python2.7/test/test_softspace.pyc lib/python2.7/test/test_sort.py lib/python2.7/test/test_sort.pyo lib/python2.7/test/test_sort.pyc +lib/python2.7/test/test_source_encoding.py +lib/python2.7/test/test_source_encoding.pyo +lib/python2.7/test/test_source_encoding.pyc lib/python2.7/test/test_spwd.py lib/python2.7/test/test_spwd.pyo lib/python2.7/test/test_spwd.pyc @@ -4127,6 +4128,9 @@ lib/python2.7/test/test_ttk_textonly.pyc lib/python2.7/test/test_tuple.py lib/python2.7/test/test_tuple.pyo lib/python2.7/test/test_tuple.pyc +lib/python2.7/test/test_turtle.py +lib/python2.7/test/test_turtle.pyo +lib/python2.7/test/test_turtle.pyc lib/python2.7/test/test_typechecks.py lib/python2.7/test/test_typechecks.pyo lib/python2.7/test/test_typechecks.pyc From owner-svn-ports-all@freebsd.org Sun Jul 3 00:17:31 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 92D8DB81531; Sun, 3 Jul 2016 00:17:31 +0000 (UTC) (envelope-from wen@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 6E6572625; Sun, 3 Jul 2016 00:17:31 +0000 (UTC) (envelope-from wen@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u630HUA5073023; Sun, 3 Jul 2016 00:17:30 GMT (envelope-from wen@FreeBSD.org) Received: (from wen@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u630HUbg073018; Sun, 3 Jul 2016 00:17:30 GMT (envelope-from wen@FreeBSD.org) Message-Id: <201607030017.u630HUbg073018@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: wen set sender to wen@FreeBSD.org using -f From: Wen Heping Date: Sun, 3 Jul 2016 00:17:30 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r417946 - in head: databases/py-bsddb/files databases/py-sqlite3/files devel/py-setuptools X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 03 Jul 2016 00:17:31 -0000 Author: wen Date: Sun Jul 3 00:17:29 2016 New Revision: 417946 URL: https://svnweb.freebsd.org/changeset/ports/417946 Log: - Update to devel/py-setuptools to 23.1.0 [1][2] PR: 210636 [1] 210685 [2] Submitted by: vlad-fbsd@acheronmedia.com [1] wen@ [2] Exp-run by: antoine Differential Revision: https://reviews.freebsd.org/D6994 Modified: head/databases/py-bsddb/files/setup.py head/databases/py-sqlite3/files/setup.py head/databases/py-sqlite3/files/setup3.py head/devel/py-setuptools/Makefile head/devel/py-setuptools/distinfo Modified: head/databases/py-bsddb/files/setup.py ============================================================================== --- head/databases/py-bsddb/files/setup.py Sun Jul 3 00:10:42 2016 (r417945) +++ head/databases/py-bsddb/files/setup.py Sun Jul 3 00:17:29 2016 (r417946) @@ -22,7 +22,7 @@ inc_dirs = [prefix + "/include"] lib_dirs = [prefix + "/lib"] libs = [os.environ['BSDDB_VERSION']] -setup(name = "_bsddb", +setup(name = "bsddb", description = "BSDDB Extension to Python", ext_modules = [Extension('_bsddb', ['_bsddb.c'], Modified: head/databases/py-sqlite3/files/setup.py ============================================================================== --- head/databases/py-sqlite3/files/setup.py Sun Jul 3 00:10:42 2016 (r417945) +++ head/databases/py-sqlite3/files/setup.py Sun Jul 3 00:17:29 2016 (r417946) @@ -38,7 +38,7 @@ try: except AttributeError: macros.append(('SQLITE_OMIT_LOAD_EXTENSION', '1')) -setup(name = "_sqlite3", +setup(name = "sqlite3", description = "SQLite 3 extension to Python", ext_modules = [Extension('_sqlite3', sqlite_srcs, Modified: head/databases/py-sqlite3/files/setup3.py ============================================================================== --- head/databases/py-sqlite3/files/setup3.py Sun Jul 3 00:10:42 2016 (r417945) +++ head/databases/py-sqlite3/files/setup3.py Sun Jul 3 00:17:29 2016 (r417946) @@ -37,7 +37,7 @@ try: except AttributeError: macros.append(('SQLITE_OMIT_LOAD_EXTENSION', '1')) -setup(name = "_sqlite3", +setup(name = "sqlite3", description = "SQLite 3 extension to Python", ext_modules = [Extension('_sqlite3', sqlite_srcs, Modified: head/devel/py-setuptools/Makefile ============================================================================== --- head/devel/py-setuptools/Makefile Sun Jul 3 00:10:42 2016 (r417945) +++ head/devel/py-setuptools/Makefile Sun Jul 3 00:17:29 2016 (r417946) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= setuptools -PORTVERSION= 20.0 +PORTVERSION= 23.1.0 CATEGORIES= devel python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} Modified: head/devel/py-setuptools/distinfo ============================================================================== --- head/devel/py-setuptools/distinfo Sun Jul 3 00:10:42 2016 (r417945) +++ head/devel/py-setuptools/distinfo Sun Jul 3 00:17:29 2016 (r417946) @@ -1,2 +1,3 @@ -SHA256 (python/setuptools-20.0.tar.gz) = a6f7b295f399fed3de918c4bea9e2053a5fbd9e3a55a6fef7aafe9d1f474866d -SIZE (python/setuptools-20.0.tar.gz) = 641692 +TIMESTAMP = 1467171497 +SHA256 (python/setuptools-23.1.0.tar.gz) = 4e269d36ba2313e6236f384b36eb97b3433cf99a16b94c74cca7eee2b311f2be +SIZE (python/setuptools-23.1.0.tar.gz) = 601865 From owner-svn-ports-all@freebsd.org Sun Jul 3 00:46:03 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 1EF43B81B20; Sun, 3 Jul 2016 00:46:03 +0000 (UTC) (envelope-from ashish@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id B600820CF; Sun, 3 Jul 2016 00:46:02 +0000 (UTC) (envelope-from ashish@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u630k1me084206; Sun, 3 Jul 2016 00:46:01 GMT (envelope-from ashish@FreeBSD.org) Received: (from ashish@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u630k119084203; Sun, 3 Jul 2016 00:46:01 GMT (envelope-from ashish@FreeBSD.org) Message-Id: <201607030046.u630k119084203@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: ashish set sender to ashish@FreeBSD.org using -f From: Ashish SHUKLA Date: Sun, 3 Jul 2016 00:46:01 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r417947 - head/lang/sagittarius-scheme X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 03 Jul 2016 00:46:03 -0000 Author: ashish Date: Sun Jul 3 00:46:01 2016 New Revision: 417947 URL: https://svnweb.freebsd.org/changeset/ports/417947 Log: - Update to 0.7.5 Modified: head/lang/sagittarius-scheme/Makefile head/lang/sagittarius-scheme/distinfo head/lang/sagittarius-scheme/pkg-plist Modified: head/lang/sagittarius-scheme/Makefile ============================================================================== --- head/lang/sagittarius-scheme/Makefile Sun Jul 3 00:17:29 2016 (r417946) +++ head/lang/sagittarius-scheme/Makefile Sun Jul 3 00:46:01 2016 (r417947) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= sagittarius -PORTVERSION= 0.7.4 +PORTVERSION= 0.7.5 CATEGORIES= lang MASTER_SITES= https://bitbucket.org/ktakashi/sagittarius-scheme/downloads/ \ LOCAL/ashish Modified: head/lang/sagittarius-scheme/distinfo ============================================================================== --- head/lang/sagittarius-scheme/distinfo Sun Jul 3 00:17:29 2016 (r417946) +++ head/lang/sagittarius-scheme/distinfo Sun Jul 3 00:46:01 2016 (r417947) @@ -1,3 +1,3 @@ -TIMESTAMP = 1465074907 -SHA256 (sagittarius-0.7.4.tar.gz) = 7c8c7e1c66bf289afd0eeb9af0380922ed42373b73c64d5d5acaf9466121ead8 -SIZE (sagittarius-0.7.4.tar.gz) = 6349657 +TIMESTAMP = 1466966752 +SHA256 (sagittarius-0.7.5.tar.gz) = 1f51978587d525017d5562148ca966de7de373f129fb6515f479b386ff26e5e6 +SIZE (sagittarius-0.7.5.tar.gz) = 6363190 Modified: head/lang/sagittarius-scheme/pkg-plist ============================================================================== --- head/lang/sagittarius-scheme/pkg-plist Sun Jul 3 00:17:29 2016 (r417946) +++ head/lang/sagittarius-scheme/pkg-plist Sun Jul 3 00:46:01 2016 (r417947) @@ -467,6 +467,8 @@ libdata/pkgconfig/%%PORTNAME%%.pc %%DATADIR%%/%%PORTVERSION%%/sitelib/srfi/%3a129/titlecase.scm %%DATADIR%%/%%PORTVERSION%%/sitelib/srfi/%3a13.scm %%DATADIR%%/%%PORTVERSION%%/sitelib/srfi/%3a13/strings.scm +%%DATADIR%%/%%PORTVERSION%%/sitelib/srfi/%3a130.scm +%%DATADIR%%/%%PORTVERSION%%/sitelib/srfi/%3a130/strings.scm %%DATADIR%%/%%PORTVERSION%%/sitelib/srfi/%3a131.scm %%DATADIR%%/%%PORTVERSION%%/sitelib/srfi/%3a131/records.scm %%DATADIR%%/%%PORTVERSION%%/sitelib/srfi/%3a132.scm @@ -566,6 +568,7 @@ libdata/pkgconfig/%%PORTNAME%%.pc %%DATADIR%%/%%PORTVERSION%%/sitelib/srfi/128.scm %%DATADIR%%/%%PORTVERSION%%/sitelib/srfi/129.scm %%DATADIR%%/%%PORTVERSION%%/sitelib/srfi/13.scm +%%DATADIR%%/%%PORTVERSION%%/sitelib/srfi/130.scm %%DATADIR%%/%%PORTVERSION%%/sitelib/srfi/131.scm %%DATADIR%%/%%PORTVERSION%%/sitelib/srfi/132.scm %%DATADIR%%/%%PORTVERSION%%/sitelib/srfi/133.scm From owner-svn-ports-all@freebsd.org Sun Jul 3 00:47:03 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 9A0DAB81B82; Sun, 3 Jul 2016 00:47:03 +0000 (UTC) (envelope-from wen@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 50F8121AC; Sun, 3 Jul 2016 00:47:03 +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 u630l2ow084365; Sun, 3 Jul 2016 00:47:02 GMT (envelope-from wen@FreeBSD.org) Received: (from wen@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u630l2XH084362; Sun, 3 Jul 2016 00:47:02 GMT (envelope-from wen@FreeBSD.org) Message-Id: <201607030047.u630l2XH084362@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: wen set sender to wen@FreeBSD.org using -f From: Wen Heping Date: Sun, 3 Jul 2016 00:47:02 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r417948 - in head/audio/p5-Ogg-Vorbis-Header: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 03 Jul 2016 00:47:03 -0000 Author: wen Date: Sun Jul 3 00:47:02 2016 New Revision: 417948 URL: https://svnweb.freebsd.org/changeset/ports/417948 Log: - Update to 0.04 Changes: http://cpansearch.perl.org/src/DAVECROSS/Ogg-Vorbis-Header-0.04/Changes - Re-generate the patch Modified: head/audio/p5-Ogg-Vorbis-Header/Makefile head/audio/p5-Ogg-Vorbis-Header/distinfo head/audio/p5-Ogg-Vorbis-Header/files/patch-Header.pm Modified: head/audio/p5-Ogg-Vorbis-Header/Makefile ============================================================================== --- head/audio/p5-Ogg-Vorbis-Header/Makefile Sun Jul 3 00:46:01 2016 (r417947) +++ head/audio/p5-Ogg-Vorbis-Header/Makefile Sun Jul 3 00:47:02 2016 (r417948) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= Ogg-Vorbis-Header -PORTVERSION= 0.03 -PORTREVISION= 6 +PORTVERSION= 0.04 CATEGORIES= audio perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- Modified: head/audio/p5-Ogg-Vorbis-Header/distinfo ============================================================================== --- head/audio/p5-Ogg-Vorbis-Header/distinfo Sun Jul 3 00:46:01 2016 (r417947) +++ head/audio/p5-Ogg-Vorbis-Header/distinfo Sun Jul 3 00:47:02 2016 (r417948) @@ -1,2 +1,3 @@ -SHA256 (Ogg-Vorbis-Header-0.03.tar.gz) = a683109f3625f70e01538eb27bac19d3f271a03cae999c69418f31af51dfd980 -SIZE (Ogg-Vorbis-Header-0.03.tar.gz) = 32410 +TIMESTAMP = 1467505881 +SHA256 (Ogg-Vorbis-Header-0.04.tar.gz) = fd76109ca5a09c37a049a857d37d6fcd2b0cbde796ed98ce9a36c6e35c4f1df7 +SIZE (Ogg-Vorbis-Header-0.04.tar.gz) = 28890 Modified: head/audio/p5-Ogg-Vorbis-Header/files/patch-Header.pm ============================================================================== --- head/audio/p5-Ogg-Vorbis-Header/files/patch-Header.pm Sun Jul 3 00:46:01 2016 (r417947) +++ head/audio/p5-Ogg-Vorbis-Header/files/patch-Header.pm Sun Jul 3 00:47:02 2016 (r417948) @@ -1,7 +1,7 @@ ---- Header.pm.orig Tue Oct 18 17:10:12 2005 -+++ Header.pm Tue Oct 18 17:08:08 2005 -@@ -7,8 +7,8 @@ - our $VERSION = '0.03'; +--- Header.pm.orig 2016-07-01 18:06:38 UTC ++++ Header.pm +@@ -7,8 +7,8 @@ use warnings; + our $VERSION = '0.04'; use Inline C => 'DATA', - LIBS => '-logg -lvorbis -lvorbisfile', @@ -10,4 +10,4 @@ + INC => '-I${LOCALBASE}/include', AUTO_INCLUDE => '#include "inc/vcedit.h"', AUTO_INCLUDE => '#include "inc/vcedit.c"', - VERSION => '0.03', + VERSION => '0.04', From owner-svn-ports-all@freebsd.org Sun Jul 3 01:47:39 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id D88B0B8F5DD; Sun, 3 Jul 2016 01:47:39 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 7EB1D283E; Sun, 3 Jul 2016 01:47:39 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u631lcje006550; Sun, 3 Jul 2016 01:47:38 GMT (envelope-from swills@FreeBSD.org) Received: (from swills@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u631lccG006546; Sun, 3 Jul 2016 01:47:38 GMT (envelope-from swills@FreeBSD.org) Message-Id: <201607030147.u631lccG006546@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: swills set sender to swills@FreeBSD.org using -f From: Steve Wills Date: Sun, 3 Jul 2016 01:47:38 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r417949 - in head/security: . py-hkdf X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 03 Jul 2016 01:47:40 -0000 Author: swills Date: Sun Jul 3 01:47:38 2016 New Revision: 417949 URL: https://svnweb.freebsd.org/changeset/ports/417949 Log: security/py-hkdf: create port HKDF - HMAC Key Derivation Function This module implements the HMAC Key Derivation function WWW: https://github.com/casebeer/python-hkdf Added: head/security/py-hkdf/ head/security/py-hkdf/Makefile (contents, props changed) head/security/py-hkdf/distinfo (contents, props changed) head/security/py-hkdf/pkg-descr (contents, props changed) Modified: head/security/Makefile Modified: head/security/Makefile ============================================================================== --- head/security/Makefile Sun Jul 3 00:47:02 2016 (r417948) +++ head/security/Makefile Sun Jul 3 01:47:38 2016 (r417949) @@ -847,6 +847,7 @@ SUBDIR += py-gnupg SUBDIR += py-gnutls SUBDIR += py-gpsoauth + SUBDIR += py-hkdf SUBDIR += py-htpasswd SUBDIR += py-itsdangerous SUBDIR += py-kerberos Added: head/security/py-hkdf/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/py-hkdf/Makefile Sun Jul 3 01:47:38 2016 (r417949) @@ -0,0 +1,15 @@ +# $FreeBSD$ + +PORTNAME= hkdf +PORTVERSION= 0.0.3 +CATEGORIES= security +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= swills@FreeBSD.org +COMMENT= HMAC-based Extract-and-Expand Key Derivation Function (HKDF) + +USES= python +USE_PYTHON= autoplist distutils + +.include Added: head/security/py-hkdf/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/py-hkdf/distinfo Sun Jul 3 01:47:38 2016 (r417949) @@ -0,0 +1,3 @@ +TIMESTAMP = 1467488568 +SHA256 (hkdf-0.0.3.tar.gz) = 622a31c634bc185581530a4b44ffb731ed208acf4614f9c795bdd70e77991dca +SIZE (hkdf-0.0.3.tar.gz) = 3959 Added: head/security/py-hkdf/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/py-hkdf/pkg-descr Sun Jul 3 01:47:38 2016 (r417949) @@ -0,0 +1,5 @@ +HKDF - HMAC Key Derivation Function + +This module implements the HMAC Key Derivation function + +WWW: https://github.com/casebeer/python-hkdf From owner-svn-ports-all@freebsd.org Sun Jul 3 01:53:36 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id E737DB8F782; Sun, 3 Jul 2016 01:53:36 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 922FA2B35; Sun, 3 Jul 2016 01:53: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 u631rZ1f010126; Sun, 3 Jul 2016 01:53:35 GMT (envelope-from swills@FreeBSD.org) Received: (from swills@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u631rZ9E010122; Sun, 3 Jul 2016 01:53:35 GMT (envelope-from swills@FreeBSD.org) Message-Id: <201607030153.u631rZ9E010122@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: swills set sender to swills@FreeBSD.org using -f From: Steve Wills Date: Sun, 3 Jul 2016 01:53:35 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r417950 - in head/security: . py-spake2 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 03 Jul 2016 01:53:37 -0000 Author: swills Date: Sun Jul 3 01:53:35 2016 New Revision: 417950 URL: https://svnweb.freebsd.org/changeset/ports/417950 Log: security/py-spake2: create port SPAKE2 password-authenticated key exchange (pure python) WWW: http://github.com/warner/python-spake2 Added: head/security/py-spake2/ head/security/py-spake2/Makefile (contents, props changed) head/security/py-spake2/distinfo (contents, props changed) head/security/py-spake2/pkg-descr (contents, props changed) Modified: head/security/Makefile Modified: head/security/Makefile ============================================================================== --- head/security/Makefile Sun Jul 3 01:47:38 2016 (r417949) +++ head/security/Makefile Sun Jul 3 01:53:35 2016 (r417950) @@ -902,6 +902,7 @@ SUBDIR += py-service_identity SUBDIR += py-signedjson SUBDIR += py-slowaes + SUBDIR += py-spake2 SUBDIR += py-ssh SUBDIR += py-sslstrip SUBDIR += py-stem Added: head/security/py-spake2/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/py-spake2/Makefile Sun Jul 3 01:53:35 2016 (r417950) @@ -0,0 +1,15 @@ +# $FreeBSD$ + +PORTNAME= spake2 +PORTVERSION= 0.7 +CATEGORIES= security +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= swills@FreeBSD.org +COMMENT= SPAKE2 password-authenticated key exchange (pure python) + +USES= python +USE_PYTHON= autoplist distutils + +.include Added: head/security/py-spake2/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/py-spake2/distinfo Sun Jul 3 01:53:35 2016 (r417950) @@ -0,0 +1,3 @@ +TIMESTAMP = 1467489655 +SHA256 (spake2-0.7.tar.gz) = d2281458eed1048cb12fbab6ac02b06a8520ae9f2c30be330ea4c5b558a4b766 +SIZE (spake2-0.7.tar.gz) = 56186 Added: head/security/py-spake2/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/py-spake2/pkg-descr Sun Jul 3 01:53:35 2016 (r417950) @@ -0,0 +1,3 @@ +SPAKE2 password-authenticated key exchange (pure python) + +WWW: http://github.com/warner/python-spake2 From owner-svn-ports-all@freebsd.org Sun Jul 3 02:12:46 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 7AB61B8FAEF; Sun, 3 Jul 2016 02:12:46 +0000 (UTC) (envelope-from wen@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 47F5E2253; Sun, 3 Jul 2016 02:12:46 +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 u632CjML017416; Sun, 3 Jul 2016 02:12:45 GMT (envelope-from wen@FreeBSD.org) Received: (from wen@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u632CjbH017414; Sun, 3 Jul 2016 02:12:45 GMT (envelope-from wen@FreeBSD.org) Message-Id: <201607030212.u632CjbH017414@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: wen set sender to wen@FreeBSD.org using -f From: Wen Heping Date: Sun, 3 Jul 2016 02:12:45 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r417951 - head/security/p5-Digest-Bcrypt X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 03 Jul 2016 02:12:46 -0000 Author: wen Date: Sun Jul 3 02:12:45 2016 New Revision: 417951 URL: https://svnweb.freebsd.org/changeset/ports/417951 Log: - Update to 1.206 Changes: http://cpansearch.perl.org/src/CAPOEIRAB/Digest-Bcrypt-1.206/Changes Modified: head/security/p5-Digest-Bcrypt/Makefile head/security/p5-Digest-Bcrypt/distinfo Modified: head/security/p5-Digest-Bcrypt/Makefile ============================================================================== --- head/security/p5-Digest-Bcrypt/Makefile Sun Jul 3 01:53:35 2016 (r417950) +++ head/security/p5-Digest-Bcrypt/Makefile Sun Jul 3 02:12:45 2016 (r417951) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= Digest-Bcrypt -PORTVERSION= 1.205 +PORTVERSION= 1.206 CATEGORIES= security perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- Modified: head/security/p5-Digest-Bcrypt/distinfo ============================================================================== --- head/security/p5-Digest-Bcrypt/distinfo Sun Jul 3 01:53:35 2016 (r417950) +++ head/security/p5-Digest-Bcrypt/distinfo Sun Jul 3 02:12:45 2016 (r417951) @@ -1,3 +1,3 @@ -TIMESTAMP = 1466519666 -SHA256 (Digest-Bcrypt-1.205.tar.gz) = 3f44f96946d51ed8f7a1c8adedc64bd86951978464f5d3ed176e51687520c51b -SIZE (Digest-Bcrypt-1.205.tar.gz) = 23478 +TIMESTAMP = 1467507030 +SHA256 (Digest-Bcrypt-1.206.tar.gz) = 80bc42dba3bf899eb0792e432b83125ade7d8e9ec6c49e42cf84650ef5263488 +SIZE (Digest-Bcrypt-1.206.tar.gz) = 23412 From owner-svn-ports-all@freebsd.org Sun Jul 3 03:58:55 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 52DC8B8FD32; Sun, 3 Jul 2016 03:58: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 mx1.freebsd.org (Postfix) with ESMTPS id 1E83827C1; Sun, 3 Jul 2016 03:58: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 u633wsJs055322; Sun, 3 Jul 2016 03:58:54 GMT (envelope-from swills@FreeBSD.org) Received: (from swills@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u633wsoB055320; Sun, 3 Jul 2016 03:58:54 GMT (envelope-from swills@FreeBSD.org) Message-Id: <201607030358.u633wsoB055320@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: swills set sender to swills@FreeBSD.org using -f From: Steve Wills Date: Sun, 3 Jul 2016 03:58:54 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r417952 - head/devel/py-txaio X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 03 Jul 2016 03:58:55 -0000 Author: swills Date: Sun Jul 3 03:58:53 2016 New Revision: 417952 URL: https://svnweb.freebsd.org/changeset/ports/417952 Log: devel/py-txaio: update to 2.5.1 Approved by: koobs (maintainer) Modified: head/devel/py-txaio/Makefile head/devel/py-txaio/distinfo Modified: head/devel/py-txaio/Makefile ============================================================================== --- head/devel/py-txaio/Makefile Sun Jul 3 02:12:45 2016 (r417951) +++ head/devel/py-txaio/Makefile Sun Jul 3 03:58:53 2016 (r417952) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= txaio -PORTVERSION= 2.2.1 +PORTVERSION= 2.5.1 CATEGORIES= devel python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -20,7 +20,15 @@ TEST_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pyt USES= python USE_PYTHON= autoplist distutils +.include + +.if ${PYTHON_REL} < 3300 +TEST_DEPENDS+= ${PYTHON_PKGNAMEPREFIX}trollius>=2.0:devel/py-trollius +.elif ${PYTHON_REL} >= 3300 +TEST_DEPENDS+= ${PYTHON_PKGNAMEPREFIX}asyncio>=3.4.3:devel/py-asyncio +.endif + do-test: @cd ${WRKSRC} && ${PYTHON_CMD} -m pytest -.include +.include Modified: head/devel/py-txaio/distinfo ============================================================================== --- head/devel/py-txaio/distinfo Sun Jul 3 02:12:45 2016 (r417951) +++ head/devel/py-txaio/distinfo Sun Jul 3 03:58:53 2016 (r417952) @@ -1,2 +1,3 @@ -SHA256 (txaio-2.2.1.tar.gz) = 6eee00c397d8193d15313dfc36da3eac8d64edf0b92fe3b67cd5a735ffc3074b -SIZE (txaio-2.2.1.tar.gz) = 35208 +TIMESTAMP = 1467490235 +SHA256 (txaio-2.5.1.tar.gz) = 625076477182e2dde78b79d0b2b0d6b3cecb0e24fe0ea7eaf2abd26a4c0dd1de +SIZE (txaio-2.5.1.tar.gz) = 41577 From owner-svn-ports-all@freebsd.org Sun Jul 3 04:05:47 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 1BF73B8FE90; Sun, 3 Jul 2016 04:05:47 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id D372F2AD8; Sun, 3 Jul 2016 04:05: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 u6345ktP059025; Sun, 3 Jul 2016 04:05:46 GMT (envelope-from swills@FreeBSD.org) Received: (from swills@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u6345jQe059023; Sun, 3 Jul 2016 04:05:45 GMT (envelope-from swills@FreeBSD.org) Message-Id: <201607030405.u6345jQe059023@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: swills set sender to swills@FreeBSD.org using -f From: Steve Wills Date: Sun, 3 Jul 2016 04:05:45 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r417953 - head/www/py-autobahn X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 03 Jul 2016 04:05:47 -0000 Author: swills Date: Sun Jul 3 04:05:45 2016 New Revision: 417953 URL: https://svnweb.freebsd.org/changeset/ports/417953 Log: www/py-autobahn: update to 0.14.1 Approved by: koobs (maintainer) Modified: head/www/py-autobahn/Makefile head/www/py-autobahn/distinfo Modified: head/www/py-autobahn/Makefile ============================================================================== --- head/www/py-autobahn/Makefile Sun Jul 3 03:58:53 2016 (r417952) +++ head/www/py-autobahn/Makefile Sun Jul 3 04:05:45 2016 (r417953) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= autobahn -PORTVERSION= 0.11.0 +PORTVERSION= 0.14.1 DISTVERSIONPREFIX= v CATEGORIES= www python PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} Modified: head/www/py-autobahn/distinfo ============================================================================== --- head/www/py-autobahn/distinfo Sun Jul 3 03:58:53 2016 (r417952) +++ head/www/py-autobahn/distinfo Sun Jul 3 04:05:45 2016 (r417953) @@ -1,2 +1,3 @@ -SHA256 (crossbario-autobahn-python-v0.11.0_GH0.tar.gz) = 98d9097a3216bb5f79f7bd14ee49deedb699da6b33ea8ab5b74a3269f255c16e -SIZE (crossbario-autobahn-python-v0.11.0_GH0.tar.gz) = 1292781 +TIMESTAMP = 1467489318 +SHA256 (crossbario-autobahn-python-v0.14.1_GH0.tar.gz) = 8e5d9889973c6e3c13de9b299712dc33b0f224ae64e5f031283fdfcfb3690fa8 +SIZE (crossbario-autobahn-python-v0.14.1_GH0.tar.gz) = 1312033 From owner-svn-ports-all@freebsd.org Sun Jul 3 04:12:56 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id E22EBB8F098; Sun, 3 Jul 2016 04:12: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 mx1.freebsd.org (Postfix) with ESMTPS id 96DAB2EEF; Sun, 3 Jul 2016 04:12: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 u634CtXb062856; Sun, 3 Jul 2016 04:12:55 GMT (envelope-from swills@FreeBSD.org) Received: (from swills@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u634CtkK062851; Sun, 3 Jul 2016 04:12:55 GMT (envelope-from swills@FreeBSD.org) Message-Id: <201607030412.u634CtkK062851@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: swills set sender to swills@FreeBSD.org using -f From: Steve Wills Date: Sun, 3 Jul 2016 04:12:55 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r417954 - in head/net: . py-magic-wormhole X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 03 Jul 2016 04:12:57 -0000 Author: swills Date: Sun Jul 3 04:12:55 2016 New Revision: 417954 URL: https://svnweb.freebsd.org/changeset/ports/417954 Log: net/py-magic-wormhole: create port Get things from one computer to another, safely. WWW: http://magic-wormhole.io Added: head/net/py-magic-wormhole/ head/net/py-magic-wormhole/Makefile (contents, props changed) head/net/py-magic-wormhole/distinfo (contents, props changed) head/net/py-magic-wormhole/pkg-descr (contents, props changed) Modified: head/net/Makefile Modified: head/net/Makefile ============================================================================== --- head/net/Makefile Sun Jul 3 04:05:45 2016 (r417953) +++ head/net/Makefile Sun Jul 3 04:12:55 2016 (r417954) @@ -965,6 +965,7 @@ SUBDIR += py-libcloud SUBDIR += py-libdnet SUBDIR += py-libnet + SUBDIR += py-magic-wormhole SUBDIR += py-matrix-synapse SUBDIR += py-maxminddb SUBDIR += py-miniupnpc Added: head/net/py-magic-wormhole/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/py-magic-wormhole/Makefile Sun Jul 3 04:12:55 2016 (r417954) @@ -0,0 +1,23 @@ +# $FreeBSD$ + +PORTNAME= magic-wormhole +PORTVERSION= 0.8.0 +CATEGORIES= net +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= swills@FreeBSD.org +COMMENT= Get things from one computer to another, safely + +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}tqdm>0:misc/py-tqdm \ + ${PYTHON_PKGNAMEPREFIX}hkdf>0:security/py-hkdf \ + ${PYTHON_PKGNAMEPREFIX}autobahn>=0.14.1:www/py-autobahn \ + ${PYTHON_PKGNAMEPREFIX}argparse>0:devel/py-argparse \ + ${PYTHON_PKGNAMEPREFIX}pynacl>=0.3.0:security/py-pynacl \ + ${PYTHON_PKGNAMEPREFIX}spake2>=0.7:security/py-spake2 \ + ${PYTHON_PKGNAMEPREFIX}txaio>=2.5.1:devel/py-txaio + +USES= python +USE_PYTHON= autoplist distutils + +.include Added: head/net/py-magic-wormhole/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/py-magic-wormhole/distinfo Sun Jul 3 04:12:55 2016 (r417954) @@ -0,0 +1,3 @@ +TIMESTAMP = 1467486862 +SHA256 (magic-wormhole-0.8.0.tar.gz) = 802085dc4e6ba9dd74555bb42059e25b3960110add83d5083d36a95c78e172b5 +SIZE (magic-wormhole-0.8.0.tar.gz) = 124428 Added: head/net/py-magic-wormhole/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/py-magic-wormhole/pkg-descr Sun Jul 3 04:12:55 2016 (r417954) @@ -0,0 +1,3 @@ +Get things from one computer to another, safely. + +WWW: http://magic-wormhole.io From owner-svn-ports-all@freebsd.org Sun Jul 3 05:17:25 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 08BC5B8FBFE; Sun, 3 Jul 2016 05:17:25 +0000 (UTC) (envelope-from mi@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id BC3172FB5; Sun, 3 Jul 2016 05:17:24 +0000 (UTC) (envelope-from mi@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u635HNsr084930; Sun, 3 Jul 2016 05:17:23 GMT (envelope-from mi@FreeBSD.org) Received: (from mi@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u635HNDS084928; Sun, 3 Jul 2016 05:17:23 GMT (envelope-from mi@FreeBSD.org) Message-Id: <201607030517.u635HNDS084928@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: mi set sender to mi@FreeBSD.org using -f From: Mikhail Teterin Date: Sun, 3 Jul 2016 05:17:23 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r417955 - in head/java/jxgrabkey: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 03 Jul 2016 05:17:25 -0000 Author: mi Date: Sun Jul 3 05:17:23 2016 New Revision: 417955 URL: https://svnweb.freebsd.org/changeset/ports/417955 Log: Add an explicit include of , which is required on some of our releases. Change to avoid building the useless static libJXGrabKey.a (we weren't installing). Reported by: pkg-fallout Modified: head/java/jxgrabkey/Makefile head/java/jxgrabkey/files/patch-warnings Modified: head/java/jxgrabkey/Makefile ============================================================================== --- head/java/jxgrabkey/Makefile Sun Jul 3 04:12:55 2016 (r417954) +++ head/java/jxgrabkey/Makefile Sun Jul 3 05:17:23 2016 (r417955) @@ -24,7 +24,7 @@ USE_LDCONFIG= yes do-build: ${SETENV} ${MAKE_ENV} ${MAKE} -C ${WRKSRC}/JXGrabKey/C++ \ - -f ${FILESDIR}/Makefile.JXGrabKey + -f ${FILESDIR}/Makefile.JXGrabKey libJXGrabKey.so cd ${WRKSRC}/JXGrabKey/Java && ${ANT} -verbose jar do-install: Modified: head/java/jxgrabkey/files/patch-warnings ============================================================================== --- head/java/jxgrabkey/files/patch-warnings Sun Jul 3 04:12:55 2016 (r417954) +++ head/java/jxgrabkey/files/patch-warnings Sun Jul 3 05:17:23 2016 (r417955) @@ -1,10 +1,11 @@ --- JXGrabKey/C++/src/JXGrabKey.cpp 2010-02-28 10:11:49.000000000 -0500 +++ JXGrabKey/C++/src/JXGrabKey.cpp 2016-06-30 03:15:41.718599000 -0400 -@@ -24,4 +24,5 @@ +@@ -24,4 +24,6 @@ #include #include +#include ++#include #include @@ -319,5 +320,5 @@ From owner-svn-ports-all@freebsd.org Sun Jul 3 05:18:11 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 1E4B1B8FC60; Sun, 3 Jul 2016 05:18:11 +0000 (UTC) (envelope-from mi@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id EA37420BB; Sun, 3 Jul 2016 05:18:10 +0000 (UTC) (envelope-from mi@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u635IA5T085080; Sun, 3 Jul 2016 05:18:10 GMT (envelope-from mi@FreeBSD.org) Received: (from mi@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u635I9Ei085078; Sun, 3 Jul 2016 05:18:09 GMT (envelope-from mi@FreeBSD.org) Message-Id: <201607030518.u635I9Ei085078@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: mi set sender to mi@FreeBSD.org using -f From: Mikhail Teterin Date: Sun, 3 Jul 2016 05:18:09 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r417956 - in head/x11/wmctrl: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 03 Jul 2016 05:18:11 -0000 Author: mi Date: Sun Jul 3 05:18:09 2016 New Revision: 417956 URL: https://svnweb.freebsd.org/changeset/ports/417956 Log: Fix compiler-warnings. Add LICENSE-declaration. Approved by: maintainer Modified: head/x11/wmctrl/Makefile head/x11/wmctrl/files/patch-main.c Modified: head/x11/wmctrl/Makefile ============================================================================== --- head/x11/wmctrl/Makefile Sun Jul 3 05:17:23 2016 (r417955) +++ head/x11/wmctrl/Makefile Sun Jul 3 05:18:09 2016 (r417956) @@ -10,6 +10,8 @@ MASTER_SITES= http://sweb.cz/tripie/util MAINTAINER= flz@FreeBSD.org COMMENT= Command line tool to interact with an EWMH/NetWM compatible X managers +LICENSE= GPLv2 + USES= pkgconfig GNU_CONFIGURE= yes USE_XORG= x11 xmu xext xt Modified: head/x11/wmctrl/files/patch-main.c ============================================================================== --- head/x11/wmctrl/files/patch-main.c Sun Jul 3 05:17:23 2016 (r417955) +++ head/x11/wmctrl/files/patch-main.c Sun Jul 3 05:18:09 2016 (r417956) @@ -1,5 +1,54 @@ ---- main.c.orig 2005-01-29 03:31:33.000000000 +0000 -+++ main.c 2010-12-20 11:09:11.000000000 +0000 +--- main.c 2005-01-29 03:31:33.000000000 +0000 ++++ main.c 2016-07-01 20:14:55.443662000 +0000 +@@ -210,14 +210,14 @@ + static int close_window (Display *disp, Window win); + static int longest_str (gchar **strv); + static int window_to_desktop (Display *disp, Window win, int desktop); +-static void window_set_title (Display *disp, Window win, char *str, char mode); ++static void window_set_title (Display *disp, Window win, const char *str, char mode); + static gchar *get_window_title (Display *disp, Window win); + static gchar *get_window_class (Display *disp, Window win); + static gchar *get_property (Display *disp, Window win, + Atom xa_prop_type, gchar *prop_name, unsigned long *size); + static void init_charset(void); +-static int window_move_resize (Display *disp, Window win, char *arg); +-static int window_state (Display *disp, Window win, char *arg); ++static int window_move_resize (Display *disp, Window win, const char *arg); ++static int window_state (Display *disp, Window win, const char *arg); + static Window Select_Window(Display *dpy); + static Window get_active_window(Display *dpy); + +@@ -629,9 +629,9 @@ + }/*}}}*/ + + static void window_set_title (Display *disp, Window win, /* {{{ */ +- char *title, char mode) { +- gchar *title_utf8; +- gchar *title_local; ++ const char *title, char mode) { ++ void *title_utf8; ++ void *title_local; + + if (envir_utf8) { + title_utf8 = g_strdup(title); +@@ -734,7 +734,7 @@ + 0, 0, 0, 0, 0); + }/*}}}*/ + +-static int window_state (Display *disp, Window win, char *arg) {/*{{{*/ ++static int window_state (Display *disp, Window win, const char *arg) {/*{{{*/ + unsigned long action; + Atom prop1 = 0; + Atom prop2 = 0; +@@ -827,7 +827,7 @@ + return FALSE; + }/*}}}*/ + +-static int window_move_resize (Display *disp, Window win, char *arg) {/*{{{*/ ++static int window_move_resize (Display *disp, Window win, const char *arg) {/*{{{*/ + signed long grav, x, y, w, h; + unsigned long grflags; + const char *argerr = "The -e option expects a list of comma separated integers: \"gravity,X,Y,width,height\"\n"; @@ -1441,6 +1441,9 @@ /* null terminate the result to make string handling easier */ From owner-svn-ports-all@freebsd.org Sun Jul 3 07:17:02 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id C55F6B90ECC; Sun, 3 Jul 2016 07:17:02 +0000 (UTC) (envelope-from madpilot@FreeBSD.org) Received: from mail.madpilot.net (grunt.madpilot.net [78.47.145.38]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 22770222F; Sun, 3 Jul 2016 07:17:01 +0000 (UTC) (envelope-from madpilot@FreeBSD.org) Received: from mail (mail [192.168.254.3]) by mail.madpilot.net (Postfix) with ESMTP id 3rj1fr5yhmzZsD; Sun, 3 Jul 2016 09:16:52 +0200 (CEST) Received: from mail.madpilot.net ([192.168.254.3]) by mail (mail.madpilot.net [192.168.254.3]) (amavisd-new, port 10024) with ESMTP id PCY2Klc1s7_N; Sun, 3 Jul 2016 09:16:49 +0200 (CEST) Received: from marvin.madpilot.net (micro.madpilot.net [88.149.173.206]) by mail.madpilot.net (Postfix) with ESMTPSA; Sun, 3 Jul 2016 09:16:48 +0200 (CEST) Subject: Re: svn commit: r417895 - in head/net: ndpi ntopng To: Mathieu Arnold , Baptiste Daroussin References: <201607011649.u61Gn9fh068891@repo.freebsd.org> <20160701165811.7bcj7applsqmtsvr@ivaldir.etoilebsd.net> <3980A22FBF4119291DE71664@atuin.in.mat.cc> Cc: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org From: Guido Falsi Message-ID: <448ef6e0-5ea1-343a-7660-211ee9831b56@FreeBSD.org> Date: Sun, 3 Jul 2016 09:16:40 +0200 User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:45.0) Gecko/20100101 Thunderbird/45.1.1 MIME-Version: 1.0 In-Reply-To: <3980A22FBF4119291DE71664@atuin.in.mat.cc> Content-Type: multipart/signed; micalg=pgp-sha256; protocol="application/pgp-signature"; boundary="WhOIrq1Tg9KWbftUc8mN2qMO1gK5EwvF4" X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 03 Jul 2016 07:17:02 -0000 This is an OpenPGP/MIME signed message (RFC 4880 and 3156) --WhOIrq1Tg9KWbftUc8mN2qMO1gK5EwvF4 Content-Type: multipart/mixed; boundary="Knq1g2ju7SFqTLuSepRoUsXMwqbmcg2OK" From: Guido Falsi To: Mathieu Arnold , Baptiste Daroussin Cc: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Message-ID: <448ef6e0-5ea1-343a-7660-211ee9831b56@FreeBSD.org> Subject: Re: svn commit: r417895 - in head/net: ndpi ntopng References: <201607011649.u61Gn9fh068891@repo.freebsd.org> <20160701165811.7bcj7applsqmtsvr@ivaldir.etoilebsd.net> <3980A22FBF4119291DE71664@atuin.in.mat.cc> In-Reply-To: <3980A22FBF4119291DE71664@atuin.in.mat.cc> --Knq1g2ju7SFqTLuSepRoUsXMwqbmcg2OK Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable On 07/02/16 22:01, Mathieu Arnold wrote: > +--On 1 juillet 2016 20:04:34 +0200 Guido Falsi > wrote: > | On 07/01/16 18:58, Baptiste Daroussin wrote: > |> On Fri, Jul 01, 2016 at 04:49:09PM +0000, Guido Falsi wrote: > |>> Author: madpilot > |>> Date: Fri Jul 1 16:49:09 2016 > |>> New Revision: 417895 > |>> URL: https://svnweb.freebsd.org/changeset/ports/417895 > |>>=20 > |>> Log: > |>> - Update ndpi port to a newer snapshot from github, required by > |>> ntopng update > |>> - Update ntopng to 2.4 > |>>=20 > |>> Modified: > |>> head/net/ndpi/Makefile > |>> head/net/ndpi/distinfo > |>> head/net/ntopng/Makefile > |>> head/net/ntopng/distinfo > |>> head/net/ntopng/pkg-plist > |>>=20 [...] > |>> +USE_GITHUB=3D yes > |>> +GH_ACCOUNT=3D ntop > |>> +GH_PROJECT=3D nDPI > |>> +GH_TAGNAME=3D 6fb81f1 > |>> + > |> You could use the tags instead of adding GH_TAGNAME, there is a "1.8= " > |> tag, so removing the GH_TAGNAME entirely should just fetch the same > |> sources (distfile name will change) > |=20 > | Unluckily I cannot. This isn't the 1.8 tag, but a commit slightly ahe= ad > | of it in the 1.8-stable branch. There is no tag referencing it. >=20 > If this is not 1.8, it should not be called 1.8 but 1.8.1 or similar. >=20 The upstream did not create a new version, which is something I cannot do. I would just lie by marking the port as 1.8.1 if there is no 1.8.1 release upstream. The commit I am taking is just a few commits ahead of the 1.8 tag and contains fixes which I could have imported as patches i files, like we are doing all the time (I mean importing upstream patches), I did prefer to just move ahead on the upstream repository for coherence with their sources. The upstream is creating packages themselves for other OSes, and they do that by bundling this same version of the nDPI sources in the ntopng source packages. For binary packages they statically link this same nDPI version in ntopng. I could follow suit in the ntopng port and just statically link to the bundled ndpi library, but since we do have a separate ndpi port I thought it was better to dynamically link to it and keep ii up to date. Apart from talking to the upstream and ask them to tag minor releases (which I'm going to do BTW, I just need time ti coordinate about this) I have these options(in random order): - add a date to the ndpi version (like 1.8.2016.07.02) to differentiate from the 1.8 tag (imho this is overkill for just a few small modifications from upstream) - revert my last commit opn ndpi and disengage the ntopng port from it, using a statically linked ndpi in it like upstream is doing (which would anyway come from the same sources ndpi port is using a t present) - maybe create a ndpi-stable port? this would definitely be overkill. - point the port at the tag and cherry pick some fixes from upstream as local patches in files. This would be just formally different from what I'm doing now. I'm open to suggestions, but I don't see the present situation as terribly wrong. --=20 Guido Falsi --Knq1g2ju7SFqTLuSepRoUsXMwqbmcg2OK-- --WhOIrq1Tg9KWbftUc8mN2qMO1gK5EwvF4 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 iQEyBAEBCAAcBQJXeLvgFRxtYWRwaWxvdEBmcmVlYnNkLm9yZwAKCRAa5oYOVsvS k+2TCADFF1MRlTBVp2lo6oMUHpDWha4SD92EYkb0vlVmWerIevtyPtZ0Fqv3D/BE 9pWb73B2v6HnTExdlfjjfRrvvwMZjIGEf0vhL8rjzmTwyde7ms1rRp8yFnNLHwGN jPzPIU1u8VfS+iEhw5W6MgD+hVG9ESsimagf2lN76nHagyi3BSNAE+R8TtQMShNu KRT2JajsKCi2F4XjDGDs6qGX7hp6PtIItC6hU6nrIfZxZut+O2nt5CV/lx5p1tGS ZljSPGhPEd2GFdM0pSoc7hzYfilKuRcpoPl1+2xHWZffSKxHHYWAGvZkzf0EXspr j+tiyf1szyWdqwKBuNQdZ02i+Xwo =K4hH -----END PGP SIGNATURE----- --WhOIrq1Tg9KWbftUc8mN2qMO1gK5EwvF4-- From owner-svn-ports-all@freebsd.org Sun Jul 3 07:27:55 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 78CCCB9002C; Sun, 3 Jul 2016 07:27:55 +0000 (UTC) (envelope-from wen@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 24C3C267F; Sun, 3 Jul 2016 07:27:55 +0000 (UTC) (envelope-from wen@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u637Rs0E032694; Sun, 3 Jul 2016 07:27:54 GMT (envelope-from wen@FreeBSD.org) Received: (from wen@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u637Rs3g032689; Sun, 3 Jul 2016 07:27:54 GMT (envelope-from wen@FreeBSD.org) Message-Id: <201607030727.u637Rs3g032689@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: wen set sender to wen@FreeBSD.org using -f From: Wen Heping Date: Sun, 3 Jul 2016 07:27:54 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r417957 - in head/www: mediawiki123 mediawiki124 mediawiki125 mediawiki126 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 03 Jul 2016 07:27:55 -0000 Author: wen Date: Sun Jul 3 07:27:53 2016 New Revision: 417957 URL: https://svnweb.freebsd.org/changeset/ports/417957 Log: - Adjust CONFLICTS to welcome mediawiki-1.27 - Mark mediawiki-1.25 DEPRECATED and set EXPIRATION_DATE Modified: head/www/mediawiki123/Makefile head/www/mediawiki124/Makefile head/www/mediawiki125/Makefile head/www/mediawiki126/Makefile Modified: head/www/mediawiki123/Makefile ============================================================================== --- head/www/mediawiki123/Makefile Sun Jul 3 05:18:09 2016 (r417956) +++ head/www/mediawiki123/Makefile Sun Jul 3 07:27:53 2016 (r417957) @@ -12,7 +12,7 @@ COMMENT= Wiki engine used by Wikipedia LICENSE= GPLv2 -CONFLICTS= mediawiki12[456]-[0-9]* +CONFLICTS= mediawiki12[4567]-[0-9]* USES= shebangfix SHEBANG_FILES= maintenance/dev/*.sh \ Modified: head/www/mediawiki124/Makefile ============================================================================== --- head/www/mediawiki124/Makefile Sun Jul 3 05:18:09 2016 (r417956) +++ head/www/mediawiki124/Makefile Sun Jul 3 07:27:53 2016 (r417957) @@ -12,7 +12,7 @@ COMMENT= Wiki engine used by Wikipedia LICENSE= GPLv2 -CONFLICTS= mediawiki12[356]-[0-9]* +CONFLICTS= mediawiki12[3567]-[0-9]* DEPRECATED= EOL upstream EXPIRATION_DATE= 2016-08-23 Modified: head/www/mediawiki125/Makefile ============================================================================== --- head/www/mediawiki125/Makefile Sun Jul 3 05:18:09 2016 (r417956) +++ head/www/mediawiki125/Makefile Sun Jul 3 07:27:53 2016 (r417957) @@ -12,7 +12,10 @@ COMMENT= Wiki engine used by Wikipedia LICENSE= GPLv2 -CONFLICTS= mediawiki12[346]-[0-9]* +CONFLICTS= mediawiki12[3467]-[0-9]* + +DEPRECATED= EOL upstream +EXPIRATION_DATE= 2016-10-02 USES= shebangfix SHEBANG_FILES= maintenance/dev/*.sh \ Modified: head/www/mediawiki126/Makefile ============================================================================== --- head/www/mediawiki126/Makefile Sun Jul 3 05:18:09 2016 (r417956) +++ head/www/mediawiki126/Makefile Sun Jul 3 07:27:53 2016 (r417957) @@ -12,7 +12,7 @@ COMMENT= Wiki engine used by Wikipedia LICENSE= GPLv2 -CONFLICTS= mediawiki12[345]-[0-9]* +CONFLICTS= mediawiki12[3457]-[0-9]* USES= shebangfix SHEBANG_FILES= maintenance/dev/*.sh \ From owner-svn-ports-all@freebsd.org Sun Jul 3 07:36:57 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 8221BB90198; Sun, 3 Jul 2016 07:36:57 +0000 (UTC) (envelope-from pi@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 40C8E29EF; Sun, 3 Jul 2016 07:36:57 +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 u637aubY036380; Sun, 3 Jul 2016 07:36:56 GMT (envelope-from pi@FreeBSD.org) Received: (from pi@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u637au8I036376; Sun, 3 Jul 2016 07:36:56 GMT (envelope-from pi@FreeBSD.org) Message-Id: <201607030736.u637au8I036376@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pi set sender to pi@FreeBSD.org using -f From: Kurt Jaeger Date: Sun, 3 Jul 2016 07:36:56 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r417958 - in head/security/medusa: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 03 Jul 2016 07:36:57 -0000 Author: pi Date: Sun Jul 3 07:36:55 2016 New Revision: 417958 URL: https://svnweb.freebsd.org/changeset/ports/417958 Log: security/medusa: 2.1.1 -> 2.2 Port: - remove old patches that were necessary for building - remove an inactive address from MASTER_SITE - add USES=ssl (tested with openssl and libressl) - submitter becomes maintainer HTTP - NTLM2 session response support - Report domain name provided in NTLM challenge (verbose output) - Allow inclusion of custom headers RDP - Initial release of RDP module (FreeRDP-based) - Support for pass-the-hash authentication SMB - Report account access (admin vs user-level) through ADMIN$ connection SMTP-VRFY - Added EXPN/RCPT support SSH - Fix OS X multi-thread issues PR: 210748 Submitted by: Danilo G. Baio Deleted: head/security/medusa/files/ Modified: head/security/medusa/Makefile head/security/medusa/distinfo head/security/medusa/pkg-plist Modified: head/security/medusa/Makefile ============================================================================== --- head/security/medusa/Makefile Sun Jul 3 07:27:53 2016 (r417957) +++ head/security/medusa/Makefile Sun Jul 3 07:36:55 2016 (r417958) @@ -2,13 +2,11 @@ # $FreeBSD$ PORTNAME= medusa -PORTVERSION= 2.1.1 -PORTREVISION= 1 +PORTVERSION= 2.2 CATEGORIES= security -MASTER_SITES= http://www.foofus.net/~jmk/tools/ \ - http://redundancy.redundancy.org/mirror/ +MASTER_SITES= http://www.foofus.net/~jmk/tools/ -MAINTAINER= ports@FreeBSD.org +MAINTAINER= dbaio@bsd.com.br COMMENT= Speedy, massively parallel, modular, login brute-forcer LICENSE= GPLv2+ @@ -16,6 +14,8 @@ LICENSE_FILE= ${WRKSRC}/COPYING LIB_DEPENDS= libssh2.so:security/libssh2 +USES= ssl + BROKEN_ia64= Does not build on ia64 GNU_CONFIGURE= yes Modified: head/security/medusa/distinfo ============================================================================== --- head/security/medusa/distinfo Sun Jul 3 07:27:53 2016 (r417957) +++ head/security/medusa/distinfo Sun Jul 3 07:36:55 2016 (r417958) @@ -1,2 +1,3 @@ -SHA256 (medusa-2.1.1.tar.gz) = c8f83f54f76f021f213007c1c83e659f30dd16de84046df2b50e3db2bb6a7ef2 -SIZE (medusa-2.1.1.tar.gz) = 383424 +TIMESTAMP = 1467337789 +SHA256 (medusa-2.2.tar.gz) = 28bdcbdbc08b904a0e680cc42419c387b5baf86e27dd31e7f6651733ae1f3061 +SIZE (medusa-2.2.tar.gz) = 399836 Modified: head/security/medusa/pkg-plist ============================================================================== --- head/security/medusa/pkg-plist Sun Jul 3 07:27:53 2016 (r417957) +++ head/security/medusa/pkg-plist Sun Jul 3 07:36:55 2016 (r417958) @@ -37,6 +37,7 @@ man/man1/medusa.1.gz %%PORTDOCS%%%%DOCSDIR%%/medusa-pcanywhere.html %%PORTDOCS%%%%DOCSDIR%%/medusa-pop3.html %%PORTDOCS%%%%DOCSDIR%%/medusa-postgres.html +%%PORTDOCS%%%%DOCSDIR%%/medusa-rdp.html %%PORTDOCS%%%%DOCSDIR%%/medusa-rexec.html %%PORTDOCS%%%%DOCSDIR%%/medusa-rlogin.html %%PORTDOCS%%%%DOCSDIR%%/medusa-rsh.html From owner-svn-ports-all@freebsd.org Sun Jul 3 07:53:42 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 5F6D5B9042E; Sun, 3 Jul 2016 07:53:42 +0000 (UTC) (envelope-from pi@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 299AA2045; Sun, 3 Jul 2016 07:53: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 u637rfXw043521; Sun, 3 Jul 2016 07:53:41 GMT (envelope-from pi@FreeBSD.org) Received: (from pi@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u637rfG9043520; Sun, 3 Jul 2016 07:53:41 GMT (envelope-from pi@FreeBSD.org) Message-Id: <201607030753.u637rfG9043520@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pi set sender to pi@FreeBSD.org using -f From: Kurt Jaeger Date: Sun, 3 Jul 2016 07:53:41 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r417959 - head/textproc/py-xlrd X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 03 Jul 2016 07:53:42 -0000 Author: pi Date: Sun Jul 3 07:53:41 2016 New Revision: 417959 URL: https://svnweb.freebsd.org/changeset/ports/417959 Log: textproc/py-xlrd: Allow concurrent installs - Add USE_PYTHON=concurrent PR: 209689 Submitted by: John W. O'Brien Approved by: dikshie@sfc.wide.ad.jp (maintainer) Modified: head/textproc/py-xlrd/Makefile Modified: head/textproc/py-xlrd/Makefile ============================================================================== --- head/textproc/py-xlrd/Makefile Sun Jul 3 07:36:55 2016 (r417958) +++ head/textproc/py-xlrd/Makefile Sun Jul 3 07:53:41 2016 (r417959) @@ -3,6 +3,7 @@ PORTNAME= xlrd PORTVERSION= 0.9.3 +PORTREVISION= 1 CATEGORIES= textproc python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -11,6 +12,6 @@ MAINTAINER= dikshie@sfc.wide.ad.jp COMMENT= Reading data and formatting information from Excel files USES= python -USE_PYTHON= autoplist distutils +USE_PYTHON= autoplist concurrent distutils .include From owner-svn-ports-all@freebsd.org Sun Jul 3 08:15:26 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id BA583B90916; Sun, 3 Jul 2016 08:15:26 +0000 (UTC) (envelope-from pi@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 7EBF627E7; Sun, 3 Jul 2016 08:15:26 +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 u638FPoF050897; Sun, 3 Jul 2016 08:15:25 GMT (envelope-from pi@FreeBSD.org) Received: (from pi@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u638FPB6050895; Sun, 3 Jul 2016 08:15:25 GMT (envelope-from pi@FreeBSD.org) Message-Id: <201607030815.u638FPB6050895@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pi set sender to pi@FreeBSD.org using -f From: Kurt Jaeger Date: Sun, 3 Jul 2016 08:15:25 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r417960 - head/textproc/py-xlrd X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 03 Jul 2016 08:15:26 -0000 Author: pi Date: Sun Jul 3 08:15:25 2016 New Revision: 417960 URL: https://svnweb.freebsd.org/changeset/ports/417960 Log: textproc/py-xlrd: 0.9.3 -> 1.0.0 - add LICENSE PR: 209550 Submitted by: matthew Approved by: dikshie@sfc.wide.ad.jp (maintainer timeout) Modified: head/textproc/py-xlrd/Makefile head/textproc/py-xlrd/distinfo Modified: head/textproc/py-xlrd/Makefile ============================================================================== --- head/textproc/py-xlrd/Makefile Sun Jul 3 07:53:41 2016 (r417959) +++ head/textproc/py-xlrd/Makefile Sun Jul 3 08:15:25 2016 (r417960) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= xlrd -PORTVERSION= 0.9.3 -PORTREVISION= 1 +PORTVERSION= 1.0.0 CATEGORIES= textproc python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -11,6 +10,8 @@ PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} MAINTAINER= dikshie@sfc.wide.ad.jp COMMENT= Reading data and formatting information from Excel files +LICENSE= BSD3CLAUSE + USES= python USE_PYTHON= autoplist concurrent distutils Modified: head/textproc/py-xlrd/distinfo ============================================================================== --- head/textproc/py-xlrd/distinfo Sun Jul 3 07:53:41 2016 (r417959) +++ head/textproc/py-xlrd/distinfo Sun Jul 3 08:15:25 2016 (r417960) @@ -1,2 +1,3 @@ -SHA256 (xlrd-0.9.3.tar.gz) = 933a35e27da7ed7712985486b53b5cfb8dd88e076e2a0bd531373d0001d2939c -SIZE (xlrd-0.9.3.tar.gz) = 178490 +TIMESTAMP = 1467533436 +SHA256 (xlrd-1.0.0.tar.gz) = 0ff87dd5d50425084f7219cb6f86bb3eb5aa29063f53d50bf270ed007e941069 +SIZE (xlrd-1.0.0.tar.gz) = 2563654 From owner-svn-ports-all@freebsd.org Sun Jul 3 09:00:06 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id B0028B8F023; Sun, 3 Jul 2016 09:00:06 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 72BD122D4; Sun, 3 Jul 2016 09:00: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 u63905m5065951; Sun, 3 Jul 2016 09:00:05 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u63905KQ065950; Sun, 3 Jul 2016 09:00:05 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201607030900.u63905KQ065950@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Sun, 3 Jul 2016 09:00:05 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r417961 - head/x11/i3lock X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 03 Jul 2016 09:00:06 -0000 Author: amdmi3 Date: Sun Jul 3 09:00:05 2016 New Revision: 417961 URL: https://svnweb.freebsd.org/changeset/ports/417961 Log: - Add LICENSE_FILE - Add missing dependency - Switch to options helpers Modified: head/x11/i3lock/Makefile Modified: head/x11/i3lock/Makefile ============================================================================== --- head/x11/i3lock/Makefile Sun Jul 3 08:15:25 2016 (r417960) +++ head/x11/i3lock/Makefile Sun Jul 3 09:00:05 2016 (r417961) @@ -10,13 +10,15 @@ MAINTAINER= ports@FreeBSD.org COMMENT= Slightly improved screen locker based on slock LICENSE= BSD3CLAUSE +LICENSE_FILE= ${WRKSRC}/LICENSE LIB_DEPENDS= libcairo.so:graphics/cairo \ libxcb-keysyms.so:x11/xcb-util-keysyms \ libxcb-image.so:x11/xcb-util-image \ libev.so:devel/libev \ libxkbfile.so:x11/libxkbfile \ - libxkbcommon.so:x11/libxkbcommon + libxkbcommon.so:x11/libxkbcommon \ + libxcb-util.so:x11/xcb-util MAKE_ARGS= PREFIX="${PREFIX}" X11LIB="${LOCALBASE}/lib" \ X11INC="${LOCALBASE}/include" CC="${CC}" \ @@ -40,8 +42,9 @@ post-patch: ${WRKSRC}/Makefile post-install: - ${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/i3lock + @${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/i3lock +post-install-DOCS-on: @${MKDIR} ${STAGEDIR}${DOCSDIR} ${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/|} ${STAGEDIR}${DOCSDIR} From owner-svn-ports-all@freebsd.org Sun Jul 3 09:28:59 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 5CB68B8F684; Sun, 3 Jul 2016 09:28:59 +0000 (UTC) (envelope-from brnrd@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 131D92EE9; Sun, 3 Jul 2016 09:28:59 +0000 (UTC) (envelope-from brnrd@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u639SwPI076887; Sun, 3 Jul 2016 09:28:58 GMT (envelope-from brnrd@FreeBSD.org) Received: (from brnrd@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u639SwJ5076886; Sun, 3 Jul 2016 09:28:58 GMT (envelope-from brnrd@FreeBSD.org) Message-Id: <201607030928.u639SwJ5076886@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: brnrd set sender to brnrd@FreeBSD.org using -f From: Bernard Spil Date: Sun, 3 Jul 2016 09:28:58 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r417962 - head/security/vuxml X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 03 Jul 2016 09:28:59 -0000 Author: brnrd Date: Sun Jul 3 09:28:57 2016 New Revision: 417962 URL: https://svnweb.freebsd.org/changeset/ports/417962 Log: security/vuxml: Add Python smtplib TLS stripping vuln PR: 210685 Submitted by: brnrd Security: CVE-2016-0772 Security: 8d5368ef-40fe-11e6-b2ec-b499baebfeaf Modified: head/security/vuxml/vuln.xml Modified: head/security/vuxml/vuln.xml ============================================================================== --- head/security/vuxml/vuln.xml Sun Jul 3 09:00:05 2016 (r417961) +++ head/security/vuxml/vuln.xml Sun Jul 3 09:28:57 2016 (r417962) @@ -58,6 +58,49 @@ Notes: * Do not forget port variants (linux-f10-libxml2, libxml2, etc.) --> + + Python 2.7 -- smtplib StartTLS stripping vulnerability + + + python27 + 2.7.12 + + + python33 + 0 + + + python34 + 3.4.5 + + + python35 + 3.5.2 + + + + +

Red Hat reports:

+
+

A vulnerability in smtplib allowing MITM attacker to perform a + startTLS stripping attack. smtplib does not seem to raise an exception + when the remote end (smtp server) is capable of negotiating starttls but + fails to respond with 220 (ok) to an explicit call of SMTP.starttls(). + This may allow a malicious MITM to perform a startTLS stripping attack + if the client code does not explicitly check the response code for startTLS.

+
+ +
+ + https://bugzilla.redhat.com/show_bug.cgi?id=CVE-2016-0772 + CVE-2016-0772 + + + 2016-06-14 + 2016-07-03 + +
+ phpMyAdmin -- multiple vulnerabilities From owner-svn-ports-all@freebsd.org Sun Jul 3 09:55:20 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id A636EB8F9C8; Sun, 3 Jul 2016 09:55:20 +0000 (UTC) (envelope-from brnrd@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 46BC727D0; Sun, 3 Jul 2016 09:55:20 +0000 (UTC) (envelope-from brnrd@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u639tJbf087852; Sun, 3 Jul 2016 09:55:19 GMT (envelope-from brnrd@FreeBSD.org) Received: (from brnrd@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u639tJJP087850; Sun, 3 Jul 2016 09:55:19 GMT (envelope-from brnrd@FreeBSD.org) Message-Id: <201607030955.u639tJJP087850@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: brnrd set sender to brnrd@FreeBSD.org using -f From: Bernard Spil Date: Sun, 3 Jul 2016 09:55:19 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r417963 - in head/security/p5-Business-PayPal-EWP: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 03 Jul 2016 09:55:20 -0000 Author: brnrd Date: Sun Jul 3 09:55:19 2016 New Revision: 417963 URL: https://svnweb.freebsd.org/changeset/ports/417963 Log: security/p5-Business-PayPal-EWP: Fix build with LibreSSL PR: 199176 Approved by: Maintainer time-out Added: head/security/p5-Business-PayPal-EWP/files/ head/security/p5-Business-PayPal-EWP/files/patch-Makefile.PL (contents, props changed) Modified: head/security/p5-Business-PayPal-EWP/Makefile Modified: head/security/p5-Business-PayPal-EWP/Makefile ============================================================================== --- head/security/p5-Business-PayPal-EWP/Makefile Sun Jul 3 09:28:57 2016 (r417962) +++ head/security/p5-Business-PayPal-EWP/Makefile Sun Jul 3 09:55:19 2016 (r417963) @@ -14,9 +14,8 @@ COMMENT= Perl extension for PayPal Encry RUN_DEPENDS= p5-Net-SSLeay>=0:security/p5-Net-SSLeay BUILD_DEPENDS= p5-Net-SSLeay>=0:security/p5-Net-SSLeay -USES= dos2unix perl5 +USES= dos2unix perl5 ssl USE_PERL5= configure -USE_OPENSSL= yes CONFIGURE_ARGS= ${OPENSSLBASE} .include Added: head/security/p5-Business-PayPal-EWP/files/patch-Makefile.PL ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/p5-Business-PayPal-EWP/files/patch-Makefile.PL Sun Jul 3 09:55:19 2016 (r417963) @@ -0,0 +1,11 @@ +--- Makefile.PL.orig 2015-02-28 21:17:47.891583000 +0100 ++++ Makefile.PL 2015-02-28 21:21:30.013978756 +0100 +@@ -78,7 +78,7 @@ + or die "Couldn't run `$exe_path' ($?)\n"; + + unless (($lib_name, $maj, $min, $letter) = $vers =~ +- /^(OpenSSL)\s+(\d+\.\d+)\.(\d+)([a-z]*)/) { ++ /^(OpenSSL|LibreSSL)\s+(\d+\.\d+)\.(\d+)([a-z]*)/) { + die "OpenSSL version test failed (`$vers' was returned, but\n" + . "couldn't be parsed). Either you have bogus OpenSSL or a new version\n" + . "has changed the version number format.\n"; From owner-svn-ports-all@freebsd.org Sun Jul 3 10:01:55 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 5480AB8FBA7; Sun, 3 Jul 2016 10:01:55 +0000 (UTC) (envelope-from brnrd@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 1D27F2AEB; Sun, 3 Jul 2016 10:01:55 +0000 (UTC) (envelope-from brnrd@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u63A1sOH090650; Sun, 3 Jul 2016 10:01:54 GMT (envelope-from brnrd@FreeBSD.org) Received: (from brnrd@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u63A1s0F090386; Sun, 3 Jul 2016 10:01:54 GMT (envelope-from brnrd@FreeBSD.org) Message-Id: <201607031001.u63A1s0F090386@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: brnrd set sender to brnrd@FreeBSD.org using -f From: Bernard Spil Date: Sun, 3 Jul 2016 10:01:54 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r417964 - in head/mail/up-imapproxy: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 03 Jul 2016 10:01:55 -0000 Author: brnrd Date: Sun Jul 3 10:01:53 2016 New Revision: 417964 URL: https://svnweb.freebsd.org/changeset/ports/417964 Log: mail/up-imapproxy: Fix build without EGD methods - Use OPENSSL_NO_EGD define to fix build - Replace USE_OPENSSL with new USES= ssl PR: 200237 Added: head/mail/up-imapproxy/files/patch-src_main.c (contents, props changed) Modified: head/mail/up-imapproxy/Makefile Modified: head/mail/up-imapproxy/Makefile ============================================================================== --- head/mail/up-imapproxy/Makefile Sun Jul 3 09:55:19 2016 (r417963) +++ head/mail/up-imapproxy/Makefile Sun Jul 3 10:01:53 2016 (r417964) @@ -18,8 +18,7 @@ LICENSE_FILE= ${WRKSRC}/COPYING OPTIONS_DEFINE= DOVECOT DOCS DOVECOT_DESC= Use with dovecot2 -USES= autoreconf tar:bzip2 ncurses pathfix -USE_OPENSSL= yes +USES= autoreconf tar:bzip2 ncurses pathfix ssl GNU_CONFIGURE= yes CONFIGURE_ARGS= --with-openssl=${OPENSSLBASE} Added: head/mail/up-imapproxy/files/patch-src_main.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/mail/up-imapproxy/files/patch-src_main.c Sun Jul 3 10:01:53 2016 (r417964) @@ -0,0 +1,12 @@ +--- src/main.c.orig 2016-01-29 18:11:40 UTC ++++ src/main.c +@@ -473,7 +473,9 @@ int main( int argc, char *argv[] ) + ssl_thread_setup(fn); + + /* Need to seed PRNG, too! */ ++#ifndef OPENSSL_NO_EGD + if ( RAND_egd( ( RAND_file_name( f_randfile, sizeof( f_randfile ) ) == f_randfile ) ? f_randfile : "/.rnd" ) ) ++#endif + { + /* Not an EGD, so read and write it. */ + if ( RAND_load_file( f_randfile, -1 ) ) From owner-svn-ports-all@freebsd.org Sun Jul 3 10:38:14 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 48EEBB90125; Sun, 3 Jul 2016 10:38: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 mx1.freebsd.org (Postfix) with ESMTPS id 1999024B5; Sun, 3 Jul 2016 10:38: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 u63AcD4a003405; Sun, 3 Jul 2016 10:38:13 GMT (envelope-from pi@FreeBSD.org) Received: (from pi@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u63AcCAd003398; Sun, 3 Jul 2016 10:38:12 GMT (envelope-from pi@FreeBSD.org) Message-Id: <201607031038.u63AcCAd003398@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pi set sender to pi@FreeBSD.org using -f From: Kurt Jaeger Date: Sun, 3 Jul 2016 10:38:12 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r417965 - in head/net-mgmt/kismet: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 03 Jul 2016 10:38:14 -0000 Author: pi Date: Sun Jul 3 10:38:12 2016 New Revision: 417965 URL: https://svnweb.freebsd.org/changeset/ports/417965 Log: net-mgmt/kismet: 2013-03-R1b -> 2016-07-R1, take maintainer - Turn on FCS validation by default for all sources - support for recent autotools - fixes for crashes when alert backlog was set to zero - fixes for failures in some VIF situations - fixes to resizing windows - fixes to GPS averaging - add WPS state parsing - handle BSSTimestamp parsing - other assorted bug fixes and behavior improvements. - nl8011 support is fixed so finding the vif device works again - full 5GHz channel discovery works now - memory leaks in the drone are fixed - some ncurses compile bugs are resolved. Added: head/net-mgmt/kismet/files/patch-packetsource__pcap.cc (contents, props changed) head/net-mgmt/kismet/files/patch-restricted-plugin-autowep_Makefile - copied, changed from r417964, head/net-mgmt/kismet/files/patch-plugin-autowep-Makefile head/net-mgmt/kismet/files/patch-restricted-plugin-ptw_Makefile - copied, changed from r417964, head/net-mgmt/kismet/files/patch-plugin-ptw-Makefile head/net-mgmt/kismet/files/patch-restricted-plugin-ptw_aircrack-crypto.cc - copied, changed from r417964, head/net-mgmt/kismet/files/patch-plugin-ptw-aircrack-crypto.cc Deleted: head/net-mgmt/kismet/files/patch-plugin-autowep-Makefile head/net-mgmt/kismet/files/patch-plugin-ptw-Makefile head/net-mgmt/kismet/files/patch-plugin-ptw-aircrack-crypto.cc Modified: head/net-mgmt/kismet/Makefile head/net-mgmt/kismet/distinfo head/net-mgmt/kismet/files/patch-alertracker.cc Modified: head/net-mgmt/kismet/Makefile ============================================================================== --- head/net-mgmt/kismet/Makefile Sun Jul 3 10:01:53 2016 (r417964) +++ head/net-mgmt/kismet/Makefile Sun Jul 3 10:38:12 2016 (r417965) @@ -2,17 +2,12 @@ # $FreeBSD$ PORTNAME= kismet -DISTVERSION= 2013-03-R1b -PORTREVISION= 1 +DISTVERSION= 2016-07-R1 PORTEPOCH= 1 CATEGORIES= net-mgmt -MASTER_SITES= http://www.kismetwireless.net/code/:1 \ - http://anonsvn.wireshark.org/wireshark/trunk/:2 -DISTFILES= ${DISTNAME}${EXTRACT_SUFX}:1 -DIST_SUBDIR= ${PORTNAME} -EXTRACT_ONLY= ${DISTNAME}${EXTRACT_SUFX} +MASTER_SITES= http://www.kismetwireless.net/code/ -MAINTAINER= ports@FreeBSD.org +MAINTAINER= pi@FreeBSD.org COMMENT= 802.11 layer2 wireless network detector, sniffer, and IDS LICENSE= GPLv2 @@ -31,8 +26,7 @@ WRKSRC= ${WRKDIR}/${DISTNAME:S/a$$//} .include .if ${PORT_OPTIONS:MDOCS} -PORTDOCS= README manuf -DISTFILES+= manuf:2 +PORTDOCS= README .endif .if ${PORT_OPTIONS:MEXAMPLES} @@ -62,7 +56,7 @@ PLIST_SUB+= SUID="@comment " SUIDGROUP=" .if ${PORT_OPTIONS:MPLUGINS} ALL_TARGET= depend all all-plugins INSTALL_TARGET+= all-plugins-install -USE_OPENSSL= yes +USES+= ssl PLIST_SUB+= PLUGINS="" .else PLIST_SUB+= PLUGINS="@comment " @@ -88,21 +82,20 @@ post-patch: -e 's,-o $$(INSTUSR) -g $$(SUIDGROUP) -m 4550,,' post-build: - @cd ${WRKSRC}; ${STRIP_CMD} kismet_client kismet_drone kismet_server */*.so + cd ${WRKSRC}; ${STRIP_CMD} kismet_client kismet_drone kismet_server */*.so post-install: .if ${PORT_OPTIONS:MDOCS} - @${MKDIR} ${STAGEDIR}${DOCSDIR} - @${INSTALL_DATA} ${WRKSRC}/README ${STAGEDIR}${DOCSDIR} - @${INSTALL_DATA} ${DISTDIR}/${DIST_SUBDIR}/manuf ${STAGEDIR}${DOCSDIR} + ${MKDIR} ${STAGEDIR}${DOCSDIR} + ${INSTALL_DATA} ${WRKSRC}/README ${STAGEDIR}${DOCSDIR} .endif .if ${PORT_OPTIONS:MEXAMPLES} - @${MKDIR} ${STAGEDIR}${EXAMPLESDIR} - @${INSTALL_DATA} ${WRKSRC}/ruby/* ${STAGEDIR}${EXAMPLESDIR} + ${MKDIR} ${STAGEDIR}${EXAMPLESDIR} + ${INSTALL_DATA} ${WRKSRC}/ruby/* ${STAGEDIR}${EXAMPLESDIR} .endif - @${MV} ${STAGEDIR}${PREFIX}/etc/kismet.conf \ + ${MV} ${STAGEDIR}${PREFIX}/etc/kismet.conf \ ${STAGEDIR}${PREFIX}/etc/kismet.conf.sample - @${MV} ${STAGEDIR}${PREFIX}/etc/kismet_drone.conf \ + ${MV} ${STAGEDIR}${PREFIX}/etc/kismet_drone.conf \ ${STAGEDIR}${PREFIX}/etc/kismet_drone.conf.sample .include Modified: head/net-mgmt/kismet/distinfo ============================================================================== --- head/net-mgmt/kismet/distinfo Sun Jul 3 10:01:53 2016 (r417964) +++ head/net-mgmt/kismet/distinfo Sun Jul 3 10:38:12 2016 (r417965) @@ -1,4 +1,3 @@ -SHA256 (kismet/kismet-2013-03-R1b.tar.xz) = 636d4d7ef8c67ae6ee8d8e1635f5115700eecb9fa4c208afaee30238db527c2c -SIZE (kismet/kismet-2013-03-R1b.tar.xz) = 699968 -SHA256 (kismet/manuf) = 42dcb7c3a677cfd23d0c08d30b9cd8abc8a57237ea2f7b90014eb4ea98446140 -SIZE (kismet/manuf) = 1393916 +TIMESTAMP = 1467539059 +SHA256 (kismet-2016-07-R1.tar.xz) = bdb21f153311f1ff3b16621bf0d6740f66369bf0982b0a289c9a12af8847e237 +SIZE (kismet-2016-07-R1.tar.xz) = 709364 Modified: head/net-mgmt/kismet/files/patch-alertracker.cc ============================================================================== --- head/net-mgmt/kismet/files/patch-alertracker.cc Sun Jul 3 10:01:53 2016 (r417964) +++ head/net-mgmt/kismet/files/patch-alertracker.cc Sun Jul 3 10:38:12 2016 (r417965) @@ -1,6 +1,6 @@ ---- alertracker.cc.orig 2010-09-03 10:57:56.000000000 -0400 -+++ alertracker.cc 2010-09-03 11:36:42.000000000 -0400 -@@ -397,6 +397,7 @@ +--- alertracker.cc.orig 2016-07-02 18:06:10 UTC ++++ alertracker.cc +@@ -405,6 +405,7 @@ int Alertracker::ParseAlertConfig(Config &(rec->limit_burst)) < 0) { _MSG("Invalid alert line in config file: " + clines[x], MSGFLAG_FATAL); globalreg->fatal_condition = 1; Added: head/net-mgmt/kismet/files/patch-packetsource__pcap.cc ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net-mgmt/kismet/files/patch-packetsource__pcap.cc Sun Jul 3 10:38:12 2016 (r417965) @@ -0,0 +1,10 @@ +--- packetsource_pcap.cc.orig 2016-07-02 18:06:10 UTC ++++ packetsource_pcap.cc +@@ -22,6 +22,7 @@ + #include + #include + #include ++#include + #include + #include + #include Copied and modified: head/net-mgmt/kismet/files/patch-restricted-plugin-autowep_Makefile (from r417964, head/net-mgmt/kismet/files/patch-plugin-autowep-Makefile) ============================================================================== --- head/net-mgmt/kismet/files/patch-plugin-autowep-Makefile Sun Jul 3 10:01:53 2016 (r417964, copy source) +++ head/net-mgmt/kismet/files/patch-restricted-plugin-autowep_Makefile Sun Jul 3 10:38:12 2016 (r417965) @@ -1,11 +1,22 @@ ---- restricted-plugin-autowep/Makefile.orig 2013-03-25 13:29:11.000000000 -0400 -+++ restricted-plugin-autowep/Makefile 2013-04-04 15:37:44.000000000 -0400 -@@ -22,7 +22,7 @@ +--- restricted-plugin-autowep/Makefile.orig 2016-07-02 18:06:10 UTC ++++ restricted-plugin-autowep/Makefile +@@ -9,8 +9,8 @@ top_builddir = $(BLDHOME) + + PLUGINLDFLAGS += -shared -rdynamic + LIBS += -lstdc++ +-CFLAGS += -I$(KIS_INC_DIR) -g -fPIC +-CXXFLAGS += -I$(KIS_INC_DIR) -g -fPIC ++CFLAGS += -I$(KIS_INC_DIR) -fPIC ++CXXFLAGS += -I$(KIS_INC_DIR) -fPIC + + PLUGOBJS = autowep-kismet.o + PLUGOUT = autowep-kismet.so +@@ -22,7 +22,7 @@ $(PLUGOUT): $(PLUGOBJS) install: $(PLUGOUT) mkdir -p $(DESTDIR)/$(plugindir) - $(INSTALL) -o $(INSTUSR) -g $(INSTGRP) -m 644 $^ $(DESTDIR)/$(plugindir)/$^ -+ $(INSTALL) -o $(INSTUSR) -g $(INSTGRP) -m 644 $(PLUGOUT) $(DESTDIR)/$(plugindir)/$(PLUGOUT) ++ $(INSTALL) -m 644 $(PLUGOUT) $(DESTDIR)/$(plugindir)/$(PLUGOUT) userinstall: $(PLUGOUT) mkdir -p ${HOME}/.kismet/plugins/ Copied and modified: head/net-mgmt/kismet/files/patch-restricted-plugin-ptw_Makefile (from r417964, head/net-mgmt/kismet/files/patch-plugin-ptw-Makefile) ============================================================================== --- head/net-mgmt/kismet/files/patch-plugin-ptw-Makefile Sun Jul 3 10:01:53 2016 (r417964, copy source) +++ head/net-mgmt/kismet/files/patch-restricted-plugin-ptw_Makefile Sun Jul 3 10:38:12 2016 (r417965) @@ -1,11 +1,22 @@ ---- restricted-plugin-ptw/Makefile.orig 2013-04-04 15:43:05.000000000 -0400 -+++ restricted-plugin-ptw/Makefile 2013-04-04 15:44:50.000000000 -0400 -@@ -22,7 +22,7 @@ +--- restricted-plugin-ptw/Makefile.orig 2016-07-02 18:06:10 UTC ++++ restricted-plugin-ptw/Makefile +@@ -9,8 +9,8 @@ top_builddir = $(BLDHOME) + + PLUGINLDFLAGS += -shared -rdynamic + LIBS += -lstdc++ -lssl -lpthread -lcrypto +-CFLAGS += -I$(KIS_INC_DIR) -g -fPIC +-CXXFLAGS += -I$(KIS_INC_DIR) -g -fPIC ++CFLAGS += -I$(KIS_INC_DIR) -fPIC ++CXXFLAGS += -I$(KIS_INC_DIR) -fPIC + + PLUGOBJS = aircrack-crypto.o aircrack-ptw2-lib.o aircrack-kismet.o + PLUGOUT = aircrack-kismet.so +@@ -22,7 +22,7 @@ $(PLUGOUT): $(PLUGOBJS) install: $(PLUGOUT) mkdir -p $(DESTDIR)/$(plugindir) - $(INSTALL) -o $(INSTUSR) -g $(INSTGRP) -m 644 $^ $(DESTDIR)/$(plugindir)/$^ -+ $(INSTALL) -o $(INSTUSR) -g $(INSTGRP) -m 644 $(PLUGOUT) $(DESTDIR)/$(plugindir)/$(PLUGOUT) ++ $(INSTALL) -m 644 $(PLUGOUT) $(DESTDIR)/$(plugindir)/$(PLUGOUT) userinstall: $(PLUGOUT) mkdir -p ${HOME}/.kismet/plugins/ Copied and modified: head/net-mgmt/kismet/files/patch-restricted-plugin-ptw_aircrack-crypto.cc (from r417964, head/net-mgmt/kismet/files/patch-plugin-ptw-aircrack-crypto.cc) ============================================================================== --- head/net-mgmt/kismet/files/patch-plugin-ptw-aircrack-crypto.cc Sun Jul 3 10:01:53 2016 (r417964, copy source) +++ head/net-mgmt/kismet/files/patch-restricted-plugin-ptw_aircrack-crypto.cc Sun Jul 3 10:38:12 2016 (r417965) @@ -1,5 +1,5 @@ ---- restricted-plugin-ptw/aircrack-crypto.cc.orig 2010-05-24 11:40:15.000000000 +0200 -+++ restricted-plugin-ptw/aircrack-crypto.cc 2010-05-24 11:39:34.000000000 +0200 +--- restricted-plugin-ptw/aircrack-crypto.cc.orig 2016-07-02 18:06:10 UTC ++++ restricted-plugin-ptw/aircrack-crypto.cc @@ -21,6 +21,7 @@ #include #include From owner-svn-ports-all@freebsd.org Sun Jul 3 11:04:22 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 66535B90454; Sun, 3 Jul 2016 11:04:22 +0000 (UTC) (envelope-from nemysis@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 257A82C99; Sun, 3 Jul 2016 11:04:22 +0000 (UTC) (envelope-from nemysis@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u63B4LjI014377; Sun, 3 Jul 2016 11:04:21 GMT (envelope-from nemysis@FreeBSD.org) Received: (from nemysis@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u63B4L8V014375; Sun, 3 Jul 2016 11:04:21 GMT (envelope-from nemysis@FreeBSD.org) Message-Id: <201607031104.u63B4L8V014375@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: nemysis set sender to nemysis@FreeBSD.org using -f From: Rusmir Dusko Date: Sun, 3 Jul 2016 11:04:21 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r417966 - head/multimedia/smplayer X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 03 Jul 2016 11:04:22 -0000 Author: nemysis Date: Sun Jul 3 11:04:21 2016 New Revision: 417966 URL: https://svnweb.freebsd.org/changeset/ports/417966 Log: - Update to 16.7.0, please see /usr/local/share/doc/smplayer/Changelog Modified: head/multimedia/smplayer/Makefile head/multimedia/smplayer/distinfo Modified: head/multimedia/smplayer/Makefile ============================================================================== --- head/multimedia/smplayer/Makefile Sun Jul 3 10:38:12 2016 (r417965) +++ head/multimedia/smplayer/Makefile Sun Jul 3 11:04:21 2016 (r417966) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= smplayer -DISTVERSION= 16.6.0 +DISTVERSION= 16.7.0 CATEGORIES= multimedia audio kde MASTER_SITES= SF/${PORTNAME}/SMPlayer/${PORTVERSION} Modified: head/multimedia/smplayer/distinfo ============================================================================== --- head/multimedia/smplayer/distinfo Sun Jul 3 10:38:12 2016 (r417965) +++ head/multimedia/smplayer/distinfo Sun Jul 3 11:04:21 2016 (r417966) @@ -1,3 +1,2 @@ -TIMESTAMP = 1465562036 -SHA256 (smplayer-16.6.0.tar.bz2) = 10220981f7260ec5f3e7201a5b5b8b534a61056f616811a118d59a8a5696d346 -SIZE (smplayer-16.6.0.tar.bz2) = 4154300 +SHA256 (smplayer-16.7.0.tar.bz2) = 6989972d5c2d8bacdf66b6db669b3be015a55ba6db0bfdc4180790c02dc4e218 +SIZE (smplayer-16.7.0.tar.bz2) = 4163002 From owner-svn-ports-all@freebsd.org Sun Jul 3 11:29:58 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id CD991B90B58; Sun, 3 Jul 2016 11:29:58 +0000 (UTC) (envelope-from rakuco@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id A793A26D2; Sun, 3 Jul 2016 11:29:58 +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 u63BTvcj021891; Sun, 3 Jul 2016 11:29:57 GMT (envelope-from rakuco@FreeBSD.org) Received: (from rakuco@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u63BTvhZ021886; Sun, 3 Jul 2016 11:29:57 GMT (envelope-from rakuco@FreeBSD.org) Message-Id: <201607031129.u63BTvhZ021886@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: rakuco set sender to rakuco@FreeBSD.org using -f From: Raphael Kubo da Costa Date: Sun, 3 Jul 2016 11:29:57 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r417967 - in head/x11-fonts: . montserrat X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 03 Jul 2016 11:29:58 -0000 Author: rakuco Date: Sun Jul 3 11:29:57 2016 New Revision: 417967 URL: https://svnweb.freebsd.org/changeset/ports/417967 Log: New port: x11-fonts/montserrat. The old posters and signs in the traditional neighborhood of Buenos Aires called Montserrat inspired the design of a typeface that rescues the beauty of urban typography from the first half of the twentieth century. The goal is to rescue what is in Montserrat and set it free, under a free, libre and open source license, the SIL Open Font License. WWW: https://github.com/JulietaUla/Montserrat/ Added: head/x11-fonts/montserrat/ head/x11-fonts/montserrat/Makefile (contents, props changed) head/x11-fonts/montserrat/distinfo (contents, props changed) head/x11-fonts/montserrat/pkg-descr (contents, props changed) head/x11-fonts/montserrat/pkg-plist (contents, props changed) Modified: head/x11-fonts/Makefile Modified: head/x11-fonts/Makefile ============================================================================== --- head/x11-fonts/Makefile Sun Jul 3 11:04:21 2016 (r417966) +++ head/x11-fonts/Makefile Sun Jul 3 11:29:57 2016 (r417967) @@ -137,6 +137,7 @@ SUBDIR += mkitalic SUBDIR += mondulkiri SUBDIR += montecarlo_fonts + SUBDIR += montserrat SUBDIR += moveable-type-fonts SUBDIR += nexfontsel SUBDIR += noto Added: head/x11-fonts/montserrat/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/x11-fonts/montserrat/Makefile Sun Jul 3 11:29:57 2016 (r417967) @@ -0,0 +1,27 @@ +# $FreeBSD$ + +PORTNAME= montserrat +PORTVERSION= 3.100 +CATEGORIES= x11-fonts + +MAINTAINER= rakuco@FreeBSD.org +COMMENT= Sans-serif font inspired by the street signs of Montserrat + +LICENSE= OFL11 +LICENSE_FILE= ${WRKSRC}/LICENSE.md + +USES= fonts + +USE_GITHUB= yes +GH_ACCOUNT= JulietaUla +GH_PROJECT= Montserrat +GH_TAGNAME= 59350832 + +NO_BUILD= yes + +do-install: + ${MKDIR} ${STAGEDIR}${FONTSDIR} + cd ${WRKSRC}/otf && \ + ${INSTALL_DATA} *.otf ${STAGEDIR}${FONTSDIR} + +.include Added: head/x11-fonts/montserrat/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/x11-fonts/montserrat/distinfo Sun Jul 3 11:29:57 2016 (r417967) @@ -0,0 +1,3 @@ +TIMESTAMP = 1467104494 +SHA256 (JulietaUla-Montserrat-3.100-59350832_GH0.tar.gz) = d2fc00b1b6e5186f529683539e011931c5923523fba47a6d931352fd9f738411 +SIZE (JulietaUla-Montserrat-3.100-59350832_GH0.tar.gz) = 1859293 Added: head/x11-fonts/montserrat/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/x11-fonts/montserrat/pkg-descr Sun Jul 3 11:29:57 2016 (r417967) @@ -0,0 +1,7 @@ +The old posters and signs in the traditional neighborhood of Buenos Aires +called Montserrat inspired the design of a typeface that rescues the beauty of +urban typography from the first half of the twentieth century. The goal is to +rescue what is in Montserrat and set it free, under a free, libre and open +source license, the SIL Open Font License. + +WWW: https://github.com/JulietaUla/Montserrat/ Added: head/x11-fonts/montserrat/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/x11-fonts/montserrat/pkg-plist Sun Jul 3 11:29:57 2016 (r417967) @@ -0,0 +1,18 @@ +%%FONTSDIR%%/Montserrat-Black.otf +%%FONTSDIR%%/Montserrat-Bold.otf +%%FONTSDIR%%/Montserrat-ExtraBold.otf +%%FONTSDIR%%/Montserrat-Light.otf +%%FONTSDIR%%/Montserrat-Medium.otf +%%FONTSDIR%%/Montserrat-Regular.otf +%%FONTSDIR%%/Montserrat-SemiBold.otf +%%FONTSDIR%%/Montserrat-Thin.otf +%%FONTSDIR%%/Montserrat-UltraLight.otf +%%FONTSDIR%%/MontserratAlternates-Black.otf +%%FONTSDIR%%/MontserratAlternates-Bold.otf +%%FONTSDIR%%/MontserratAlternates-ExtraBold.otf +%%FONTSDIR%%/MontserratAlternates-Light.otf +%%FONTSDIR%%/MontserratAlternates-Medium.otf +%%FONTSDIR%%/MontserratAlternates-Regular.otf +%%FONTSDIR%%/MontserratAlternates-SemiBold.otf +%%FONTSDIR%%/MontserratAlternates-Thin.otf +%%FONTSDIR%%/MontserratAlternates-UltraLight.otf From owner-svn-ports-all@freebsd.org Sun Jul 3 12:10:20 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 2EEC8AC5AC8; Sun, 3 Jul 2016 12:10:20 +0000 (UTC) (envelope-from brnrd@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id E0FCD2752; Sun, 3 Jul 2016 12:10:19 +0000 (UTC) (envelope-from brnrd@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u63CAJ2x036839; Sun, 3 Jul 2016 12:10:19 GMT (envelope-from brnrd@FreeBSD.org) Received: (from brnrd@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u63CAIJi036836; Sun, 3 Jul 2016 12:10:18 GMT (envelope-from brnrd@FreeBSD.org) Message-Id: <201607031210.u63CAIJi036836@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: brnrd set sender to brnrd@FreeBSD.org using -f From: Bernard Spil Date: Sun, 3 Jul 2016 12:10:18 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r417968 - in head/devel/qca: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 03 Jul 2016 12:10:20 -0000 Author: brnrd Date: Sun Jul 3 12:10:18 2016 New Revision: 417968 URL: https://svnweb.freebsd.org/changeset/ports/417968 Log: devel/qca: Fix building without SSLv3 and SHA-0 - Add 2 patches from upstream project - Fix building when libssl does not have SSLv3 - Fix building when libcrypto does not have SHA-0 - Replace USE_OPENSSL with USES= ssl - Rework files/patch-libressl with `make makepatch` Tested with devel/qca and devel/qca-qt5 PR: 210053 Approved by: Maintainer time-out Obtained from: KDE Differential Revision: D6885 Added: head/devel/qca/files/patch-plugins_qca-ossl_CMakeLists.txt (contents, props changed) head/devel/qca/files/patch-plugins_qca-ossl_qca-ossl.cpp - copied, changed from r417960, head/devel/qca/files/patch-libressl Deleted: head/devel/qca/files/patch-libressl Modified: head/devel/qca/Makefile Modified: head/devel/qca/Makefile ============================================================================== --- head/devel/qca/Makefile Sun Jul 3 11:29:57 2016 (r417967) +++ head/devel/qca/Makefile Sun Jul 3 12:10:18 2016 (r417968) @@ -38,7 +38,7 @@ GNUPG_CMAKE_ON= -DWITH_gnupg_PLUGIN=yes GNUPG_RUN_DEPENDS= gpg2:security/gnupg OPENSSL_CMAKE_ON= -DWITH_ossl_PLUGIN=yes -OPENSSL_USE= OPENSSL=yes +OPENSSL_USES= ssl SASL_CMAKE_ON= -DWITH_cyrus-sasl_PLUGIN=yes SASL_LIB_DEPENDS= libsasl2.so:security/cyrus-sasl2 Added: head/devel/qca/files/patch-plugins_qca-ossl_CMakeLists.txt ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/qca/files/patch-plugins_qca-ossl_CMakeLists.txt Sun Jul 3 12:10:18 2016 (r417968) @@ -0,0 +1,28 @@ +qca-ossl: Fix build without support for SHA-0 +https://quickgit.kde.org/?p=qca.git&a=commit&h=0dbed8eb38afd1561907a52283091c37e7b85156 + +LibreSSL >= 2.3.0 removed support for SHA-0, so there's no EVP_sha +anymore. +Wikipedia says about SHA-0: "160-bit hash function published in 1993 +under the name SHA. It was withdrawn shortly after publication due to +an undisclosed "significant flaw" and replaced by the slightly revised +version SHA-1.' + +REVIEW: 125387 + +--- plugins/qca-ossl/CMakeLists.txt.orig ++++ plugins/qca-ossl/CMakeLists.txt +@@ -24,6 +24,13 @@ + else(HAVE_OPENSSL_AES_CTR) + message(WARNING "qca-ossl will be compiled without AES CTR mode encryption support") + endif(HAVE_OPENSSL_AES_CTR) ++ ++ check_function_exists(EVP_sha HAVE_OPENSSL_SHA0) ++ if(HAVE_OPENSSL_SHA0) ++ add_definitions(-DHAVE_OPENSSL_SHA0) ++ else(HAVE_OPENSSL_SHA0) ++ message(WARNING "qca-ossl will be compiled without SHA-0 digest algorithm support") ++ endif(HAVE_OPENSSL_SHA0) + + set(QCA_OSSL_SOURCES qca-ossl.cpp) + Copied and modified: head/devel/qca/files/patch-plugins_qca-ossl_qca-ossl.cpp (from r417960, head/devel/qca/files/patch-libressl) ============================================================================== --- head/devel/qca/files/patch-libressl Sun Jul 3 08:15:25 2016 (r417960, copy source) +++ head/devel/qca/files/patch-plugins_qca-ossl_qca-ossl.cpp Sun Jul 3 12:10:18 2016 (r417968) @@ -1,15 +1,46 @@ ---- plugins/qca-ossl/qca-ossl.cpp.orig 2015-10-02 09:39:21 UTC +qca-ossl: Fix build without SSLv3 +http://quickgit.kde.org/?p=qca.git&a=commit&h=20a587d77636186edb044cd2b71d6d90fe98d232 + +This fixes building with LibreSSL >= 2.3.0 which has removed support +for SSLv3 completely. As far as I know OpenSSL can be configured to +build without it, so it might be helpful there as well. + +REVIEW: 125386 + +qca-ossl: Fix build without support for SHA-0 +https://quickgit.kde.org/?p=qca.git&a=commit&h=0dbed8eb38afd1561907a52283091c37e7b85156 + +LibreSSL >= 2.3.0 removed support for SHA-0, so there's no EVP_sha +anymore. +Wikipedia says about SHA-0: "160-bit hash function published in 1993 +under the name SHA. It was withdrawn shortly after publication due to +an undisclosed "significant flaw" and replaced by the slightly revised +version SHA-1.' + +REVIEW: 125387 + +--- plugins/qca-ossl/qca-ossl.cpp.orig 2016-07-03 11:34:48 UTC +++ plugins/qca-ossl/qca-ossl.cpp -@@ -5805,7 +5805,11 @@ public: - { - SessionInfo sessInfo; - -- sessInfo.isCompressed = (0 != SSL_SESSION_get_compress_id(ssl->session)); -+#ifndef OPENSSL_NO_COMP -+ sessInfo.isCompressed = (0 != ssl->session->compress_meth); -+#else -+ sessInfo.isCompressed = 0; +@@ -5403,9 +5403,11 @@ + ctx = SSL_CTX_new(SSLv2_client_method()); + break; + #endif ++#ifndef OPENSSL_NO_SSL3_METHOD + case TLS::SSL_v3: + ctx = SSL_CTX_new(SSLv3_client_method()); + break; +#endif - - if (ssl->version == TLS1_VERSION) - sessInfo.version = TLS::TLS_v1; + case TLS::TLS_v1: + ctx = SSL_CTX_new(TLSv1_client_method()); + break; +@@ -7135,8 +7135,10 @@ + return new opensslInfoContext(this); + else if ( type == "sha1" ) + return new opensslHashContext( EVP_sha1(), this, type); ++#ifdef HAVE_OPENSSL_SHA0 + else if ( type == "sha0" ) + return new opensslHashContext( EVP_sha(), this, type); ++#endif + else if ( type == "ripemd160" ) + return new opensslHashContext( EVP_ripemd160(), this, type); + #ifdef HAVE_OPENSSL_MD2 From owner-svn-ports-all@freebsd.org Sun Jul 3 12:43:29 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 20E84B8F483; Sun, 3 Jul 2016 12:43:29 +0000 (UTC) (envelope-from brnrd@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id E54032488; Sun, 3 Jul 2016 12:43:28 +0000 (UTC) (envelope-from brnrd@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u63ChSXr051274; Sun, 3 Jul 2016 12:43:28 GMT (envelope-from brnrd@FreeBSD.org) Received: (from brnrd@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u63ChSNt051272; Sun, 3 Jul 2016 12:43:28 GMT (envelope-from brnrd@FreeBSD.org) Message-Id: <201607031243.u63ChSNt051272@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: brnrd set sender to brnrd@FreeBSD.org using -f From: Bernard Spil Date: Sun, 3 Jul 2016 12:43:28 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r417969 - head/databases/mysql-udf X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 03 Jul 2016 12:43:29 -0000 Author: brnrd Date: Sun Jul 3 12:43:27 2016 New Revision: 417969 URL: https://svnweb.freebsd.org/changeset/ports/417969 Log: databases/mysql-udf: Fix building with MariaDB - Work around MySQL's include/mysql/mysql directory - Add -I ${LOCALBASE}/include to CFLAGS - Move from USE_MYSQL to USES= mysql PR: 199556 Modified: head/databases/mysql-udf/Makefile head/databases/mysql-udf/distinfo Modified: head/databases/mysql-udf/Makefile ============================================================================== --- head/databases/mysql-udf/Makefile Sun Jul 3 12:10:18 2016 (r417968) +++ head/databases/mysql-udf/Makefile Sun Jul 3 12:43:27 2016 (r417969) @@ -12,7 +12,7 @@ COMMENT= Set of user-defined functions f WRKSRC= ${WRKDIR}/${PORTNAME} -USE_MYSQL= yes +USES= mysql MODULES= colwidth confidence_higher confidence_lower correlation \ faculty geomean intercept kurtosis longest median noverm \ @@ -31,7 +31,7 @@ CFLAGS+= -fPIC do-build: .for MODULE in ${MODULES} cd ${WRKSRC} && \ - ${CC} ${CFLAGS} -I${LOCALBASE}/include/mysql -c -o udf_${MODULE}.o udf_${MODULE}.cc && \ + ${CC} ${CFLAGS} -I${LOCALBASE}/include -I${LOCALBASE}/include/mysql -c -o udf_${MODULE}.o udf_${MODULE}.cc && \ ${CC} -shared -o udf_${MODULE}.so udf_${MODULE}.o .endfor Modified: head/databases/mysql-udf/distinfo ============================================================================== --- head/databases/mysql-udf/distinfo Sun Jul 3 12:10:18 2016 (r417968) +++ head/databases/mysql-udf/distinfo Sun Jul 3 12:43:27 2016 (r417969) @@ -1,2 +1,3 @@ +TIMESTAMP = 1467549429 SHA256 (mysql-udf-0.3.tar.gz) = d9115aeecccfc06ccdc209a761a6a4d0dba70f15c9319ab76d173b04737beaf2 SIZE (mysql-udf-0.3.tar.gz) = 6714 From owner-svn-ports-all@freebsd.org Sun Jul 3 13:16:18 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 91427B8F91A; Sun, 3 Jul 2016 13:16:18 +0000 (UTC) (envelope-from rakuco@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 25E492D54; Sun, 3 Jul 2016 13:16:18 +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 u63DGH3c062755; Sun, 3 Jul 2016 13:16:17 GMT (envelope-from rakuco@FreeBSD.org) Received: (from rakuco@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u63DGH9C062751; Sun, 3 Jul 2016 13:16:17 GMT (envelope-from rakuco@FreeBSD.org) Message-Id: <201607031316.u63DGH9C062751@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: rakuco set sender to rakuco@FreeBSD.org using -f From: Raphael Kubo da Costa Date: Sun, 3 Jul 2016 13:16:17 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r417970 - in head/print/lyx: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 03 Jul 2016 13:16:18 -0000 Author: rakuco Date: Sun Jul 3 13:16:17 2016 New Revision: 417970 URL: https://svnweb.freebsd.org/changeset/ports/417970 Log: Update to 2.2.0. Changes and release notes: http://wiki.lyx.org/LyX/NewInLyX22 The GUI still uses Qt4, as 2.2.0's release notes only advise using the Qt5 versions with Qt >= 5.6.0. Deleted: head/print/lyx/files/patch-config.h.in head/print/lyx/files/patch-src__support__os_unix.cpp Modified: head/print/lyx/Makefile head/print/lyx/distinfo head/print/lyx/pkg-plist Modified: head/print/lyx/Makefile ============================================================================== --- head/print/lyx/Makefile Sun Jul 3 12:43:27 2016 (r417969) +++ head/print/lyx/Makefile Sun Jul 3 13:16:17 2016 (r417970) @@ -6,10 +6,8 @@ PORTVERSION= ${MAJOR_VERSION}.${MINOR_VE CATEGORIES= print editors MASTER_SITES= ftp://ftp.lyx.org/pub/lyx/stable/${MAJOR_VERSION}.x/ \ http://www-ftp.lip6.fr/ftp/pub/lyx/stable/${MAJOR_VERSION}.x/ \ - ftp://gd.tuwien.ac.at/publishing/tex/lyx/stable/${MAJOR_VERSION}.x/ \ ftp://ftp.ntua.gr/pub/X11/LyX/stable/${MAJOR_VERSION}.x/ \ - http://sunsite.icm.edu.pl/pub/unix/editors/lyx/stable/${MAJOR_VERSION}.x/ \ - ftp://ftp.chg.ru/pub/X11/lyx/stable/${MAJOR_VERSION}.x/ + http://sunsite.icm.edu.pl/pub/unix/editors/lyx/stable/${MAJOR_VERSION}.x/ MAINTAINER= rakuco@FreeBSD.org COMMENT= Document processor interfaced with LaTeX (nearly WYSIWYG) @@ -19,17 +17,23 @@ LICENSE= GPLv2 LIB_DEPENDS= libboost_regex.so:devel/boost-libs \ libmythes-1.2.so:textproc/mythes -MAJOR_VERSION= 2.1 -MINOR_VERSION= 5 +MAJOR_VERSION= 2.2 +MINOR_VERSION= 0 -USES= desktop-file-utils gmake iconv pkgconfig perl5 python:2 tar:xz -USE_QT4= corelib gui moc_build uic_build rcc_build +USES= desktop-file-utils execinfo gmake iconv pkgconfig perl5 \ + python:2 tar:xz +USE_QT4= corelib gui svg moc_build uic_build rcc_build GNU_CONFIGURE= yes CONFIGURE_ARGS= --without-included-boost \ --without-included-mythes \ + --disable-qt5 \ ${ICONV_CONFIGURE_ARG} \ --with-extra-prefix=${LOCALBASE} +CPPFLAGS+= ${EXECINFO_CPPFLAGS} +LDFLAGS+= ${EXECINFO_LDFLAGS} +LIBS+= -lexecinfo + OPTIONS_DEFINE= ASPELL ENCHANT HUNSPELL NLS OPTIONS_DEFAULT= HUNSPELL OPTIONS_SUB= yes Modified: head/print/lyx/distinfo ============================================================================== --- head/print/lyx/distinfo Sun Jul 3 12:43:27 2016 (r417969) +++ head/print/lyx/distinfo Sun Jul 3 13:16:17 2016 (r417970) @@ -1,3 +1,3 @@ -TIMESTAMP = 1466497255 -SHA256 (lyx-2.1.5.tar.xz) = 2e677591aebdd484efb7d2920357f1358f9525ab1feaa59a63a8cf92b7ee2cf3 -SIZE (lyx-2.1.5.tar.xz) = 10361112 +TIMESTAMP = 1467034115 +SHA256 (lyx-2.2.0.tar.xz) = d867986870e3f7451f0d4512c60d9c3c7682da59c6c638f18b731f4ad3fa7c80 +SIZE (lyx-2.2.0.tar.xz) = 14640052 Modified: head/print/lyx/pkg-plist ============================================================================== --- head/print/lyx/pkg-plist Sun Jul 3 12:43:27 2016 (r417969) +++ head/print/lyx/pkg-plist Sun Jul 3 13:16:17 2016 (r417970) @@ -41,6 +41,7 @@ share/applications/lyx.desktop share/icons/hicolor/48x48/apps/lyx.png share/icons/hicolor/scalable/apps/lyx.svg %%DATADIR%%/CREDITS +%%DATADIR%%/RELEASE-NOTES %%DATADIR%%/autocorrect %%DATADIR%%/bind/aqua.bind %%DATADIR%%/bind/broadway.bind @@ -80,31 +81,31 @@ share/icons/hicolor/scalable/apps/lyx.sv %%DATADIR%%/doc/biblio/alphadin.bst %%DATADIR%%/doc/ca/Intro.lyx %%DATADIR%%/doc/clipart/Abstract.pdf -%%DATADIR%%/doc/clipart/BoxInsetDefaultQt4.png +%%DATADIR%%/doc/clipart/BoxInsetDefault.png %%DATADIR%%/doc/clipart/ChangesToolbar.png -%%DATADIR%%/doc/clipart/ChildDocumentQt4.png -%%DATADIR%%/doc/clipart/CommentNoteImageQt4.png +%%DATADIR%%/doc/clipart/ChildDocument.png +%%DATADIR%%/doc/clipart/CommentNoteImage.png %%DATADIR%%/doc/clipart/ERT.png -%%DATADIR%%/doc/clipart/ExternalMaterialQt4.png +%%DATADIR%%/doc/clipart/ExternalMaterial.png %%DATADIR%%/doc/clipart/ExtraToolbar.png -%%DATADIR%%/doc/clipart/GreyedOutNoteImageQt4.png -%%DATADIR%%/doc/clipart/LaTeX.png -%%DATADIR%%/doc/clipart/LyXNoteImageQt4.png +%%DATADIR%%/doc/clipart/GreyedOutNoteImage.png +%%DATADIR%%/doc/clipart/LyXNoteImage.png %%DATADIR%%/doc/clipart/MacroToolbar.png +%%DATADIR%%/doc/clipart/SVG-Drawing.svg %%DATADIR%%/doc/clipart/SpaceMarker.png %%DATADIR%%/doc/clipart/StandardToolbar.png %%DATADIR%%/doc/clipart/ToolbarEnvBox.png %%DATADIR%%/doc/clipart/ViewToolbar.png %%DATADIR%%/doc/clipart/endnotes.pdf %%DATADIR%%/doc/clipart/escher-lsd.eps -%%DATADIR%%/doc/clipart/floatQt4.png -%%DATADIR%%/doc/clipart/footnoteQt4.png -%%DATADIR%%/doc/clipart/labelQt4.png +%%DATADIR%%/doc/clipart/float.png +%%DATADIR%%/doc/clipart/footnote.png +%%DATADIR%%/doc/clipart/label.png %%DATADIR%%/doc/clipart/macrobox.png %%DATADIR%%/doc/clipart/macrouse.png %%DATADIR%%/doc/clipart/mobius.eps %%DATADIR%%/doc/clipart/platypus.eps -%%DATADIR%%/doc/clipart/referenceQt4.png +%%DATADIR%%/doc/clipart/reference.png %%DATADIR%%/doc/clipart/with_fntright.pdf %%DATADIR%%/doc/clipart/without_fntright.pdf %%DATADIR%%/doc/cs/Tutorial.lyx @@ -122,16 +123,16 @@ share/icons/hicolor/scalable/apps/lyx.sv %%DATADIR%%/doc/de/Tutorial.lyx %%DATADIR%%/doc/de/UserGuide.lyx %%DATADIR%%/doc/de/clipart/ERT.png -%%DATADIR%%/doc/de/clipart/ExternesMaterialQt4.png -%%DATADIR%%/doc/de/clipart/FussnoteQt4.png -%%DATADIR%%/doc/de/clipart/GleitobjektQt4.png -%%DATADIR%%/doc/de/clipart/GrauschriftNotizQt4.png -%%DATADIR%%/doc/de/clipart/KommentarQt4.png -%%DATADIR%%/doc/de/clipart/LyXNotizQt4.png +%%DATADIR%%/doc/de/clipart/ExternesMaterial.png +%%DATADIR%%/doc/de/clipart/Fussnote.png +%%DATADIR%%/doc/de/clipart/Gleitobjekt.png +%%DATADIR%%/doc/de/clipart/GrauschriftNotiz.png +%%DATADIR%%/doc/de/clipart/Kommentar.png +%%DATADIR%%/doc/de/clipart/LyXNotiz.png %%DATADIR%%/doc/de/clipart/Marke.png %%DATADIR%%/doc/de/clipart/Querverweis.png -%%DATADIR%%/doc/de/clipart/StandardBoxQt4.png -%%DATADIR%%/doc/de/clipart/UnterdokumentQt4.png +%%DATADIR%%/doc/de/clipart/StandardBox.png +%%DATADIR%%/doc/de/clipart/Unterdokument.png %%DATADIR%%/doc/de/clipart/Zusammenfassung.pdf %%DATADIR%%/doc/el/Intro.lyx %%DATADIR%%/doc/es/Additional.lyx @@ -146,19 +147,20 @@ share/icons/hicolor/scalable/apps/lyx.sv %%DATADIR%%/doc/es/Shortcuts.lyx %%DATADIR%%/doc/es/Tutorial.lyx %%DATADIR%%/doc/es/UserGuide.lyx -%%DATADIR%%/doc/es/clipart/ComentNotaImagenQt4.png -%%DATADIR%%/doc/es/clipart/CuadroMinipagQt4.png -%%DATADIR%%/doc/es/clipart/DocumentoHijoQt4.png -%%DATADIR%%/doc/es/clipart/GrisNotaImagenQt4.png -%%DATADIR%%/doc/es/clipart/MaterialExternoQt4.png -%%DATADIR%%/doc/es/clipart/NotaLyXImagenQt4.png +%%DATADIR%%/doc/es/clipart/ComentNotaImagen.png +%%DATADIR%%/doc/es/clipart/CuadroMinipagina.png +%%DATADIR%%/doc/es/clipart/DocumentoHijo.png +%%DATADIR%%/doc/es/clipart/GrisNotaImagen.png +%%DATADIR%%/doc/es/clipart/MaterialExterno.png +%%DATADIR%%/doc/es/clipart/NotaLyXImagen.png %%DATADIR%%/doc/es/clipart/Resumen.pdf %%DATADIR%%/doc/es/clipart/es_ERT.png +%%DATADIR%%/doc/es/clipart/es_StandardToolbar.png %%DATADIR%%/doc/es/clipart/es_ToolbarEnvBox.png -%%DATADIR%%/doc/es/clipart/etiquetaQt4.png -%%DATADIR%%/doc/es/clipart/flotanteQt4.png -%%DATADIR%%/doc/es/clipart/notapieQt4.png -%%DATADIR%%/doc/es/clipart/referenciaQt4.png +%%DATADIR%%/doc/es/clipart/etiqueta.png +%%DATADIR%%/doc/es/clipart/flotante.png +%%DATADIR%%/doc/es/clipart/notapie.png +%%DATADIR%%/doc/es/clipart/referencia.png %%DATADIR%%/doc/eu/Intro.lyx %%DATADIR%%/doc/eu/Tutorial.lyx %%DATADIR%%/doc/fr/Additional.lyx @@ -173,15 +175,15 @@ share/icons/hicolor/scalable/apps/lyx.sv %%DATADIR%%/doc/fr/Shortcuts.lyx %%DATADIR%%/doc/fr/Tutorial.lyx %%DATADIR%%/doc/fr/UserGuide.lyx -%%DATADIR%%/doc/fr/clipart/BoxInsetDefaultQt4.png -%%DATADIR%%/doc/fr/clipart/ChildDocumentQt4.png -%%DATADIR%%/doc/fr/clipart/CommentNoteImageQt4.png +%%DATADIR%%/doc/fr/clipart/BoxInsetDefault.png +%%DATADIR%%/doc/fr/clipart/CommentNoteImage.png %%DATADIR%%/doc/fr/clipart/ERT.png -%%DATADIR%%/doc/fr/clipart/GreyedOutNoteImageQt4.png -%%DATADIR%%/doc/fr/clipart/LyXNoteImageQt4.png -%%DATADIR%%/doc/fr/clipart/floatQt4.png -%%DATADIR%%/doc/fr/clipart/footnoteQt4.png -%%DATADIR%%/doc/fr/clipart/labelQt4.png +%%DATADIR%%/doc/fr/clipart/GreyedOutNoteImage.png +%%DATADIR%%/doc/fr/clipart/LyXNoteImage.png +%%DATADIR%%/doc/fr/clipart/SousDocument.png +%%DATADIR%%/doc/fr/clipart/float.png +%%DATADIR%%/doc/fr/clipart/footnote.png +%%DATADIR%%/doc/fr/clipart/label.png %%DATADIR%%/doc/gl/Intro.lyx %%DATADIR%%/doc/gl/Tutorial.lyx %%DATADIR%%/doc/he/Intro.lyx @@ -191,14 +193,13 @@ share/icons/hicolor/scalable/apps/lyx.sv %%DATADIR%%/doc/id/Intro.lyx %%DATADIR%%/doc/id/Shortcuts.lyx %%DATADIR%%/doc/id/Tutorial.lyx -%%DATADIR%%/doc/id/UserGuide.lyx %%DATADIR%%/doc/id/clipart/id-contrib.png %%DATADIR%%/doc/id/clipart/id-footnote.png %%DATADIR%%/doc/id/clipart/id-lingkungan.png %%DATADIR%%/doc/it/Intro.lyx %%DATADIR%%/doc/it/Tutorial.lyx -%%DATADIR%%/doc/it/clipart/it_footnoteQt4.png -%%DATADIR%%/doc/it/clipart/it_referenceQt4.png +%%DATADIR%%/doc/it/clipart/it_footnote.png +%%DATADIR%%/doc/it/clipart/it_reference.png %%DATADIR%%/doc/ja/Additional.lyx %%DATADIR%%/doc/ja/Customization.lyx %%DATADIR%%/doc/ja/DummyDocument1.lyx @@ -211,21 +212,22 @@ share/icons/hicolor/scalable/apps/lyx.sv %%DATADIR%%/doc/ja/Shortcuts.lyx %%DATADIR%%/doc/ja/Tutorial.lyx %%DATADIR%%/doc/ja/UserGuide.lyx -%%DATADIR%%/doc/ja/clipart/BoxInsetDefaultQt4.png -%%DATADIR%%/doc/ja/clipart/ChildDocumentQt4.png -%%DATADIR%%/doc/ja/clipart/CommentNoteImageQt4.png +%%DATADIR%%/doc/ja/clipart/BoxInsetDefault.png +%%DATADIR%%/doc/ja/clipart/ChildDocument.png +%%DATADIR%%/doc/ja/clipart/CommentNoteImage.png %%DATADIR%%/doc/ja/clipart/ERT.png -%%DATADIR%%/doc/ja/clipart/ExternalMaterialQt4.png -%%DATADIR%%/doc/ja/clipart/GreyedOutNoteImageQt4.png -%%DATADIR%%/doc/ja/clipart/LyXNoteImageQt4.png +%%DATADIR%%/doc/ja/clipart/ExternalMaterial.png +%%DATADIR%%/doc/ja/clipart/GreyedOutNoteImage.png +%%DATADIR%%/doc/ja/clipart/LyXNoteImage.png %%DATADIR%%/doc/ja/clipart/StandardToolbar.png %%DATADIR%%/doc/ja/clipart/ToolbarEnvBox.png -%%DATADIR%%/doc/ja/clipart/floatQt4.png -%%DATADIR%%/doc/ja/clipart/footnoteQt4.png -%%DATADIR%%/doc/ja/clipart/labelQt4.png +%%DATADIR%%/doc/ja/clipart/float.png +%%DATADIR%%/doc/ja/clipart/footnote.png +%%DATADIR%%/doc/ja/clipart/label.png %%DATADIR%%/doc/ja/clipart/macrobox.png -%%DATADIR%%/doc/ja/clipart/referenceQt4.png +%%DATADIR%%/doc/ja/clipart/reference.png %%DATADIR%%/doc/nb/Intro.lyx +%%DATADIR%%/doc/nb/Tutorial.lyx %%DATADIR%%/doc/nl/Intro.lyx %%DATADIR%%/doc/nl/Tutorial.lyx %%DATADIR%%/doc/pl/Intro.lyx @@ -243,7 +245,7 @@ share/icons/hicolor/scalable/apps/lyx.sv %%DATADIR%%/doc/sv/Shortcuts.lyx %%DATADIR%%/doc/sv/Tutorial.lyx %%DATADIR%%/doc/uk/Intro.lyx -%%DATADIR%%/doc/uk/clipart/FootnoteQT4.png +%%DATADIR%%/doc/uk/clipart/Footnote.png %%DATADIR%%/doc/zh_CN/Intro.lyx %%DATADIR%%/doc/zh_CN/Tutorial.lyx %%DATADIR%%/encodings @@ -252,6 +254,7 @@ share/icons/hicolor/scalable/apps/lyx.sv %%DATADIR%%/examples/CV-image.png %%DATADIR%%/examples/FeynmanDiagrams.lyx %%DATADIR%%/examples/Foils.lyx +%%DATADIR%%/examples/H-P-statements.lyx %%DATADIR%%/examples/ItemizeBullets.lyx %%DATADIR%%/examples/Literate.lyx %%DATADIR%%/examples/MultilingualCaptions.lyx @@ -285,6 +288,7 @@ share/icons/hicolor/scalable/apps/lyx.sv %%DATADIR%%/examples/ca/splash.lyx %%DATADIR%%/examples/chess-article.lyx %%DATADIR%%/examples/chessgame.lyx +%%DATADIR%%/examples/colored-boxes.lyx %%DATADIR%%/examples/cs/priklad_syrovy.lyx %%DATADIR%%/examples/cs/priklad_zLyXovany.lyx %%DATADIR%%/examples/cs/splash.lyx @@ -300,6 +304,7 @@ share/icons/hicolor/scalable/apps/lyx.sv %%DATADIR%%/examples/de/beamer.lyx %%DATADIR%%/examples/de/beispiel_gelyxt.lyx %%DATADIR%%/examples/de/beispiel_roh.lyx +%%DATADIR%%/examples/de/europassCV.lyx %%DATADIR%%/examples/de/linguistics.lyx %%DATADIR%%/examples/de/serienbrief1.lyx %%DATADIR%%/examples/de/serienbrief2.lyx @@ -321,6 +326,7 @@ share/icons/hicolor/scalable/apps/lyx.sv %%DATADIR%%/examples/eu/adibide_gordina.lyx %%DATADIR%%/examples/eu/adibide_lyx-atua.lyx %%DATADIR%%/examples/eu/splash.lyx +%%DATADIR%%/examples/europassCV.lyx %%DATADIR%%/examples/europeCV.lyx %%DATADIR%%/examples/example_lyxified.lyx %%DATADIR%%/examples/example_raw.lyx @@ -380,14 +386,19 @@ share/icons/hicolor/scalable/apps/lyx.sv %%DATADIR%%/examples/localization_test.lyx %%DATADIR%%/examples/longsheet.gnumeric %%DATADIR%%/examples/modernCV.lyx +%%DATADIR%%/examples/nb/eksempel_lyxet.lyx +%%DATADIR%%/examples/nb/eksempel_txt.lyx +%%DATADIR%%/examples/nb/splash.lyx %%DATADIR%%/examples/nl/opsommingstekens.lyx %%DATADIR%%/examples/nl/splash.lyx %%DATADIR%%/examples/nl/voorbeeld_ruw.lyx %%DATADIR%%/examples/nl/voorbeeld_verlyxt.lyx %%DATADIR%%/examples/noweb2lyx.lyx +%%DATADIR%%/examples/paralist.lyx %%DATADIR%%/examples/pl/splash.lyx %%DATADIR%%/examples/powerdot-example.lyx -%%DATADIR%%/examples/pt/splash.lyx +%%DATADIR%%/examples/pt_BR/splash.lyx +%%DATADIR%%/examples/pt_PT/splash.lyx %%DATADIR%%/examples/recipebook.lyx %%DATADIR%%/examples/ro/splash.lyx %%DATADIR%%/examples/ru/splash.lyx @@ -445,6 +456,8 @@ share/icons/hicolor/scalable/apps/lyx.sv %%DATADIR%%/examples/tufte-book.lyx %%DATADIR%%/examples/tufte-handout.lyx %%DATADIR%%/examples/uk/splash.lyx +%%DATADIR%%/examples/varwidth-floats-side-by-side.lyx +%%DATADIR%%/examples/xyfigure.lyx %%DATADIR%%/examples/xyfigure.png %%DATADIR%%/examples/xypic.lyx %%DATADIR%%/external_templates @@ -461,58 +474,60 @@ share/icons/hicolor/scalable/apps/lyx.sv %%DATADIR%%/fonts/rsfs10.ttf %%DATADIR%%/fonts/stmary10.ttf %%DATADIR%%/fonts/wasy10.ttf -%%DATADIR%%/images/all-changes-accept.png -%%DATADIR%%/images/all-changes-reject.png +%%DATADIR%%/images/all-changes-accept.svgz +%%DATADIR%%/images/all-changes-reject.svgz %%DATADIR%%/images/amssymb.png %%DATADIR%%/images/banner.png -%%DATADIR%%/images/bookmark-goto.png -%%DATADIR%%/images/bookmark-goto_0.png -%%DATADIR%%/images/bookmark-save.png -%%DATADIR%%/images/box-insert.png -%%DATADIR%%/images/break-line.png -%%DATADIR%%/images/buffer-close.png -%%DATADIR%%/images/buffer-export.png -%%DATADIR%%/images/buffer-export_dvi.png -%%DATADIR%%/images/buffer-export_dvi3.png -%%DATADIR%%/images/buffer-export_latex.png -%%DATADIR%%/images/buffer-export_pdf.png -%%DATADIR%%/images/buffer-export_pdf2.png -%%DATADIR%%/images/buffer-export_pdf3.png -%%DATADIR%%/images/buffer-export_pdf4.png -%%DATADIR%%/images/buffer-export_pdf5.png -%%DATADIR%%/images/buffer-export_ps.png -%%DATADIR%%/images/buffer-export_text.png -%%DATADIR%%/images/buffer-new.png -%%DATADIR%%/images/buffer-reload.png -%%DATADIR%%/images/buffer-toggle-output-sync.png -%%DATADIR%%/images/buffer-update.png -%%DATADIR%%/images/buffer-update_dvi.png -%%DATADIR%%/images/buffer-update_dvi3.png -%%DATADIR%%/images/buffer-update_pdf.png -%%DATADIR%%/images/buffer-update_pdf2.png -%%DATADIR%%/images/buffer-update_pdf3.png -%%DATADIR%%/images/buffer-update_pdf4.png -%%DATADIR%%/images/buffer-update_pdf5.png -%%DATADIR%%/images/buffer-update_ps.png -%%DATADIR%%/images/buffer-view.png -%%DATADIR%%/images/buffer-view_dvi.png -%%DATADIR%%/images/buffer-view_dvi3.png -%%DATADIR%%/images/buffer-view_pdf.png -%%DATADIR%%/images/buffer-view_pdf2.png -%%DATADIR%%/images/buffer-view_pdf3.png -%%DATADIR%%/images/buffer-view_pdf4.png -%%DATADIR%%/images/buffer-view_pdf5.png -%%DATADIR%%/images/buffer-view_ps.png -%%DATADIR%%/images/buffer-write-as.png -%%DATADIR%%/images/buffer-write.png -%%DATADIR%%/images/build-program.png +%%DATADIR%%/images/banner.svgz +%%DATADIR%%/images/banner@2x.png +%%DATADIR%%/images/bookmark-goto.svgz +%%DATADIR%%/images/bookmark-goto_0.svgz +%%DATADIR%%/images/bookmark-save.svgz +%%DATADIR%%/images/box-insert.svgz +%%DATADIR%%/images/break-line.svgz +%%DATADIR%%/images/buffer-close.svgz +%%DATADIR%%/images/buffer-export.svgz +%%DATADIR%%/images/buffer-export_dvi.svgz +%%DATADIR%%/images/buffer-export_dvi3.svgz +%%DATADIR%%/images/buffer-export_latex.svgz +%%DATADIR%%/images/buffer-export_pdf.svgz +%%DATADIR%%/images/buffer-export_pdf2.svgz +%%DATADIR%%/images/buffer-export_pdf3.svgz +%%DATADIR%%/images/buffer-export_pdf4.svgz +%%DATADIR%%/images/buffer-export_pdf5.svgz +%%DATADIR%%/images/buffer-export_ps.svgz +%%DATADIR%%/images/buffer-export_text.svgz +%%DATADIR%%/images/buffer-new.svgz +%%DATADIR%%/images/buffer-reload.svgz +%%DATADIR%%/images/buffer-toggle-output-sync.svgz +%%DATADIR%%/images/buffer-update.svgz +%%DATADIR%%/images/buffer-update_dvi.svgz +%%DATADIR%%/images/buffer-update_dvi3.svgz +%%DATADIR%%/images/buffer-update_pdf.svgz +%%DATADIR%%/images/buffer-update_pdf2.svgz +%%DATADIR%%/images/buffer-update_pdf3.svgz +%%DATADIR%%/images/buffer-update_pdf4.svgz +%%DATADIR%%/images/buffer-update_pdf5.svgz +%%DATADIR%%/images/buffer-update_ps.svgz +%%DATADIR%%/images/buffer-view.svgz +%%DATADIR%%/images/buffer-view_dvi.svgz +%%DATADIR%%/images/buffer-view_dvi3.svgz +%%DATADIR%%/images/buffer-view_pdf.svgz +%%DATADIR%%/images/buffer-view_pdf2.svgz +%%DATADIR%%/images/buffer-view_pdf3.svgz +%%DATADIR%%/images/buffer-view_pdf4.svgz +%%DATADIR%%/images/buffer-view_pdf5.svgz +%%DATADIR%%/images/buffer-view_ps.svgz +%%DATADIR%%/images/buffer-write-as.svgz +%%DATADIR%%/images/buffer-write.svgz +%%DATADIR%%/images/build-program.svgz %%DATADIR%%/images/busy.gif -%%DATADIR%%/images/change-accept.png -%%DATADIR%%/images/change-next.png -%%DATADIR%%/images/change-reject.png -%%DATADIR%%/images/changes-merge.png -%%DATADIR%%/images/changes-output.png -%%DATADIR%%/images/changes-track.png +%%DATADIR%%/images/change-accept.svgz +%%DATADIR%%/images/change-next.svgz +%%DATADIR%%/images/change-reject.svgz +%%DATADIR%%/images/changes-merge.svgz +%%DATADIR%%/images/changes-output.svgz +%%DATADIR%%/images/changes-track.svgz %%DATADIR%%/images/classic/all-changes-accept.png %%DATADIR%%/images/classic/all-changes-reject.png %%DATADIR%%/images/classic/bookmark-goto.png @@ -564,7 +579,6 @@ share/icons/hicolor/scalable/apps/lyx.sv %%DATADIR%%/images/classic/changes-track.png %%DATADIR%%/images/classic/copy.png %%DATADIR%%/images/classic/cut.png -%%DATADIR%%/images/classic/demote.png %%DATADIR%%/images/classic/depth-decrement.png %%DATADIR%%/images/classic/depth-increment.png %%DATADIR%%/images/classic/dialog-preferences.png @@ -628,8 +642,11 @@ share/icons/hicolor/scalable/apps/lyx.sv %%DATADIR%%/images/classic/nomencl-insert.png %%DATADIR%%/images/classic/note-insert.png %%DATADIR%%/images/classic/note-next.png +%%DATADIR%%/images/classic/outline-down.png +%%DATADIR%%/images/classic/outline-in.png +%%DATADIR%%/images/classic/outline-out.png +%%DATADIR%%/images/classic/outline-up.png %%DATADIR%%/images/classic/paste.png -%%DATADIR%%/images/classic/promote.png %%DATADIR%%/images/classic/redo.png %%DATADIR%%/images/classic/reload.png %%DATADIR%%/images/classic/script-insert_subscript.png @@ -682,1260 +699,1280 @@ share/icons/hicolor/scalable/apps/lyx.sv %%DATADIR%%/images/classic/view-others.png %%DATADIR%%/images/classic/view-split_horizontal.png %%DATADIR%%/images/classic/view-split_vertical.png -%%DATADIR%%/images/closetab.png -%%DATADIR%%/images/copy.png -%%DATADIR%%/images/cut.png -%%DATADIR%%/images/demote.png -%%DATADIR%%/images/depth-decrement.png -%%DATADIR%%/images/depth-increment.png -%%DATADIR%%/images/dialog-preferences.png -%%DATADIR%%/images/dialog-show-new-inset_citation.png -%%DATADIR%%/images/dialog-show-new-inset_graphics.png -%%DATADIR%%/images/dialog-show-new-inset_include.png -%%DATADIR%%/images/dialog-show-new-inset_ref.png -%%DATADIR%%/images/dialog-show_character.png -%%DATADIR%%/images/dialog-show_findreplace.png -%%DATADIR%%/images/dialog-show_mathdelimiter.png -%%DATADIR%%/images/dialog-show_mathmatrix.png -%%DATADIR%%/images/dialog-show_print.png -%%DATADIR%%/images/dialog-show_spellchecker.png -%%DATADIR%%/images/dialog-show_vclog.png -%%DATADIR%%/images/dialog-toggle_findreplaceadv.png -%%DATADIR%%/images/dialog-toggle_toc.png -%%DATADIR%%/images/down.png -%%DATADIR%%/images/editclear.png -%%DATADIR%%/images/ert-insert.png -%%DATADIR%%/images/file-open.png -%%DATADIR%%/images/float-insert_figure.png -%%DATADIR%%/images/float-insert_table.png -%%DATADIR%%/images/font-bold.png -%%DATADIR%%/images/font-emph.png -%%DATADIR%%/images/font-noun.png -%%DATADIR%%/images/font-sans.png -%%DATADIR%%/images/footnote-insert.png -%%DATADIR%%/images/hidetab.png -%%DATADIR%%/images/href-insert.png -%%DATADIR%%/images/index-insert.png -%%DATADIR%%/images/info-insert_buffer_vcs-revision.png -%%DATADIR%%/images/ipa/ipamacro-insert_deco_bottomtiebar.png -%%DATADIR%%/images/ipa/ipamacro-insert_deco_toptiebar.png -%%DATADIR%%/images/ipa/ipamacro-insert_tone-falling.png -%%DATADIR%%/images/ipa/ipamacro-insert_tone-high-rising-falling.png -%%DATADIR%%/images/ipa/ipamacro-insert_tone-high-rising.png -%%DATADIR%%/images/ipa/ipamacro-insert_tone-low-rising.png -%%DATADIR%%/images/ipa/ipamacro-insert_tone-rising.png -%%DATADIR%%/images/ipa/unicode-insert_0x002e.png -%%DATADIR%%/images/ipa/unicode-insert_0x0061.png -%%DATADIR%%/images/ipa/unicode-insert_0x0062.png -%%DATADIR%%/images/ipa/unicode-insert_0x0063.png -%%DATADIR%%/images/ipa/unicode-insert_0x0064.png -%%DATADIR%%/images/ipa/unicode-insert_0x0065.png -%%DATADIR%%/images/ipa/unicode-insert_0x0066.png -%%DATADIR%%/images/ipa/unicode-insert_0x0068.png -%%DATADIR%%/images/ipa/unicode-insert_0x0069.png -%%DATADIR%%/images/ipa/unicode-insert_0x006b.png -%%DATADIR%%/images/ipa/unicode-insert_0x006c.png -%%DATADIR%%/images/ipa/unicode-insert_0x006d.png -%%DATADIR%%/images/ipa/unicode-insert_0x006e.png -%%DATADIR%%/images/ipa/unicode-insert_0x006f.png -%%DATADIR%%/images/ipa/unicode-insert_0x0070.png -%%DATADIR%%/images/ipa/unicode-insert_0x0071.png -%%DATADIR%%/images/ipa/unicode-insert_0x0072.png -%%DATADIR%%/images/ipa/unicode-insert_0x0073.png -%%DATADIR%%/images/ipa/unicode-insert_0x0074.png -%%DATADIR%%/images/ipa/unicode-insert_0x0075.png -%%DATADIR%%/images/ipa/unicode-insert_0x0076.png -%%DATADIR%%/images/ipa/unicode-insert_0x0077.png -%%DATADIR%%/images/ipa/unicode-insert_0x0078.png -%%DATADIR%%/images/ipa/unicode-insert_0x0079.png -%%DATADIR%%/images/ipa/unicode-insert_0x007a.png -%%DATADIR%%/images/ipa/unicode-insert_0x007c.png -%%DATADIR%%/images/ipa/unicode-insert_0x00e6.png -%%DATADIR%%/images/ipa/unicode-insert_0x00e7.png -%%DATADIR%%/images/ipa/unicode-insert_0x00f0.png -%%DATADIR%%/images/ipa/unicode-insert_0x00f8.png -%%DATADIR%%/images/ipa/unicode-insert_0x0127.png -%%DATADIR%%/images/ipa/unicode-insert_0x014b.png -%%DATADIR%%/images/ipa/unicode-insert_0x0153.png -%%DATADIR%%/images/ipa/unicode-insert_0x01c0.png -%%DATADIR%%/images/ipa/unicode-insert_0x01c1.png -%%DATADIR%%/images/ipa/unicode-insert_0x01c2.png -%%DATADIR%%/images/ipa/unicode-insert_0x01c3.png -%%DATADIR%%/images/ipa/unicode-insert_0x0250.png -%%DATADIR%%/images/ipa/unicode-insert_0x0251.png -%%DATADIR%%/images/ipa/unicode-insert_0x0252.png -%%DATADIR%%/images/ipa/unicode-insert_0x0253.png -%%DATADIR%%/images/ipa/unicode-insert_0x0254.png -%%DATADIR%%/images/ipa/unicode-insert_0x0255.png -%%DATADIR%%/images/ipa/unicode-insert_0x0256.png -%%DATADIR%%/images/ipa/unicode-insert_0x0257.png -%%DATADIR%%/images/ipa/unicode-insert_0x0258.png -%%DATADIR%%/images/ipa/unicode-insert_0x0259.png -%%DATADIR%%/images/ipa/unicode-insert_0x025b.png -%%DATADIR%%/images/ipa/unicode-insert_0x025c.png -%%DATADIR%%/images/ipa/unicode-insert_0x025e.png -%%DATADIR%%/images/ipa/unicode-insert_0x025f.png -%%DATADIR%%/images/ipa/unicode-insert_0x0260.png -%%DATADIR%%/images/ipa/unicode-insert_0x0261.png -%%DATADIR%%/images/ipa/unicode-insert_0x0262.png -%%DATADIR%%/images/ipa/unicode-insert_0x0263.png -%%DATADIR%%/images/ipa/unicode-insert_0x0264.png -%%DATADIR%%/images/ipa/unicode-insert_0x0265.png -%%DATADIR%%/images/ipa/unicode-insert_0x0266.png -%%DATADIR%%/images/ipa/unicode-insert_0x0267.png -%%DATADIR%%/images/ipa/unicode-insert_0x0268.png -%%DATADIR%%/images/ipa/unicode-insert_0x026a.png -%%DATADIR%%/images/ipa/unicode-insert_0x026c.png -%%DATADIR%%/images/ipa/unicode-insert_0x026d.png -%%DATADIR%%/images/ipa/unicode-insert_0x026e.png -%%DATADIR%%/images/ipa/unicode-insert_0x026f.png -%%DATADIR%%/images/ipa/unicode-insert_0x0270.png -%%DATADIR%%/images/ipa/unicode-insert_0x0271.png -%%DATADIR%%/images/ipa/unicode-insert_0x0272.png -%%DATADIR%%/images/ipa/unicode-insert_0x0273.png -%%DATADIR%%/images/ipa/unicode-insert_0x0274.png -%%DATADIR%%/images/ipa/unicode-insert_0x0275.png -%%DATADIR%%/images/ipa/unicode-insert_0x0276.png -%%DATADIR%%/images/ipa/unicode-insert_0x0278.png -%%DATADIR%%/images/ipa/unicode-insert_0x0279.png -%%DATADIR%%/images/ipa/unicode-insert_0x027a.png -%%DATADIR%%/images/ipa/unicode-insert_0x027b.png -%%DATADIR%%/images/ipa/unicode-insert_0x027d.png -%%DATADIR%%/images/ipa/unicode-insert_0x027e.png -%%DATADIR%%/images/ipa/unicode-insert_0x0280.png -%%DATADIR%%/images/ipa/unicode-insert_0x0281.png -%%DATADIR%%/images/ipa/unicode-insert_0x0282.png -%%DATADIR%%/images/ipa/unicode-insert_0x0283.png -%%DATADIR%%/images/ipa/unicode-insert_0x0284.png -%%DATADIR%%/images/ipa/unicode-insert_0x0288.png -%%DATADIR%%/images/ipa/unicode-insert_0x0289.png -%%DATADIR%%/images/ipa/unicode-insert_0x028a.png -%%DATADIR%%/images/ipa/unicode-insert_0x028b.png -%%DATADIR%%/images/ipa/unicode-insert_0x028c.png -%%DATADIR%%/images/ipa/unicode-insert_0x028d.png -%%DATADIR%%/images/ipa/unicode-insert_0x028e.png -%%DATADIR%%/images/ipa/unicode-insert_0x028f.png -%%DATADIR%%/images/ipa/unicode-insert_0x0290.png -%%DATADIR%%/images/ipa/unicode-insert_0x0291.png -%%DATADIR%%/images/ipa/unicode-insert_0x0292.png -%%DATADIR%%/images/ipa/unicode-insert_0x0294.png -%%DATADIR%%/images/ipa/unicode-insert_0x0295.png -%%DATADIR%%/images/ipa/unicode-insert_0x0298.png -%%DATADIR%%/images/ipa/unicode-insert_0x0299.png -%%DATADIR%%/images/ipa/unicode-insert_0x029b.png -%%DATADIR%%/images/ipa/unicode-insert_0x029c.png -%%DATADIR%%/images/ipa/unicode-insert_0x029d.png -%%DATADIR%%/images/ipa/unicode-insert_0x029f.png -%%DATADIR%%/images/ipa/unicode-insert_0x02a1.png -%%DATADIR%%/images/ipa/unicode-insert_0x02a2.png -%%DATADIR%%/images/ipa/unicode-insert_0x02b0.png -%%DATADIR%%/images/ipa/unicode-insert_0x02b2.png -%%DATADIR%%/images/ipa/unicode-insert_0x02b7.png -%%DATADIR%%/images/ipa/unicode-insert_0x02bc.png -%%DATADIR%%/images/ipa/unicode-insert_0x02c8.png -%%DATADIR%%/images/ipa/unicode-insert_0x02cc.png -%%DATADIR%%/images/ipa/unicode-insert_0x02d0.png -%%DATADIR%%/images/ipa/unicode-insert_0x02d1.png -%%DATADIR%%/images/ipa/unicode-insert_0x02de.png -%%DATADIR%%/images/ipa/unicode-insert_0x02e0.png -%%DATADIR%%/images/ipa/unicode-insert_0x02e1.png -%%DATADIR%%/images/ipa/unicode-insert_0x02e4.png -%%DATADIR%%/images/ipa/unicode-insert_0x02e5.png -%%DATADIR%%/images/ipa/unicode-insert_0x02e6.png -%%DATADIR%%/images/ipa/unicode-insert_0x02e7.png -%%DATADIR%%/images/ipa/unicode-insert_0x02e8.png -%%DATADIR%%/images/ipa/unicode-insert_0x02e9.png -%%DATADIR%%/images/ipa/unicode-insert_0x02fa.png -%%DATADIR%%/images/ipa/unicode-insert_0x0300.png -%%DATADIR%%/images/ipa/unicode-insert_0x0301.png -%%DATADIR%%/images/ipa/unicode-insert_0x0302.png -%%DATADIR%%/images/ipa/unicode-insert_0x0303.png -%%DATADIR%%/images/ipa/unicode-insert_0x0304.png -%%DATADIR%%/images/ipa/unicode-insert_0x0306.png -%%DATADIR%%/images/ipa/unicode-insert_0x0308.png -%%DATADIR%%/images/ipa/unicode-insert_0x030a.png -%%DATADIR%%/images/ipa/unicode-insert_0x030b.png -%%DATADIR%%/images/ipa/unicode-insert_0x030c.png -%%DATADIR%%/images/ipa/unicode-insert_0x030f.png -%%DATADIR%%/images/ipa/unicode-insert_0x0318.png -%%DATADIR%%/images/ipa/unicode-insert_0x0319.png -%%DATADIR%%/images/ipa/unicode-insert_0x031c.png -%%DATADIR%%/images/ipa/unicode-insert_0x031d.png -%%DATADIR%%/images/ipa/unicode-insert_0x031e.png -%%DATADIR%%/images/ipa/unicode-insert_0x031f.png -%%DATADIR%%/images/ipa/unicode-insert_0x0320.png -%%DATADIR%%/images/ipa/unicode-insert_0x0324.png -%%DATADIR%%/images/ipa/unicode-insert_0x0325.png -%%DATADIR%%/images/ipa/unicode-insert_0x0329.png -%%DATADIR%%/images/ipa/unicode-insert_0x032a.png -%%DATADIR%%/images/ipa/unicode-insert_0x032c.png -%%DATADIR%%/images/ipa/unicode-insert_0x032f.png -%%DATADIR%%/images/ipa/unicode-insert_0x0330.png -%%DATADIR%%/images/ipa/unicode-insert_0x0334.png -%%DATADIR%%/images/ipa/unicode-insert_0x0339.png -%%DATADIR%%/images/ipa/unicode-insert_0x033a.png -%%DATADIR%%/images/ipa/unicode-insert_0x033b.png -%%DATADIR%%/images/ipa/unicode-insert_0x033c.png -%%DATADIR%%/images/ipa/unicode-insert_0x033d.png -%%DATADIR%%/images/ipa/unicode-insert_0x03b2.png -%%DATADIR%%/images/ipa/unicode-insert_0x03b8.png -%%DATADIR%%/images/ipa/unicode-insert_0x03c7.png -%%DATADIR%%/images/ipa/unicode-insert_0x1dc4.png -%%DATADIR%%/images/ipa/unicode-insert_0x1dc5.png -%%DATADIR%%/images/ipa/unicode-insert_0x1dc8.png -%%DATADIR%%/images/ipa/unicode-insert_0x2016.png -%%DATADIR%%/images/ipa/unicode-insert_0x203f.png -%%DATADIR%%/images/ipa/unicode-insert_0x207f.png -%%DATADIR%%/images/ipa/unicode-insert_0x2197.png -%%DATADIR%%/images/ipa/unicode-insert_0x2198.png -%%DATADIR%%/images/ipa/unicode-insert_0x2c71.png -%%DATADIR%%/images/ipa/unicode-insert_0xa71b.png -%%DATADIR%%/images/ipa/unicode-insert_0xa71c.png -%%DATADIR%%/images/label-insert.png -%%DATADIR%%/images/layout-document.png -%%DATADIR%%/images/layout-paragraph.png -%%DATADIR%%/images/layout.png -%%DATADIR%%/images/layout_Chunk.png -%%DATADIR%%/images/layout_Description.png -%%DATADIR%%/images/layout_Enumerate.png -%%DATADIR%%/images/layout_Itemize.png -%%DATADIR%%/images/layout_List.png -%%DATADIR%%/images/layout_LyX-Code.png -%%DATADIR%%/images/layout_Section.png -%%DATADIR%%/images/lyx-quit.png -%%DATADIR%%/images/marginalnote-insert.png -%%DATADIR%%/images/master-buffer-update.png -%%DATADIR%%/images/master-buffer-view.png -%%DATADIR%%/images/math-display.png -%%DATADIR%%/images/math-macro-add-greedy-optional-param.png -%%DATADIR%%/images/math-macro-add-optional-param.png -%%DATADIR%%/images/math-macro-add-param.png -%%DATADIR%%/images/math-macro-append-greedy-param.png -%%DATADIR%%/images/math-macro-make-nonoptional.png -%%DATADIR%%/images/math-macro-make-optional.png -%%DATADIR%%/images/math-macro-remove-greedy-param.png -%%DATADIR%%/images/math-macro-remove-optional-param.png -%%DATADIR%%/images/math-macro-remove-param.png -%%DATADIR%%/images/math-macro_newmacroname_newcommand.png -%%DATADIR%%/images/math-matrix.png -%%DATADIR%%/images/math-mode.png -%%DATADIR%%/images/math-subscript.png -%%DATADIR%%/images/math-superscript.png -%%DATADIR%%/images/math/AC.png -%%DATADIR%%/images/math/APLbox.png -%%DATADIR%%/images/math/APLcomment.png -%%DATADIR%%/images/math/APLdown.png -%%DATADIR%%/images/math/APLdownarrowbox.png -%%DATADIR%%/images/math/APLinput.png -%%DATADIR%%/images/math/APLinv.png -%%DATADIR%%/images/math/APLleftarrowbox.png -%%DATADIR%%/images/math/APLlog.png -%%DATADIR%%/images/math/APLrightarrowbox.png -%%DATADIR%%/images/math/APLstar.png -%%DATADIR%%/images/math/APLup.png -%%DATADIR%%/images/math/APLuparrowbox.png -%%DATADIR%%/images/math/Bbbk.png -%%DATADIR%%/images/math/Finv.png -%%DATADIR%%/images/math/Game.png -%%DATADIR%%/images/math/HF.png -%%DATADIR%%/images/math/Im.png -%%DATADIR%%/images/math/Lleftarrow.png -%%DATADIR%%/images/math/Lsh.png -%%DATADIR%%/images/math/Re.png -%%DATADIR%%/images/math/Rrightarrow.png -%%DATADIR%%/images/math/Rsh.png -%%DATADIR%%/images/math/VHF.png -%%DATADIR%%/images/math/Vvdash.png -%%DATADIR%%/images/math/Ydown.png -%%DATADIR%%/images/math/Yleft.png -%%DATADIR%%/images/math/Yright.png -%%DATADIR%%/images/math/Yup.png -%%DATADIR%%/images/math/acute.png -%%DATADIR%%/images/math/adots.png -%%DATADIR%%/images/math/agemO.png -%%DATADIR%%/images/math/aleph.png -%%DATADIR%%/images/math/alpha.png -%%DATADIR%%/images/math/amalg.png -%%DATADIR%%/images/math/angle.png -%%DATADIR%%/images/math/apprge.png -%%DATADIR%%/images/math/apprle.png -%%DATADIR%%/images/math/approx.png -%%DATADIR%%/images/math/approxeq.png -%%DATADIR%%/images/math/aquarius.png -%%DATADIR%%/images/math/aries.png -%%DATADIR%%/images/math/arrownot.png -%%DATADIR%%/images/math/arrownot2.png -%%DATADIR%%/images/math/arrowvert.png -%%DATADIR%%/images/math/arrowvert2.png -%%DATADIR%%/images/math/ascnode.png -%%DATADIR%%/images/math/ast.png -%%DATADIR%%/images/math/astrosun.png -%%DATADIR%%/images/math/asymp.png -%%DATADIR%%/images/math/ataribox.png -%%DATADIR%%/images/math/backepsilon.png -%%DATADIR%%/images/math/backprime.png -%%DATADIR%%/images/math/backsim.png -%%DATADIR%%/images/math/backsimeq.png -%%DATADIR%%/images/math/backslash.png -%%DATADIR%%/images/math/bar.png -%%DATADIR%%/images/math/baro.png -%%DATADIR%%/images/math/bars.png -%%DATADIR%%/images/math/barwedge.png -%%DATADIR%%/images/math/bbslash.png -%%DATADIR%%/images/math/bcancel.png -%%DATADIR%%/images/math/because.png -%%DATADIR%%/images/math/bell.png -%%DATADIR%%/images/math/beta.png -%%DATADIR%%/images/math/beth.png -%%DATADIR%%/images/math/between.png -%%DATADIR%%/images/math/bigbox.png -%%DATADIR%%/images/math/bigcap.png -%%DATADIR%%/images/math/bigcirc.png -%%DATADIR%%/images/math/bigcup.png -%%DATADIR%%/images/math/bigcurlyvee.png -%%DATADIR%%/images/math/bigcurlywedge.png -%%DATADIR%%/images/math/biginterleave.png -%%DATADIR%%/images/math/bignplus.png -%%DATADIR%%/images/math/bigodot.png -%%DATADIR%%/images/math/bigoplus.png -%%DATADIR%%/images/math/bigotimes.png -%%DATADIR%%/images/math/bigparallel.png -%%DATADIR%%/images/math/bigsqcap.png -%%DATADIR%%/images/math/bigsqcup.png -%%DATADIR%%/images/math/bigstar.png -%%DATADIR%%/images/math/bigtriangledown.png -%%DATADIR%%/images/math/bigtriangleup.png -%%DATADIR%%/images/math/biguplus.png -%%DATADIR%%/images/math/bigvee.png -%%DATADIR%%/images/math/bigwedge.png -%%DATADIR%%/images/math/binampersand.png -%%DATADIR%%/images/math/bindnasrepma.png -%%DATADIR%%/images/math/blacklozenge.png -%%DATADIR%%/images/math/blacksmiley.png -%%DATADIR%%/images/math/blacksquare.png -%%DATADIR%%/images/math/blacktriangle.png -%%DATADIR%%/images/math/blacktriangledown.png -%%DATADIR%%/images/math/blacktriangleleft.png -%%DATADIR%%/images/math/blacktriangleright.png -%%DATADIR%%/images/math/boldsymbol.png -%%DATADIR%%/images/math/bot.png -%%DATADIR%%/images/math/bowtie.png -%%DATADIR%%/images/math/bowtie2.png -%%DATADIR%%/images/math/box2.png -%%DATADIR%%/images/math/boxast.png -%%DATADIR%%/images/math/boxbar.png -%%DATADIR%%/images/math/boxbox.png -%%DATADIR%%/images/math/boxbslash.png -%%DATADIR%%/images/math/boxcircle.png -%%DATADIR%%/images/math/boxdot.png -%%DATADIR%%/images/math/boxempty.png -%%DATADIR%%/images/math/boxminus.png -%%DATADIR%%/images/math/boxplus.png -%%DATADIR%%/images/math/boxslash.png -%%DATADIR%%/images/math/boxtimes.png -%%DATADIR%%/images/math/breve.png -%%DATADIR%%/images/math/brokenvert.png -%%DATADIR%%/images/math/bullet.png -%%DATADIR%%/images/math/bumpeq.png -%%DATADIR%%/images/math/bumpeq2.png -%%DATADIR%%/images/math/cancel.png -%%DATADIR%%/images/math/cancelto.png -%%DATADIR%%/images/math/cancer.png -%%DATADIR%%/images/math/cap.png -%%DATADIR%%/images/math/cap2.png -%%DATADIR%%/images/math/capricornus.png -%%DATADIR%%/images/math/cases.png -%%DATADIR%%/images/math/cdot.png -%%DATADIR%%/images/math/cdotp.png -%%DATADIR%%/images/math/cdots.png -%%DATADIR%%/images/math/cent.png -%%DATADIR%%/images/math/centerdot.png -%%DATADIR%%/images/math/check.png -%%DATADIR%%/images/math/checked.png -%%DATADIR%%/images/math/checkedbox2.png -%%DATADIR%%/images/math/checkmark.png -%%DATADIR%%/images/math/chi.png -%%DATADIR%%/images/math/circ.png -%%DATADIR%%/images/math/circeq.png -%%DATADIR%%/images/math/circle2.png -%%DATADIR%%/images/math/circle3.png -%%DATADIR%%/images/math/circlearrowleft.png -%%DATADIR%%/images/math/circlearrowright.png -%%DATADIR%%/images/math/circledR.png -%%DATADIR%%/images/math/circledS.png -%%DATADIR%%/images/math/circledast.png -%%DATADIR%%/images/math/circledcirc.png -%%DATADIR%%/images/math/circleddash.png -%%DATADIR%%/images/math/clock.png -%%DATADIR%%/images/math/clubsuit.png -%%DATADIR%%/images/math/colon.png -%%DATADIR%%/images/math/colonapprox.png -%%DATADIR%%/images/math/colonapprox2.png -%%DATADIR%%/images/math/coloneq.png -%%DATADIR%%/images/math/coloneq2.png -%%DATADIR%%/images/math/coloneqq.png -%%DATADIR%%/images/math/coloneqq2.png -%%DATADIR%%/images/math/colonsim.png -%%DATADIR%%/images/math/colonsim2.png -%%DATADIR%%/images/math/complement.png -%%DATADIR%%/images/math/cong.png -%%DATADIR%%/images/math/conjunction.png -%%DATADIR%%/images/math/coprod.png -%%DATADIR%%/images/math/cup.png -%%DATADIR%%/images/math/cup2.png -%%DATADIR%%/images/math/curlyeqprec.png -%%DATADIR%%/images/math/curlyeqsucc.png -%%DATADIR%%/images/math/curlyvee.png -%%DATADIR%%/images/math/curlyveedownarrow.png -%%DATADIR%%/images/math/curlyveeuparrow.png -%%DATADIR%%/images/math/curlywedge.png -%%DATADIR%%/images/math/curlywedgedownarrow.png -%%DATADIR%%/images/math/curlywedgeuparrow.png -%%DATADIR%%/images/math/currency.png -%%DATADIR%%/images/math/curvearrowleft.png -%%DATADIR%%/images/math/curvearrowright.png -%%DATADIR%%/images/math/dagger.png -%%DATADIR%%/images/math/daleth.png -%%DATADIR%%/images/math/dasharrow.png -%%DATADIR%%/images/math/dashleftarrow.png -%%DATADIR%%/images/math/dashrightarrow.png -%%DATADIR%%/images/math/dashv.png -%%DATADIR%%/images/math/davidsstar.png -%%DATADIR%%/images/math/dblcolon.png -%%DATADIR%%/images/math/ddagger.png -%%DATADIR%%/images/math/ddddot.png -%%DATADIR%%/images/math/dddot.png -%%DATADIR%%/images/math/ddot.png -%%DATADIR%%/images/math/ddots.png -%%DATADIR%%/images/math/delim.png -%%DATADIR%%/images/math/delta.png -%%DATADIR%%/images/math/delta2.png -%%DATADIR%%/images/math/descnode.png -%%DATADIR%%/images/math/diagdown.png -%%DATADIR%%/images/math/diagup.png -%%DATADIR%%/images/math/diameter.png -%%DATADIR%%/images/math/diamond.png -%%DATADIR%%/images/math/diamond2.png -%%DATADIR%%/images/math/diamondsuit.png -%%DATADIR%%/images/math/digamma.png -%%DATADIR%%/images/math/div.png -%%DATADIR%%/images/math/divideontimes.png -%%DATADIR%%/images/math/dot.png -%%DATADIR%%/images/math/doteq.png -%%DATADIR%%/images/math/doteq2.png -%%DATADIR%%/images/math/doteqdot.png -%%DATADIR%%/images/math/dotplus.png -%%DATADIR%%/images/math/dots.png -%%DATADIR%%/images/math/dotsb.png -%%DATADIR%%/images/math/dotsc.png -%%DATADIR%%/images/math/dotsi.png -%%DATADIR%%/images/math/dotsint.png -%%DATADIR%%/images/math/dotsintop.png -%%DATADIR%%/images/math/dotsm.png -%%DATADIR%%/images/math/dotso.png -%%DATADIR%%/images/math/doublebarwedge.png -%%DATADIR%%/images/math/doublecap.png -%%DATADIR%%/images/math/doublecup.png -%%DATADIR%%/images/math/downarrow.png -%%DATADIR%%/images/math/downarrow2.png -%%DATADIR%%/images/math/downarrow3.png -%%DATADIR%%/images/math/downdownarrows.png -%%DATADIR%%/images/math/downharpoonleft.png -%%DATADIR%%/images/math/downharpoonright.png -%%DATADIR%%/images/math/earth.png -%%DATADIR%%/images/math/eighthnote.png -%%DATADIR%%/images/math/ell.png -%%DATADIR%%/images/math/empty.png -%%DATADIR%%/images/math/emptyset.png -%%DATADIR%%/images/math/epsilon.png -%%DATADIR%%/images/math/eqcirc.png -%%DATADIR%%/images/math/eqcolon.png -%%DATADIR%%/images/math/eqcolon2.png -%%DATADIR%%/images/math/eqqcolon.png -%%DATADIR%%/images/math/eqqcolon2.png -%%DATADIR%%/images/math/eqsim.png -%%DATADIR%%/images/math/eqslantgtr.png -%%DATADIR%%/images/math/eqslantless.png -%%DATADIR%%/images/math/equation.png -%%DATADIR%%/images/math/equiv.png -%%DATADIR%%/images/math/eta.png -%%DATADIR%%/images/math/eth.png -%%DATADIR%%/images/math/exists.png -%%DATADIR%%/images/math/export-others.png -%%DATADIR%%/images/math/fallingdotseq.png -%%DATADIR%%/images/math/fatbslash.png -%%DATADIR%%/images/math/fatsemi.png -%%DATADIR%%/images/math/fatslash.png -%%DATADIR%%/images/math/female.png -%%DATADIR%%/images/math/fint.png -%%DATADIR%%/images/math/fintop.png -%%DATADIR%%/images/math/flat.png -%%DATADIR%%/images/math/font.png -%%DATADIR%%/images/math/forall.png -%%DATADIR%%/images/math/frac-square.png -%%DATADIR%%/images/math/frac.png -%%DATADIR%%/images/math/frown.png -%%DATADIR%%/images/math/frownie.png -%%DATADIR%%/images/math/fullmoon.png -%%DATADIR%%/images/math/fullnote.png -%%DATADIR%%/images/math/functions.png -%%DATADIR%%/images/math/gamma.png -%%DATADIR%%/images/math/gamma2.png -%%DATADIR%%/images/math/ge.png -%%DATADIR%%/images/math/gemini.png -%%DATADIR%%/images/math/geq.png -%%DATADIR%%/images/math/geqq.png -%%DATADIR%%/images/math/geqslant.png -%%DATADIR%%/images/math/gets.png -%%DATADIR%%/images/math/gg.png -%%DATADIR%%/images/math/ggg.png -%%DATADIR%%/images/math/gggtr.png -%%DATADIR%%/images/math/gimel.png -%%DATADIR%%/images/math/gluon.png -%%DATADIR%%/images/math/gnapprox.png -%%DATADIR%%/images/math/gneq.png -%%DATADIR%%/images/math/gneqq.png -%%DATADIR%%/images/math/gnsim.png -%%DATADIR%%/images/math/grave.png -%%DATADIR%%/images/math/gtrapprox.png -%%DATADIR%%/images/math/gtrdot.png -%%DATADIR%%/images/math/gtreqless.png -%%DATADIR%%/images/math/gtreqqless.png -%%DATADIR%%/images/math/gtrless.png -%%DATADIR%%/images/math/gtrsim.png -%%DATADIR%%/images/math/gvertneqq.png -%%DATADIR%%/images/math/halfnote.png -%%DATADIR%%/images/math/hat.png -%%DATADIR%%/images/math/hbar.png -%%DATADIR%%/images/math/heartsuit.png -%%DATADIR%%/images/math/hexagon.png -%%DATADIR%%/images/math/hexstar.png -%%DATADIR%%/images/math/hookleftarrow.png -%%DATADIR%%/images/math/hookrightarrow.png -%%DATADIR%%/images/math/hphantom.png -%%DATADIR%%/images/math/hslash.png -%%DATADIR%%/images/math/iddots.png -%%DATADIR%%/images/math/idotsint.png -%%DATADIR%%/images/math/iff.png -%%DATADIR%%/images/math/iiiint.png -%%DATADIR%%/images/math/iiiintop.png -%%DATADIR%%/images/math/iiint.png -%%DATADIR%%/images/math/iiintop.png -%%DATADIR%%/images/math/iint.png -%%DATADIR%%/images/math/iintop.png -%%DATADIR%%/images/math/imath.png -%%DATADIR%%/images/math/impliedby.png -%%DATADIR%%/images/math/implies.png -%%DATADIR%%/images/math/in.png -%%DATADIR%%/images/math/infty.png -%%DATADIR%%/images/math/inplus.png -%%DATADIR%%/images/math/int.png -%%DATADIR%%/images/math/intercal.png -%%DATADIR%%/images/math/interleave.png -%%DATADIR%%/images/math/intop.png -%%DATADIR%%/images/math/invdiameter.png -%%DATADIR%%/images/math/inve.png -%%DATADIR%%/images/math/invneg.png -%%DATADIR%%/images/math/iota.png -%%DATADIR%%/images/math/jmath.png -%%DATADIR%%/images/math/join2.png -%%DATADIR%%/images/math/jupiter.png -%%DATADIR%%/images/math/kappa.png -%%DATADIR%%/images/math/kreuz.png *** DIFF OUTPUT TRUNCATED AT 1000 LINES *** From owner-svn-ports-all@freebsd.org Sun Jul 3 14:14:34 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 7E21EB9058B; Sun, 3 Jul 2016 14:14: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 mx1.freebsd.org (Postfix) with ESMTPS id 3FD64216A; Sun, 3 Jul 2016 14:14: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 u63EEXAM084652; Sun, 3 Jul 2016 14:14:33 GMT (envelope-from pi@FreeBSD.org) Received: (from pi@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u63EEX68084649; Sun, 3 Jul 2016 14:14:33 GMT (envelope-from pi@FreeBSD.org) Message-Id: <201607031414.u63EEX68084649@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pi set sender to pi@FreeBSD.org using -f From: Kurt Jaeger Date: Sun, 3 Jul 2016 14:14:33 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r417971 - head/sysutils/linux-crashplan X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 03 Jul 2016 14:14:34 -0000 Author: pi Date: Sun Jul 3 14:14:33 2016 New Revision: 417971 URL: https://svnweb.freebsd.org/changeset/ports/417971 Log: sysutils/linux-crashplan: 4.5.0 -> 4.7.0 PR: 210248 Submitted by: ludwigp-fbsdbugz@chip-web.com, Samuel Grossman Approved by: Nuno Subtil (maintainer) Modified: head/sysutils/linux-crashplan/Makefile head/sysutils/linux-crashplan/distinfo head/sysutils/linux-crashplan/pkg-plist Modified: head/sysutils/linux-crashplan/Makefile ============================================================================== --- head/sysutils/linux-crashplan/Makefile Sun Jul 3 13:16:17 2016 (r417970) +++ head/sysutils/linux-crashplan/Makefile Sun Jul 3 14:14:33 2016 (r417971) @@ -2,8 +2,8 @@ # $FreeBSD$ PORTNAME= crashplan -DISTVERSION= 4.5.0 -PORTREVISION= 1 +DISTVERSION= 4.7.0 +PORTREVISION= 0 CATEGORIES= sysutils java linux MASTER_SITES= https://download.code42.com/installs/linux/install/CrashPlan/ PKGNAMEPREFIX= linux- @@ -32,6 +32,7 @@ ONLY_FOR_ARCHS= i386 amd64 NO_BUILD= yes CRASHDIR= ${PREFIX}/share/crashplan +LOGDIR= /var/log/crashplan do-install: @${MKDIR} ${STAGEDIR}${CRASHDIR} @@ -42,7 +43,8 @@ do-install: ${ECHO_CMD} > ${STAGEDIR}${CRASHDIR}/install.vars ${ECHO_CMD} "TARGETDIR=${CRASHDIR}" >> ${STAGEDIR}${CRASHDIR}/install.vars ${ECHO_CMD} "BINSDIR=${CRASHDIR}/bin" >> ${STAGEDIR}${CRASHDIR}/install.vars - ${ECHO_CMD} "JAVA_COMMON=${JAVA}" >> ${STAGEDIR}${CRASHDIR}/install.vars + ${ECHO_CMD} "JAVACOMMON=${JAVA}" >> ${STAGEDIR}${CRASHDIR}/install.vars + ${ECHO_CMD} "LOGDIR=${LOGDIR}" >> ${STAGEDIR}${CRASHDIR}/install.vars ${CAT} ${WRKSRC}/install.defaults >> ${STAGEDIR}${CRASHDIR}/install.vars .include Modified: head/sysutils/linux-crashplan/distinfo ============================================================================== --- head/sysutils/linux-crashplan/distinfo Sun Jul 3 13:16:17 2016 (r417970) +++ head/sysutils/linux-crashplan/distinfo Sun Jul 3 14:14:33 2016 (r417971) @@ -1,2 +1,2 @@ -SHA256 (CrashPlan_4.5.0_Linux.tgz) = 8a3ca9c01bf55051223f4f40e7dc086244fa07ea724a9f5d4552cf2752ad157b -SIZE (CrashPlan_4.5.0_Linux.tgz) = 44356534 +SHA256 (CrashPlan_4.7.0_Linux.tgz) = bb3c52259cf56759c004b9c3126a8c483bf1795f2bfa4575d35de2cdb577a0e4 +SIZE (CrashPlan_4.7.0_Linux.tgz) = 47479484 Modified: head/sysutils/linux-crashplan/pkg-plist ============================================================================== --- head/sysutils/linux-crashplan/pkg-plist Sun Jul 3 13:16:17 2016 (r417970) +++ head/sysutils/linux-crashplan/pkg-plist Sun Jul 3 14:14:33 2016 (r417971) @@ -3,7 +3,6 @@ bin/CrashPlanDesktop %%DATADIR%%/bin/CrashPlanEngine %%DATADIR%%/bin/restartLinux.sh %%DATADIR%%/bin/run.conf -%%DATADIR%%/bin/uninstall.sh %%DATADIR%%/conf/custom_sample.properties %%DATADIR%%/conf/default.service.xml %%DATADIR%%/conf/service.log.xml @@ -33,8 +32,11 @@ bin/CrashPlanDesktop %%DATADIR%%/lang/txt_th.properties %%DATADIR%%/lang/txt_zh.properties %%DATADIR%%/lang/txt_zh_TW.properties +%%DATADIR%%/lib/aopalliance.jar %%DATADIR%%/lib/bcpkix-jdk15on.jar %%DATADIR%%/lib/bcprov-jdk15on.jar +%%DATADIR%%/lib/c42-shared-engine.jar +%%DATADIR%%/lib/c42_protolib_client.jar %%DATADIR%%/lib/c42_protolib_shared.jar %%DATADIR%%/lib/com.backup42.desktop.jar %%DATADIR%%/lib/comfyj-2.10.jar @@ -49,7 +51,12 @@ bin/CrashPlanDesktop %%DATADIR%%/lib/ezmorph.jar %%DATADIR%%/lib/gson.jar %%DATADIR%%/lib/guava.jar +%%DATADIR%%/lib/guice.jar +%%DATADIR%%/lib/guice-multibindings.jar %%DATADIR%%/lib/javassist-3.20.0.jar +%%DATADIR%%/lib/javax.inject.jar +%%DATADIR%%/lib/javax.servlet-api-jar.jar +%%DATADIR%%/lib/jcip-annotations-1.0-1.jar %%DATADIR%%/lib/jetty-continuation-9.2.9.v20150224.jar %%DATADIR%%/lib/jetty-http-9.2.9.v20150224.jar %%DATADIR%%/lib/jetty-io-9.2.9.v20150224.jar @@ -72,7 +79,9 @@ bin/CrashPlanDesktop %%DATADIR%%/lib/log4j-iostreams-2.3.jar %%DATADIR%%/lib/log4j-jcl-2.1.jar %%DATADIR%%/lib/log4j-slf4j-impl.jar +%%DATADIR%%/lib/metrics-core.jar %%DATADIR%%/lib/miglayout15-swt.jar +%%DATADIR%%/lib/netty-all.jar %%DATADIR%%/lib/org.eclipse.core.commands_3.6.1.v20120814-150512.jar %%DATADIR%%/lib/org.eclipse.equinox.common_3.6.100.v20120522-1841.jar %%DATADIR%%/lib/org.eclipse.jface_3.8.101.v20120817-083647.jar @@ -81,7 +90,6 @@ bin/CrashPlanDesktop %%DATADIR%%/lib/reflections-0.9.10.jar %%DATADIR%%/lib/rhino.jar %%DATADIR%%/lib/sbbi-upnplib.jar -%%DATADIR%%/lib/servlet-api-3.1.jar %%DATADIR%%/lib/slf4j-api.jar %%DATADIR%%/lib/sqlite-jdbc.jar %%DATADIR%%/lib/swt-64.jar @@ -93,10 +101,15 @@ bin/CrashPlanDesktop %%DATADIR%%/lib/websocket-common-9.2.9.v20150224.jar %%DATADIR%%/lib/websocket-server-9.2.9.v20150224.jar %%DATADIR%%/lib/websocket-servlet-9.2.9.v20150224.jar +%%DATADIR%%/libc42archive.so +%%DATADIR%%/libc42archive64.so +%%DATADIR%%/libc42core.so %%DATADIR%%/libjniwrap.so %%DATADIR%%/libjniwrap64.so %%DATADIR%%/libjtux.so %%DATADIR%%/libjtux64.so +%%DATADIR%%/libleveldb.so +%%DATADIR%%/libleveldb64.so %%DATADIR%%/libmd5.so %%DATADIR%%/libmd564.so %%DATADIR%%/skin/icon_app_128x128.png @@ -110,7 +123,6 @@ bin/CrashPlanDesktop %%DATADIR%%/skin/window_bg.jpg %%DATADIR%%/upgrade/start.bat %%DATADIR%%/upgrade/start.sh -%%DATADIR%%/upgrade/startDesktop.bat %%DATADIR%%/upgrade/startDesktop.sh %%DATADIR%%/upgrade/startDesktopLinux.sh %%DATADIR%%/upgrade/startDesktopSolaris.sh From owner-svn-ports-all@freebsd.org Sun Jul 3 14:47:13 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 5C321B90ADC; Sun, 3 Jul 2016 14:47:13 +0000 (UTC) (envelope-from danilo@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 2E4982DAE; Sun, 3 Jul 2016 14:47:13 +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 u63ElCBg095873; Sun, 3 Jul 2016 14:47:12 GMT (envelope-from danilo@FreeBSD.org) Received: (from danilo@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u63ElCG6095871; Sun, 3 Jul 2016 14:47:12 GMT (envelope-from danilo@FreeBSD.org) Message-Id: <201607031447.u63ElCG6095871@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: danilo set sender to danilo@FreeBSD.org using -f From: Danilo Egea Gondolfo Date: Sun, 3 Jul 2016 14:47:12 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r417972 - head/sysutils/entr X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 03 Jul 2016 14:47:13 -0000 Author: danilo Date: Sun Jul 3 14:47:12 2016 New Revision: 417972 URL: https://svnweb.freebsd.org/changeset/ports/417972 Log: - Update to 3.6 Modified: head/sysutils/entr/Makefile head/sysutils/entr/distinfo Modified: head/sysutils/entr/Makefile ============================================================================== --- head/sysutils/entr/Makefile Sun Jul 3 14:14:33 2016 (r417971) +++ head/sysutils/entr/Makefile Sun Jul 3 14:47:12 2016 (r417972) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= entr -PORTVERSION= 3.5 +PORTVERSION= 3.6 CATEGORIES= sysutils MASTER_SITES= http://entrproject.org/code/ \ https://bitbucket.org/eradman/entr/get/ @@ -13,7 +13,7 @@ COMMENT= Runs arbitrary commands when fi # All the code used in FreeBSD is under ISCL license. LICENSE= ISCL -WRKSRC= ${WRKDIR}/eradman-entr-697748046070 +WRKSRC= ${WRKDIR}/eradman-entr-c15b0be493fc MAKEFILE= Makefile.bsd MAKE_ARGS= MANPREFIX=${MANPREFIX}/man Modified: head/sysutils/entr/distinfo ============================================================================== --- head/sysutils/entr/distinfo Sun Jul 3 14:14:33 2016 (r417971) +++ head/sysutils/entr/distinfo Sun Jul 3 14:47:12 2016 (r417972) @@ -1,2 +1,3 @@ -SHA256 (entr-3.5.tar.gz) = e3e455346bcaf1e9099547eb050fbf667a96610b34304e5513f90265a5976416 -SIZE (entr-3.5.tar.gz) = 22222 +TIMESTAMP = 1467557098 +SHA256 (entr-3.6.tar.gz) = a42746d81c548d7e557d500f93422b8ec9731d719309eb2601b8be69ae0dc8eb +SIZE (entr-3.6.tar.gz) = 22548 From owner-svn-ports-all@freebsd.org Sun Jul 3 14:56:03 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 2A1F4B90BED; Sun, 3 Jul 2016 14:56:03 +0000 (UTC) (envelope-from rakuco@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id EB1DB20E7; Sun, 3 Jul 2016 14:56:02 +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 u63Eu2u2099534; Sun, 3 Jul 2016 14:56:02 GMT (envelope-from rakuco@FreeBSD.org) Received: (from rakuco@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u63Eu1cW099532; Sun, 3 Jul 2016 14:56:01 GMT (envelope-from rakuco@FreeBSD.org) Message-Id: <201607031456.u63Eu1cW099532@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: rakuco set sender to rakuco@FreeBSD.org using -f From: Raphael Kubo da Costa Date: Sun, 3 Jul 2016 14:56:01 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r417973 - in head/security: pinentry pinentry-qt4 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 03 Jul 2016 14:56:03 -0000 Author: rakuco Date: Sun Jul 3 14:56:01 2016 New Revision: 417973 URL: https://svnweb.freebsd.org/changeset/ports/417973 Log: Bump PORTREVISION in security/pinentry and pinentry-qt4 after r415872. r415872 changed the binary name that security/pinentry-qt4 installs without bumping PORTREVISION in the affected ports, so if security/pinentry gets rebuilt after this change but security/pinentry-qt4 is not the pinentry symlink will be broken. Similarly, if one builds security/pinentry-qt{4,5} without updating security/pinentry, the pinentry symlink will also be broken. PR: 209556 MFH: 2016Q3 Modified: head/security/pinentry-qt4/Makefile head/security/pinentry/Makefile Modified: head/security/pinentry-qt4/Makefile ============================================================================== --- head/security/pinentry-qt4/Makefile Sun Jul 3 14:47:12 2016 (r417972) +++ head/security/pinentry-qt4/Makefile Sun Jul 3 14:56:01 2016 (r417973) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= pinentry -PORTREVISION= 0 +PORTREVISION= 1 COMMENT= Qt 4 version of the GnuPG password dialog Modified: head/security/pinentry/Makefile ============================================================================== --- head/security/pinentry/Makefile Sun Jul 3 14:47:12 2016 (r417972) +++ head/security/pinentry/Makefile Sun Jul 3 14:56:01 2016 (r417973) @@ -3,7 +3,7 @@ PORTNAME= pinentry PORTVERSION= 0.9.7 -PORTREVISION?= 0 +PORTREVISION?= 1 CATEGORIES= security MASTER_SITES= GNUPG/pinentry From owner-svn-ports-all@freebsd.org Sun Jul 3 15:17:03 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 167C7B8F0FE; Sun, 3 Jul 2016 15:17: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 mx1.freebsd.org (Postfix) with ESMTPS id DB23229C5; Sun, 3 Jul 2016 15:17: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 u63FH2JZ007425; Sun, 3 Jul 2016 15:17:02 GMT (envelope-from lme@FreeBSD.org) Received: (from lme@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u63FH16E007423; Sun, 3 Jul 2016 15:17:01 GMT (envelope-from lme@FreeBSD.org) Message-Id: <201607031517.u63FH16E007423@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: lme set sender to lme@FreeBSD.org using -f From: Lars Engels Date: Sun, 3 Jul 2016 15:17:01 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r417974 - head/sysutils/iohyve X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 03 Jul 2016 15:17:03 -0000 Author: lme Date: Sun Jul 3 15:17:01 2016 New Revision: 417974 URL: https://svnweb.freebsd.org/changeset/ports/417974 Log: Update to 0.7.6 PR: 210546 [1], 210668 [2] Submitted by: [1] Trent Thompson , [2] Christian Schwarz Modified: head/sysutils/iohyve/Makefile head/sysutils/iohyve/distinfo Modified: head/sysutils/iohyve/Makefile ============================================================================== --- head/sysutils/iohyve/Makefile Sun Jul 3 14:56:01 2016 (r417973) +++ head/sysutils/iohyve/Makefile Sun Jul 3 15:17:01 2016 (r417974) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= iohyve -PORTVERSION= 0.7.5 +PORTVERSION= 0.7.6 CATEGORIES= sysutils MAINTAINER= lme@FreeBSD.org @@ -16,11 +16,7 @@ GH_ACCOUNT= pr1ntf NO_BUILD= yes NO_ARCH= yes -PLIST_FILES= etc/rc.d/iohyve man/man8/iohyve.8.gz sbin/iohyve - -do-install: - ${INSTALL_SCRIPT} ${WRKSRC}/rc.d/iohyve ${STAGEDIR}${PREFIX}/etc/rc.d - ${INSTALL_SCRIPT} ${WRKSRC}/iohyve ${STAGEDIR}${PREFIX}/sbin - ${INSTALL_MAN} ${WRKSRC}/iohyve.8 ${STAGEDIR}${PREFIX}/man/man8 +do-patch: + ${REINPLACE_CMD} 's%\$$(PREFIX)%${STAGEDIR}/$$(PREFIX)%g' ${WRKSRC}/Makefile .include Modified: head/sysutils/iohyve/distinfo ============================================================================== --- head/sysutils/iohyve/distinfo Sun Jul 3 14:56:01 2016 (r417973) +++ head/sysutils/iohyve/distinfo Sun Jul 3 15:17:01 2016 (r417974) @@ -1,2 +1,3 @@ -SHA256 (pr1ntf-iohyve-0.7.5_GH0.tar.gz) = 803bdeff69650209edca0570f232cb89aa33b844aef38967b6f146152c4214ae -SIZE (pr1ntf-iohyve-0.7.5_GH0.tar.gz) = 19760 +TIMESTAMP = 1467139724 +SHA256 (pr1ntf-iohyve-0.7.6_GH0.tar.gz) = 248756a466c54b2c9f2d9cb70b0247ea2d135858ffae7d633dabc347090760f6 +SIZE (pr1ntf-iohyve-0.7.6_GH0.tar.gz) = 22246 From owner-svn-ports-all@freebsd.org Sun Jul 3 15:53:04 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id D28BCB8FED1; Sun, 3 Jul 2016 15:53:04 +0000 (UTC) (envelope-from pawel@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id AD9B22B4A; Sun, 3 Jul 2016 15:53:04 +0000 (UTC) (envelope-from pawel@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u63Fr3aC022205; Sun, 3 Jul 2016 15:53:03 GMT (envelope-from pawel@FreeBSD.org) Received: (from pawel@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u63Fr3lC022200; Sun, 3 Jul 2016 15:53:03 GMT (envelope-from pawel@FreeBSD.org) Message-Id: <201607031553.u63Fr3lC022200@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pawel set sender to pawel@FreeBSD.org using -f From: Pawel Pekala Date: Sun, 3 Jul 2016 15:53:03 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r417975 - in head/games/openmw: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 03 Jul 2016 15:53:04 -0000 Author: pawel Date: Sun Jul 3 15:53:03 2016 New Revision: 417975 URL: https://svnweb.freebsd.org/changeset/ports/417975 Log: Update to version 0.39.0 Changelog: https://github.com/OpenMW/openmw/releases/tag/openmw-0.39.0 PR: 210729 Submitted by: Tobias Kortkamp (maintainer) Deleted: head/games/openmw/files/patch-apps_essimporter_converter.hpp head/games/openmw/files/patch-apps_essimporter_convertinventory.cpp head/games/openmw/files/patch-apps_openmw_crashcatcher.cpp head/games/openmw/files/patch-apps_openmw_mwmechanics_spells.cpp head/games/openmw/files/patch-apps_openmw_mwmechanics_spells.hpp head/games/openmw/files/patch-apps_openmw_mwworld_projectilemanager.hpp head/games/openmw/files/patch-apps_openmw_mwworld_refdata.hpp head/games/openmw/files/patch-apps_openmw_mwworld_worldimp.cpp head/games/openmw/files/patch-components_esm_spellstate.cpp head/games/openmw/files/patch-components_esm_spellstate.hpp head/games/openmw/files/patch-components_resource_bulletshape.cpp head/games/openmw/files/patch-components_sceneutil_lightcontroller.cpp Modified: head/games/openmw/Makefile head/games/openmw/distinfo head/games/openmw/files/patch-CMakeLists.txt head/games/openmw/files/patch-apps_wizard_CMakeLists.txt head/games/openmw/pkg-plist Modified: head/games/openmw/Makefile ============================================================================== --- head/games/openmw/Makefile Sun Jul 3 15:17:01 2016 (r417974) +++ head/games/openmw/Makefile Sun Jul 3 15:53:03 2016 (r417975) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= openmw -PORTVERSION= 0.38.0 +PORTVERSION= 0.39.0 DISTVERSIONPREFIX= openmw- CATEGORIES= games @@ -24,10 +24,12 @@ BROKEN_FreeBSD_9= does not build USE_GITHUB= yes GH_ACCOUNT= OpenMW -USES= cmake:outsource compiler:c++11-lib ninja openal pkgconfig +USES= cmake:outsource compiler:c++14-lang ninja openal pkgconfig USE_GL= gl -USE_QT5= qmake_build buildtools_build core widgets network opengl +USE_QT5= qmake_build buildtools_build core gui network opengl \ + printsupport widgets USE_SDL= sdl2 +USE_XORG= xt CMAKE_ARGS= -DCMAKE_BUILD_TYPE=Release \ -DDESIRED_QT_VERSION=5 \ @@ -37,7 +39,7 @@ CMAKE_ARGS= -DCMAKE_BUILD_TYPE=Release \ -DBUILD_LAUNCHER=ON \ -DBUILD_MWINIIMPORTER=ON \ -DBUILD_ESSIMPORTER=ON \ - -DBUILD_OPENCS=OFF \ + -DBUILD_OPENCS=ON \ -DBUILD_WIZARD=ON \ -DBUILD_WITH_CODE_COVERAGE=OFF \ -DBUILD_UNITTEST=OFF \ Modified: head/games/openmw/distinfo ============================================================================== --- head/games/openmw/distinfo Sun Jul 3 15:17:01 2016 (r417974) +++ head/games/openmw/distinfo Sun Jul 3 15:53:03 2016 (r417975) @@ -1,2 +1,2 @@ -SHA256 (OpenMW-openmw-openmw-0.38.0_GH0.tar.gz) = c16a44ee9a787dcae61a373625d39733868d213fd6e8ccd86ab9e7ac00ecb85a -SIZE (OpenMW-openmw-openmw-0.38.0_GH0.tar.gz) = 4137263 +SHA256 (OpenMW-openmw-openmw-0.39.0_GH0.tar.gz) = b0d294b0814099bd93326f7b86dd84fb727d38dd536bf104272112e6d70ae720 +SIZE (OpenMW-openmw-openmw-0.39.0_GH0.tar.gz) = 4764754 Modified: head/games/openmw/files/patch-CMakeLists.txt ============================================================================== --- head/games/openmw/files/patch-CMakeLists.txt Sun Jul 3 15:17:01 2016 (r417974) +++ head/games/openmw/files/patch-CMakeLists.txt Sun Jul 3 15:53:03 2016 (r417975) @@ -1,11 +1,11 @@ ---- CMakeLists.txt.orig 2016-01-12 16:11:28 UTC +--- CMakeLists.txt.orig 2016-06-30 21:09:52 UTC +++ CMakeLists.txt -@@ -224,7 +224,7 @@ if (USE_QT) - set (OSG_QT osgQt) +@@ -296,7 +296,7 @@ find_package(Boost REQUIRED COMPONENTS $ + find_package(SDL2 REQUIRED) + find_package(OpenAL REQUIRED) + find_package(Bullet REQUIRED) +-if (NOT BULLET_FOUND OR BULLET_VERSION VERSION_LESS 283) ++if (NOT BULLET_FOUND OR BULLET_VERSION VERSION_LESS 282) + message(FATAL_ERROR "OpenMW requires Bullet version 2.83 or later") endif() --find_package(OpenSceneGraph 3.2.0 REQUIRED osgDB osgViewer osgText osgGA osgAnimation osgParticle ${OSG_QT} osgUtil osgFX) -+find_package(OpenSceneGraph 3.2.0 REQUIRED osgDB osgViewer osgText osgGA osgAnimation osgParticle osgUtil osgFX) - - include_directories(${OPENSCENEGRAPH_INCLUDE_DIRS}) - Modified: head/games/openmw/files/patch-apps_wizard_CMakeLists.txt ============================================================================== --- head/games/openmw/files/patch-apps_wizard_CMakeLists.txt Sun Jul 3 15:17:01 2016 (r417974) +++ head/games/openmw/files/patch-apps_wizard_CMakeLists.txt Sun Jul 3 15:53:03 2016 (r417975) @@ -1,6 +1,6 @@ ---- apps/wizard/CMakeLists.txt.orig 2016-01-12 16:11:28 UTC +--- apps/wizard/CMakeLists.txt.orig 2016-04-06 11:40:42 UTC +++ apps/wizard/CMakeLists.txt -@@ -150,6 +150,7 @@ endif() +@@ -147,6 +147,7 @@ endif() # Workaround for binutil => 2.23 problem when linking, should be fixed eventually upstream if (UNIX AND NOT APPLE) Modified: head/games/openmw/pkg-plist ============================================================================== --- head/games/openmw/pkg-plist Sun Jul 3 15:17:01 2016 (r417974) +++ head/games/openmw/pkg-plist Sun Jul 3 15:53:03 2016 (r417975) @@ -1,15 +1,18 @@ bin/bsatool bin/esmtool bin/openmw +bin/openmw-cs bin/openmw-essimporter bin/openmw-iniimporter bin/openmw-launcher bin/openmw-wizard %%ETCDIR%%/gamecontrollerdb.txt +%%ETCDIR%%/openmw-cs.cfg %%ETCDIR%%/openmw.cfg %%ETCDIR%%/settings-default.cfg %%ETCDIR%%/version share/appdata/openmw.appdata.xml +share/applications/openmw-cs.desktop share/applications/openmw.desktop %%DATADIR%%/resources/defaultfilters %%DATADIR%%/resources/mygui/DejaVuLGCSansMono.ttf @@ -97,9 +100,16 @@ share/applications/openmw.desktop %%DATADIR%%/resources/mygui/openmw_wait_dialog_progressbar.layout %%DATADIR%%/resources/mygui/openmw_windows.skin.xml %%DATADIR%%/resources/mygui/skins.xml +%%DATADIR%%/resources/shaders/lighting.glsl +%%DATADIR%%/resources/shaders/objects_fragment.glsl +%%DATADIR%%/resources/shaders/objects_vertex.glsl +%%DATADIR%%/resources/shaders/parallax.glsl +%%DATADIR%%/resources/shaders/terrain_fragment.glsl +%%DATADIR%%/resources/shaders/terrain_vertex.glsl %%DATADIR%%/resources/shaders/water_fragment.glsl %%DATADIR%%/resources/shaders/water_nm.png %%DATADIR%%/resources/shaders/water_vertex.glsl %%DATADIR%%/resources/version +share/pixmaps/openmw-cs.png share/pixmaps/openmw.png @dir %%DATADIR%%/data From owner-svn-ports-all@freebsd.org Sun Jul 3 16:00:32 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 36E62B8FF76; Sun, 3 Jul 2016 16:00:32 +0000 (UTC) (envelope-from pawel@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id DFD712CB4; Sun, 3 Jul 2016 16:00:31 +0000 (UTC) (envelope-from pawel@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u63G0VPQ022643; Sun, 3 Jul 2016 16:00:31 GMT (envelope-from pawel@FreeBSD.org) Received: (from pawel@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u63G0U2P022640; Sun, 3 Jul 2016 16:00:30 GMT (envelope-from pawel@FreeBSD.org) Message-Id: <201607031600.u63G0U2P022640@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pawel set sender to pawel@FreeBSD.org using -f From: Pawel Pekala Date: Sun, 3 Jul 2016 16:00:30 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r417976 - head/devel/py-traitlets X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 03 Jul 2016 16:00:32 -0000 Author: pawel Date: Sun Jul 3 16:00:30 2016 New Revision: 417976 URL: https://svnweb.freebsd.org/changeset/ports/417976 Log: - Update to version 4.2.2 [1] - Fix spelling in pkg-descr PR: 210759 Submitted by: maintainer [1] Modified: head/devel/py-traitlets/Makefile head/devel/py-traitlets/distinfo (contents, props changed) head/devel/py-traitlets/pkg-descr (contents, props changed) Modified: head/devel/py-traitlets/Makefile ============================================================================== --- head/devel/py-traitlets/Makefile Sun Jul 3 15:53:03 2016 (r417975) +++ head/devel/py-traitlets/Makefile Sun Jul 3 16:00:30 2016 (r417976) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= traitlets -PORTVERSION= 4.2.1 +PORTVERSION= 4.2.2 CATEGORIES= devel python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} Modified: head/devel/py-traitlets/distinfo ============================================================================== --- head/devel/py-traitlets/distinfo Sun Jul 3 15:53:03 2016 (r417975) +++ head/devel/py-traitlets/distinfo Sun Jul 3 16:00:30 2016 (r417976) @@ -1,3 +1,3 @@ -TIMESTAMP = 1463676640 -SHA256 (traitlets-4.2.1.tar.gz) = 76eba33c89723b8fc024f950cacaf5bf2ef37999642cc9a61f4e7c1ca5cf0ac0 -SIZE (traitlets-4.2.1.tar.gz) = 79869 +TIMESTAMP = 1467453710 +SHA256 (traitlets-4.2.2.tar.gz) = 7d7e3070484b2fe490fa55e0acf7023afc5ed9ddabec57405f25c355158e152a +SIZE (traitlets-4.2.2.tar.gz) = 79332 Modified: head/devel/py-traitlets/pkg-descr ============================================================================== --- head/devel/py-traitlets/pkg-descr Sun Jul 3 15:53:03 2016 (r417975) +++ head/devel/py-traitlets/pkg-descr Sun Jul 3 16:00:30 2016 (r417976) @@ -1,5 +1,5 @@ Traitlets is a framework that lets Python classes have attributes with type checking, dynamically calculated default values, and 'on change' callbacks. -Keeps configuration in a varietry of formats, including json. +Keeps configuration in a variety of formats, including JSON. WWW: https://pypi.python.org/pypi/traitlets/ From owner-svn-ports-all@freebsd.org Sun Jul 3 16:08:47 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id BDF0AB9038E; Sun, 3 Jul 2016 16:08:47 +0000 (UTC) (envelope-from pawel@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 8ED5A21A6; Sun, 3 Jul 2016 16:08:47 +0000 (UTC) (envelope-from pawel@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u63G8k4A026556; Sun, 3 Jul 2016 16:08:46 GMT (envelope-from pawel@FreeBSD.org) Received: (from pawel@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u63G8k7U026553; Sun, 3 Jul 2016 16:08:46 GMT (envelope-from pawel@FreeBSD.org) Message-Id: <201607031608.u63G8k7U026553@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pawel set sender to pawel@FreeBSD.org using -f From: Pawel Pekala Date: Sun, 3 Jul 2016 16:08:46 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r417977 - head/misc/py-tqdm X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 03 Jul 2016 16:08:47 -0000 Author: pawel Date: Sun Jul 3 16:08:46 2016 New Revision: 417977 URL: https://svnweb.freebsd.org/changeset/ports/417977 Log: - Update to version 4.7.6 [1] - Don't set GH_ACCOUNT to it's default setting PR: 210745 Submitted by: Neel Chauhan (maintainer) [1] Modified: head/misc/py-tqdm/Makefile head/misc/py-tqdm/distinfo Modified: head/misc/py-tqdm/Makefile ============================================================================== --- head/misc/py-tqdm/Makefile Sun Jul 3 16:00:30 2016 (r417976) +++ head/misc/py-tqdm/Makefile Sun Jul 3 16:08:46 2016 (r417977) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= tqdm -PORTVERSION= 4.7.4 +PORTVERSION= 4.7.6 DISTVERSIONPREFIX= v CATEGORIES= misc PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -12,7 +12,6 @@ COMMENT= Fast, extensible progress bar f LICENSE= MIT USE_GITHUB= yes -GH_ACCOUNT= tqdm USES= python USE_PYTHON= autoplist distutils Modified: head/misc/py-tqdm/distinfo ============================================================================== --- head/misc/py-tqdm/distinfo Sun Jul 3 16:00:30 2016 (r417976) +++ head/misc/py-tqdm/distinfo Sun Jul 3 16:08:46 2016 (r417977) @@ -1,3 +1,3 @@ -TIMESTAMP = 1465128975 -SHA256 (tqdm-tqdm-v4.7.4_GH0.tar.gz) = 748454a14974a3d5b6db7a683aaccc8db669b457ee4a412a750691ade9d25ec5 -SIZE (tqdm-tqdm-v4.7.4_GH0.tar.gz) = 608797 +TIMESTAMP = 1467390651 +SHA256 (tqdm-tqdm-v4.7.6_GH0.tar.gz) = 5792510a2283a1dff2f62ae613ac291b3926899a16c946887cbbd6cba7fc8320 +SIZE (tqdm-tqdm-v4.7.6_GH0.tar.gz) = 608834 From owner-svn-ports-all@freebsd.org Sun Jul 3 16:20:30 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 4B3E2B9056F; Sun, 3 Jul 2016 16:20:30 +0000 (UTC) (envelope-from pawel@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 1C4D126D0; Sun, 3 Jul 2016 16:20:30 +0000 (UTC) (envelope-from pawel@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u63GKT9u030357; Sun, 3 Jul 2016 16:20:29 GMT (envelope-from pawel@FreeBSD.org) Received: (from pawel@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u63GKTJd030355; Sun, 3 Jul 2016 16:20:29 GMT (envelope-from pawel@FreeBSD.org) Message-Id: <201607031620.u63GKTJd030355@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pawel set sender to pawel@FreeBSD.org using -f From: Pawel Pekala Date: Sun, 3 Jul 2016 16:20:29 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r417978 - head/devel/extra-cmake-modules X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 03 Jul 2016 16:20:30 -0000 Author: pawel Date: Sun Jul 3 16:20:28 2016 New Revision: 417978 URL: https://svnweb.freebsd.org/changeset/ports/417978 Log: Update to version 5.23.0 PR: 210678 Submitted by: maintainer Modified: head/devel/extra-cmake-modules/Makefile head/devel/extra-cmake-modules/distinfo Modified: head/devel/extra-cmake-modules/Makefile ============================================================================== --- head/devel/extra-cmake-modules/Makefile Sun Jul 3 16:08:46 2016 (r417977) +++ head/devel/extra-cmake-modules/Makefile Sun Jul 3 16:20:28 2016 (r417978) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= extra-cmake-modules -PORTVERSION= 5.22.0 +PORTVERSION= 5.23.0 DISTVERSIONPREFIX= v CATEGORIES= devel Modified: head/devel/extra-cmake-modules/distinfo ============================================================================== --- head/devel/extra-cmake-modules/distinfo Sun Jul 3 16:08:46 2016 (r417977) +++ head/devel/extra-cmake-modules/distinfo Sun Jul 3 16:20:28 2016 (r417978) @@ -1,2 +1,3 @@ -SHA256 (KDE-extra-cmake-modules-v5.22.0_GH0.tar.gz) = e38c7bd9959027e98d5938b17e07a9ad4332a0c38f36d24e52baf46e487dd94f -SIZE (KDE-extra-cmake-modules-v5.22.0_GH0.tar.gz) = 335787 +TIMESTAMP = 1467162353 +SHA256 (KDE-extra-cmake-modules-v5.23.0_GH0.tar.gz) = 6e17eafd44ccc2b2b0f7038e3661db4385486d57bd9bab91f4a5202f4779b103 +SIZE (KDE-extra-cmake-modules-v5.23.0_GH0.tar.gz) = 335781 From owner-svn-ports-all@freebsd.org Sun Jul 3 16:32:42 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id CB87DB907C7; Sun, 3 Jul 2016 16:32:42 +0000 (UTC) (envelope-from pi@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 86BF02C83; Sun, 3 Jul 2016 16:32: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 u63GWf4B037402; Sun, 3 Jul 2016 16:32:41 GMT (envelope-from pi@FreeBSD.org) Received: (from pi@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u63GWfXM037396; Sun, 3 Jul 2016 16:32:41 GMT (envelope-from pi@FreeBSD.org) Message-Id: <201607031632.u63GWfXM037396@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pi set sender to pi@FreeBSD.org using -f From: Kurt Jaeger Date: Sun, 3 Jul 2016 16:32:41 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r417979 - in head/mail/ezmlm-idx: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 03 Jul 2016 16:32:42 -0000 Author: pi Date: Sun Jul 3 16:32:41 2016 New Revision: 417979 URL: https://svnweb.freebsd.org/changeset/ports/417979 Log: mail/ezmlm-idx: 7.1.1 -> 7.2.2 - added mysql build fix PR: 209879 Changes: http://untroubled.org/ezmlm/archive/7.2.2/CHANGES Submitted by: Robert Schulze Reviewed by: Vladimir Krstulja , pawel Added: head/mail/ezmlm-idx/files/patch-sub-mysql.c (contents, props changed) Deleted: head/mail/ezmlm-idx/files/patch-ezmlm-manage-N Modified: head/mail/ezmlm-idx/Makefile head/mail/ezmlm-idx/distinfo head/mail/ezmlm-idx/pkg-descr head/mail/ezmlm-idx/pkg-plist Modified: head/mail/ezmlm-idx/Makefile ============================================================================== --- head/mail/ezmlm-idx/Makefile Sun Jul 3 16:20:28 2016 (r417978) +++ head/mail/ezmlm-idx/Makefile Sun Jul 3 16:32:41 2016 (r417979) @@ -2,19 +2,14 @@ # $FreeBSD$ PORTNAME= ezmlm-idx -PORTVERSION= 7.1.1 -PORTREVISION= 2 +PORTVERSION= 7.2.2 CATEGORIES= mail -MASTER_SITES= http://www.ezmlm.org/archive/${PORTVERSION}/ \ - http://ezmlm.sericyb.com.au/archive/${PORTVERSION}/ +MASTER_SITES= http://untroubled.org/ezmlm/archive/${PORTVERSION}/ MAINTAINER= ports@FreeBSD.org COMMENT= Improved version of the ezmlm mailing list manager -MAKE_JOBS_UNSAFE= yes - LICENSE= GPLv2 -LEGAL_TEXT= No license -- see http://cr.yp.to/softwarelaw.html USES= qmail:run @@ -22,6 +17,9 @@ CONFLICTS= ezmlm-0.* SUB_FILES= pkg-message +MAKE_JOBS_UNSAFE= yes +LEGAL_TEXT= No license -- see http://cr.yp.to/softwarelaw.html + OPTIONS_DEFINE= DB DOCS OPTIONS_SINGLE= DB OPTIONS_SINGLE_DB= MYSQL PGSQL SQLITE @@ -30,13 +28,12 @@ MYSQL_DESC= Build the MySQL extension PGSQL_DESC= Build the PostgreSQL extension SQLITE_DESC= Build the SQLite3 extension - .include ALL_TARGET= it .if ${PORT_OPTIONS:MMYSQL} -USE_MYSQL= yes +USES+= mysql EXTRACT_INCLUDE+= -I${LOCALBASE}/include/mysql EXTRACT_LIB+= -L${LOCALBASE}/lib/mysql -lmysqlclient -lm ALL_TARGET+= mysql Modified: head/mail/ezmlm-idx/distinfo ============================================================================== --- head/mail/ezmlm-idx/distinfo Sun Jul 3 16:20:28 2016 (r417978) +++ head/mail/ezmlm-idx/distinfo Sun Jul 3 16:32:41 2016 (r417979) @@ -1,2 +1,3 @@ -SHA256 (ezmlm-idx-7.1.1.tar.gz) = 0d2a9d99fa410cc26c9d00c000ede4977b606ba9fd483c5a7a00b87bf8db2383 -SIZE (ezmlm-idx-7.1.1.tar.gz) = 718954 +TIMESTAMP = 1464686562 +SHA256 (ezmlm-idx-7.2.2.tar.gz) = 5d8840678ad8c2b84350564a065149c055ace3d3e21b169590ebd5abca30c2a8 +SIZE (ezmlm-idx-7.2.2.tar.gz) = 742451 Added: head/mail/ezmlm-idx/files/patch-sub-mysql.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/mail/ezmlm-idx/files/patch-sub-mysql.c Sun Jul 3 16:32:41 2016 (r417979) @@ -0,0 +1,11 @@ +--- sub-mysql.c.orig 2016-07-03 16:26:00 UTC ++++ sub-mysql.c +@@ -6,7 +6,7 @@ + #include "subdb.h" + #include + #include +-#include ++#include + #include + + static stralloc line = {0}; Modified: head/mail/ezmlm-idx/pkg-descr ============================================================================== --- head/mail/ezmlm-idx/pkg-descr Sun Jul 3 16:20:28 2016 (r417978) +++ head/mail/ezmlm-idx/pkg-descr Sun Jul 3 16:32:41 2016 (r417979) @@ -17,4 +17,4 @@ ezmlm-idx adds the following features: - SQL support (MySQL or PostgreSQL) for centrally administered distributed lists -WWW: http://www.ezmlm.org/ +WWW: http://www.untroubled.org/ezmlm/ Modified: head/mail/ezmlm-idx/pkg-plist ============================================================================== --- head/mail/ezmlm-idx/pkg-plist Sun Jul 3 16:20:28 2016 (r417978) +++ head/mail/ezmlm-idx/pkg-plist Sun Jul 3 16:32:41 2016 (r417979) @@ -1,5 +1,6 @@ bin/ezmlm-accept bin/ezmlm-archive +bin/ezmlm-cgi bin/ezmlm-check bin/ezmlm-checksub bin/ezmlm-clean @@ -10,6 +11,7 @@ bin/ezmlm-gate bin/ezmlm-get bin/ezmlm-glconf bin/ezmlm-idx +bin/ezmlm-import bin/ezmlm-issubn bin/ezmlm-limit bin/ezmlm-list @@ -19,6 +21,7 @@ bin/ezmlm-moderate bin/ezmlm-reject bin/ezmlm-request bin/ezmlm-return +bin/ezmlm-rmtab bin/ezmlm-send bin/ezmlm-split bin/ezmlm-store @@ -600,11 +603,9 @@ etc/ezmlm/sv/text/unsub-confirm etc/ezmlm/sv/text/unsub-nop etc/ezmlm/sv/text/unsub-ok lib/ezmlm/sub-std.so -%%MYSQL%%lib/ezmlm/sub-mysql.so -%%PGSQL%%lib/ezmlm/sub-pgsql.so -%%SQLITE%%lib/ezmlm/sub-sqlite3.so man/man1/ezmlm-accept.1.gz man/man1/ezmlm-archive.1.gz +man/man1/ezmlm-cgi.1.gz man/man1/ezmlm-check.1.gz man/man1/ezmlm-checksub.1.gz man/man1/ezmlm-clean.1.gz @@ -615,6 +616,7 @@ man/man1/ezmlm-gate.1.gz man/man1/ezmlm-get.1.gz man/man1/ezmlm-glconf.1.gz man/man1/ezmlm-idx.1.gz +man/man1/ezmlm-import.1.gz man/man1/ezmlm-issubn.1.gz man/man1/ezmlm-limit.1.gz man/man1/ezmlm-list.1.gz @@ -624,6 +626,7 @@ man/man1/ezmlm-moderate.1.gz man/man1/ezmlm-reject.1.gz man/man1/ezmlm-request.1.gz man/man1/ezmlm-return.1.gz +man/man1/ezmlm-rmtab.1.gz man/man1/ezmlm-send.1.gz man/man1/ezmlm-split.1.gz man/man1/ezmlm-store.1.gz @@ -636,6 +639,8 @@ man/man5/ezmlm.5.gz man/man5/ezmlmglrc.5.gz man/man5/ezmlmrc.5.gz man/man5/ezmlmsubrc.5.gz +%%MYSQL%%lib/ezmlm/sub-mysql.so +%%PGSQL%%lib/ezmlm/sub-pgsql.so %%PORTDOCS%%%%DOCSDIR%%/BLURB %%PORTDOCS%%%%DOCSDIR%%/CHANGES %%PORTDOCS%%%%DOCSDIR%%/ChangeLog @@ -649,3 +654,4 @@ man/man5/ezmlmsubrc.5.gz %%PORTDOCS%%%%DOCSDIR%%/README.std %%PORTDOCS%%%%DOCSDIR%%/TODO %%PORTDOCS%%%%DOCSDIR%%/UPGRADE +%%SQLITE%%lib/ezmlm/sub-sqlite3.so From owner-svn-ports-all@freebsd.org Sun Jul 3 16:43:34 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id B6A75B90981; Sun, 3 Jul 2016 16:43:34 +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 mx1.freebsd.org (Postfix) with ESMTPS id 875212FFF; Sun, 3 Jul 2016 16:43:34 +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 u63GhXZZ041129; Sun, 3 Jul 2016 16:43:33 GMT (envelope-from novel@FreeBSD.org) Received: (from novel@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u63GhXv2041127; Sun, 3 Jul 2016 16:43:33 GMT (envelope-from novel@FreeBSD.org) Message-Id: <201607031643.u63GhXv2041127@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: novel set sender to novel@FreeBSD.org using -f From: Roman Bogorodskiy Date: Sun, 3 Jul 2016 16:43:33 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r417980 - head/deskutils/virt-manager X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 03 Jul 2016 16:43:34 -0000 Author: novel Date: Sun Jul 3 16:43:33 2016 New Revision: 417980 URL: https://svnweb.freebsd.org/changeset/ports/417980 Log: deskutils/virt-manager: update to 1.4.0 Modified: head/deskutils/virt-manager/Makefile head/deskutils/virt-manager/distinfo Modified: head/deskutils/virt-manager/Makefile ============================================================================== --- head/deskutils/virt-manager/Makefile Sun Jul 3 16:32:41 2016 (r417979) +++ head/deskutils/virt-manager/Makefile Sun Jul 3 16:43:33 2016 (r417980) @@ -1,8 +1,7 @@ # $FreeBSD$ PORTNAME= virt-manager -PORTVERSION= 1.3.2 -PORTREVISION= 1 +PORTVERSION= 1.4.0 CATEGORIES= deskutils net-mgmt MASTER_SITES= http://virt-manager.org/download/sources/${PORTNAME}/ \ LOCAL/jgh/deskutils/${PORTNAME}/ Modified: head/deskutils/virt-manager/distinfo ============================================================================== --- head/deskutils/virt-manager/distinfo Sun Jul 3 16:32:41 2016 (r417979) +++ head/deskutils/virt-manager/distinfo Sun Jul 3 16:43:33 2016 (r417980) @@ -1,2 +1,3 @@ -SHA256 (virt-manager-1.3.2.tar.gz) = 270c1f631fd029fee5291e83f50d69e261db666aa952c184643bc6cece77fdb3 -SIZE (virt-manager-1.3.2.tar.gz) = 2564573 +TIMESTAMP = 1467501076 +SHA256 (virt-manager-1.4.0.tar.gz) = bf31a40cc48500cbf87a0e93a5838fc3f6ce4e2fa03f8bce6aa2615625e6caca +SIZE (virt-manager-1.4.0.tar.gz) = 2667631 From owner-svn-ports-all@freebsd.org Sun Jul 3 17:44:50 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 35E81B9067F; Sun, 3 Jul 2016 17:44:50 +0000 (UTC) (envelope-from riggs@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id EDBE026B8; Sun, 3 Jul 2016 17:44:49 +0000 (UTC) (envelope-from riggs@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u63HingK063729; Sun, 3 Jul 2016 17:44:49 GMT (envelope-from riggs@FreeBSD.org) Received: (from riggs@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u63Him5V063726; Sun, 3 Jul 2016 17:44:48 GMT (envelope-from riggs@FreeBSD.org) Message-Id: <201607031744.u63Him5V063726@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: riggs set sender to riggs@FreeBSD.org using -f From: Thomas Zander Date: Sun, 3 Jul 2016 17:44:48 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r417981 - head/multimedia/cx88 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 03 Jul 2016 17:44:50 -0000 Author: riggs Date: Sun Jul 3 17:44:48 2016 New Revision: 417981 URL: https://svnweb.freebsd.org/changeset/ports/417981 Log: Update to upstream version 1.5.0 PR: 210629 Submitted by: jason.harmening@gmail.com (maintainer) Modified: head/multimedia/cx88/Makefile head/multimedia/cx88/distinfo head/multimedia/cx88/pkg-plist Modified: head/multimedia/cx88/Makefile ============================================================================== --- head/multimedia/cx88/Makefile Sun Jul 3 16:43:33 2016 (r417980) +++ head/multimedia/cx88/Makefile Sun Jul 3 17:44:48 2016 (r417981) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= cx88 -PORTVERSION= 1.4.11 -PORTREVISION= 2 +PORTVERSION= 1.5.0 CATEGORIES= multimedia MASTER_SITES= ftp://corona.homeunix.net/ports/cx88/ @@ -14,7 +13,7 @@ LICENSE= BSD2CLAUSE LIB_DEPENDS= libjson-c.so:devel/json-c BUILD_DEPENDS= ${LOCALBASE}/lib/libezxml.a:textproc/ezxml \ - libtuner>=1.1.2:multimedia/libtuner + libtuner>=1.1.3:multimedia/libtuner MAKE_ARGS+= LIBTUNER_LIB=${LOCALBASE}/lib/libtuner LIBTUNER_HEADER=${LOCALBASE}/include/libtuner KMODDIR=${KMODDIR} PREFIX=${STAGEDIR}${PREFIX} MAKE_JOBS_UNSAFE= yes @@ -46,6 +45,10 @@ MAKE_ARGS+= -D WITH_HAL .endif .endif +.if (${OSVERSION} >= 1003500) +MAKE_ARGS+= -D CX88_USE_IIC +.endif + MAKE_ARGS+= DEFAULT_XML_CONFIG="${EXAMPLESDIR}/cx88.xml.sample" .include Modified: head/multimedia/cx88/distinfo ============================================================================== --- head/multimedia/cx88/distinfo Sun Jul 3 16:43:33 2016 (r417980) +++ head/multimedia/cx88/distinfo Sun Jul 3 17:44:48 2016 (r417981) @@ -1,2 +1,3 @@ -SHA256 (cx88-1.4.11.tar.gz) = a6625d228bccedee3c58a6981635a9e7d32aa44ff7853e628beaecc2724786a4 -SIZE (cx88-1.4.11.tar.gz) = 194929 +TIMESTAMP = 1467565307 +SHA256 (cx88-1.5.0.tar.gz) = 71f78839dceb9d24600a447d6cae03ef368831c5a00e962e5586dd54db41ba29 +SIZE (cx88-1.5.0.tar.gz) = 196292 Modified: head/multimedia/cx88/pkg-plist ============================================================================== --- head/multimedia/cx88/pkg-plist Sun Jul 3 16:43:33 2016 (r417980) +++ head/multimedia/cx88/pkg-plist Sun Jul 3 17:44:48 2016 (r417981) @@ -1,24 +1,22 @@ bin/cx88 %%EXAMPLESDIR%%/cx88.xml.sample -%%EXAMPLESDIR%%/remote.cpp %%EXAMPLESDIR%%/cx88_audio_enable.cpp +%%EXAMPLESDIR%%/remote.cpp +%%EXAMPLESDIR%%/Makefile %%EXAMPLESDIR%%/cx88_audio_client.cpp -%%EXAMPLESDIR%%/hd3k_analog_ubuf.cpp -%%EXAMPLESDIR%%/hd5k_analog_ubuf.cpp %%EXAMPLESDIR%%/cx88_mpeg_client.cpp -%%EXAMPLESDIR%%/hd3k_analog_kbuf.cpp +%%EXAMPLESDIR%%/cx88_video_client.cpp %%EXAMPLESDIR%%/tuner_config -include/iicdev/iicdev_ioctl.h include/cx88/cx88_common_ioctl.h include/cx88/cx88_mpeg_ioctl.h include/cx88/cx88_video_ioctl.h include/cx88/cx88_audio_ioctl.h /%%KMODDIR%%/cx88.ko -/%%KMODDIR%%/cx88i2c.ko /%%KMODDIR%%/iicdev.ko /%%KMODDIR%%/cx88ir.ko /%%KMODDIR%%/cx88mpegcore.ko /%%KMODDIR%%/cx88mpeg.ko +/%%KMODDIR%%/cx88videocore.ko /%%KMODDIR%%/cx88video.ko /%%KMODDIR%%/cx88audiocore.ko /%%KMODDIR%%/cx88audio.ko From owner-svn-ports-all@freebsd.org Sun Jul 3 17:51:17 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id C790DB907D5; Sun, 3 Jul 2016 17:51: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 mx1.freebsd.org (Postfix) with ESMTPS id 95A07296F; Sun, 3 Jul 2016 17:51: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 u63HpG72066734; Sun, 3 Jul 2016 17:51:16 GMT (envelope-from pi@FreeBSD.org) Received: (from pi@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u63HpGS0066733; Sun, 3 Jul 2016 17:51:16 GMT (envelope-from pi@FreeBSD.org) Message-Id: <201607031751.u63HpGS0066733@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pi set sender to pi@FreeBSD.org using -f From: Kurt Jaeger Date: Sun, 3 Jul 2016 17:51:16 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r417982 - head/x11/workrave X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 03 Jul 2016 17:51:17 -0000 Author: pi Date: Sun Jul 3 17:51:16 2016 New Revision: 417982 URL: https://svnweb.freebsd.org/changeset/ports/417982 Log: x11/workrave: Limit Python build dependency to 2.7 - because build-dep devel/py-cheetah is also limited to python2.7 PR: 209923 Submitted by: Iblis Lin Modified: head/x11/workrave/Makefile Modified: head/x11/workrave/Makefile ============================================================================== --- head/x11/workrave/Makefile Sun Jul 3 17:44:48 2016 (r417981) +++ head/x11/workrave/Makefile Sun Jul 3 17:51:16 2016 (r417982) @@ -15,7 +15,7 @@ LICENSE= GPLv3+ BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}cheetah>0:devel/py-cheetah LIB_DEPENDS= libgdome.so:textproc/gdome2 -USES= gettext gmake pathfix pkgconfig python +USES= gettext gmake pathfix pkgconfig python:2.7 USE_XORG= recordproto x11 xext xmu xscrnsaver xtst USE_GNOME= intlhack gconf2 gtkmm24 GNU_CONFIGURE= yes From owner-svn-ports-all@freebsd.org Sun Jul 3 17:55:07 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 05242B909E4; Sun, 3 Jul 2016 17:55:07 +0000 (UTC) (envelope-from pi@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id C6C022EF5; Sun, 3 Jul 2016 17:55:06 +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 u63Ht5vf067677; Sun, 3 Jul 2016 17:55:05 GMT (envelope-from pi@FreeBSD.org) Received: (from pi@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u63Ht51f067676; Sun, 3 Jul 2016 17:55:05 GMT (envelope-from pi@FreeBSD.org) Message-Id: <201607031755.u63Ht51f067676@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pi set sender to pi@FreeBSD.org using -f From: Kurt Jaeger Date: Sun, 3 Jul 2016 17:55:05 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r417983 - head/devel/py-cheetah X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 03 Jul 2016 17:55:07 -0000 Author: pi Date: Sun Jul 3 17:55:05 2016 New Revision: 417983 URL: https://svnweb.freebsd.org/changeset/ports/417983 Log: devel/py-cheetah: set to python2.7 only port PR: 209922 Submitted by: Iblis Lin Approved by: nivit (maintainer timeout) Modified: head/devel/py-cheetah/Makefile Modified: head/devel/py-cheetah/Makefile ============================================================================== --- head/devel/py-cheetah/Makefile Sun Jul 3 17:51:16 2016 (r417982) +++ head/devel/py-cheetah/Makefile Sun Jul 3 17:55:05 2016 (r417983) @@ -4,7 +4,7 @@ PORTNAME= cheetah PORTVERSION= 2.4.4 PORTREVISION= 1 -CATEGORIES= devel textproc www python +CATEGORIES= devel textproc www python:2.7 MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} DISTNAME= Cheetah-${DISTVERSION} From owner-svn-ports-all@freebsd.org Sun Jul 3 18:05:10 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 6E1BBB90BD6; Sun, 3 Jul 2016 18:05:10 +0000 (UTC) (envelope-from pawel@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 47D452309; Sun, 3 Jul 2016 18:05:10 +0000 (UTC) (envelope-from pawel@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u63I59Hf071489; Sun, 3 Jul 2016 18:05:09 GMT (envelope-from pawel@FreeBSD.org) Received: (from pawel@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u63I59AC071484; Sun, 3 Jul 2016 18:05:09 GMT (envelope-from pawel@FreeBSD.org) Message-Id: <201607031805.u63I59AC071484@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pawel set sender to pawel@FreeBSD.org using -f From: Pawel Pekala Date: Sun, 3 Jul 2016 18:05:09 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r417984 - in head/x11: . xkb-switch xkb-switch/files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 03 Jul 2016 18:05:10 -0000 Author: pawel Date: Sun Jul 3 18:05:08 2016 New Revision: 417984 URL: https://svnweb.freebsd.org/changeset/ports/417984 Log: Small program that allows to query and change the XKB layout state from command line. WWW: https://github.com/ierton/xkb-switch PR: 210501 Submitted by: Dmitri Goutnik Added: head/x11/xkb-switch/ head/x11/xkb-switch/Makefile (contents, props changed) head/x11/xkb-switch/distinfo (contents, props changed) head/x11/xkb-switch/files/ head/x11/xkb-switch/files/patch-CMakeLists.txt (contents, props changed) head/x11/xkb-switch/pkg-descr (contents, props changed) Modified: head/x11/Makefile Modified: head/x11/Makefile ============================================================================== --- head/x11/Makefile Sun Jul 3 17:55:05 2016 (r417983) +++ head/x11/Makefile Sun Jul 3 18:05:08 2016 (r417984) @@ -395,6 +395,7 @@ SUBDIR += xineramaproto SUBDIR += xinit SUBDIR += xinput + SUBDIR += xkb-switch SUBDIR += xkbcomp SUBDIR += xkbctrl SUBDIR += xkbevd Added: head/x11/xkb-switch/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/x11/xkb-switch/Makefile Sun Jul 3 18:05:08 2016 (r417984) @@ -0,0 +1,32 @@ +# Created by: Dmitri Goutnik +# $FreeBSD$ + +PORTNAME= xkb-switch +PORTVERSION= 0.0.20160417 +CATEGORIES= x11 + +MAINTAINER= dg@syrec.org +COMMENT= Switch your X keyboard layouts from the command line + +LICENSE= GPLv3 + +USE_GITHUB= yes +GH_ACCOUNT= ierton +GH_TAGNAME= e6266a1 + +USES= cmake +USE_XORG= x11 xkbfile +USE_LDCONFIG= yes + +OPTIONS_DEFINE= DOCS + +PLIST_FILES= bin/xkb-switch \ + lib/libxkbswitch.so + +PORTDOCS= README.md + +post-install-DOCS-on: + @${MKDIR} ${STAGEDIR}${DOCSDIR} + ${INSTALL_DATA} ${PORTDOCS:S,^,${WRKSRC}/,} ${STAGEDIR}${DOCSDIR} + +.include Added: head/x11/xkb-switch/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/x11/xkb-switch/distinfo Sun Jul 3 18:05:08 2016 (r417984) @@ -0,0 +1,3 @@ +TIMESTAMP = 1467568131 +SHA256 (ierton-xkb-switch-0.0.20160417-e6266a1_GH0.tar.gz) = 5dd873c6a89a07fe18261a01eb168a2d23da47603ca0f2bd531afd68f0a90da7 +SIZE (ierton-xkb-switch-0.0.20160417-e6266a1_GH0.tar.gz) = 18840 Added: head/x11/xkb-switch/files/patch-CMakeLists.txt ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/x11/xkb-switch/files/patch-CMakeLists.txt Sun Jul 3 18:05:08 2016 (r417984) @@ -0,0 +1,14 @@ +--- CMakeLists.txt.orig 2016-04-17 08:55:32 UTC ++++ CMakeLists.txt +@@ -4,6 +4,11 @@ PROJECT( XKB-SWITCH ) + + FIND_PROGRAM(CTAGS ctags) + ++FIND_PACKAGE(X11 REQUIRED) ++ ++INCLUDE_DIRECTORIES(${X11_INCLUDE_DIR}) ++LINK_DIRECTORIES(${X11_LIBRARY_DIR}) ++ + ADD_EXECUTABLE(xkb-switch XKbSwitch.cpp XKeyboard.cpp) + + TARGET_LINK_LIBRARIES(xkb-switch X11 xkbfile) Added: head/x11/xkb-switch/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/x11/xkb-switch/pkg-descr Sun Jul 3 18:05:08 2016 (r417984) @@ -0,0 +1,4 @@ +Small program that allows to query and change the XKB layout state from +command line. + +WWW: https://github.com/ierton/xkb-switch From owner-svn-ports-all@freebsd.org Sun Jul 3 18:12:20 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 93BB1B90DE4; Sun, 3 Jul 2016 18:12: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 mx1.freebsd.org (Postfix) with ESMTPS id 57625281D; Sun, 3 Jul 2016 18:12: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 u63ICJr5075355; Sun, 3 Jul 2016 18:12:19 GMT (envelope-from pi@FreeBSD.org) Received: (from pi@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u63ICJ3M075354; Sun, 3 Jul 2016 18:12:19 GMT (envelope-from pi@FreeBSD.org) Message-Id: <201607031812.u63ICJ3M075354@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pi set sender to pi@FreeBSD.org using -f From: Kurt Jaeger Date: Sun, 3 Jul 2016 18:12:19 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r417985 - head/devel/py-cheetah X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 03 Jul 2016 18:12:20 -0000 Author: pi Date: Sun Jul 3 18:12:19 2016 New Revision: 417985 URL: https://svnweb.freebsd.org/changeset/ports/417985 Log: devel/py-cheetah: fix INDEX PR: 209922 Modified: head/devel/py-cheetah/Makefile Modified: head/devel/py-cheetah/Makefile ============================================================================== --- head/devel/py-cheetah/Makefile Sun Jul 3 18:05:08 2016 (r417984) +++ head/devel/py-cheetah/Makefile Sun Jul 3 18:12:19 2016 (r417985) @@ -4,7 +4,7 @@ PORTNAME= cheetah PORTVERSION= 2.4.4 PORTREVISION= 1 -CATEGORIES= devel textproc www python:2.7 +CATEGORIES= devel textproc www python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} DISTNAME= Cheetah-${DISTVERSION} @@ -14,7 +14,7 @@ COMMENT= HTML template engine for Python RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}markdown>=2.0.3:textproc/py-markdown -USES= python +USES= python:2.7 USE_PYTHON= distutils autoplist .include From owner-svn-ports-all@freebsd.org Sun Jul 3 18:25:18 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 6589FB90171; Sun, 3 Jul 2016 18:25:18 +0000 (UTC) (envelope-from junovitch@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 3608E2FD6; Sun, 3 Jul 2016 18:25:18 +0000 (UTC) (envelope-from junovitch@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u63IPHvc079539; Sun, 3 Jul 2016 18:25:17 GMT (envelope-from junovitch@FreeBSD.org) Received: (from junovitch@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u63IPHPK079537; Sun, 3 Jul 2016 18:25:17 GMT (envelope-from junovitch@FreeBSD.org) Message-Id: <201607031825.u63IPHPK079537@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: junovitch set sender to junovitch@FreeBSD.org using -f From: Jason Unovitch Date: Sun, 3 Jul 2016 18:25:17 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r417986 - head/chinese/wordpress-zh_CN X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 03 Jul 2016 18:25:18 -0000 Author: junovitch Date: Sun Jul 3 18:25:17 2016 New Revision: 417986 URL: https://svnweb.freebsd.org/changeset/ports/417986 Log: chinese/wordpress-zh_CN: update 4.5.2 -> 4.5.3 PR: 210581 Approved by: ports-secteam (with hat) Security: CVE-2016-5832 Security: CVE-2016-5833 Security: CVE-2016-5834 Security: CVE-2016-5835 Security: CVE-2016-5836 Security: CVE-2016-5837 Security: CVE-2016-5838 Security: CVE-2016-5839 Security: https://vuxml.FreeBSD.org/freebsd/bfcc23b6-3b27-11e6-8e82-002590263bf5.html MFH: 2016Q3 Modified: head/chinese/wordpress-zh_CN/Makefile head/chinese/wordpress-zh_CN/distinfo Modified: head/chinese/wordpress-zh_CN/Makefile ============================================================================== --- head/chinese/wordpress-zh_CN/Makefile Sun Jul 3 18:12:19 2016 (r417985) +++ head/chinese/wordpress-zh_CN/Makefile Sun Jul 3 18:25:17 2016 (r417986) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= wordpress -PORTVERSION= 4.5.2 +PORTVERSION= 4.5.3 DISTVERSIONSUFFIX= -zh_CN CATEGORIES= chinese www MASTER_SITES= http://cn.wordpress.org/ Modified: head/chinese/wordpress-zh_CN/distinfo ============================================================================== --- head/chinese/wordpress-zh_CN/distinfo Sun Jul 3 18:12:19 2016 (r417985) +++ head/chinese/wordpress-zh_CN/distinfo Sun Jul 3 18:25:17 2016 (r417986) @@ -1,3 +1,3 @@ -TIMESTAMP = 1463708678 -SHA256 (wordpress-4.5.2-zh_CN.tar.gz) = 32dfc6d017c3e2bd043089faf83a9c0fe409b591de6cd384e89fb44f9522378c -SIZE (wordpress-4.5.2-zh_CN.tar.gz) = 8203318 +TIMESTAMP = 1467568617 +SHA256 (wordpress-4.5.3-zh_CN.tar.gz) = 4359cd8d4997125832407de2d1d146eecaea56948679a8c1753ae3fb7f1d78d4 +SIZE (wordpress-4.5.3-zh_CN.tar.gz) = 8205680 From owner-svn-ports-all@freebsd.org Sun Jul 3 18:26:18 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id CE226B90276; Sun, 3 Jul 2016 18:26:18 +0000 (UTC) (envelope-from junovitch@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 84ECA2182; Sun, 3 Jul 2016 18:26:18 +0000 (UTC) (envelope-from junovitch@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u63IQHEj079755; Sun, 3 Jul 2016 18:26:17 GMT (envelope-from junovitch@FreeBSD.org) Received: (from junovitch@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u63IQHLi079753; Sun, 3 Jul 2016 18:26:17 GMT (envelope-from junovitch@FreeBSD.org) Message-Id: <201607031826.u63IQHLi079753@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: junovitch set sender to junovitch@FreeBSD.org using -f From: Jason Unovitch Date: Sun, 3 Jul 2016 18:26:17 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r417987 - branches/2016Q3/chinese/wordpress-zh_CN X-SVN-Group: ports-branches MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 03 Jul 2016 18:26:18 -0000 Author: junovitch Date: Sun Jul 3 18:26:17 2016 New Revision: 417987 URL: https://svnweb.freebsd.org/changeset/ports/417987 Log: MFH: r417986 chinese/wordpress-zh_CN: update 4.5.2 -> 4.5.3 PR: 210581 Approved by: ports-secteam (with hat) Security: CVE-2016-5832 Security: CVE-2016-5833 Security: CVE-2016-5834 Security: CVE-2016-5835 Security: CVE-2016-5836 Security: CVE-2016-5837 Security: CVE-2016-5838 Security: CVE-2016-5839 Security: https://vuxml.FreeBSD.org/freebsd/bfcc23b6-3b27-11e6-8e82-002590263bf5.html Modified: branches/2016Q3/chinese/wordpress-zh_CN/Makefile branches/2016Q3/chinese/wordpress-zh_CN/distinfo Directory Properties: branches/2016Q3/ (props changed) Modified: branches/2016Q3/chinese/wordpress-zh_CN/Makefile ============================================================================== --- branches/2016Q3/chinese/wordpress-zh_CN/Makefile Sun Jul 3 18:25:17 2016 (r417986) +++ branches/2016Q3/chinese/wordpress-zh_CN/Makefile Sun Jul 3 18:26:17 2016 (r417987) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= wordpress -PORTVERSION= 4.5.2 +PORTVERSION= 4.5.3 DISTVERSIONSUFFIX= -zh_CN CATEGORIES= chinese www MASTER_SITES= http://cn.wordpress.org/ Modified: branches/2016Q3/chinese/wordpress-zh_CN/distinfo ============================================================================== --- branches/2016Q3/chinese/wordpress-zh_CN/distinfo Sun Jul 3 18:25:17 2016 (r417986) +++ branches/2016Q3/chinese/wordpress-zh_CN/distinfo Sun Jul 3 18:26:17 2016 (r417987) @@ -1,3 +1,3 @@ -TIMESTAMP = 1463708678 -SHA256 (wordpress-4.5.2-zh_CN.tar.gz) = 32dfc6d017c3e2bd043089faf83a9c0fe409b591de6cd384e89fb44f9522378c -SIZE (wordpress-4.5.2-zh_CN.tar.gz) = 8203318 +TIMESTAMP = 1467568617 +SHA256 (wordpress-4.5.3-zh_CN.tar.gz) = 4359cd8d4997125832407de2d1d146eecaea56948679a8c1753ae3fb7f1d78d4 +SIZE (wordpress-4.5.3-zh_CN.tar.gz) = 8205680 From owner-svn-ports-all@freebsd.org Sun Jul 3 18:37:35 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 8763CB905BF; Sun, 3 Jul 2016 18:37:35 +0000 (UTC) (envelope-from brnrd@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 5A0112839; Sun, 3 Jul 2016 18:37:35 +0000 (UTC) (envelope-from brnrd@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u63IbYRM083551; Sun, 3 Jul 2016 18:37:34 GMT (envelope-from brnrd@FreeBSD.org) Received: (from brnrd@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u63IbYLF083550; Sun, 3 Jul 2016 18:37:34 GMT (envelope-from brnrd@FreeBSD.org) Message-Id: <201607031837.u63IbYLF083550@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: brnrd set sender to brnrd@FreeBSD.org using -f From: Bernard Spil Date: Sun, 3 Jul 2016 18:37:34 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r417988 - head/devel/jsoncpp X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 03 Jul 2016 18:37:35 -0000 Author: brnrd Date: Sun Jul 3 18:37:34 2016 New Revision: 417988 URL: https://svnweb.freebsd.org/changeset/ports/417988 Log: devel/jsoncpp: Fix build on 10.3 - Change OS version checks to compiler checks PR: 209954 Submitted by: Mathieu Simon Modified: head/devel/jsoncpp/Makefile Modified: head/devel/jsoncpp/Makefile ============================================================================== --- head/devel/jsoncpp/Makefile Sun Jul 3 18:26:17 2016 (r417987) +++ head/devel/jsoncpp/Makefile Sun Jul 3 18:37:34 2016 (r417988) @@ -15,16 +15,17 @@ LICENSE_FILE= ${WRKSRC}/LICENSE USE_GITHUB= yes GH_ACCOUNT= open-source-parsers -USES= dos2unix scons +USES= compiler:features dos2unix scons USE_LDCONFIG= yes MAKE_ARGS= platform=linux-gcc .include -.if ${OPSYS} == FreeBSD && ${OSVERSION} >= 1000000 -# NOTE Certain newest compiler features unlock some parts of jsoncpp API (ex. see JSON_HAS_RVALUE_REFERENCES). -# Use c++11 above to be most inclusive. +.if ${COMPILER_TYPE} == clang && ${COMPILER_VERSION} >= 33 || \ + ${COMPILER_TYPE} == gcc && ${COMPILER_VERSION} >= 48 +# Certain new compiler features unlock parts of jsoncpp API (ex. see JSON_HAS_RVALUE_REFERENCES). +# Use c++11 above to be the most inclusive. USES+= compiler:c++11-lang CXXFLAGS+= --std=c++11 .endif From owner-svn-ports-all@freebsd.org Sun Jul 3 18:43:38 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 6A41DB90775; Sun, 3 Jul 2016 18:43:38 +0000 (UTC) (envelope-from dan@langille.org) Received: from clavin1.langille.org (clavin.langille.org [162.208.116.86]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "clavin.langille.org", Issuer "StartCom Class 2 Primary Intermediate Server CA" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4BA962BE3; Sun, 3 Jul 2016 18:43:37 +0000 (UTC) (envelope-from dan@langille.org) Received: from (clavin1.int.langille.org (clavin1.int.unixathome.org [10.4.7.7]) (Authenticated sender: hidden) with ESMTPSA id 139263549 ; Sun, 3 Jul 2016 18:43:22 +0000 (UTC) Content-Type: text/plain; charset=us-ascii Mime-Version: 1.0 (Mac OS X Mail 9.3 \(3124\)) Subject: Re: svn commit: r417983 - head/devel/py-cheetah From: Dan Langille In-Reply-To: <201607031755.u63Ht51f067676@repo.freebsd.org> Date: Sun, 3 Jul 2016 14:43:21 -0400 Cc: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Content-Transfer-Encoding: quoted-printable Message-Id: References: <201607031755.u63Ht51f067676@repo.freebsd.org> To: Kurt Jaeger X-Mailer: Apple Mail (2.3124) X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 03 Jul 2016 18:43:38 -0000 > On Jul 3, 2016, at 1:55 PM, Kurt Jaeger wrote: >=20 > Author: pi > Date: Sun Jul 3 17:55:05 2016 > New Revision: 417983 > URL: https://svnweb.freebsd.org/changeset/ports/417983 >=20 > Log: > devel/py-cheetah: set to python2.7 only port >=20 > PR: 209922 > Submitted by: Iblis Lin > Approved by: nivit (maintainer timeout) >=20 > Modified: > head/devel/py-cheetah/Makefile >=20 > Modified: head/devel/py-cheetah/Makefile > = =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D > --- head/devel/py-cheetah/Makefile Sun Jul 3 17:51:16 2016 = (r417982) > +++ head/devel/py-cheetah/Makefile Sun Jul 3 17:55:05 2016 = (r417983) > @@ -4,7 +4,7 @@ > PORTNAME=3D cheetah > PORTVERSION=3D 2.4.4 > PORTREVISION=3D 1 > -CATEGORIES=3D devel textproc www python > +CATEGORIES=3D devel textproc www python:2.7 Is this a valid notation? I ask because I do not see anything in the = documentation for this. > MASTER_SITES=3D CHEESESHOP > PKGNAMEPREFIX=3D ${PYTHON_PKGNAMEPREFIX} > DISTNAME=3D Cheetah-${DISTVERSION} > _______________________________________________ > 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" --=20 Dan Langille - BSDCan / PGCon dan@langille.org From owner-svn-ports-all@freebsd.org Sun Jul 3 18:44:41 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 1EC15B907BA; Sun, 3 Jul 2016 18:44:41 +0000 (UTC) (envelope-from junovitch@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id C8AC02CC5; Sun, 3 Jul 2016 18:44:40 +0000 (UTC) (envelope-from junovitch@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u63IidtZ087155; Sun, 3 Jul 2016 18:44:39 GMT (envelope-from junovitch@FreeBSD.org) Received: (from junovitch@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u63IidJw087154; Sun, 3 Jul 2016 18:44:39 GMT (envelope-from junovitch@FreeBSD.org) Message-Id: <201607031844.u63IidJw087154@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: junovitch set sender to junovitch@FreeBSD.org using -f From: Jason Unovitch Date: Sun, 3 Jul 2016 18:44:39 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r417989 - head/security/vuxml X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 03 Jul 2016 18:44:41 -0000 Author: junovitch Date: Sun Jul 3 18:44:39 2016 New Revision: 417989 URL: https://svnweb.freebsd.org/changeset/ports/417989 Log: Document SQLite3 tempdir selection vulnerability PR: 210751 Submitted by: Vladimir Krstulja Security: CVE-2016-6153 Security: https://vuxml.FreeBSD.org/freebsd/546deeea-3fc6-11e6-a671-60a44ce6887b.html Modified: head/security/vuxml/vuln.xml Modified: head/security/vuxml/vuln.xml ============================================================================== --- head/security/vuxml/vuln.xml Sun Jul 3 18:37:34 2016 (r417988) +++ head/security/vuxml/vuln.xml Sun Jul 3 18:44:39 2016 (r417989) @@ -58,6 +58,41 @@ Notes: * Do not forget port variants (linux-f10-libxml2, libxml2, etc.) --> + + SQLite3 -- Tempdir Selection Vulnerability + + + sqlite3 + 3.13.0 + + + + +

KoreLogic security reports:

+
+

Affected versions of SQLite reject potential tempdir locations if + they are not readable, falling back to '.'. Thus, SQLite will favor + e.g. using cwd for tempfiles on such a system, even if cwd is an + unsafe location. Notably, SQLite also checks the permissions of + '.', but ignores the results of that check.

+
+ +
+ + CVE-2016-6153 + ports/209827 + https://www.korelogic.com/Resources/Advisories/KL-001-2016-003.txt + http://openwall.com/lists/oss-security/2016/07/01/2 + http://www.sqlite.org/cgi/src/info/67985761aa93fb61 + http://www.sqlite.org/cgi/src/info/b38fe522cfc971b3 + http://www.sqlite.org/cgi/src/info/614bb709d34e1148 + + + 2016-07-01 + 2016-07-03 + +
+ Python 2.7 -- smtplib StartTLS stripping vulnerability From owner-svn-ports-all@freebsd.org Sun Jul 3 18:49:36 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 9B918B90814; Sun, 3 Jul 2016 18:49:36 +0000 (UTC) (envelope-from rakuco@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 689422E17; Sun, 3 Jul 2016 18:49:36 +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 u63InZmV087501; Sun, 3 Jul 2016 18:49:35 GMT (envelope-from rakuco@FreeBSD.org) Received: (from rakuco@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u63InZ2A087499; Sun, 3 Jul 2016 18:49:35 GMT (envelope-from rakuco@FreeBSD.org) Message-Id: <201607031849.u63InZ2A087499@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: rakuco set sender to rakuco@FreeBSD.org using -f From: Raphael Kubo da Costa Date: Sun, 3 Jul 2016 18:49:35 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r417990 - in branches/2016Q3/security: pinentry pinentry-qt4 X-SVN-Group: ports-branches MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 03 Jul 2016 18:49:36 -0000 Author: rakuco Date: Sun Jul 3 18:49:35 2016 New Revision: 417990 URL: https://svnweb.freebsd.org/changeset/ports/417990 Log: MFH: r417973 Bump PORTREVISION in security/pinentry and pinentry-qt4 after r415872. r415872 changed the binary name that security/pinentry-qt4 installs without bumping PORTREVISION in the affected ports, so if security/pinentry gets rebuilt after this change but security/pinentry-qt4 is not the pinentry symlink will be broken. Similarly, if one builds security/pinentry-qt{4,5} without updating security/pinentry, the pinentry symlink will also be broken. PR: 209556 Approved by: ports-secteam (feld) Modified: branches/2016Q3/security/pinentry-qt4/Makefile branches/2016Q3/security/pinentry/Makefile Directory Properties: branches/2016Q3/ (props changed) Modified: branches/2016Q3/security/pinentry-qt4/Makefile ============================================================================== --- branches/2016Q3/security/pinentry-qt4/Makefile Sun Jul 3 18:44:39 2016 (r417989) +++ branches/2016Q3/security/pinentry-qt4/Makefile Sun Jul 3 18:49:35 2016 (r417990) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= pinentry -PORTREVISION= 0 +PORTREVISION= 1 COMMENT= Qt 4 version of the GnuPG password dialog Modified: branches/2016Q3/security/pinentry/Makefile ============================================================================== --- branches/2016Q3/security/pinentry/Makefile Sun Jul 3 18:44:39 2016 (r417989) +++ branches/2016Q3/security/pinentry/Makefile Sun Jul 3 18:49:35 2016 (r417990) @@ -3,7 +3,7 @@ PORTNAME= pinentry PORTVERSION= 0.9.7 -PORTREVISION?= 0 +PORTREVISION?= 1 CATEGORIES= security MASTER_SITES= GNUPG/pinentry From owner-svn-ports-all@freebsd.org Sun Jul 3 18:51:24 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 21D29B90931; Sun, 3 Jul 2016 18:51:24 +0000 (UTC) (envelope-from dan@langille.org) Received: from clavin1.langille.org (clavin.langille.org [162.208.116.86]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "clavin.langille.org", Issuer "StartCom Class 2 Primary Intermediate Server CA" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id F296C2F89; Sun, 3 Jul 2016 18:51:23 +0000 (UTC) (envelope-from dan@langille.org) Received: from (clavin1.int.langille.org (clavin1.int.unixathome.org [10.4.7.7]) (Authenticated sender: hidden) with ESMTPSA id A3039354C ; Sun, 3 Jul 2016 18:51:22 +0000 (UTC) Mime-Version: 1.0 (Mac OS X Mail 9.3 \(3124\)) Subject: Re: svn commit: r417983 - head/devel/py-cheetah From: Dan Langille In-Reply-To: Date: Sun, 3 Jul 2016 14:51:22 -0400 Cc: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Message-Id: <4A031085-A508-491A-A903-A00CEC4B35A3@langille.org> References: <201607031755.u63Ht51f067676@repo.freebsd.org> To: Kurt Jaeger X-Mailer: Apple Mail (2.3124) Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: quoted-printable X-Content-Filtered-By: Mailman/MimeDel 2.1.22 X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 03 Jul 2016 18:51:24 -0000 Sorry, I see it has already been reverted.. --=20 Dan Langille - BSDCan / PGCon dan@langille.org > On Jul 3, 2016, at 2:43 PM, Dan Langille wrote: >=20 >> On Jul 3, 2016, at 1:55 PM, Kurt Jaeger wrote: >>=20 >> Author: pi >> Date: Sun Jul 3 17:55:05 2016 >> New Revision: 417983 >> URL: https://svnweb.freebsd.org/changeset/ports/417983 >>=20 >> Log: >> devel/py-cheetah: set to python2.7 only port >>=20 >> PR: 209922 >> Submitted by: Iblis Lin >> Approved by: nivit (maintainer timeout) >>=20 >> Modified: >> head/devel/py-cheetah/Makefile >>=20 >> Modified: head/devel/py-cheetah/Makefile >> = =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D >> --- head/devel/py-cheetah/Makefile Sun Jul 3 17:51:16 2016 = (r417982) >> +++ head/devel/py-cheetah/Makefile Sun Jul 3 17:55:05 2016 = (r417983) >> @@ -4,7 +4,7 @@ >> PORTNAME=3D cheetah >> PORTVERSION=3D 2.4.4 >> PORTREVISION=3D 1 >> -CATEGORIES=3D devel textproc www python >> +CATEGORIES=3D devel textproc www python:2.7 >=20 > Is this a valid notation? I ask because I do not see anything in the = documentation for this. >=20 >> MASTER_SITES=3D CHEESESHOP >> PKGNAMEPREFIX=3D ${PYTHON_PKGNAMEPREFIX} >> DISTNAME=3D Cheetah-${DISTVERSION} >> _______________________________________________ >> 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" >=20 >=20 > --=20 > Dan Langille - BSDCan / PGCon > dan@langille.org >=20 >=20 >=20 >=20 From owner-svn-ports-all@freebsd.org Sun Jul 3 18:53:50 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 41205B9099F; Sun, 3 Jul 2016 18:53:50 +0000 (UTC) (envelope-from lme@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 0521921E2; Sun, 3 Jul 2016 18:53:49 +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 u63IrnO8091119; Sun, 3 Jul 2016 18:53:49 GMT (envelope-from lme@FreeBSD.org) Received: (from lme@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u63Irnvu091116; Sun, 3 Jul 2016 18:53:49 GMT (envelope-from lme@FreeBSD.org) Message-Id: <201607031853.u63Irnvu091116@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: lme set sender to lme@FreeBSD.org using -f From: Lars Engels Date: Sun, 3 Jul 2016 18:53:49 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r417991 - head/net-mgmt/icingaweb2 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 03 Jul 2016 18:53:50 -0000 Author: lme Date: Sun Jul 3 18:53:48 2016 New Revision: 417991 URL: https://svnweb.freebsd.org/changeset/ports/417991 Log: Update to 2.3.4 Modified: head/net-mgmt/icingaweb2/Makefile head/net-mgmt/icingaweb2/distinfo head/net-mgmt/icingaweb2/pkg-plist Modified: head/net-mgmt/icingaweb2/Makefile ============================================================================== --- head/net-mgmt/icingaweb2/Makefile Sun Jul 3 18:49:35 2016 (r417990) +++ head/net-mgmt/icingaweb2/Makefile Sun Jul 3 18:53:48 2016 (r417991) @@ -2,7 +2,7 @@ PORTNAME= icingaweb2 DISTVERSIONPREFIX= v -DISTVERSION= 2.3.2 +DISTVERSION= 2.3.4 CATEGORIES= net-mgmt www MAINTAINER= lme@FreeBSD.org @@ -11,7 +11,7 @@ COMMENT= Next generation web interface f LICENSE= GPLv2 LICENSE_FILE= ${WRKSRC}/COPYING -RUN_DEPENDS= ${LOCALBASE}/share/ZendFramework/bin/classmap_generator.php:www/zend-framework +RUN_DEPENDS= ${LOCALBASE}/share/ZendFramework/bin/classmap_generator.php:www/zend-framework USE_GITHUB= yes GH_ACCOUNT= icinga Modified: head/net-mgmt/icingaweb2/distinfo ============================================================================== --- head/net-mgmt/icingaweb2/distinfo Sun Jul 3 18:49:35 2016 (r417990) +++ head/net-mgmt/icingaweb2/distinfo Sun Jul 3 18:53:48 2016 (r417991) @@ -1,2 +1,3 @@ -SHA256 (icinga-icingaweb2-v2.3.2_GH0.tar.gz) = 89abfec58726cadc0380897880190ece84f74f34152b1146ee7b24244337b76d -SIZE (icinga-icingaweb2-v2.3.2_GH0.tar.gz) = 9812433 +TIMESTAMP = 1467570093 +SHA256 (icinga-icingaweb2-v2.3.4_GH0.tar.gz) = 057e9debfbd10df4278dfc675e507b11843478dd7f295c8554cdbc9317dfbd4e +SIZE (icinga-icingaweb2-v2.3.4_GH0.tar.gz) = 9822375 Modified: head/net-mgmt/icingaweb2/pkg-plist ============================================================================== --- head/net-mgmt/icingaweb2/pkg-plist Sun Jul 3 18:49:35 2016 (r417990) +++ head/net-mgmt/icingaweb2/pkg-plist Sun Jul 3 18:53:48 2016 (r417991) @@ -2839,6 +2839,8 @@ %%WWWDIR%%/modules/monitoring/test/php/library/Monitoring/Object/MacroTest.php %%WWWDIR%%/modules/monitoring/test/php/library/Monitoring/Plugin/PerfdataSetTest.php %%WWWDIR%%/modules/monitoring/test/php/library/Monitoring/Plugin/PerfdataTest.php +%%WWWDIR%%/modules/monitoring/test/php/regression/Bug11728Test.php +%%WWWDIR%%/modules/monitoring/test/php/regression/Bug11796Test.php %%WWWDIR%%/modules/monitoring/test/php/regression/Bug6088Test.php %%WWWDIR%%/modules/monitoring/test/php/regression/Bug7043Test.php %%WWWDIR%%/modules/setup/application/clicommands/ConfigCommand.php @@ -3033,6 +3035,7 @@ %%WWWDIR%%/public/img/logo_icinga.png %%WWWDIR%%/public/img/logo_icinga_big.png %%WWWDIR%%/public/img/logo_icinga_big_dark.png +%%WWWDIR%%/public/img/touch-icon.png %%WWWDIR%%/public/img/tree/tree-minus.gif %%WWWDIR%%/public/img/tree/tree-plus.gif %%WWWDIR%%/public/img/winter/logo_icinga_big_winter.png From owner-svn-ports-all@freebsd.org Sun Jul 3 18:54:21 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 45027B909DC; Sun, 3 Jul 2016 18:54:21 +0000 (UTC) (envelope-from junovitch@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 11E9622D1; Sun, 3 Jul 2016 18:54:20 +0000 (UTC) (envelope-from junovitch@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u63IsKrH091250; Sun, 3 Jul 2016 18:54:20 GMT (envelope-from junovitch@FreeBSD.org) Received: (from junovitch@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u63IsKPA091248; Sun, 3 Jul 2016 18:54:20 GMT (envelope-from junovitch@FreeBSD.org) Message-Id: <201607031854.u63IsKPA091248@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: junovitch set sender to junovitch@FreeBSD.org using -f From: Jason Unovitch Date: Sun, 3 Jul 2016 18:54:20 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r417992 - head/games/minecraft-server X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 03 Jul 2016 18:54:21 -0000 Author: junovitch Date: Sun Jul 3 18:54:19 2016 New Revision: 417992 URL: https://svnweb.freebsd.org/changeset/ports/417992 Log: games/minecraft-server: update 1.9.4 -> 1.10.2 PR: 210739 Submitted by: Jonathan Price (maintainer) Modified: head/games/minecraft-server/Makefile head/games/minecraft-server/distinfo Modified: head/games/minecraft-server/Makefile ============================================================================== --- head/games/minecraft-server/Makefile Sun Jul 3 18:53:48 2016 (r417991) +++ head/games/minecraft-server/Makefile Sun Jul 3 18:54:19 2016 (r417992) @@ -1,8 +1,7 @@ # $FreeBSD$ PORTNAME= minecraft-server -PORTVERSION= 1.9.4 -PORTREVISION= 1 +PORTVERSION= 1.10.2 CATEGORIES= games java MASTER_SITES= https://s3.amazonaws.com/Minecraft.Download/versions/${PORTVERSION}/ DISTFILES= minecraft_server.${PORTVERSION}.jar Modified: head/games/minecraft-server/distinfo ============================================================================== --- head/games/minecraft-server/distinfo Sun Jul 3 18:53:48 2016 (r417991) +++ head/games/minecraft-server/distinfo Sun Jul 3 18:54:19 2016 (r417992) @@ -1,2 +1,3 @@ -SHA256 (minecraft_server.1.9.4.jar) = 13fea7aa10d804dd14ed7ebde2493dc64c7d3c8173369309bd7f6ea4c0ea40ad -SIZE (minecraft_server.1.9.4.jar) = 9399053 +TIMESTAMP = 1466717939 +SHA256 (minecraft_server.1.10.2.jar) = 195f468227c5f9218f3919538b9b16ba34adced67fc7d7b652c508a5e8d07a21 +SIZE (minecraft_server.1.10.2.jar) = 9459897 From owner-svn-ports-all@freebsd.org Sun Jul 3 19:06:17 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id E2201B90C57; Sun, 3 Jul 2016 19:06:17 +0000 (UTC) (envelope-from junovitch@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id B33482845; Sun, 3 Jul 2016 19:06:17 +0000 (UTC) (envelope-from junovitch@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u63J6GP3095101; Sun, 3 Jul 2016 19:06:16 GMT (envelope-from junovitch@FreeBSD.org) Received: (from junovitch@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u63J6G56095099; Sun, 3 Jul 2016 19:06:16 GMT (envelope-from junovitch@FreeBSD.org) Message-Id: <201607031906.u63J6G56095099@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: junovitch set sender to junovitch@FreeBSD.org using -f From: Jason Unovitch Date: Sun, 3 Jul 2016 19:06:16 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r417993 - head/devel/artifactory X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 03 Jul 2016 19:06:18 -0000 Author: junovitch Date: Sun Jul 3 19:06:16 2016 New Revision: 417993 URL: https://svnweb.freebsd.org/changeset/ports/417993 Log: devel/artifactory: update 4.8.2 -> 4.9.0 PR: 210783 Submitted by: David Harrigan (maintainer) Modified: head/devel/artifactory/Makefile head/devel/artifactory/distinfo Modified: head/devel/artifactory/Makefile ============================================================================== --- head/devel/artifactory/Makefile Sun Jul 3 18:54:19 2016 (r417992) +++ head/devel/artifactory/Makefile Sun Jul 3 19:06:16 2016 (r417993) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= artifactory -PORTVERSION= 4.8.2 +PORTVERSION= 4.9.0 CATEGORIES= devel java MASTER_SITES= https://bintray.com/artifact/download/jfrog/artifactory/ DISTNAME= jfrog-${PORTNAME}-oss-${PORTVERSION} Modified: head/devel/artifactory/distinfo ============================================================================== --- head/devel/artifactory/distinfo Sun Jul 3 18:54:19 2016 (r417992) +++ head/devel/artifactory/distinfo Sun Jul 3 19:06:16 2016 (r417993) @@ -1,3 +1,3 @@ -TIMESTAMP = 1466962915 -SHA256 (jfrog-artifactory-oss-4.8.2.zip) = 6821196157e9cba70f99c0fe960971333455327cc54139f310edc30e88dd2392 -SIZE (jfrog-artifactory-oss-4.8.2.zip) = 40938623 +TIMESTAMP = 1467554173 +SHA256 (jfrog-artifactory-oss-4.9.0.zip) = c97c2293c676c9ca5e3c0c64b2a02e2565427f3fe2cf5aa3e0518f6b541a23e5 +SIZE (jfrog-artifactory-oss-4.9.0.zip) = 41020300 From owner-svn-ports-all@freebsd.org Sun Jul 3 19:30:16 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id EA77CB901D7; Sun, 3 Jul 2016 19:30:16 +0000 (UTC) (envelope-from junovitch@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id A1E062289; Sun, 3 Jul 2016 19:30:16 +0000 (UTC) (envelope-from junovitch@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u63JUFC6003105; Sun, 3 Jul 2016 19:30:15 GMT (envelope-from junovitch@FreeBSD.org) Received: (from junovitch@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u63JUF34003104; Sun, 3 Jul 2016 19:30:15 GMT (envelope-from junovitch@FreeBSD.org) Message-Id: <201607031930.u63JUF34003104@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: junovitch set sender to junovitch@FreeBSD.org using -f From: Jason Unovitch Date: Sun, 3 Jul 2016 19:30:15 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r417994 - head/security/vuxml X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 03 Jul 2016 19:30:17 -0000 Author: junovitch Date: Sun Jul 3 19:30:15 2016 New Revision: 417994 URL: https://svnweb.freebsd.org/changeset/ports/417994 Log: Document authorization logic vulnerability in Apache Hive PR: 207173 Security: CVE-2015-7521 Security: https://vuxml.FreeBSD.org/freebsd/a5c204b5-4153-11e6-8dfe-002590263bf5.html Modified: head/security/vuxml/vuln.xml Modified: head/security/vuxml/vuln.xml ============================================================================== --- head/security/vuxml/vuln.xml Sun Jul 3 19:06:16 2016 (r417993) +++ head/security/vuxml/vuln.xml Sun Jul 3 19:30:15 2016 (r417994) @@ -58,6 +58,37 @@ Notes: * Do not forget port variants (linux-f10-libxml2, libxml2, etc.) --> + + hive -- authorization logic vulnerability + + + hive + 2.0.0 + + + + +

Sushanth Sowmyan reports:

+
+

Some partition-level operations exist that do not explicitly also + authorize privileges of the parent table. This can lead to issues when + the parent table would have denied the operation, but no denial occurs + because the partition-level privilege is not checked by the + authorization framework, which defines authorization entities only + from the table level upwards.

+
+ +
+ + CVE-2015-7521 + http://mail-archives.apache.org/mod_mbox/hive-user/201601.mbox/%3C20160128205008.2154F185EB%40minotaur.apache.org%3E + + + 2015-01-28 + 2016-07-03 + +
+ SQLite3 -- Tempdir Selection Vulnerability From owner-svn-ports-all@freebsd.org Sun Jul 3 19:31:28 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 2A48AB90300; Sun, 3 Jul 2016 19:31:28 +0000 (UTC) (envelope-from junovitch@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id F09302664; Sun, 3 Jul 2016 19:31:27 +0000 (UTC) (envelope-from junovitch@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u63JVR9K005933; Sun, 3 Jul 2016 19:31:27 GMT (envelope-from junovitch@FreeBSD.org) Received: (from junovitch@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u63JVRbH005932; Sun, 3 Jul 2016 19:31:27 GMT (envelope-from junovitch@FreeBSD.org) Message-Id: <201607031931.u63JVRbH005932@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: junovitch set sender to junovitch@FreeBSD.org using -f From: Jason Unovitch Date: Sun, 3 Jul 2016 19:31:27 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r417995 - head/security/vuxml X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 03 Jul 2016 19:31:28 -0000 Author: junovitch Date: Sun Jul 3 19:31:26 2016 New Revision: 417995 URL: https://svnweb.freebsd.org/changeset/ports/417995 Log: Fix date from r417994 (2016 not 2015) Modified: head/security/vuxml/vuln.xml Modified: head/security/vuxml/vuln.xml ============================================================================== --- head/security/vuxml/vuln.xml Sun Jul 3 19:30:15 2016 (r417994) +++ head/security/vuxml/vuln.xml Sun Jul 3 19:31:26 2016 (r417995) @@ -84,7 +84,7 @@ Notes: http://mail-archives.apache.org/mod_mbox/hive-user/201601.mbox/%3C20160128205008.2154F185EB%40minotaur.apache.org%3E - 2015-01-28 + 2016-01-28 2016-07-03 From owner-svn-ports-all@freebsd.org Sun Jul 3 19:34:39 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 107F3B9082A; Sun, 3 Jul 2016 19:34:39 +0000 (UTC) (envelope-from pawel@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id C7D9F2F34; Sun, 3 Jul 2016 19:34:38 +0000 (UTC) (envelope-from pawel@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u63JYcta006818; Sun, 3 Jul 2016 19:34:38 GMT (envelope-from pawel@FreeBSD.org) Received: (from pawel@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u63JYbLX006816; Sun, 3 Jul 2016 19:34:37 GMT (envelope-from pawel@FreeBSD.org) Message-Id: <201607031934.u63JYbLX006816@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pawel set sender to pawel@FreeBSD.org using -f From: Pawel Pekala Date: Sun, 3 Jul 2016 19:34:37 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r417996 - in head/graphics/podofo: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 03 Jul 2016 19:34:39 -0000 Author: pawel Date: Sun Jul 3 19:34:37 2016 New Revision: 417996 URL: https://svnweb.freebsd.org/changeset/ports/417996 Log: - Fix SIZE_MAX buildfix patch, use other method now upstreamed - Convert to USES=ssl - Group IMPOSE options helpers together Modified: head/graphics/podofo/Makefile head/graphics/podofo/files/patch-src_base_PdfMemoryManagement.cpp Modified: head/graphics/podofo/Makefile ============================================================================== --- head/graphics/podofo/Makefile Sun Jul 3 19:31:26 2016 (r417995) +++ head/graphics/podofo/Makefile Sun Jul 3 19:34:37 2016 (r417996) @@ -3,6 +3,7 @@ PORTNAME= podofo PORTVERSION= 0.9.4 +PORTREVISION= 1 CATEGORIES= graphics print MASTER_SITES= SF @@ -16,19 +17,19 @@ LIB_DEPENDS= libidn.so:dns/libidn \ libfreetype.so:print/freetype2 \ libfontconfig.so:x11-fonts/fontconfig -USES= cmake dos2unix +USES= cmake dos2unix ssl CMAKE_ARGS= -DPODOFO_BUILD_SHARED:BOOL=TRUE \ -DPODOFO_BUILD_STATIC:BOOL=FALSE \ -DOPENSSL_INCLUDE_DIR:PATH="${OPENSSLINC}" \ -DOPENSSL_LIBRARIES:PATH="${OPENSSLDIR}" -USE_OPENSSL= yes USE_LDCONFIG= yes DOS2UNIX_FILES= cmake/modules/FindFREETYPE.cmake OPTIONS_DEFINE= IMPOSE JPEG PNG TIFF OPTIONS_DEFAULT= JPEG PNG TIFF -IMPOSE_DESC= Build impose tool (needs Lua) +IMPOSE_DESC= Build impose tool (needs Lua) +IMPOSE_USES= lua:51 IMPOSE_CMAKE_ON= -DWANT_LUA:BOOL=TRUE IMPOSE_CXXFLAGS= -I${LUA_INCDIR} IMPOSE_LDFLAGS= -L${LUA_LIBDIR} @@ -42,6 +43,4 @@ PNG_LIB_DEPENDS= libpng.so:graphics/png TIFF_CMAKE_ON= -DWANT_TIFF:BOOL=TRUE TIFF_LIB_DEPENDS= libtiff.so:graphics/tiff -IMPOSE_USES= lua:51 - .include Modified: head/graphics/podofo/files/patch-src_base_PdfMemoryManagement.cpp ============================================================================== --- head/graphics/podofo/files/patch-src_base_PdfMemoryManagement.cpp Sun Jul 3 19:31:26 2016 (r417995) +++ head/graphics/podofo/files/patch-src_base_PdfMemoryManagement.cpp Sun Jul 3 19:34:37 2016 (r417996) @@ -1,17 +1,19 @@ ---- src/base/PdfMemoryManagement.cpp.orig 2016-06-16 16:10:23 UTC +--- src/base/PdfMemoryManagement.cpp.orig 2016-07-03 09:12:06 UTC +++ src/base/PdfMemoryManagement.cpp -@@ -44,6 +44,14 @@ +@@ -34,15 +34,9 @@ + #include "PdfMemoryManagement.h" + #include "PdfDefinesPrivate.h" + +-#ifdef _WIN32 + #ifndef SIZE_MAX +-#ifdef _WIN64 +-#define SIZE_MAX _UI64_MAX +-#else +-#define SIZE_MAX UINT_MAX +-#endif ++#define SIZE_MAX std::numeric_limits::max() #endif - #endif // _WIN32 +-#endif // _WIN32 -+#ifdef __FreeBSD__ -+#if __WORDSIZE == 64 -+#define SIZE_MAX UINT64_MAX -+#else -+#define SIZE_MAX UINT_MAX -+#endif -+#endif -+ #if defined(_MSC_VER) && ( _MSC_VER <= 1200 ) // errno.h isn't available in Visual C++ 6 (definitions are in stdlib.h which is already included) - #else From owner-svn-ports-all@freebsd.org Sun Jul 3 21:01:58 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 8C5E0B90330; Sun, 3 Jul 2016 21:01:58 +0000 (UTC) (envelope-from junovitch@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 59A942709; Sun, 3 Jul 2016 21:01:58 +0000 (UTC) (envelope-from junovitch@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u63L1vIA039229; Sun, 3 Jul 2016 21:01:57 GMT (envelope-from junovitch@FreeBSD.org) Received: (from junovitch@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u63L1vFr039227; Sun, 3 Jul 2016 21:01:57 GMT (envelope-from junovitch@FreeBSD.org) Message-Id: <201607032101.u63L1vFr039227@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: junovitch set sender to junovitch@FreeBSD.org using -f From: Jason Unovitch Date: Sun, 3 Jul 2016 21:01:57 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r417997 - head/www/h2o X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 03 Jul 2016 21:01:58 -0000 Author: junovitch Date: Sun Jul 3 21:01:57 2016 New Revision: 417997 URL: https://svnweb.freebsd.org/changeset/ports/417997 Log: www/h2o: update 2.0.0 -> 2.0.1 This is a bug-fix release of 2.0 series, fixing following issues found in 2.0.0. * [fastcgi] fix internal server error when PHP returns a huge header #958 * [http2] recognize link header containing multiple links #950 * [libh2o] fix resource leaks upon startup failure #936 * [libh2o] do not require linking to libbrotli externally #941 Changes: https://github.com/h2o/h2o/releases/tag/v2.0.1 PR: 210769 Submitted by: Dave Cottlehuber (maintainer) Modified: head/www/h2o/Makefile head/www/h2o/distinfo Modified: head/www/h2o/Makefile ============================================================================== --- head/www/h2o/Makefile Sun Jul 3 19:34:37 2016 (r417996) +++ head/www/h2o/Makefile Sun Jul 3 21:01:57 2016 (r417997) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= h2o -PORTVERSION= 2.0.0 +PORTVERSION= 2.0.1 DISTVERSIONPREFIX= v CATEGORIES= www Modified: head/www/h2o/distinfo ============================================================================== --- head/www/h2o/distinfo Sun Jul 3 19:34:37 2016 (r417996) +++ head/www/h2o/distinfo Sun Jul 3 21:01:57 2016 (r417997) @@ -1,3 +1,3 @@ -TIMESTAMP = 1464775587 -SHA256 (h2o-h2o-v2.0.0_GH0.tar.gz) = 068cc88fe7313ea3c637764abc296629f6c9250e12b714f5629065bdc49d28c8 -SIZE (h2o-h2o-v2.0.0_GH0.tar.gz) = 15007086 +TIMESTAMP = 1467186334 +SHA256 (h2o-h2o-v2.0.1_GH0.tar.gz) = c53d11589c8c76491cf3a940b649d0a9cb27c36eb276963811ac1bc16cd2bf2c +SIZE (h2o-h2o-v2.0.1_GH0.tar.gz) = 15012563 From owner-svn-ports-all@freebsd.org Sun Jul 3 21:21:14 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 9E7FDB90743; Sun, 3 Jul 2016 21:21:14 +0000 (UTC) (envelope-from feld@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 6D7EC2E6B; Sun, 3 Jul 2016 21:21:14 +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 u63LLDGX044984; Sun, 3 Jul 2016 21:21:13 GMT (envelope-from feld@FreeBSD.org) Received: (from feld@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u63LLDoU044983; Sun, 3 Jul 2016 21:21:13 GMT (envelope-from feld@FreeBSD.org) Message-Id: <201607032121.u63LLDoU044983@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: feld set sender to feld@FreeBSD.org using -f From: Mark Felder Date: Sun, 3 Jul 2016 21:21:13 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r417998 - head/security/vuxml X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 03 Jul 2016 21:21:14 -0000 Author: feld Date: Sun Jul 3 21:21:13 2016 New Revision: 417998 URL: https://svnweb.freebsd.org/changeset/ports/417998 Log: Document icingaweb2 vulnerability Modified: head/security/vuxml/vuln.xml Modified: head/security/vuxml/vuln.xml ============================================================================== --- head/security/vuxml/vuln.xml Sun Jul 3 21:01:57 2016 (r417997) +++ head/security/vuxml/vuln.xml Sun Jul 3 21:21:13 2016 (r417998) @@ -58,6 +58,32 @@ Notes: * Do not forget port variants (linux-f10-libxml2, libxml2, etc.) --> + + icingaweb2 -- remote code execution + + + icingaweb2 + 2.3.4 + + + + +

Eric Lippmann reports:

+
+

Possibility of remote code execution via the remote command + transport.

+
+ +
+ + https://www.icinga.org/2016/06/23/icinga-web-2-v2-3-4-v2-2-2-and-v2-1-4-releases/ + + + 2016-06-23 + 2016-07-03 + +
+ hive -- authorization logic vulnerability From owner-svn-ports-all@freebsd.org Sun Jul 3 21:22:12 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 90157B9084B; Sun, 3 Jul 2016 21:22:12 +0000 (UTC) (envelope-from feld@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 5152E208C; Sun, 3 Jul 2016 21:22:12 +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 u63LMBmt047769; Sun, 3 Jul 2016 21:22:11 GMT (envelope-from feld@FreeBSD.org) Received: (from feld@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u63LMBTX047766; Sun, 3 Jul 2016 21:22:11 GMT (envelope-from feld@FreeBSD.org) Message-Id: <201607032122.u63LMBTX047766@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: feld set sender to feld@FreeBSD.org using -f From: Mark Felder Date: Sun, 3 Jul 2016 21:22:11 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r417999 - branches/2016Q3/net-mgmt/icingaweb2 X-SVN-Group: ports-branches MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 03 Jul 2016 21:22:12 -0000 Author: feld Date: Sun Jul 3 21:22:11 2016 New Revision: 417999 URL: https://svnweb.freebsd.org/changeset/ports/417999 Log: MFH: r417991 Update to 2.3.4 Approved by: ports-secteam (with hat) Modified: branches/2016Q3/net-mgmt/icingaweb2/Makefile branches/2016Q3/net-mgmt/icingaweb2/distinfo branches/2016Q3/net-mgmt/icingaweb2/pkg-plist Directory Properties: branches/2016Q3/ (props changed) Modified: branches/2016Q3/net-mgmt/icingaweb2/Makefile ============================================================================== --- branches/2016Q3/net-mgmt/icingaweb2/Makefile Sun Jul 3 21:21:13 2016 (r417998) +++ branches/2016Q3/net-mgmt/icingaweb2/Makefile Sun Jul 3 21:22:11 2016 (r417999) @@ -2,7 +2,7 @@ PORTNAME= icingaweb2 DISTVERSIONPREFIX= v -DISTVERSION= 2.3.2 +DISTVERSION= 2.3.4 CATEGORIES= net-mgmt www MAINTAINER= lme@FreeBSD.org @@ -11,7 +11,7 @@ COMMENT= Next generation web interface f LICENSE= GPLv2 LICENSE_FILE= ${WRKSRC}/COPYING -RUN_DEPENDS= ${LOCALBASE}/share/ZendFramework/bin/classmap_generator.php:www/zend-framework +RUN_DEPENDS= ${LOCALBASE}/share/ZendFramework/bin/classmap_generator.php:www/zend-framework USE_GITHUB= yes GH_ACCOUNT= icinga Modified: branches/2016Q3/net-mgmt/icingaweb2/distinfo ============================================================================== --- branches/2016Q3/net-mgmt/icingaweb2/distinfo Sun Jul 3 21:21:13 2016 (r417998) +++ branches/2016Q3/net-mgmt/icingaweb2/distinfo Sun Jul 3 21:22:11 2016 (r417999) @@ -1,2 +1,3 @@ -SHA256 (icinga-icingaweb2-v2.3.2_GH0.tar.gz) = 89abfec58726cadc0380897880190ece84f74f34152b1146ee7b24244337b76d -SIZE (icinga-icingaweb2-v2.3.2_GH0.tar.gz) = 9812433 +TIMESTAMP = 1467570093 +SHA256 (icinga-icingaweb2-v2.3.4_GH0.tar.gz) = 057e9debfbd10df4278dfc675e507b11843478dd7f295c8554cdbc9317dfbd4e +SIZE (icinga-icingaweb2-v2.3.4_GH0.tar.gz) = 9822375 Modified: branches/2016Q3/net-mgmt/icingaweb2/pkg-plist ============================================================================== --- branches/2016Q3/net-mgmt/icingaweb2/pkg-plist Sun Jul 3 21:21:13 2016 (r417998) +++ branches/2016Q3/net-mgmt/icingaweb2/pkg-plist Sun Jul 3 21:22:11 2016 (r417999) @@ -2839,6 +2839,8 @@ %%WWWDIR%%/modules/monitoring/test/php/library/Monitoring/Object/MacroTest.php %%WWWDIR%%/modules/monitoring/test/php/library/Monitoring/Plugin/PerfdataSetTest.php %%WWWDIR%%/modules/monitoring/test/php/library/Monitoring/Plugin/PerfdataTest.php +%%WWWDIR%%/modules/monitoring/test/php/regression/Bug11728Test.php +%%WWWDIR%%/modules/monitoring/test/php/regression/Bug11796Test.php %%WWWDIR%%/modules/monitoring/test/php/regression/Bug6088Test.php %%WWWDIR%%/modules/monitoring/test/php/regression/Bug7043Test.php %%WWWDIR%%/modules/setup/application/clicommands/ConfigCommand.php @@ -3033,6 +3035,7 @@ %%WWWDIR%%/public/img/logo_icinga.png %%WWWDIR%%/public/img/logo_icinga_big.png %%WWWDIR%%/public/img/logo_icinga_big_dark.png +%%WWWDIR%%/public/img/touch-icon.png %%WWWDIR%%/public/img/tree/tree-minus.gif %%WWWDIR%%/public/img/tree/tree-plus.gif %%WWWDIR%%/public/img/winter/logo_icinga_big_winter.png From owner-svn-ports-all@freebsd.org Sun Jul 3 21:30:57 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 0F586B90935; Sun, 3 Jul 2016 21:30:57 +0000 (UTC) (envelope-from feld@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id B6F4123DB; Sun, 3 Jul 2016 21:30:56 +0000 (UTC) (envelope-from feld@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u63LUtBk050198; Sun, 3 Jul 2016 21:30:55 GMT (envelope-from feld@FreeBSD.org) Received: (from feld@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u63LUtTe050196; Sun, 3 Jul 2016 21:30:55 GMT (envelope-from feld@FreeBSD.org) Message-Id: <201607032130.u63LUtTe050196@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: feld set sender to feld@FreeBSD.org using -f From: Mark Felder Date: Sun, 3 Jul 2016 21:30:55 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r418000 - branches/2016Q3/sysutils/iohyve X-SVN-Group: ports-branches MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 03 Jul 2016 21:30:57 -0000 Author: feld Date: Sun Jul 3 21:30:55 2016 New Revision: 418000 URL: https://svnweb.freebsd.org/changeset/ports/418000 Log: MFH: r417974 Update to 0.7.6 PR: 210546 [1], 210668 [2] Submitted by: [1] Trent Thompson , [2] Christian Schwarz Requested by: maintainer (lme) Approved by: ports-secteam (with hat) Modified: branches/2016Q3/sysutils/iohyve/Makefile branches/2016Q3/sysutils/iohyve/distinfo Directory Properties: branches/2016Q3/ (props changed) Modified: branches/2016Q3/sysutils/iohyve/Makefile ============================================================================== --- branches/2016Q3/sysutils/iohyve/Makefile Sun Jul 3 21:22:11 2016 (r417999) +++ branches/2016Q3/sysutils/iohyve/Makefile Sun Jul 3 21:30:55 2016 (r418000) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= iohyve -PORTVERSION= 0.7.5 +PORTVERSION= 0.7.6 CATEGORIES= sysutils MAINTAINER= lme@FreeBSD.org @@ -16,11 +16,7 @@ GH_ACCOUNT= pr1ntf NO_BUILD= yes NO_ARCH= yes -PLIST_FILES= etc/rc.d/iohyve man/man8/iohyve.8.gz sbin/iohyve - -do-install: - ${INSTALL_SCRIPT} ${WRKSRC}/rc.d/iohyve ${STAGEDIR}${PREFIX}/etc/rc.d - ${INSTALL_SCRIPT} ${WRKSRC}/iohyve ${STAGEDIR}${PREFIX}/sbin - ${INSTALL_MAN} ${WRKSRC}/iohyve.8 ${STAGEDIR}${PREFIX}/man/man8 +do-patch: + ${REINPLACE_CMD} 's%\$$(PREFIX)%${STAGEDIR}/$$(PREFIX)%g' ${WRKSRC}/Makefile .include Modified: branches/2016Q3/sysutils/iohyve/distinfo ============================================================================== --- branches/2016Q3/sysutils/iohyve/distinfo Sun Jul 3 21:22:11 2016 (r417999) +++ branches/2016Q3/sysutils/iohyve/distinfo Sun Jul 3 21:30:55 2016 (r418000) @@ -1,2 +1,3 @@ -SHA256 (pr1ntf-iohyve-0.7.5_GH0.tar.gz) = 803bdeff69650209edca0570f232cb89aa33b844aef38967b6f146152c4214ae -SIZE (pr1ntf-iohyve-0.7.5_GH0.tar.gz) = 19760 +TIMESTAMP = 1467139724 +SHA256 (pr1ntf-iohyve-0.7.6_GH0.tar.gz) = 248756a466c54b2c9f2d9cb70b0247ea2d135858ffae7d633dabc347090760f6 +SIZE (pr1ntf-iohyve-0.7.6_GH0.tar.gz) = 22246 From owner-svn-ports-all@freebsd.org Sun Jul 3 21:40:03 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 9903FB90B16; Sun, 3 Jul 2016 21:40:03 +0000 (UTC) (envelope-from woodsb02@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 6578E278C; Sun, 3 Jul 2016 21:40:03 +0000 (UTC) (envelope-from woodsb02@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u63Le2dE052046; Sun, 3 Jul 2016 21:40:02 GMT (envelope-from woodsb02@FreeBSD.org) Received: (from woodsb02@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u63Le2Nx052040; Sun, 3 Jul 2016 21:40:02 GMT (envelope-from woodsb02@FreeBSD.org) Message-Id: <201607032140.u63Le2Nx052040@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: woodsb02 set sender to woodsb02@FreeBSD.org using -f From: Ben Woods Date: Sun, 3 Jul 2016 21:40:02 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418001 - in head/audio/lastfm-desktop: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 03 Jul 2016 21:40:03 -0000 Author: woodsb02 Date: Sun Jul 3 21:40:02 2016 New Revision: 418001 URL: https://svnweb.freebsd.org/changeset/ports/418001 Log: audio/lastfm-desktop: Update to 2.1.36 - Move to official GitHub repo, since the official CDN is out of date - Patch of LAV_Source.cpp renamed to follow file move, and updated to fix build with FFmpeg 3.0.x - obtained from ArchLinx [1]. Note that multimedia/ffmpeg is currently still on the 2.8.x branch, however this patch is backwards compatible with ffmpeg 2.8.x. - Patch of RadioService.cpp updated - obtained from ArchLinux [2]. - Remove patch of podDevice_linux.cpp, as the change was upstreamed - Add additional dependencies to LIB_DEPENDS and USE_QT4 as found by new stage-qa script. - Ensure program will appear in desktop manager menus by installing icon and adding DESKTOP_ENTRIES. - Add the audio playback run dependencies, with the option of either VLC or GSTREAMER. Without one of these, it crashes upon run. - Remove the LD_LIBRARY_PATH, as it is no longer needed now that the lastfm-desktop binaries are statically linked to it's private libraries [3]. - Also do not install the *.a static libraries, as they are not used by any other programs/ports and not needed by the lastfm-desktop binaries. - Install all of the files required by for the .css stylesheet to work. [1] https://aur.archlinux.org/cgit/aur.git/tree/LAV_Source_fix.patch?h=lastfm [2] https://aur.archlinux.org/cgit/aur.git/tree/cast-bug.patch?h=lastfm [3] https://github.com/lastfm/lastfm-desktop/commit/a6d2225e368aaeb66ec5345717120013b40f2518 Reviewed by: mat (mentor) Approved by: vg (maintainer timeout), adamw (mentor) Differential Revision: https://reviews.freebsd.org/D6874 Added: head/audio/lastfm-desktop/files/patch-app_fingerprinter_LAV__Source.cpp - copied, changed from r418000, head/audio/lastfm-desktop/files/patch-app_client_Fingerprinter_LAV_Source.cpp Deleted: head/audio/lastfm-desktop/files/patch-app_client_Fingerprinter_LAV_Source.cpp head/audio/lastfm-desktop/files/patch-app_client_MediaDevices_IpodDevice_linux.cpp Modified: head/audio/lastfm-desktop/Makefile head/audio/lastfm-desktop/distinfo head/audio/lastfm-desktop/files/lastfm-desktop.sh.in head/audio/lastfm-desktop/files/patch-app_client_Services_RadioService_RadioService.cpp head/audio/lastfm-desktop/pkg-plist Modified: head/audio/lastfm-desktop/Makefile ============================================================================== --- head/audio/lastfm-desktop/Makefile Sun Jul 3 21:30:55 2016 (r418000) +++ head/audio/lastfm-desktop/Makefile Sun Jul 3 21:40:02 2016 (r418001) @@ -1,13 +1,9 @@ # Created by: Veniamin Gvozdikov # $FreeBSD$ -PORTNAME= lastfm -PORTVERSION= 2.1.30 -PORTREVISION= 5 +PORTNAME= lastfm-desktop +PORTVERSION= 2.1.36 CATEGORIES= audio -MASTER_SITES= http://cdn.last.fm/client/Linux/ -PKGNAMESUFFIX= -desktop -DISTNAME= Last.fm-${PORTVERSION} MAINTAINER= vg@FreeBSD.org COMMENT= Official Last.fm desktop application suite @@ -16,22 +12,40 @@ LICENSE= GPLv3 LIB_DEPENDS= liblastfm.so:audio/liblastfm \ libavcodec.so:multimedia/ffmpeg \ - libgpod.so:audio/libgpod - -USES= pkgconfig qmake tar:bzip2 gmake -USE_QT4= gui linguist_build moc_build network phonon \ - rcc_build uic_build webkit xml -LASTFM= ${PORTNAME}${PKGNAMESUFFIX} -SUB_FILES= ${LASTFM}.sh - -WRKSRC= ${WRKDIR}/${PORTNAME}${PKGNAMESUFFIX}-${PORTVERSION} + libgpod.so:audio/libgpod \ + libimobiledevice.so:comms/libimobiledevice \ + libplist.so:devel/libplist + +USE_GITHUB= yes +GH_ACCOUNT= lastfm + +USES= gettext pkgconfig qmake tar:bzip2 gmake +USE_QT4= corelib gui linguist_build moc_build network phonon \ + rcc_build sql uic_build webkit xml +SUB_FILES= lastfm-desktop.sh + +DESKTOP_ENTRIES="Last.fm Scrobbler" \ + "${COMMENT}" \ + "${PREFIX}/share/pixmaps/audioscrobbler.ico" \ + "lastfm-desktop" \ + "AudioVideo;Audio;Qt;" \ + true + +OPTIONS_SINGLE= PHONON +OPTIONS_SINGLE_PHONON= GSTREAMER VLC +OPTIONS_DEFAULT= VLC +GSTREAMER_DESC= Multimedia via Phonon-GStreamer +GSTREAMER_USE= QT4=dbus,phonon-gst_run GNOME=gdkpixbuf2,glib20 +VLC_DESC= Multimedia via Phonon-VLC +VLC_RUN_DEPENDS= phonon-vlc>=0.6.1:multimedia/phonon-vlc do-install: ${MKDIR} ${STAGEDIR}${DATADIR} - ${INSTALL_SCRIPT} ${WRKDIR}/${LASTFM}.sh ${STAGEDIR}${PREFIX}/bin/${LASTFM} - ${INSTALL_PROGRAM} ${WRKSRC}/_bin/Last.fm\ Scrobbler ${STAGEDIR}${DATADIR} - ${INSTALL_LIB} ${WRKSRC}/_bin/lib*.so* ${STAGEDIR}${DATADIR} - ${INSTALL_DATA} ${WRKSRC}/app/client/Last.fm\ Scrobbler.css \ - ${STAGEDIR}${DATADIR} + ${INSTALL_SCRIPT} ${WRKDIR}/lastfm-desktop.sh ${STAGEDIR}${PREFIX}/bin/lastfm-desktop + ${INSTALL_PROGRAM} ${WRKSRC}/_bin/fingerprinter ${STAGEDIR}${DATADIR} + ${INSTALL_PROGRAM} ${WRKSRC}/_bin/lastfm-scrobbler ${STAGEDIR}${DATADIR} + ${INSTALL_DATA} ${WRKSRC}/app/client/Last.fm\ Scrobbler.css ${STAGEDIR}${DATADIR} + ${INSTALL_DATA} ${WRKSRC}/app/client/audioscrobbler.ico ${STAGEDIR}${PREFIX}/share/pixmaps/ + (cd ${WRKSRC}/app/client && ${COPYTREE_SHARE} qrc ${STAGEDIR}${DATADIR}) .include Modified: head/audio/lastfm-desktop/distinfo ============================================================================== --- head/audio/lastfm-desktop/distinfo Sun Jul 3 21:30:55 2016 (r418000) +++ head/audio/lastfm-desktop/distinfo Sun Jul 3 21:40:02 2016 (r418001) @@ -1,2 +1,3 @@ -SHA256 (Last.fm-2.1.30.tar.bz2) = a8591930af2c76100840fa94082e831d5aeb2893c264528a15ec5151bf0cc2a4 -SIZE (Last.fm-2.1.30.tar.bz2) = 5970748 +TIMESTAMP = 1466108531 +SHA256 (lastfm-lastfm-desktop-2.1.36_GH0.tar.gz) = 2c33e8b8d6442da768bad3fb96e52a67ee17e3e64c5899ad81a893075635b969 +SIZE (lastfm-lastfm-desktop-2.1.36_GH0.tar.gz) = 4087375 Modified: head/audio/lastfm-desktop/files/lastfm-desktop.sh.in ============================================================================== --- head/audio/lastfm-desktop/files/lastfm-desktop.sh.in Sun Jul 3 21:30:55 2016 (r418000) +++ head/audio/lastfm-desktop/files/lastfm-desktop.sh.in Sun Jul 3 21:40:02 2016 (r418001) @@ -1,3 +1,2 @@ #!/bin/sh -LASTFM='Last.fm Scrobbler' -LD_LIBRARY_PATH=%%DATADIR%% %%DATADIR%%/"${LASTFM}" +cd %%DATADIR%% && ./lastfm-scrobbler -stylesheet "Last.fm Scrobbler.css" Modified: head/audio/lastfm-desktop/files/patch-app_client_Services_RadioService_RadioService.cpp ============================================================================== --- head/audio/lastfm-desktop/files/patch-app_client_Services_RadioService_RadioService.cpp Sun Jul 3 21:30:55 2016 (r418000) +++ head/audio/lastfm-desktop/files/patch-app_client_Services_RadioService_RadioService.cpp Sun Jul 3 21:40:02 2016 (r418001) @@ -1,11 +1,11 @@ ---- ./app/client/Services/RadioService/RadioService.cpp.orig 2014-08-29 11:45:14.000000000 +0200 -+++ ./app/client/Services/RadioService/RadioService.cpp 2014-08-29 11:45:43.000000000 +0200 -@@ -309,7 +309,7 @@ +--- app/client/Services/RadioService/RadioService.cpp.orig 2016-06-16 20:32:08 UTC ++++ app/client/Services/RadioService/RadioService.cpp +@@ -307,7 +307,7 @@ RadioService::mute() void RadioService::onPhononStateChanged( Phonon::State newstate, Phonon::State oldstate ) { - qDebug() << oldstate << " -> " << newstate; -+ //qDebug() << oldstate << " -> " << newstate; ++ qDebug() << (int)oldstate << " -> " << (int)newstate; if (m_mediaObject == 0) { qDebug() << "m_mediaObject is null!"; return; Copied and modified: head/audio/lastfm-desktop/files/patch-app_fingerprinter_LAV__Source.cpp (from r418000, head/audio/lastfm-desktop/files/patch-app_client_Fingerprinter_LAV_Source.cpp) ============================================================================== --- head/audio/lastfm-desktop/files/patch-app_client_Fingerprinter_LAV_Source.cpp Sun Jul 3 21:30:55 2016 (r418000, copy source) +++ head/audio/lastfm-desktop/files/patch-app_fingerprinter_LAV__Source.cpp Sun Jul 3 21:40:02 2016 (r418001) @@ -1,11 +1,40 @@ ---- app/client/Fingerprinter/LAV_Source.cpp.orig 2013-10-27 10:26:00.699715369 -0200 -+++ app/client/Fingerprinter/LAV_Source.cpp 2013-10-27 10:26:26.826714410 -0200 -@@ -44,6 +44,8 @@ - - using namespace std; +--- app/fingerprinter/LAV_Source.cpp.orig 2013-09-03 12:19:10 UTC ++++ app/fingerprinter/LAV_Source.cpp +@@ -23,6 +23,10 @@ + #define __STDC_CONSTANT_MACROS 1 + #endif ++#ifndef AVCODEC_MAX_AUDIO_FRAME_SIZE +#define AVCODEC_MAX_AUDIO_FRAME_SIZE 192000 ++#endif + + extern "C" { + #include + #include +@@ -113,7 +117,7 @@ uint8_t * LAV_SourcePrivate::decodeOneFr + { + char buf[256]; + AVPacket packet; +- AVFrame *decodedFrame = avcodec_alloc_frame(); ++ AVFrame *decodedFrame = av_frame_alloc(); + av_init_packet(&packet); + + int frameFinished = 0; +@@ -288,7 +292,7 @@ uint8_t * LAV_SourcePrivate::decodeOneFr + av_free_packet(&packet); + } + timestamp += (double)nSamples / decodedFrame->sample_rate; +- avcodec_free_frame(&decodedFrame); ++ av_frame_free(&decodedFrame); + return outBuffer; + } + +@@ -405,7 +409,7 @@ void LAV_Source::getInfo(int& lengthSecs - /* - Don't change these values! + void LAV_Source::release() + { +- if ( d->inCodecContext && d->inCodecContext->codec_id != CODEC_ID_NONE ) ++ if ( d->inCodecContext && d->inCodecContext->codec_id != AV_CODEC_ID_NONE ) + { + avcodec_close(d->inCodecContext); + } Modified: head/audio/lastfm-desktop/pkg-plist ============================================================================== --- head/audio/lastfm-desktop/pkg-plist Sun Jul 3 21:30:55 2016 (r418000) +++ head/audio/lastfm-desktop/pkg-plist Sun Jul 3 21:40:02 2016 (r418001) @@ -1,15 +1,227 @@ bin/lastfm-desktop -%%DATADIR%%/Last.fm Scrobbler +%%DATADIR%%/fingerprinter +%%DATADIR%%/lastfm-scrobbler %%DATADIR%%/Last.fm Scrobbler.css -%%DATADIR%%/liblistener.so -%%DATADIR%%/liblistener.so.1 -%%DATADIR%%/liblistener.so.1.0 -%%DATADIR%%/liblistener.so.1.0.0 -%%DATADIR%%/liblogger.so -%%DATADIR%%/liblogger.so.1 -%%DATADIR%%/liblogger.so.1.0 -%%DATADIR%%/liblogger.so.1.0.0 -%%DATADIR%%/libunicorn.so -%%DATADIR%%/libunicorn.so.1 -%%DATADIR%%/libunicorn.so.1.0 -%%DATADIR%%/libunicorn.so.1.0.0 +%%DATADIR%%/qrc/16x16.png +%%DATADIR%%/qrc/22x22.png +%%DATADIR%%/qrc/22x22_transparent.png +%%DATADIR%%/qrc/as.png +%%DATADIR%%/qrc/asterisk_small.png +%%DATADIR%%/qrc/audioscrobbler.qrc +%%DATADIR%%/qrc/beta_sash.png +%%DATADIR%%/qrc/button_LEFT_HOVER.png +%%DATADIR%%/qrc/button_LEFT_PRESS.png +%%DATADIR%%/qrc/button_LEFT_REST.png +%%DATADIR%%/qrc/button_MIDDLE_HOVER.png +%%DATADIR%%/qrc/button_MIDDLE_PRESS.png +%%DATADIR%%/qrc/button_MIDDLE_REST.png +%%DATADIR%%/qrc/button_RIGHT_HOVER.png +%%DATADIR%%/qrc/button_RIGHT_PRESS.png +%%DATADIR%%/qrc/button_RIGHT_REST.png +%%DATADIR%%/qrc/button_dark_LEFT_HOVER.png +%%DATADIR%%/qrc/button_dark_LEFT_PRESS.png +%%DATADIR%%/qrc/button_dark_LEFT_REST.png +%%DATADIR%%/qrc/button_dark_MIDDLE_HOVER.png +%%DATADIR%%/qrc/button_dark_MIDDLE_PRESS.png +%%DATADIR%%/qrc/button_dark_MIDDLE_REST.png +%%DATADIR%%/qrc/button_dark_RIGHT_HOVER.png +%%DATADIR%%/qrc/button_dark_RIGHT_PRESS.png +%%DATADIR%%/qrc/button_dark_RIGHT_REST.png +%%DATADIR%%/qrc/control_bar_back.png +%%DATADIR%%/qrc/control_bar_radio_artist.png +%%DATADIR%%/qrc/control_bar_radio_as.png +%%DATADIR%%/qrc/control_bar_radio_friends.png +%%DATADIR%%/qrc/control_bar_radio_library.png +%%DATADIR%%/qrc/control_bar_radio_mix.png +%%DATADIR%%/qrc/control_bar_radio_rec.png +%%DATADIR%%/qrc/control_bar_radio_tag.png +%%DATADIR%%/qrc/control_bar_scrobble_foobar.png +%%DATADIR%%/qrc/control_bar_scrobble_itunes.png +%%DATADIR%%/qrc/control_bar_scrobble_spotify.png +%%DATADIR%%/qrc/control_bar_scrobble_winamp.png +%%DATADIR%%/qrc/control_bar_scrobble_wmp.png +%%DATADIR%%/qrc/controls_ban_HOVER.png +%%DATADIR%%/qrc/controls_ban_PRESS.png +%%DATADIR%%/qrc/controls_ban_REST.png +%%DATADIR%%/qrc/controls_love_OFF_HOVER.png +%%DATADIR%%/qrc/controls_love_OFF_PRESS.png +%%DATADIR%%/qrc/controls_love_OFF_REST.png +%%DATADIR%%/qrc/controls_love_ON_HOVER.png +%%DATADIR%%/qrc/controls_love_ON_PRESS.png +%%DATADIR%%/qrc/controls_love_ON_REST.png +%%DATADIR%%/qrc/controls_pause_HOVER.png +%%DATADIR%%/qrc/controls_pause_PRESS.png +%%DATADIR%%/qrc/controls_pause_REST.png +%%DATADIR%%/qrc/controls_play_HOVER.png +%%DATADIR%%/qrc/controls_play_PRESS.png +%%DATADIR%%/qrc/controls_play_REST.png +%%DATADIR%%/qrc/controls_skip_HOVER.png +%%DATADIR%%/qrc/controls_skip_PRESS.png +%%DATADIR%%/qrc/controls_skip_REST.png +%%DATADIR%%/qrc/delete.png +%%DATADIR%%/qrc/header_tags.png +%%DATADIR%%/qrc/highlight.png +%%DATADIR%%/qrc/icon_eq.gif +%%DATADIR%%/qrc/lastfm_icon_16_grayscale.png +%%DATADIR%%/qrc/lastfm_icon_22_grayscale.png +%%DATADIR%%/qrc/loading_meta.gif +%%DATADIR%%/qrc/loading_radio.gif +%%DATADIR%%/qrc/mac_control_bar_as_OFF.png +%%DATADIR%%/qrc/message_close.png +%%DATADIR%%/qrc/message_error.png +%%DATADIR%%/qrc/message_info.png +%%DATADIR%%/qrc/meta_album_no_art.png +%%DATADIR%%/qrc/meta_artist_no_photo.png +%%DATADIR%%/qrc/meta_ban_REST.png +%%DATADIR%%/qrc/meta_buy_HOVER.png +%%DATADIR%%/qrc/meta_buy_PRESS.png +%%DATADIR%%/qrc/meta_buy_REST.png +%%DATADIR%%/qrc/meta_context_arrow.png +%%DATADIR%%/qrc/meta_love_OFF_HOVER.png +%%DATADIR%%/qrc/meta_love_OFF_PRESS.png +%%DATADIR%%/qrc/meta_love_OFF_REST.png +%%DATADIR%%/qrc/meta_love_ON_HOVER.png +%%DATADIR%%/qrc/meta_love_ON_PRESS.png +%%DATADIR%%/qrc/meta_love_ON_REST.png +%%DATADIR%%/qrc/meta_radio_LEFT_HOVER.png +%%DATADIR%%/qrc/meta_radio_LEFT_PRESS.png +%%DATADIR%%/qrc/meta_radio_LEFT_REST.png +%%DATADIR%%/qrc/meta_radio_MIDDLE_HOVER.png +%%DATADIR%%/qrc/meta_radio_MIDDLE_PRESS.png +%%DATADIR%%/qrc/meta_radio_MIDDLE_REST.png +%%DATADIR%%/qrc/meta_radio_RIGHT_HOVER.png +%%DATADIR%%/qrc/meta_radio_RIGHT_PRESS.png +%%DATADIR%%/qrc/meta_radio_RIGHT_REST.png +%%DATADIR%%/qrc/meta_share_HOVER.png +%%DATADIR%%/qrc/meta_share_PRESS.png +%%DATADIR%%/qrc/meta_share_REST.png +%%DATADIR%%/qrc/meta_skip_REST.png +%%DATADIR%%/qrc/meta_tag_HOVER.png +%%DATADIR%%/qrc/meta_tag_LEFT_HOVER.png +%%DATADIR%%/qrc/meta_tag_LEFT_REST.png +%%DATADIR%%/qrc/meta_tag_MIDDLE_HOVER.png +%%DATADIR%%/qrc/meta_tag_MIDDLE_REST.png +%%DATADIR%%/qrc/meta_tag_PRESS.png +%%DATADIR%%/qrc/meta_tag_REST.png +%%DATADIR%%/qrc/meta_tag_RIGHT_HOVER.png +%%DATADIR%%/qrc/meta_tag_RIGHT_REST.png +%%DATADIR%%/qrc/now-playing-PRESS.png +%%DATADIR%%/qrc/now-playing-REST.png +%%DATADIR%%/qrc/on_tour.png +%%DATADIR%%/qrc/preferences_accounts.png +%%DATADIR%%/qrc/preferences_advanced.png +%%DATADIR%%/qrc/preferences_devices.png +%%DATADIR%%/qrc/preferences_general.png +%%DATADIR%%/qrc/preferences_scrobbling.png +%%DATADIR%%/qrc/progress_slot_OFF.png +%%DATADIR%%/qrc/progress_slot_ON.png +%%DATADIR%%/qrc/radio_eq_small.gif +%%DATADIR%%/qrc/radio_friends_HOVER.png +%%DATADIR%%/qrc/radio_friends_PRESS.png +%%DATADIR%%/qrc/radio_friends_REST.png +%%DATADIR%%/qrc/radio_library_HOVER.png +%%DATADIR%%/qrc/radio_library_PRESS.png +%%DATADIR%%/qrc/radio_library_REST.png +%%DATADIR%%/qrc/radio_mix_HOVER.png +%%DATADIR%%/qrc/radio_mix_PRESS.png +%%DATADIR%%/qrc/radio_mix_REST.png +%%DATADIR%%/qrc/radio_play_large_HOVER.png +%%DATADIR%%/qrc/radio_play_large_PRESS.png +%%DATADIR%%/qrc/radio_play_large_REST.png +%%DATADIR%%/qrc/radio_play_small_HOVER.png +%%DATADIR%%/qrc/radio_play_small_PRESS.png +%%DATADIR%%/qrc/radio_play_small_REST.png +%%DATADIR%%/qrc/radio_rec_HOVER.png +%%DATADIR%%/qrc/radio_rec_PRESS.png +%%DATADIR%%/qrc/radio_rec_REST.png +%%DATADIR%%/qrc/scrobble_OFF.png +%%DATADIR%%/qrc/scrobble_marker_OFF.png +%%DATADIR%%/qrc/scrobble_marker_ON.png +%%DATADIR%%/qrc/scrobble_progress_OFF.png +%%DATADIR%%/qrc/scrobble_progress_ON.png +%%DATADIR%%/qrc/scrobbles_refresh.png +%%DATADIR%%/qrc/settings_HOVER.png +%%DATADIR%%/qrc/settings_PRESS.png +%%DATADIR%%/qrc/settings_REST.png +%%DATADIR%%/qrc/share_29x29_disabled.png +%%DATADIR%%/qrc/share_29x29_hover.png +%%DATADIR%%/qrc/share_29x29_pressed.png +%%DATADIR%%/qrc/share_29x29_rest.png +%%DATADIR%%/qrc/slider_nub%%QT_BINDIR%%.png +%%DATADIR%%/qrc/start_bg.png +%%DATADIR%%/qrc/subscribe_bg.png +%%DATADIR%%/qrc/subscribe_radio.png +%%DATADIR%%/qrc/systray_icon_pressed_mac.png +%%DATADIR%%/qrc/systray_icon_rest_mac.png +%%DATADIR%%/qrc/tab_friends_ACTIVE.png +%%DATADIR%%/qrc/tab_friends_HOVER.png +%%DATADIR%%/qrc/tab_friends_REST.png +%%DATADIR%%/qrc/tab_now_playing_ACTIVE.png +%%DATADIR%%/qrc/tab_now_playing_HOVER.png +%%DATADIR%%/qrc/tab_now_playing_REST.png +%%DATADIR%%/qrc/tab_profile_ACTIVE.png +%%DATADIR%%/qrc/tab_profile_HOVER.png +%%DATADIR%%/qrc/tab_profile_REST.png +%%DATADIR%%/qrc/tab_radio_ACTIVE.png +%%DATADIR%%/qrc/tab_radio_HOVER.png +%%DATADIR%%/qrc/tab_radio_REST.png +%%DATADIR%%/qrc/tab_scrobbles_ACTIVE.png +%%DATADIR%%/qrc/tab_scrobbles_HOVER.png +%%DATADIR%%/qrc/tab_scrobbles_REST.png +%%DATADIR%%/qrc/tag_29x29_disabled.png +%%DATADIR%%/qrc/tag_29x29_hover.png +%%DATADIR%%/qrc/tag_29x29_pressed.png +%%DATADIR%%/qrc/tag_29x29_rest.png +%%DATADIR%%/qrc/taskbar-ban-16x16.png +%%DATADIR%%/qrc/taskbar-info-16x16.png +%%DATADIR%%/qrc/taskbar-love-OFF-16x16.png +%%DATADIR%%/qrc/taskbar-love-ON-16x16.png +%%DATADIR%%/qrc/taskbar-play-16x16.png +%%DATADIR%%/qrc/taskbar-skip-16x16.png +%%DATADIR%%/qrc/titlebar_highlight.png +%%DATADIR%%/qrc/user_default.png +%%DATADIR%%/qrc/volume_high.png +%%DATADIR%%/qrc/volume_knob_PRESS.png +%%DATADIR%%/qrc/volume_knob_REST.png +%%DATADIR%%/qrc/volume_low.png +%%DATADIR%%/qrc/volume_mid.png +%%DATADIR%%/qrc/volume_mute.png +%%DATADIR%%/qrc/window_drag_corner.png +%%DATADIR%%/qrc/window_drag_corner_minimum.png +%%DATADIR%%/qrc/wizard/arrow.png +%%DATADIR%%/qrc/wizard/arrow_bigger_than_dropbox.png +%%DATADIR%%/qrc/wizard/arrow_even_bigger_than_dropbox.png +%%DATADIR%%/qrc/wizard/bg_clouds.png +%%DATADIR%%/qrc/wizard/button_grey_LEFT_HOVER.png +%%DATADIR%%/qrc/wizard/button_grey_LEFT_REST.png +%%DATADIR%%/qrc/wizard/button_grey_MIDDLE_HOVER.png +%%DATADIR%%/qrc/wizard/button_grey_MIDDLE_REST.png +%%DATADIR%%/qrc/wizard/button_grey_RIGHT_HOVER.png +%%DATADIR%%/qrc/wizard/button_grey_RIGHT_REST.png +%%DATADIR%%/qrc/wizard/button_red_LEFT_HOVER.png +%%DATADIR%%/qrc/wizard/button_red_LEFT_REST.png +%%DATADIR%%/qrc/wizard/button_red_MIDDLE_HOVER.png +%%DATADIR%%/qrc/wizard/button_red_MIDDLE_REST.png +%%DATADIR%%/qrc/wizard/button_red_RIGHT_HOVER.png +%%DATADIR%%/qrc/wizard/button_red_RIGHT_REST.png +%%DATADIR%%/qrc/wizard/graphic_access.png +%%DATADIR%%/qrc/wizard/graphic_connect.png +%%DATADIR%%/qrc/wizard/graphic_finish.png +%%DATADIR%%/qrc/wizard/graphic_import_foobar.png +%%DATADIR%%/qrc/wizard/graphic_import_itunes.png +%%DATADIR%%/qrc/wizard/graphic_import_winamp.png +%%DATADIR%%/qrc/wizard/graphic_import_wmp.png +%%DATADIR%%/qrc/wizard/graphic_importing.gif +%%DATADIR%%/qrc/wizard/graphic_location_MAC.png +%%DATADIR%%/qrc/wizard/graphic_location_WIN.png +%%DATADIR%%/qrc/wizard/graphic_metadata.png +%%DATADIR%%/qrc/wizard/graphic_plugins.png +%%DATADIR%%/qrc/wizard/graphic_radio.png +%%DATADIR%%/qrc/wizard/graphic_scrobbles.png +%%DATADIR%%/qrc/wizard/lastfm_icon_32.png +%%DATADIR%%/qrc/wizard/lastfm_icon_64.png +%%DATADIR%%/qrc/wizard/player_foobar_64.png +%%DATADIR%%/qrc/wizard/player_itunes_64.png +%%DATADIR%%/qrc/wizard/player_winamp_64.png +%%DATADIR%%/qrc/wizard/player_wmp_64.png +share/pixmaps/audioscrobbler.ico From owner-svn-ports-all@freebsd.org Sun Jul 3 21:59:00 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 160CBB90062; Sun, 3 Jul 2016 21:59:00 +0000 (UTC) (envelope-from marino@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id DCD922F10; Sun, 3 Jul 2016 21:58:59 +0000 (UTC) (envelope-from marino@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u63LwxqT059752; Sun, 3 Jul 2016 21:58:59 GMT (envelope-from marino@FreeBSD.org) Received: (from marino@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u63LwxAS059750; Sun, 3 Jul 2016 21:58:59 GMT (envelope-from marino@FreeBSD.org) Message-Id: <201607032158.u63LwxAS059750@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: marino set sender to marino@FreeBSD.org using -f From: John Marino Date: Sun, 3 Jul 2016 21:58:59 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418002 - head/lang/gnatdroid-binutils X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 03 Jul 2016 21:59:00 -0000 Author: marino Date: Sun Jul 3 21:58:58 2016 New Revision: 418002 URL: https://svnweb.freebsd.org/changeset/ports/418002 Log: lang/gnatdroid-binutils(-x86): Upgrade version 2.26 => 2.26.1 Modified: head/lang/gnatdroid-binutils/Makefile head/lang/gnatdroid-binutils/distinfo Modified: head/lang/gnatdroid-binutils/Makefile ============================================================================== --- head/lang/gnatdroid-binutils/Makefile Sun Jul 3 21:40:02 2016 (r418001) +++ head/lang/gnatdroid-binutils/Makefile Sun Jul 3 21:58:58 2016 (r418002) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= binutils -PORTVERSION= 2.26 +PORTVERSION= 2.26.1 CATEGORIES= lang MASTER_SITES= SOURCEWARE/binutils/releases PKGNAMEPREFIX= gnatdroid- Modified: head/lang/gnatdroid-binutils/distinfo ============================================================================== --- head/lang/gnatdroid-binutils/distinfo Sun Jul 3 21:40:02 2016 (r418001) +++ head/lang/gnatdroid-binutils/distinfo Sun Jul 3 21:58:58 2016 (r418002) @@ -1,2 +1,3 @@ -SHA256 (binutils-2.26.tar.bz2) = c2ace41809542f5237afc7e3b8f32bb92bc7bc53c6232a84463c423b0714ecd9 -SIZE (binutils-2.26.tar.bz2) = 25543552 +TIMESTAMP = 1467495206 +SHA256 (binutils-2.26.1.tar.bz2) = 39c346c87aa4fb14b2f786560aec1d29411b6ec34dce3fe7309fe3dd56949fd8 +SIZE (binutils-2.26.1.tar.bz2) = 25595243 From owner-svn-ports-all@freebsd.org Sun Jul 3 22:27:17 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 0CB15B90627; Sun, 3 Jul 2016 22:27:17 +0000 (UTC) (envelope-from junovitch@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) by mx1.freebsd.org (Postfix) with ESMTP id 005DB2ADB; Sun, 3 Jul 2016 22:27:17 +0000 (UTC) (envelope-from junovitch@FreeBSD.org) Received: from Silverstone (localhost [IPv6:::1]) by freefall.freebsd.org (Postfix) with ESMTP id 380A51108; Sun, 3 Jul 2016 22:27:16 +0000 (UTC) (envelope-from junovitch@FreeBSD.org) Date: Sun, 3 Jul 2016 18:27:15 -0400 From: Jason Unovitch To: Bernard Spil Cc: Mathieu Arnold , Adam Weinberger , ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: Re: svn commit: r417795 - head/security/letskencrypt Message-ID: <20160703222715.GA38987@Silverstone> References: <201606292055.u5TKtOwU090876@repo.freebsd.org> <08FF4FCE-BAD2-4F26-9082-FE04378133B0@adamw.org> <36C82FFBA7D42A621D21CE03@atuin.in.mat.cc> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.6.1 (2016-04-27) X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 03 Jul 2016 22:27:17 -0000 On Thu, Jun 30, 2016 at 11:19:20AM +0200, Bernard Spil wrote: > -----BEGIN PGP SIGNED MESSAGE----- > Hash: SHA1 > > On 2016-06-29 23:11, Mathieu Arnold wrote: > > +--On 29 juin 2016 15:04:28 -0600 Adam Weinberger wrote: > > |> On 29 Jun, 2016, at 14:55, Bernard Spil wrote: > > |> > > |> > > |> +USES= gmake ssl:libressl tar:tgz > > | > > | Is USES=ssl:libressl real? It seems like a great idea, but I didn't know > > | it was a thing. > > > > It's about the same as USES=ssl:foobar :-) > > Just figured this out as well :D > > Luckily it is a no-op, the ports framework just makes it ssl_ARGS which > is not used in Mk/Uses/ssl.mk. > > The port takes care of the problem at the bottom of the Makefile > > .if empty(SSL_DEFAULT:Mlibressl*) > IGNORE= needs LibreSSL to build. set DEFAULT_VERSIONS+=ssl=libressl \ > and rebuild all ports that depend on openssl > .endif > > which matches either security/libressl or security/libressl-devel. > Can you fix the ssl:libressl then? It doesn't make much sense to have this non-functional line in the port. From owner-svn-ports-all@freebsd.org Sun Jul 3 22:57:26 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 5DDE2B90A3C; Sun, 3 Jul 2016 22:57:26 +0000 (UTC) (envelope-from junovitch@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 102F32454; Sun, 3 Jul 2016 22:57:25 +0000 (UTC) (envelope-from junovitch@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u63MvPdI081727; Sun, 3 Jul 2016 22:57:25 GMT (envelope-from junovitch@FreeBSD.org) Received: (from junovitch@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u63MvPvO081726; Sun, 3 Jul 2016 22:57:25 GMT (envelope-from junovitch@FreeBSD.org) Message-Id: <201607032257.u63MvPvO081726@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: junovitch set sender to junovitch@FreeBSD.org using -f From: Jason Unovitch Date: Sun, 3 Jul 2016 22:57:25 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418003 - head/security/vuxml X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 03 Jul 2016 22:57:26 -0000 Author: junovitch Date: Sun Jul 3 22:57:24 2016 New Revision: 418003 URL: https://svnweb.freebsd.org/changeset/ports/418003 Log: Document multiple security advisories for Moodle Security: CVE-2016-3729 Security: CVE-2016-3731 Security: CVE-2016-3732 Security: CVE-2016-3733 Security: CVE-2016-3734 Security: https://vuxml.FreeBSD.org/freebsd/8656cf5f-4170-11e6-8dfe-002590263bf5.html Modified: head/security/vuxml/vuln.xml Modified: head/security/vuxml/vuln.xml ============================================================================== --- head/security/vuxml/vuln.xml Sun Jul 3 21:58:58 2016 (r418002) +++ head/security/vuxml/vuln.xml Sun Jul 3 22:57:24 2016 (r418003) @@ -58,6 +58,55 @@ Notes: * Do not forget port variants (linux-f10-libxml2, libxml2, etc.) --> + + moodle -- multiple vulnerabilities + + + moodle28 + 2.8.12 + + + moodle29 + 2.9.6 + + + moodle30 + 3.0.4 + + + + +

Marina Glancy reports:

+
+
    +
  • MSA-16-0013: Users are able to change profile fields that + were locked by the administrator.

  • +
  • MSA-16-0015: Information disclosure of hidden forum names + and sub-names.

  • +
  • MSA-16-0016: User can view badges of other users without + proper permissions.

  • +
  • MSA-16-0017: Course idnumber not protected from teacher + restore.

  • +
  • MSA-16-0018: CSRF in script marking forum posts as read.

    +
  • +
+
+ +
+ + CVE-2016-3729 + CVE-2016-3731 + CVE-2016-3732 + CVE-2016-3733 + CVE-2016-3734 + https://moodle.org/security/ + + + 2016-05-18 + 2016-07-03 + +
+ icingaweb2 -- remote code execution From owner-svn-ports-all@freebsd.org Sun Jul 3 23:13:15 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 6CE31B90ECD; Sun, 3 Jul 2016 23:13:15 +0000 (UTC) (envelope-from junovitch@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 397422B66; Sun, 3 Jul 2016 23:13:15 +0000 (UTC) (envelope-from junovitch@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u63NDEvS088869; Sun, 3 Jul 2016 23:13:14 GMT (envelope-from junovitch@FreeBSD.org) Received: (from junovitch@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u63NDEOu088868; Sun, 3 Jul 2016 23:13:14 GMT (envelope-from junovitch@FreeBSD.org) Message-Id: <201607032313.u63NDEOu088868@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: junovitch set sender to junovitch@FreeBSD.org using -f From: Jason Unovitch Date: Sun, 3 Jul 2016 23:13:14 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418004 - head/security/vuxml X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 03 Jul 2016 23:13:15 -0000 Author: junovitch Date: Sun Jul 3 23:13:14 2016 New Revision: 418004 URL: https://svnweb.freebsd.org/changeset/ports/418004 Log: Update earlier openvswitch entry with version fixed in ports PR: 208404 Reported by: ohauer Security: CVE-2016-2074 Security: https://vuxml.FreeBSD.org/freebsd/b53bbf58-257f-11e6-9f4d-20cf30e32f6d.html Modified: head/security/vuxml/vuln.xml Modified: head/security/vuxml/vuln.xml ============================================================================== --- head/security/vuxml/vuln.xml Sun Jul 3 22:57:24 2016 (r418003) +++ head/security/vuxml/vuln.xml Sun Jul 3 23:13:14 2016 (r418004) @@ -1966,7 +1966,8 @@ Notes: openvswitch - 2.3.2_1 + 2.2.02.3.3 + 2.4.02.4.1 @@ -1990,10 +1991,13 @@ Notes: CVE-2016-2074 + http://openvswitch.org/pipermail/announce/2016-March/000082.html + http://openvswitch.org/pipermail/announce/2016-March/000083.html 2016-03-28 2016-05-29 + 2016-07-03 From owner-svn-ports-all@freebsd.org Mon Jul 4 00:08:09 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 40126B908A4; Mon, 4 Jul 2016 00:08:09 +0000 (UTC) (envelope-from wen@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 0C5642ABB; Mon, 4 Jul 2016 00:08: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 u64088si007772; Mon, 4 Jul 2016 00:08:08 GMT (envelope-from wen@FreeBSD.org) Received: (from wen@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u64087v9007767; Mon, 4 Jul 2016 00:08:07 GMT (envelope-from wen@FreeBSD.org) Message-Id: <201607040008.u64087v9007767@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: wen set sender to wen@FreeBSD.org using -f From: Wen Heping Date: Mon, 4 Jul 2016 00:08:07 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r418005 - in branches/2016Q3/lang: python-doc-html python27 python27/files X-SVN-Group: ports-branches MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Jul 2016 00:08:09 -0000 Author: wen Date: Mon Jul 4 00:08:07 2016 New Revision: 418005 URL: https://svnweb.freebsd.org/changeset/ports/418005 Log: MFH: r417945 - Update to version 2.7.12 - Remove patch that is included upstream - Switch USE_OPENSSL to USES= ssl [1] - Update documentation for python27 - Don't set CPE_VERSION, default is PORTVERSION [1] PR: 210685 Submitted by: wen@(myself), brnrd@ [1] Exp-run by: antoine Differential Revision: https://reviews.freebsd.org/D6994 Approved by: ports-secteam(feld@) Deleted: branches/2016Q3/lang/python27/files/patch-Modules_zipimport.c Modified: branches/2016Q3/lang/python-doc-html/distinfo branches/2016Q3/lang/python27/Makefile branches/2016Q3/lang/python27/Makefile.version branches/2016Q3/lang/python27/distinfo branches/2016Q3/lang/python27/pkg-plist Directory Properties: branches/2016Q3/ (props changed) Modified: branches/2016Q3/lang/python-doc-html/distinfo ============================================================================== --- branches/2016Q3/lang/python-doc-html/distinfo Sun Jul 3 23:13:14 2016 (r418004) +++ branches/2016Q3/lang/python-doc-html/distinfo Mon Jul 4 00:08:07 2016 (r418005) @@ -22,3 +22,11 @@ SHA256 (python/python-3.4.3-docs-pdf-a4. SIZE (python/python-3.4.3-docs-pdf-a4.tar.bz2) = 11803193 SHA256 (python/python-3.4.3-docs-pdf-letter.tar.bz2) = 6441397672b65c95cb589e8a9b0ccde3b32063906ee980df2d1db021337bcc3a SIZE (python/python-3.4.3-docs-pdf-letter.tar.bz2) = 11894229 +SHA256 (python/python-2.7.12-docs-html.tar.bz2) = 40891e010cdd9a752a17bd02e30aa853f9a2a7767ee82911cf4507dfa3b13de8 +SIZE (python/python-2.7.12-docs-html.tar.bz2) = 4601696 +SHA256 (python/python-2.7.12-docs-pdf-a4.tar.bz2) = d7d2d1941855520220ab37f474d5534b8ffe1e0f073e62b14e5d5780caae7ddc +SIZE (python/python-2.7.12-docs-pdf-a4.tar.bz2) = 10687064 +SHA256 (python/python-2.7.12-docs-pdf-letter.tar.bz2) = c501cd12eb666b3dab32dd4ecf91d873e9a578401afcb94f7e0a3529a971eee0 +SIZE (python/python-2.7.12-docs-pdf-letter.tar.bz2) = 10741538 +SHA256 (python/python-2.7.12-docs-text.tar.bz2) = 83a39db742ccae75c2660ea816a5c71ceffb8ad67238a7cbbb31d992725e87ea +SIZE (python/python-2.7.12-docs-text.tar.bz2) = 1610618 Modified: branches/2016Q3/lang/python27/Makefile ============================================================================== --- branches/2016Q3/lang/python27/Makefile Sun Jul 3 23:13:14 2016 (r418004) +++ branches/2016Q3/lang/python27/Makefile Mon Jul 4 00:08:07 2016 (r418005) @@ -2,7 +2,6 @@ PORTNAME= python27 PORTVERSION= ${PYTHON_PORTVERSION} -PORTREVISION= 3 CATEGORIES= lang python ipv6 MASTER_SITES= PYTHON/ftp/python/${PORTVERSION} DISTNAME= Python-${PORTVERSION} @@ -13,14 +12,12 @@ COMMENT= Interpreted object-oriented pro LICENSE= PSFL -USES= cpe ncurses pkgconfig readline tar:xz +USES= cpe ncurses pkgconfig readline ssl tar:xz USE_LDCONFIG= yes -USE_OPENSSL= yes GNU_CONFIGURE= yes CPE_VENDOR= python CPE_PRODUCT= ${CPE_VENDOR} -CPE_VERSION= ${PORTVERSION} CONFIGURE_ARGS+= --enable-shared CONFIGURE_ENV+= ac_cv_opt_olimit_ok=no OPT="" # Null out OPT to respect user CFLAGS and remove optimizations Modified: branches/2016Q3/lang/python27/Makefile.version ============================================================================== --- branches/2016Q3/lang/python27/Makefile.version Sun Jul 3 23:13:14 2016 (r418004) +++ branches/2016Q3/lang/python27/Makefile.version Mon Jul 4 00:08:07 2016 (r418005) @@ -1,4 +1,4 @@ # Mk/Uses/python.mk includes this file, don't remove it! # $FreeBSD$ -PYTHON_PORTVERSION= 2.7.11 +PYTHON_PORTVERSION= 2.7.12 Modified: branches/2016Q3/lang/python27/distinfo ============================================================================== --- branches/2016Q3/lang/python27/distinfo Sun Jul 3 23:13:14 2016 (r418004) +++ branches/2016Q3/lang/python27/distinfo Mon Jul 4 00:08:07 2016 (r418005) @@ -1,2 +1,3 @@ -SHA256 (python/Python-2.7.11.tar.xz) = 962b4c45af50124ea61f11a30deb4342fc0bc21126790fa1d7f6c79809413f46 -SIZE (python/Python-2.7.11.tar.xz) = 12277476 +TIMESTAMP = 1467158541 +SHA256 (python/Python-2.7.12.tar.xz) = d7837121dd5652a05fef807c361909d255d173280c4e1a4ded94d73d80a1f978 +SIZE (python/Python-2.7.12.tar.xz) = 12390820 Modified: branches/2016Q3/lang/python27/pkg-plist ============================================================================== --- branches/2016Q3/lang/python27/pkg-plist Sun Jul 3 23:13:14 2016 (r418004) +++ branches/2016Q3/lang/python27/pkg-plist Mon Jul 4 00:08:07 2016 (r418005) @@ -1436,8 +1436,8 @@ lib/python2.7/ensurepip/__init__.pyo lib/python2.7/ensurepip/__main__.py lib/python2.7/ensurepip/__main__.pyc lib/python2.7/ensurepip/__main__.pyo -lib/python2.7/ensurepip/_bundled/pip-7.1.2-py2.py3-none-any.whl -lib/python2.7/ensurepip/_bundled/setuptools-18.2-py2.py3-none-any.whl +lib/python2.7/ensurepip/_bundled/pip-8.1.1-py2.py3-none-any.whl +lib/python2.7/ensurepip/_bundled/setuptools-20.10.1-py2.py3-none-any.whl lib/python2.7/ensurepip/_uninstall.py lib/python2.7/ensurepip/_uninstall.pyc lib/python2.7/ensurepip/_uninstall.pyo @@ -1729,12 +1729,18 @@ lib/python2.7/idlelib/idle_test/test_con lib/python2.7/idlelib/idle_test/test_delegator.py lib/python2.7/idlelib/idle_test/test_delegator.pyo lib/python2.7/idlelib/idle_test/test_delegator.pyc +lib/python2.7/idlelib/idle_test/test_editmenu.py +lib/python2.7/idlelib/idle_test/test_editmenu.pyo +lib/python2.7/idlelib/idle_test/test_editmenu.pyc lib/python2.7/idlelib/idle_test/test_formatparagraph.py lib/python2.7/idlelib/idle_test/test_formatparagraph.pyo lib/python2.7/idlelib/idle_test/test_formatparagraph.pyc lib/python2.7/idlelib/idle_test/test_grep.py lib/python2.7/idlelib/idle_test/test_grep.pyo lib/python2.7/idlelib/idle_test/test_grep.pyc +lib/python2.7/idlelib/idle_test/test_helpabout.py +lib/python2.7/idlelib/idle_test/test_helpabout.pyo +lib/python2.7/idlelib/idle_test/test_helpabout.pyc lib/python2.7/idlelib/idle_test/test_hyperparser.py lib/python2.7/idlelib/idle_test/test_hyperparser.pyo lib/python2.7/idlelib/idle_test/test_hyperparser.pyc @@ -2723,13 +2729,12 @@ lib/python2.7/test/badsyntax_future7.py lib/python2.7/test/badsyntax_future8.py lib/python2.7/test/badsyntax_future9.py lib/python2.7/test/badsyntax_nocaret.py -lib/python2.7/test/buffer_tests.py -lib/python2.7/test/buffer_tests.pyo -lib/python2.7/test/buffer_tests.pyc +lib/python2.7/test/capath/0e4015b9.0 lib/python2.7/test/capath/4e1295a3.0 lib/python2.7/test/capath/5ed36f99.0 lib/python2.7/test/capath/6e88d7b8.0 lib/python2.7/test/capath/99d0fa06.0 +lib/python2.7/test/capath/ce7b8643.0 lib/python2.7/test/cfgparser.1 lib/python2.7/test/check_soundcard.vbs lib/python2.7/test/cmath_testcases.txt @@ -2929,7 +2934,6 @@ lib/python2.7/test/gdb_sample.py lib/python2.7/test/gdb_sample.pyo lib/python2.7/test/gdb_sample.pyc lib/python2.7/test/greyrgb.uue -lib/python2.7/test/https_svn_python_org_root.pem lib/python2.7/test/ieee754.txt lib/python2.7/test/imghdrdata/python.bmp lib/python2.7/test/imghdrdata/python.gif @@ -3252,9 +3256,6 @@ lib/python2.7/test/test_codecs.pyc lib/python2.7/test/test_codeop.py lib/python2.7/test/test_codeop.pyo lib/python2.7/test/test_codeop.pyc -lib/python2.7/test/test_coding.py -lib/python2.7/test/test_coding.pyo -lib/python2.7/test/test_coding.pyc lib/python2.7/test/test_coercion.py lib/python2.7/test/test_coercion.pyo lib/python2.7/test/test_coercion.pyc @@ -3770,6 +3771,9 @@ lib/python2.7/test/test_operator.pyc lib/python2.7/test/test_optparse.py lib/python2.7/test/test_optparse.pyo lib/python2.7/test/test_optparse.pyc +lib/python2.7/test/test_ordered_dict.py +lib/python2.7/test/test_ordered_dict.pyo +lib/python2.7/test/test_ordered_dict.pyc lib/python2.7/test/test_os.py lib/python2.7/test/test_os.pyo lib/python2.7/test/test_os.pyc @@ -3788,15 +3792,9 @@ lib/python2.7/test/test_peepholer.pyc lib/python2.7/test/test_pep247.py lib/python2.7/test/test_pep247.pyo lib/python2.7/test/test_pep247.pyc -lib/python2.7/test/test_pep263.py -lib/python2.7/test/test_pep263.pyo -lib/python2.7/test/test_pep263.pyc lib/python2.7/test/test_pep277.py lib/python2.7/test/test_pep277.pyo lib/python2.7/test/test_pep277.pyc -lib/python2.7/test/test_pep292.py -lib/python2.7/test/test_pep292.pyo -lib/python2.7/test/test_pep292.pyc lib/python2.7/test/test_pep352.py lib/python2.7/test/test_pep352.pyo lib/python2.7/test/test_pep352.pyc @@ -3980,6 +3978,9 @@ lib/python2.7/test/test_softspace.pyc lib/python2.7/test/test_sort.py lib/python2.7/test/test_sort.pyo lib/python2.7/test/test_sort.pyc +lib/python2.7/test/test_source_encoding.py +lib/python2.7/test/test_source_encoding.pyo +lib/python2.7/test/test_source_encoding.pyc lib/python2.7/test/test_spwd.py lib/python2.7/test/test_spwd.pyo lib/python2.7/test/test_spwd.pyc @@ -4127,6 +4128,9 @@ lib/python2.7/test/test_ttk_textonly.pyc lib/python2.7/test/test_tuple.py lib/python2.7/test/test_tuple.pyo lib/python2.7/test/test_tuple.pyc +lib/python2.7/test/test_turtle.py +lib/python2.7/test/test_turtle.pyo +lib/python2.7/test/test_turtle.pyc lib/python2.7/test/test_typechecks.py lib/python2.7/test/test_typechecks.pyo lib/python2.7/test/test_typechecks.pyc From owner-svn-ports-all@freebsd.org Mon Jul 4 00:29:02 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 6BA44B90E6E; Mon, 4 Jul 2016 00:29:02 +0000 (UTC) (envelope-from wen@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 3965E25EA; Mon, 4 Jul 2016 00:29:02 +0000 (UTC) (envelope-from wen@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u640T1cR015485; Mon, 4 Jul 2016 00:29:01 GMT (envelope-from wen@FreeBSD.org) Received: (from wen@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u640T1pf015483; Mon, 4 Jul 2016 00:29:01 GMT (envelope-from wen@FreeBSD.org) Message-Id: <201607040029.u640T1pf015483@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: wen set sender to wen@FreeBSD.org using -f From: Wen Heping Date: Mon, 4 Jul 2016 00:29:01 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418006 - head/astro/p5-Astro-satpass X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Jul 2016 00:29:02 -0000 Author: wen Date: Mon Jul 4 00:29:01 2016 New Revision: 418006 URL: https://svnweb.freebsd.org/changeset/ports/418006 Log: - Update to 0.072 CHanges: http://cpansearch.perl.org/src/WYANT/Astro-satpass-0.072/Changes 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 Mon Jul 4 00:08:07 2016 (r418005) +++ head/astro/p5-Astro-satpass/Makefile Mon Jul 4 00:29:01 2016 (r418006) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= Astro-satpass -PORTVERSION= 0.071 +PORTVERSION= 0.072 CATEGORIES= astro perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- Modified: head/astro/p5-Astro-satpass/distinfo ============================================================================== --- head/astro/p5-Astro-satpass/distinfo Mon Jul 4 00:08:07 2016 (r418005) +++ head/astro/p5-Astro-satpass/distinfo Mon Jul 4 00:29:01 2016 (r418006) @@ -1,2 +1,3 @@ -SHA256 (Astro-satpass-0.071.tar.gz) = 577c7923cd5acab25e485e371ecda31fd62dc28bc31c1b9a3d5b4892e616f70b -SIZE (Astro-satpass-0.071.tar.gz) = 523709 +TIMESTAMP = 1467591199 +SHA256 (Astro-satpass-0.072.tar.gz) = 3be0e90e78d56b70f930f4451bb6b3f1ca2ab77379d79749398c78265dc55883 +SIZE (Astro-satpass-0.072.tar.gz) = 525814 From owner-svn-ports-all@freebsd.org Mon Jul 4 01:46:36 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 9078BB90DCF; Mon, 4 Jul 2016 01:46:36 +0000 (UTC) (envelope-from junovitch@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 5B7302F77; Mon, 4 Jul 2016 01:46:36 +0000 (UTC) (envelope-from junovitch@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u641kZnY044553; Mon, 4 Jul 2016 01:46:35 GMT (envelope-from junovitch@FreeBSD.org) Received: (from junovitch@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u641kZBI044552; Mon, 4 Jul 2016 01:46:35 GMT (envelope-from junovitch@FreeBSD.org) Message-Id: <201607040146.u641kZBI044552@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: junovitch set sender to junovitch@FreeBSD.org using -f From: Jason Unovitch Date: Mon, 4 Jul 2016 01:46:35 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418007 - head/security/vuxml X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Jul 2016 01:46:36 -0000 Author: junovitch Date: Mon Jul 4 01:46:35 2016 New Revision: 418007 URL: https://svnweb.freebsd.org/changeset/ports/418007 Log: Add fixed entries for Python 2.7, 3.4, 3.5 for urllib vulnerability. Reset 3.3 as unfixed. PR: 210539 PR: 210541 Reported by: Vladimir Krstulja Security: CVE-2016-5699 Security: https://vuxml.FreeBSD.org/freebsd/a61374fc-3a4d-11e6-a671-60a44ce6887b.html Modified: head/security/vuxml/vuln.xml Modified: head/security/vuxml/vuln.xml ============================================================================== --- head/security/vuxml/vuln.xml Mon Jul 4 00:29:01 2016 (r418006) +++ head/security/vuxml/vuln.xml Mon Jul 4 01:46:35 2016 (r418007) @@ -603,8 +603,20 @@ Notes: Python -- HTTP Header Injection in Python urllib + python27 + 2.7.10 + + python33 - 3.3.6 + 0 + + + python34 + 3.4.4 + + + python35 + 3.5.0 @@ -626,6 +638,7 @@ Notes: 2014-11-24 2016-06-30 + 2016-07-04
From owner-svn-ports-all@freebsd.org Mon Jul 4 05:14:53 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id DFDA5B91769; Mon, 4 Jul 2016 05:14:53 +0000 (UTC) (envelope-from cy@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id B7C5E2F29; Mon, 4 Jul 2016 05:14:53 +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 u645EqYu022417; Mon, 4 Jul 2016 05:14:52 GMT (envelope-from cy@FreeBSD.org) Received: (from cy@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u645Eq76022414; Mon, 4 Jul 2016 05:14:52 GMT (envelope-from cy@FreeBSD.org) Message-Id: <201607040514.u645Eq76022414@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: cy set sender to cy@FreeBSD.org using -f From: Cy Schubert Date: Mon, 4 Jul 2016 05:14:52 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418008 - head/x11-wm/fvwm2 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Jul 2016 05:14:54 -0000 Author: cy Date: Mon Jul 4 05:14:52 2016 New Revision: 418008 URL: https://svnweb.freebsd.org/changeset/ports/418008 Log: Update 2.6.5 --> 2.6.6. PR: 210787 Modified: head/x11-wm/fvwm2/Makefile head/x11-wm/fvwm2/distinfo head/x11-wm/fvwm2/pkg-plist Modified: head/x11-wm/fvwm2/Makefile ============================================================================== --- head/x11-wm/fvwm2/Makefile Mon Jul 4 01:46:35 2016 (r418007) +++ head/x11-wm/fvwm2/Makefile Mon Jul 4 05:14:52 2016 (r418008) @@ -2,10 +2,9 @@ # $FreeBSD$ PORTNAME= fvwm -PORTVERSION= 2.6.5 -PORTREVISION= 8 +PORTVERSION= 2.6.6 CATEGORIES= x11-wm -MASTER_SITES= ftp://ftp.fvwm.org/pub/fvwm/version-2/ \ +MASTER_SITES= https://github.com/fvwmorg/fvwm/releases/download/version-2_6_6/ \ http://www.fvwm.org/generated/icon_download/ DISTFILES= ${DISTNAME}${EXTRACT_SUFX} EXTRACT_ONLY= ${DISTNAME}${EXTRACT_SUFX} @@ -15,14 +14,17 @@ COMMENT= Popular virtual window manager RUN_DEPENDS= gm4:devel/m4 \ p5-XML-Parser>=0:textproc/p5-XML-Parser +LIB_DEPENDS= libfontconfig.so:x11-fonts/fontconfig \ + libfreetype.so:print/freetype2 # Other ports this port cannot coexist with CONFLICTS?= fvwm-1.* fvwm-2.[457].* GNU_CONFIGURE= yes CONFIGURE_ARGS= --disable-mandoc --without-gnome --disable-gtk -USES= gmake perl5 pkgconfig tar:bzip2 -USE_XORG= xcursor xft xinerama xpm xrender +USES= gmake perl5 pkgconfig gettext readline +USE_XORG= xcursor xft xinerama xpm xrender x11 ice xext +USE_GNOME= cairo OPTIONS_DEFINE= ICONS ICONV STROKE RPLAY SESSION_MGMT PNG SVG BIDI NLS OPTIONS_DEFAULT=ICONS ICONV SESSION_MGMT PNG @@ -93,7 +95,6 @@ CONFIGURE_ARGS+= --disable-bidi .endif .if ${PORT_OPTIONS:MNLS} -USES+= gettext CONFIGURE_ARGS+= --with-intl-library=${LOCALBASE}/lib \ --with-intl-includes=${LOCALBASE}/include .else Modified: head/x11-wm/fvwm2/distinfo ============================================================================== --- head/x11-wm/fvwm2/distinfo Mon Jul 4 01:46:35 2016 (r418007) +++ head/x11-wm/fvwm2/distinfo Mon Jul 4 05:14:52 2016 (r418008) @@ -1,4 +1,5 @@ -SHA256 (fvwm-2.6.5.tar.bz2) = 21549995c53906be5533746a1cf61b1ecf8dd8ef6816a0b20615d45ff78b48cf -SIZE (fvwm-2.6.5.tar.bz2) = 2582655 +TIMESTAMP = 1467607673 +SHA256 (fvwm-2.6.6.tar.gz) = c5de085ff25b2128a401a80225481e63335f815f84eea139f80a5f66e606dc2c +SIZE (fvwm-2.6.6.tar.gz) = 3455632 SHA256 (fvwm_icons-20070101.tar.bz2) = 86b0164430a3087f5cb8d55eb43a8676bbce495814b30c6844eb127f952642ab SIZE (fvwm_icons-20070101.tar.bz2) = 330862 Modified: head/x11-wm/fvwm2/pkg-plist ============================================================================== --- head/x11-wm/fvwm2/pkg-plist Mon Jul 4 01:46:35 2016 (r418007) +++ head/x11-wm/fvwm2/pkg-plist Mon Jul 4 05:14:52 2016 (r418008) @@ -429,10 +429,13 @@ man/man1/xpmroot.1.gz %%DATADIR%%/FvwmForm-Capture %%DATADIR%%/FvwmForm-Desktop %%DATADIR%%/FvwmForm-Form +%%DATADIR%%/FvwmForm-GenOptionHelp +%%DATADIR%%/FvwmForm-MultiMenuHelp %%DATADIR%%/FvwmForm-QuitVerify %%DATADIR%%/FvwmForm-Rlogin %%DATADIR%%/FvwmForm-RootCursor %%DATADIR%%/FvwmForm-Setup +%%DATADIR%%/FvwmForm-SingleMenuHelp %%DATADIR%%/FvwmForm-Talk %%DATADIR%%/FvwmForm-TalkHelp %%DATADIR%%/FvwmScript-BaseConfig @@ -451,6 +454,7 @@ man/man1/xpmroot.1.gz %%DATADIR%%/FvwmScript-Setup95 %%DATADIR%%/FvwmScript-WidgetDemo %%DATADIR%%/FvwmTabs-DefaultSetup +%%DATADIR%%/fvwm-menu-desktop-config.fpl %%DATADIR%%/fvwm-script-ComExample.pl %%DATADIR%%/fvwm-script-setup95.pl %%DATADIR%%/system.fvwm2rc-sample-95 @@ -488,7 +492,3 @@ man/man1/xpmroot.1.gz %%NLS%%share/locale/zh_CN/LC_MESSAGES/FvwmScript.mo %%NLS%%share/locale/zh_CN/LC_MESSAGES/FvwmTaskBar.mo %%NLS%%share/locale/zh_CN/LC_MESSAGES/fvwm.mo -@dir %%DOCSDIR%%/commands -@dir %%DOCSDIR%%/fvwm -@dir %%DOCSDIR%%/images/svg_rendering -@dir %%DOCSDIR%%/modules/images/FvwmTabs From owner-svn-ports-all@freebsd.org Mon Jul 4 07:14:45 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id A43F9B915A7; Mon, 4 Jul 2016 07:14:45 +0000 (UTC) (envelope-from brnrd@FreeBSD.org) Received: from smtp01.qsp.nl (smtp01.qsp.nl [193.254.214.162]) by mx1.freebsd.org (Postfix) with ESMTP id 5198E277C; Mon, 4 Jul 2016 07:14:45 +0000 (UTC) (envelope-from brnrd@FreeBSD.org) Received: from smtp01.qsp.nl (localhost [127.0.0.1]) by smtp01.qsp.nl (Postfix) with ESMTP id EA4072A0CCA; Mon, 4 Jul 2016 09:14:34 +0200 (CEST) Received: from mail.brnrd.eu (unknown [193.164.217.85]) by smtp01.qsp.nl (Postfix) with ESMTP; Mon, 4 Jul 2016 09:14:34 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=brnrd.eu; h=date:from:to:subject:message-id; s=default; bh=4ijnIZ19zccWnKhfmRFazTLqmaowG4hN/fBN115GV68=; b=oMljcIzjZasq1YrZvQDF3teBPKQCu9B0nWRoQhZ8tMu6cDelgfw8JvtrJVGZ0yTzwnCciqIDQKq3BTetDlqPWD+3sgWYkExcKL6tQFB650e9FsVWvKmSo1j7o/xtNopOUJrlYQC3eUxrDaLK+wSJAfSfKVTm9F6rn0osZrsmM0u9wHpEglo2kR+IWypnTNevaIV8jLwsX3XZuCQ0uMova9N7eMDhzPTs/kXJVxlevbT/XSSL9botsafkntBIel71RH96A/FbBD+KSWv5jXxgxsoTicXCMl/13x+tecs3VeAti3moaJvKG9/aTU4tRtmLPdtNVUeGDd2r3aBcMogXwQ== Received: by bachfreund.nl (OpenSMTPD) with ESMTPSA id de8409a2 TLS version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128 verify=NO; Mon, 4 Jul 2016 09:14:33 +0200 (CEST) MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII; format=flowed Content-Transfer-Encoding: 7bit Date: Mon, 04 Jul 2016 09:14:33 +0200 From: Bernard Spil To: Jason Unovitch Cc: Mathieu Arnold , Adam Weinberger , ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: Re: svn commit: r417795 - head/security/letskencrypt In-Reply-To: <20160703222715.GA38987@Silverstone> References: <201606292055.u5TKtOwU090876@repo.freebsd.org> <08FF4FCE-BAD2-4F26-9082-FE04378133B0@adamw.org> <36C82FFBA7D42A621D21CE03@atuin.in.mat.cc> <20160703222715.GA38987@Silverstone> Message-ID: X-Sender: brnrd@FreeBSD.org User-Agent: Roundcube Webmail/1.2.0 X-SMTP-Virus-Scanned: clamav at smtp01 X-Spam-Status: No, score=1.6 required=5.0 tests=HK_RANDOM_ENVFROM, HK_RANDOM_FROM,UNPARSEABLE_RELAY autolearn=disabled version=3.4.1 X-Spam-Level: * X-Spam-Checker-Version: SpamAssassin 3.4.1 (2015-04-28) on svfilter02.qsp.nl X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Jul 2016 07:14:45 -0000 On 2016-07-04 0:27, Jason Unovitch wrote: > On Thu, Jun 30, 2016 at 11:19:20AM +0200, Bernard Spil wrote: >> -----BEGIN PGP SIGNED MESSAGE----- >> Hash: SHA1 >> >> On 2016-06-29 23:11, Mathieu Arnold wrote: >> > +--On 29 juin 2016 15:04:28 -0600 Adam Weinberger wrote: >> > |> On 29 Jun, 2016, at 14:55, Bernard Spil wrote: >> > |> >> > |> >> > |> +USES= gmake ssl:libressl tar:tgz >> > | >> > | Is USES=ssl:libressl real? It seems like a great idea, but I didn't know >> > | it was a thing. >> > >> > It's about the same as USES=ssl:foobar :-) >> >> Just figured this out as well :D >> >> Luckily it is a no-op, the ports framework just makes it ssl_ARGS >> which >> is not used in Mk/Uses/ssl.mk. >> >> The port takes care of the problem at the bottom of the Makefile >> >> .if empty(SSL_DEFAULT:Mlibressl*) >> IGNORE= needs LibreSSL to build. set DEFAULT_VERSIONS+=ssl=libressl \ >> and rebuild all ports that depend on openssl >> .endif >> >> which matches either security/libressl or security/libressl-devel. >> > Can you fix the ssl:libressl then? It doesn't make much sense to have > this non-functional line in the port. Hi All, Will do! There's a snafu in the periodic script as well that needs fixing. I've started re-working the LibreSSL dependency in the makefile to mimic the dependencies in Mk/Uses/ssl.mk BUILD_DEPENDS= libtls.so:security/libressl RUN_DEPENDS= libtls.so:security/libressl The IGNORE if SSL_DEFAULT is not set to a libressl port is a bit wide, wouldn't a nice big fat WARNING do? I intend to add a pkg-message as well to notify the user what path he's travelling down. Bernard. From owner-svn-ports-all@freebsd.org Mon Jul 4 08:17:53 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id CDCFAB8F53E; Mon, 4 Jul 2016 08:17:53 +0000 (UTC) (envelope-from mat@FreeBSD.org) Received: from prod2.absolight.net (prod2.absolight.net [79.143.243.136]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "plouf.absolight.net", Issuer "CAcert Class 3 Root" (not verified)) by mx1.freebsd.org (Postfix) with ESMTPS id 68C2A2161; Mon, 4 Jul 2016 08:17:53 +0000 (UTC) (envelope-from mat@FreeBSD.org) Received: from prod2.absolight.net (localhost [127.0.0.1]) by prod2.absolight.net (Postfix) with ESMTP id 480C8BDCAD; Mon, 4 Jul 2016 10:17:50 +0200 (CEST) Received: from gw.in.absolight.net (gw-ecl.in.absolight.net [79.143.241.69]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "gw.in.absolight.net", Issuer "CA Cert Signing Authority" (not verified)) by prod2.absolight.net (Postfix) with ESMTPSA id 24D48BDCAC; Mon, 4 Jul 2016 10:17:50 +0200 (CEST) Received: from ogg.in.absolight.net (ogg.in.absolight.net [79.143.241.239]) by gw.in.absolight.net (Postfix) with ESMTP id AEB9C61A0; Mon, 4 Jul 2016 10:17:49 +0200 (CEST) Received: from localhost (localhost [127.0.0.1]) by ogg.in.absolight.net (Postfix) with ESMTP id 644A02BB6FEB; Mon, 4 Jul 2016 10:17:49 +0200 (CEST) Date: Mon, 04 Jul 2016 10:17:46 +0200 From: Mathieu Arnold To: Bernard Spil , Jason Unovitch cc: Adam Weinberger , ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: Re: svn commit: r417795 - head/security/letskencrypt Message-ID: <5D97A047FF8003122D860C18@ogg.in.absolight.net> In-Reply-To: References: <201606292055.u5TKtOwU090876@repo.freebsd.org> <08FF4FCE-BAD2-4F26-9082-FE04378133B0@adamw.org> <36C82FFBA7D42A621D21CE03@atuin.in.mat.cc> <20160703222715.GA38987@Silverstone> X-Mailer: Mulberry/4.0.8 (Mac OS X) MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="==========CE03294BE79D5C783B83==========" X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Jul 2016 08:17:53 -0000 --==========CE03294BE79D5C783B83========== Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Content-Disposition: inline +--On 4 juillet 2016 09:14:33 +0200 Bernard Spil wrote: | On 2016-07-04 0:27, Jason Unovitch wrote: |> On Thu, Jun 30, 2016 at 11:19:20AM +0200, Bernard Spil wrote: |>> -----BEGIN PGP SIGNED MESSAGE----- |>> Hash: SHA1 |>> |>> On 2016-06-29 23:11, Mathieu Arnold wrote: |>> > +--On 29 juin 2016 15:04:28 -0600 Adam Weinberger |>> > wrote: |>> > |> On 29 Jun, 2016, at 14:55, Bernard Spil wrote: |>> > |> |>> > |> |>> > |> +USES= gmake ssl:libressl tar:tgz |>> > | |>> > | Is USES=ssl:libressl real? It seems like a great idea, but I didn't |>> > | know it was a thing. |>> > |>> > It's about the same as USES=ssl:foobar :-) |>> |>> Just figured this out as well :D |>> |>> Luckily it is a no-op, the ports framework just makes it ssl_ARGS |>> which |>> is not used in Mk/Uses/ssl.mk. |>> |>> The port takes care of the problem at the bottom of the Makefile |>> |>> .if empty(SSL_DEFAULT:Mlibressl*) |>> IGNORE= needs LibreSSL to build. set DEFAULT_VERSIONS+=ssl=libressl \ |>> and rebuild all ports that depend on openssl |>> .endif |>> |>> which matches either security/libressl or security/libressl-devel. |>> |> Can you fix the ssl:libressl then? It doesn't make much sense to have |> this non-functional line in the port. | | Hi All, | | Will do! | | There's a snafu in the periodic script as well that needs fixing. | | I've started re-working the LibreSSL dependency in the makefile to mimic | the dependencies in Mk/Uses/ssl.mk | | BUILD_DEPENDS= libtls.so:security/libressl | RUN_DEPENDS= libtls.so:security/libressl You will not put that in any port. To depend on any *SSL library, you use USES=ssl and mark the port BROKEN/IGNORE if the default SSL library is not the right one. Forcing the installation of a non default *SSL library is really not the right thing to do. -- Mathieu Arnold --==========CE03294BE79D5C783B83========== Content-Type: application/pgp-signature Content-Transfer-Encoding: 7bit -----BEGIN PGP SIGNATURE----- Version: GnuPG v1 iQJ8BAEBCgBmBQJXehusXxSAAAAAAC4AKGlzc3Vlci1mcHJAbm90YXRpb25zLm9w ZW5wZ3AuZmlmdGhob3JzZW1hbi5uZXQzQUI2OTc4OUQyRUQxMjEwNjQ0MEJBNUIz QTQ1MTZGMzUxODNDRTQ4AAoJEDpFFvNRg85I4oYQAJQ+C3SPjoxG9UzHkk6Mu25D j5l8VJXmGXvngKbICMKi2Dh+Fs/UKPSUEOfpni4m5pVnQDNTWnJUDiZmmQ5FUAr6 umJBfuRG0chcZewo7dMYRDw9gV4O4TGJEAE4yBYiHr7OahzoJPQQz6jevJsqxcfr 8CHtLZRJb5CyQ1ReMVvTarEgldV+e30T4idbYLUmL5SQEg7XJkIYGfuzhqzpkkZ1 umtKGOp1rh2A3jeBOoqlVhHoHhnd8Wosm6FlHzNj3OYpN8IcGMW09+dAahoQv6rZ Y1wtTVHBX2hGTokgyws3fS0fd2cJeFjANnLqcyjY11mYWTEp3a5KhHNLUMiYbWQG azdHyfslhQxyp6PQWQDOqKLrOwzPALBANjnXIDUsIEC9r7hf3fx2aRUbX5a30/VK 3FJp8x3Gh1/OojQviR+nwHtu8BW+5uA8qBScKyQav3cKsOGu55mJHxM/Ok/qooQd JsccpLhEzy4ITXpEHlmv+5hEqOtZhDndLFJoMyWpgFxoNvdCkAem4TsmOX8yWMCJ fXbNwQB0B3j8ImSzBkBd3y9foPWltqYLSg8IVkhwBwDPFyUgevfksUtda2uDPbFS uCJXA9OPOwrD9UcwJ3xhWdy0ASExc+ja/uXgtM46aazL5rA9Tl0WJQv3yqS1BDel +RppagYQ38V05NJ8xzy7 =dsJW -----END PGP SIGNATURE----- --==========CE03294BE79D5C783B83==========-- From owner-svn-ports-all@freebsd.org Mon Jul 4 08:42:32 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 33BD9B8FDB4; Mon, 4 Jul 2016 08:42:32 +0000 (UTC) (envelope-from gahr@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id EB1C62545; Mon, 4 Jul 2016 08:42:31 +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 u648gV7r099819; Mon, 4 Jul 2016 08:42:31 GMT (envelope-from gahr@FreeBSD.org) Received: (from gahr@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u648gUhN099817; Mon, 4 Jul 2016 08:42:30 GMT (envelope-from gahr@FreeBSD.org) Message-Id: <201607040842.u648gUhN099817@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: gahr set sender to gahr@FreeBSD.org using -f From: Pietro Cerutti Date: Mon, 4 Jul 2016 08:42:30 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418009 - head/lang/tcl87 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Jul 2016 08:42:32 -0000 Author: gahr Date: Mon Jul 4 08:42:30 2016 New Revision: 418009 URL: https://svnweb.freebsd.org/changeset/ports/418009 Log: lang/tcl87: update to fossil checkin c52fadac62 http://core.tcl.tk/tcl/timeline?from=726413c61a&to=c52fadac62 Modified: head/lang/tcl87/Makefile head/lang/tcl87/distinfo Modified: head/lang/tcl87/Makefile ============================================================================== --- head/lang/tcl87/Makefile Mon Jul 4 05:14:52 2016 (r418008) +++ head/lang/tcl87/Makefile Mon Jul 4 08:42:30 2016 (r418009) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= tcl -DISTVERSION= 8.7.a0.20160701 +DISTVERSION= 8.7.a0.20160704 CATEGORIES= lang MASTER_SITES= http://core.tcl.tk/tcl/tarball/ PKGNAMESUFFIX= ${PORTVERSION:R:R:S/.//} @@ -23,7 +23,7 @@ TZDATA_DESC= Install Tcl timezone data MODULES_DESC= Install Tcl common modules OPTIONS_SUB= yes -FOSSIL_CHECKIN= 726413c61a +FOSSIL_CHECKIN= c52fadac62 PATCH_WRKSRC= ${WRKDIR}/${DISTNAME:S/+/_/g} WRKSRC= ${PATCH_WRKSRC}/unix Modified: head/lang/tcl87/distinfo ============================================================================== --- head/lang/tcl87/distinfo Mon Jul 4 05:14:52 2016 (r418008) +++ head/lang/tcl87/distinfo Mon Jul 4 08:42:30 2016 (r418009) @@ -1,3 +1,3 @@ -TIMESTAMP = 1467379848 -SHA256 (Tcl+Source+Code-726413c61a.tar.gz) = b1bc95fc7e612a52962beb82bbb5e48c3016d40bbf78951fba8dfd076b62030b -SIZE (Tcl+Source+Code-726413c61a.tar.gz) = 8620961 +TIMESTAMP = 1467620342 +SHA256 (Tcl+Source+Code-c52fadac62.tar.gz) = e3e322dfe96ebc2b7125cb8dfce32e934cb2685f9293b76630d864b4f3ae4968 +SIZE (Tcl+Source+Code-c52fadac62.tar.gz) = 8621257 From owner-svn-ports-all@freebsd.org Mon Jul 4 09:47:27 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id BF9BAB912C3; Mon, 4 Jul 2016 09:47:27 +0000 (UTC) (envelope-from mat@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 906392D73; Mon, 4 Jul 2016 09:47:27 +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 u649lQQ4022469; Mon, 4 Jul 2016 09:47:26 GMT (envelope-from mat@FreeBSD.org) Received: (from mat@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u649lP88022458; Mon, 4 Jul 2016 09:47:25 GMT (envelope-from mat@FreeBSD.org) Message-Id: <201607040947.u649lP88022458@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: mat set sender to mat@FreeBSD.org using -f From: Mathieu Arnold Date: Mon, 4 Jul 2016 09:47:25 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418010 - in head/dns: . bind9-devel bind910 bind911 bind911/files bind99 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Jul 2016 09:47:27 -0000 Author: mat Date: Mon Jul 4 09:47:25 2016 New Revision: 418010 URL: https://svnweb.freebsd.org/changeset/ports/418010 Log: Introduce BIND9 9.11.0b1. (beta1) BIND 9.11 brings many changes to BIND, including a new license (the Mozilla Public License 2.0 -- you can read about it here: https://www.isc.org/blogs/bind9-adopts-the-mpl-2-0-license-with-bind-9-11-0/) and many new features, including: - Catalog zones, a new way to provision zones on slave servers - dyndb api, a fast new api enabling BIND to serve zones stored in a database (Developed by Petr Spacek of RedHat) - RNDC showzone, view-only mode and other improvements - dnstap query and response logging (Robert Edmonds is the author of dnstap, see www.dnstap.info) - EDNS Client-subnet (authoritative server functions) - DNSSEC key manager, a new utility (Thanks to Sebastián Castro for helping with development.) - Automatic CDS/CDSKEY generation - Negative Trust Anchors for DNSSEC validators - IPv6 bias to encourage use of IPv6 DNS servers - Minimal response to “any†queries (Thanks to Tony Finch for the contribution) - DNS Cookies are now enabled by default, using the standardized code point Changes: https://lists.isc.org/pipermail/bind-announce/2016-June/000994.html Sponsored by: Absolight Added: head/dns/bind911/ - copied from r418009, head/dns/bind910/ Modified: head/dns/Makefile head/dns/bind9-devel/Makefile head/dns/bind910/Makefile head/dns/bind911/Makefile head/dns/bind911/distinfo head/dns/bind911/files/extrapatch-bind-min-override-ttl head/dns/bind911/files/patch-bin_tests_system_dlzexternal_Makefile.in head/dns/bind911/files/patch-configure head/dns/bind911/pkg-plist head/dns/bind99/Makefile Modified: head/dns/Makefile ============================================================================== --- head/dns/Makefile Mon Jul 4 08:42:30 2016 (r418009) +++ head/dns/Makefile Mon Jul 4 09:47:25 2016 (r418010) @@ -11,6 +11,7 @@ SUBDIR += bind-tools SUBDIR += bind9-devel SUBDIR += bind910 + SUBDIR += bind911 SUBDIR += bind99 SUBDIR += bindgraph SUBDIR += bundy Modified: head/dns/bind9-devel/Makefile ============================================================================== --- head/dns/bind9-devel/Makefile Mon Jul 4 08:42:30 2016 (r418009) +++ head/dns/bind9-devel/Makefile Mon Jul 4 09:47:25 2016 (r418010) @@ -2,7 +2,7 @@ # pkg-help formatted with fmt 59 63 PORTNAME= bind -PORTVERSION= ${ISCVERSION:S/-P/P/:S/b/.b/} +PORTVERSION= ${ISCVERSION:S/-P/P/:S/b/.b/:S/a/.a/} PORTREVISION= 0 CATEGORIES= dns net ipv6 MASTER_SITES= LOCAL/mat/bind @@ -41,7 +41,7 @@ CONFIGURE_ARGS+= --localstatedir=/var -- --sysconfdir=${ETCDIR} ETCDIR= ${PREFIX}/etc/namedb -CONFLICTS+= bind9*-9.[456789].* bind9*-sdb-9.[456789].* +CONFLICTS+= bind9*-9.[456789].* bind910-* bind911-* bind9*-sdb-9.[456789].* SUB_FILES= pkg-message Modified: head/dns/bind910/Makefile ============================================================================== --- head/dns/bind910/Makefile Mon Jul 4 08:42:30 2016 (r418009) +++ head/dns/bind910/Makefile Mon Jul 4 09:47:25 2016 (r418010) @@ -2,7 +2,7 @@ # pkg-help formatted with fmt 59 63 PORTNAME= bind -PORTVERSION= ${ISCVERSION:S/-P/P/:S/b/.b/} +PORTVERSION= ${ISCVERSION:S/-P/P/:S/b/.b/:S/a/.a/} .if defined(BIND_TOOLS_SLAVE) # dns/bind-tools here PORTREVISION= 0 @@ -56,7 +56,7 @@ CONFIGURE_ARGS+= --disable-shared .endif ETCDIR= ${PREFIX}/etc/namedb -CONFLICTS+= bind9*-9.[456789].* bind9*-sdb-9.[456789].* +CONFLICTS+= bind9*-9.[456789].* bind911-* bind9*-sdb-9.[456789].* .if !defined(BIND_TOOLS_SLAVE) SUB_FILES= pkg-message Modified: head/dns/bind911/Makefile ============================================================================== --- head/dns/bind910/Makefile Mon Jul 4 08:42:30 2016 (r418009) +++ head/dns/bind911/Makefile Mon Jul 4 09:47:25 2016 (r418010) @@ -2,7 +2,7 @@ # pkg-help formatted with fmt 59 63 PORTNAME= bind -PORTVERSION= ${ISCVERSION:S/-P/P/:S/b/.b/} +PORTVERSION= ${ISCVERSION:S/-P/P/:S/b/.b/:S/a/.a/} .if defined(BIND_TOOLS_SLAVE) # dns/bind-tools here PORTREVISION= 0 @@ -15,7 +15,7 @@ MASTER_SITES= ISC/bind9/${ISCVERSION} .if defined(BIND_TOOLS_SLAVE) PKGNAMESUFFIX= -tools .else -PKGNAMESUFFIX= 910 +PKGNAMESUFFIX= 911 .endif DISTNAME= ${PORTNAME}-${ISCVERSION} @@ -26,10 +26,10 @@ COMMENT= Command line tools from BIND: d COMMENT= BIND DNS suite with updated DNSSEC and DNS64 .endif -LICENSE= ISCL +LICENSE= MPL # ISC releases things like 9.8.0-P1, which our versioning doesn't like -ISCVERSION= 9.10.4-P1 +ISCVERSION= 9.11.0b1 MAKE_JOBS_UNSAFE= yes @@ -56,7 +56,7 @@ CONFIGURE_ARGS+= --disable-shared .endif ETCDIR= ${PREFIX}/etc/namedb -CONFLICTS+= bind9*-9.[456789].* bind9*-sdb-9.[456789].* +CONFLICTS+= bind9*-9.[456789].* bind910-* bind9*-sdb-9.[456789].* .if !defined(BIND_TOOLS_SLAVE) SUB_FILES= pkg-message @@ -127,7 +127,7 @@ CONFLICTS+= bind-tools-9.* .endif # BIND_TOOLS_SLAVE SSL_CONFIGURE_ON= --with-openssl=${OPENSSLBASE} -SSL_USE= openssl=yes +SSL_USES= ssl SSL_CONFIGURE_OFF= --disable-openssl-version-check --without-openssl NEWSTATS_CONFIGURE_ENABLE= newstats @@ -153,8 +153,10 @@ GEOIP_LIB_DEPENDS= libGeoIP.so:net/GeoIP GOST_CONFIGURE_ON= --with-gost GOST_ASN1_CONFIGURE_ON= --with-gost=asn1 -PYTHON_CONFIGURE_WITH= python +PYTHON_CONFIGURE_WITH= python=${PYTHON_CMD} PYTHON_USES= python +PYTHON_BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}ply>=0:devel/py-ply +PYTHON_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}ply>=0:devel/py-ply DLZ_POSTGRESQL_CONFIGURE_ON= --with-dlz-postgres=yes DLZ_POSTGRESQL_USES= pgsql @@ -294,6 +296,9 @@ post-install: ${INSTALL_DATA} ${WRKSRC}/bin/rndc/rndc.conf \ ${STAGEDIR}${ETCDIR}/rndc.conf.sample +# Can't use USE_PYTHON=autoplist +post-install-PYTHON-on: + @${FIND} ${STAGEDIR}${PYTHON_SITELIBDIR} -type f | ${SED} -e 's|${STAGEDIR}||' >> ${TMPPLIST} .endif # BIND_TOOLS_SLAVE .include Modified: head/dns/bind911/distinfo ============================================================================== --- head/dns/bind910/distinfo Mon Jul 4 08:42:30 2016 (r418009) +++ head/dns/bind911/distinfo Mon Jul 4 09:47:25 2016 (r418010) @@ -1,3 +1,3 @@ -TIMESTAMP = 1464252479 -SHA256 (bind-9.10.4-P1.tar.gz) = 7c3b7d1afe48a6bbead8f11f6971fb09eb57fa257dc32a088fcc20a0218131a2 -SIZE (bind-9.10.4-P1.tar.gz) = 9293605 +TIMESTAMP = 1467624274 +SHA256 (bind-9.11.0b1.tar.gz) = de0f974225dfa8261ab624034cbeef715fe3f767aa3742cd7a2279002399f5d6 +SIZE (bind-9.11.0b1.tar.gz) = 9707184 Modified: head/dns/bind911/files/extrapatch-bind-min-override-ttl ============================================================================== --- head/dns/bind910/files/extrapatch-bind-min-override-ttl Mon Jul 4 08:42:30 2016 (r418009) +++ head/dns/bind911/files/extrapatch-bind-min-override-ttl Mon Jul 4 09:47:25 2016 (r418010) @@ -1,17 +1,17 @@ ---- bin/named/config.c.orig 2016-04-20 20:11:20 UTC +--- bin/named/config.c.orig 2016-06-27 17:38:13 UTC +++ bin/named/config.c @@ -151,6 +151,8 @@ options {\n\ - min-roots 2;\n\ lame-ttl 600;\n\ + servfail-ttl 1;\n\ max-ncache-ttl 10800; /* 3 hours */\n\ + override-cache-ttl 0; /* do not override */\n\ + min-cache-ttl 0; /* no minimal, zero is allowed */\n\ max-cache-ttl 604800; /* 1 week */\n\ transfer-format many-answers;\n\ - max-cache-size 0;\n\ ---- bin/named/server.c.orig 2016-04-20 20:11:20 UTC + max-cache-size 90%;\n\ +--- bin/named/server.c.orig 2016-06-27 17:38:13 UTC +++ bin/named/server.c -@@ -2802,6 +2802,16 @@ configure_view(dns_view_t *view, dns_vie +@@ -3521,6 +3521,16 @@ configure_view(dns_view_t *view, dns_vie } obj = NULL; @@ -28,20 +28,20 @@ result = ns_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 2016-04-20 20:11:20 UTC +--- lib/dns/include/dns/view.h.orig 2016-06-27 17:38:13 UTC +++ lib/dns/include/dns/view.h -@@ -150,6 +150,8 @@ struct dns_view { +@@ -145,6 +145,8 @@ struct dns_view { isc_boolean_t requestnsid; - isc_boolean_t requestsit; + isc_boolean_t sendcookie; dns_ttl_t maxcachettl; + dns_ttl_t mincachettl; + dns_ttl_t overridecachettl; dns_ttl_t maxncachettl; - dns_ttl_t prefetch_trigger; - dns_ttl_t prefetch_eligible; ---- lib/dns/resolver.c.orig 2016-04-20 20:11:20 UTC + isc_uint32_t nta_lifetime; + isc_uint32_t nta_recheck; +--- lib/dns/resolver.c.orig 2016-06-27 17:38:13 UTC +++ lib/dns/resolver.c -@@ -5371,6 +5371,18 @@ cache_name(fetchctx_t *fctx, dns_name_t +@@ -5431,6 +5431,18 @@ cache_name(fetchctx_t *fctx, dns_name_t } /* @@ -60,12 +60,12 @@ * Enforce the configure maximum cache TTL. */ if (rdataset->ttl > res->view->maxcachettl) ---- lib/isccfg/namedconf.c.orig 2016-04-20 20:11:20 UTC +--- lib/isccfg/namedconf.c.orig 2016-06-27 17:38:13 UTC +++ lib/isccfg/namedconf.c -@@ -1572,6 +1572,8 @@ view_clauses[] = { - #endif +@@ -1707,6 +1707,8 @@ view_clauses[] = { + { "nosit-udp-size", &cfg_type_uint32, CFG_CLAUSEFLAG_OBSOLETE }, { "max-acache-size", &cfg_type_sizenodefault, 0 }, - { "max-cache-size", &cfg_type_sizenodefault, 0 }, + { "max-cache-size", &cfg_type_sizeorpercent, 0 }, + { "override-cache-ttl", &cfg_type_uint32, 0 }, + { "min-cache-ttl", &cfg_type_uint32, 0 }, { "max-cache-ttl", &cfg_type_uint32, 0 }, Modified: head/dns/bind911/files/patch-bin_tests_system_dlzexternal_Makefile.in ============================================================================== --- head/dns/bind910/files/patch-bin_tests_system_dlzexternal_Makefile.in Mon Jul 4 08:42:30 2016 (r418009) +++ head/dns/bind911/files/patch-bin_tests_system_dlzexternal_Makefile.in Mon Jul 4 09:47:25 2016 (r418010) @@ -1,6 +1,6 @@ ---- bin/tests/system/dlzexternal/Makefile.in.orig 2016-04-20 20:11:20 UTC +--- bin/tests/system/dlzexternal/Makefile.in.orig 2016-06-27 17:38:13 UTC +++ bin/tests/system/dlzexternal/Makefile.in -@@ -43,7 +43,7 @@ OBJS = ${DLOPENOBJS} +@@ -35,7 +35,7 @@ OBJS = ${DLOPENOBJS} @BIND9_MAKE_RULES@ CFLAGS = @CFLAGS@ @SO_CFLAGS@ Modified: head/dns/bind911/files/patch-configure ============================================================================== --- head/dns/bind910/files/patch-configure Mon Jul 4 08:42:30 2016 (r418009) +++ head/dns/bind911/files/patch-configure Mon Jul 4 09:47:25 2016 (r418010) @@ -1,6 +1,6 @@ ---- configure.orig 2016-04-20 20:11:20 UTC +--- configure.orig 2016-06-27 17:38:13 UTC +++ configure -@@ -14142,27 +14142,9 @@ done +@@ -14205,27 +14205,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 -@@ -14205,47 +14187,7 @@ $as_echo "no" >&6; } ;; +@@ -14268,47 +14250,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 -@@ -21602,7 +21544,7 @@ $as_echo "" >&6; } +@@ -22147,7 +22089,7 @@ $as_echo "" >&6; } # Check other locations for includes. # Order is important (sigh). Modified: head/dns/bind911/pkg-plist ============================================================================== --- head/dns/bind910/pkg-plist Mon Jul 4 08:42:30 2016 (r418009) +++ head/dns/bind911/pkg-plist Mon Jul 4 09:47:25 2016 (r418010) @@ -3,6 +3,7 @@ bin/delv bin/dig bin/host bin/isc-config.sh +bin/mdig bin/nslookup bin/nsupdate include/bind9/check.h @@ -11,10 +12,12 @@ include/bind9/version.h include/dns/acache.h include/dns/acl.h include/dns/adb.h +include/dns/badcache.h include/dns/bit.h include/dns/byaddr.h include/dns/cache.h include/dns/callbacks.h +include/dns/catz.h include/dns/cert.h include/dns/client.h include/dns/clientinfo.h @@ -28,15 +31,19 @@ include/dns/dlz.h include/dns/dlz_dlopen.h include/dns/dns64.h include/dns/dnssec.h +include/dns/dnstap.h include/dns/ds.h include/dns/dsdigest.h +include/dns/dyndb.h include/dns/ecdb.h +include/dns/edns.h include/dns/enumclass.h include/dns/enumtype.h include/dns/events.h include/dns/fixedname.h include/dns/forward.h include/dns/geoip.h +include/dns/ipkeylist.h include/dns/iptable.h include/dns/journal.h include/dns/keydata.h @@ -53,6 +60,7 @@ include/dns/name.h include/dns/ncache.h include/dns/nsec.h include/dns/nsec3.h +include/dns/nta.h include/dns/opcode.h include/dns/order.h include/dns/peer.h @@ -137,6 +145,7 @@ include/isc/heap.h include/isc/hex.h include/isc/hmacmd5.h include/isc/hmacsha.h +include/isc/ht.h include/isc/httpd.h include/isc/int.h include/isc/interfaceiter.h @@ -152,6 +161,7 @@ include/isc/log.h include/isc/magic.h include/isc/md5.h include/isc/mem.h +include/isc/meminfo.h include/isc/msgcat.h include/isc/msgs.h include/isc/mutex.h @@ -260,8 +270,10 @@ man/man1/arpaname.1.gz man/man1/bind9-config.1.gz man/man1/delv.1.gz man/man1/dig.1.gz +man/man1/dnstap-read.1.gz man/man1/host.1.gz man/man1/isc-config.sh.1.gz +man/man1/mdig.1.gz man/man1/named-rrchecker.1.gz man/man1/nslookup.1.gz man/man1/nsupdate.1.gz @@ -359,6 +371,7 @@ man/man8/dnssec-dsfromkey.8.gz man/man8/dnssec-importkey.8.gz man/man8/dnssec-keyfromlabel.8.gz man/man8/dnssec-keygen.8.gz +%%PYTHON%%man/man8/dnssec-keymgr.8.gz man/man8/dnssec-revoke.8.gz man/man8/dnssec-settime.8.gz man/man8/dnssec-signzone.8.gz @@ -372,13 +385,13 @@ man/man8/named-compilezone.8.gz man/man8/named-journalprint.8.gz man/man8/named.8.gz man/man8/nsec3hash.8.gz -man/man8/tsig-keygen.8.gz %%NATIVE_PKCS11%%man/man8/pkcs11-destroy.8.gz %%NATIVE_PKCS11%%man/man8/pkcs11-keygen.8.gz %%NATIVE_PKCS11%%man/man8/pkcs11-list.8.gz %%NATIVE_PKCS11%%man/man8/pkcs11-tokens.8.gz man/man8/rndc-confgen.8.gz man/man8/rndc.8.gz +man/man8/tsig-keygen.8.gz sbin/arpaname sbin/ddns-confgen %%PYTHON%%sbin/dnssec-checkds @@ -387,6 +400,7 @@ sbin/dnssec-dsfromkey sbin/dnssec-importkey sbin/dnssec-keyfromlabel sbin/dnssec-keygen +%%PYTHON%%sbin/dnssec-keymgr sbin/dnssec-revoke sbin/dnssec-settime sbin/dnssec-signzone Modified: head/dns/bind99/Makefile ============================================================================== --- head/dns/bind99/Makefile Mon Jul 4 08:42:30 2016 (r418009) +++ head/dns/bind99/Makefile Mon Jul 4 09:47:25 2016 (r418010) @@ -2,7 +2,7 @@ # pkg-help formatted with fmt 59 63 PORTNAME= bind -PORTVERSION= ${ISCVERSION:S/-P/P/:S/b/.b/} +PORTVERSION= ${ISCVERSION:S/-P/P/:S/b/.b/:S/a/.a/} PORTREVISION= 0 CATEGORIES= dns net ipv6 MASTER_SITES= ISC/bind9/${ISCVERSION} @@ -39,7 +39,7 @@ CONFIGURE_ARGS= --localstatedir=/var --d --sysconfdir=${ETCDIR} ETCDIR= ${PREFIX}/etc/namedb -CONFLICTS= bind9*-9.[45678].* bind9*-sdb-9.[45678].* bind-tools-9.* +CONFLICTS= bind9*-9.[45678].* bind9*-sdb-9.[45678].* bind910-* bind911-* bind-tools-9.* SUB_FILES= pkg-message From owner-svn-ports-all@freebsd.org Mon Jul 4 09:56:21 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 2AB62B9159D for ; Mon, 4 Jul 2016 09:56:21 +0000 (UTC) (envelope-from vanilla@fatpipi.com) Received: from mail-vk0-x233.google.com (mail-vk0-x233.google.com [IPv6:2607:f8b0:400c:c05::233]) (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 D6FA32224 for ; Mon, 4 Jul 2016 09:56:20 +0000 (UTC) (envelope-from vanilla@fatpipi.com) Received: by mail-vk0-x233.google.com with SMTP id i63so55609228vkb.2 for ; Mon, 04 Jul 2016 02:56:20 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=fatpipi-com.20150623.gappssmtp.com; s=20150623; h=mime-version:reply-to:in-reply-to:references:from:date:message-id :subject:to:cc; bh=pVC2F8RK0QtOAPpAs4xE3YKtpURK3dXZvHFYbZNXhjM=; b=kIe+HQekyHvr/7Rt5SciF8WD5U9Wdth2hodUjl6IaaJXXjxGJE/hXyaDpwlzU55CNH k8wypdSHT2aNLdoHieq/p2agES2wg6A3Lx8YgFm0UYmCckMd6ZBUtpvIKl6YoTU/9cDs EK2a9EnN5DACLqclnkslaKjexZRoPZtd8eeSPWhRrV5vXnRj//gX4NzSLTz+4Ctf8ZDJ otaqI5qBfJLzXwpa+gkE2a1iV1+sVPpJMcMG2CwZojv7Fl3ox83zYaVqinUJqDjS+b3Q cnCCREGBLqFM1JBPDAw4mO2t1OVe5MoJSs0dFRQUjsJey4d82RGvpQt2nivR9ZVWPzhc 2e9g== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:mime-version:reply-to:in-reply-to:references :from:date:message-id:subject:to:cc; bh=pVC2F8RK0QtOAPpAs4xE3YKtpURK3dXZvHFYbZNXhjM=; b=ZDEUo+M23xErmc+gYFqjgB3n2QnkTEOrFUYgX/eZT6IeKZYY0CRrxJauwEG9qluUQk BRE4KYXzhc+Nv8TI84UtbCmcmYAyAuy1uqjVKoas03xl50+fqKuKrjCoNpJOvE11EkUJ D7mq9UAYBdMHlPd5MwFqq5c7JxGt/Qk9qBAPSxsydA7ccOx4aBbhL7aPXszl57PNsZXT mplH7X261L8ed/2G6dTjSNcjQvDVzyvMKTz+m1vBMRenrCiv0WqBt3Sh/BXA7Crtqsy/ nHGNVGBZNpwYlRmizb/3BGjGtMIqU8aednMowFHWie4u87y5ELpjK7A6Kx/Gz0Z5PJu+ hHyQ== X-Gm-Message-State: ALyK8tKFc9tpNQue/6MtlqFyl1cvLKR2lxKLCrXROIVT5xqNPEdcptp6ALu6zyPIMw/3zJrarOrCqwZYUXmj6Q== X-Received: by 10.31.94.74 with SMTP id s71mr4781123vkb.78.1467626179900; Mon, 04 Jul 2016 02:56:19 -0700 (PDT) MIME-Version: 1.0 Received: by 10.31.222.129 with HTTP; Mon, 4 Jul 2016 02:56:19 -0700 (PDT) Reply-To: v@fatpipi.com In-Reply-To: <201607031517.u63FH16E007423@repo.freebsd.org> References: <201607031517.u63FH16E007423@repo.freebsd.org> From: Vanilla Hsu Date: Mon, 4 Jul 2016 17:56:19 +0800 Message-ID: Subject: Re: svn commit: r417974 - head/sysutils/iohyve To: Lars Engels 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.22 X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Jul 2016 09:56:21 -0000 nat [/usr/ports/sysutils/iohyve] -root- pkg info -l iohyve iohyve-0.7.6: /usr/local/share/licenses/iohyve-0.7.6/BSD2CLAUSE /usr/local/share/licenses/iohyve-0.7.6/LICENSE /usr/local/share/licenses/iohyve-0.7.6/catalog.mk it install nothing to my box, please help to check this one. thanks. 2016-07-03 23:17 GMT+08:00 Lars Engels : > Author: lme > Date: Sun Jul 3 15:17:01 2016 > New Revision: 417974 > URL: https://svnweb.freebsd.org/changeset/ports/417974 > > Log: > Update to 0.7.6 > > PR: 210546 [1], 210668 [2] > Submitted by: [1] Trent Thompson , [2] > Christian Schwarz > > Modified: > head/sysutils/iohyve/Makefile > head/sysutils/iohyve/distinfo > > Modified: head/sysutils/iohyve/Makefile > > ============================================================================== > --- head/sysutils/iohyve/Makefile Sun Jul 3 14:56:01 2016 > (r417973) > +++ head/sysutils/iohyve/Makefile Sun Jul 3 15:17:01 2016 > (r417974) > @@ -1,7 +1,7 @@ > # $FreeBSD$ > > PORTNAME= iohyve > -PORTVERSION= 0.7.5 > +PORTVERSION= 0.7.6 > CATEGORIES= sysutils > > MAINTAINER= lme@FreeBSD.org > @@ -16,11 +16,7 @@ GH_ACCOUNT= pr1ntf > NO_BUILD= yes > NO_ARCH= yes > > -PLIST_FILES= etc/rc.d/iohyve man/man8/iohyve.8.gz sbin/iohyve > - > -do-install: > - ${INSTALL_SCRIPT} ${WRKSRC}/rc.d/iohyve > ${STAGEDIR}${PREFIX}/etc/rc.d > - ${INSTALL_SCRIPT} ${WRKSRC}/iohyve ${STAGEDIR}${PREFIX}/sbin > - ${INSTALL_MAN} ${WRKSRC}/iohyve.8 ${STAGEDIR}${PREFIX}/man/man8 > +do-patch: > + ${REINPLACE_CMD} 's%\$$(PREFIX)%${STAGEDIR}/$$(PREFIX)%g' > ${WRKSRC}/Makefile > > .include > > Modified: head/sysutils/iohyve/distinfo > > ============================================================================== > --- head/sysutils/iohyve/distinfo Sun Jul 3 14:56:01 2016 > (r417973) > +++ head/sysutils/iohyve/distinfo Sun Jul 3 15:17:01 2016 > (r417974) > @@ -1,2 +1,3 @@ > -SHA256 (pr1ntf-iohyve-0.7.5_GH0.tar.gz) = > 803bdeff69650209edca0570f232cb89aa33b844aef38967b6f146152c4214ae > -SIZE (pr1ntf-iohyve-0.7.5_GH0.tar.gz) = 19760 > +TIMESTAMP = 1467139724 > +SHA256 (pr1ntf-iohyve-0.7.6_GH0.tar.gz) = > 248756a466c54b2c9f2d9cb70b0247ea2d135858ffae7d633dabc347090760f6 > +SIZE (pr1ntf-iohyve-0.7.6_GH0.tar.gz) = 22246 > > From owner-svn-ports-all@freebsd.org Mon Jul 4 10:01:11 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 49BF4B9167B; Mon, 4 Jul 2016 10:01:11 +0000 (UTC) (envelope-from mat@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 24BB625D9; Mon, 4 Jul 2016 10:01:11 +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 u64A1AgA026619; Mon, 4 Jul 2016 10:01:10 GMT (envelope-from mat@FreeBSD.org) Received: (from mat@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u64A19La026614; Mon, 4 Jul 2016 10:01:09 GMT (envelope-from mat@FreeBSD.org) Message-Id: <201607041001.u64A19La026614@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: mat set sender to mat@FreeBSD.org using -f From: Mathieu Arnold Date: Mon, 4 Jul 2016 10:01:09 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418011 - in head: archivers/py-attic dns/ldns net/openntpd security/bro www/aws-demos X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Jul 2016 10:01:11 -0000 Author: mat Date: Mon Jul 4 10:01:09 2016 New Revision: 418011 URL: https://svnweb.freebsd.org/changeset/ports/418011 Log: Fix ports depending on security/(open|libre)ssl directly. Sponsored by: Absolight Modified: head/archivers/py-attic/Makefile (contents, props changed) head/dns/ldns/Makefile (contents, props changed) head/net/openntpd/Makefile (contents, props changed) head/security/bro/Makefile (contents, props changed) head/www/aws-demos/Makefile (contents, props changed) Modified: head/archivers/py-attic/Makefile ============================================================================== --- head/archivers/py-attic/Makefile Mon Jul 4 09:47:25 2016 (r418010) +++ head/archivers/py-attic/Makefile Mon Jul 4 10:01:09 2016 (r418011) @@ -24,13 +24,14 @@ USE_OPENSSL= yes STRIP_FILES= hashindex.so platform_freebsd.so chunker.so crypto.so PYDISTUTILS_BUILDPATH=${BUILD_WRKSRC}/build/lib.${OPSYS:tl}-${UNAMER}-${ARCH}-${PYTHON_VER} -.include +.include .if ${OSVERSION} < 1000015 -BUILD_DEPENDS+= openssl>=1.0:security/openssl -RUN_DEPENDS+= openssl>=1.0:security/openssl +WITH_OPENSSL_PORT= yes .endif +.include + .if defined(PACKAGE_BUILDING) && ${PYTHON_VER} != ${PYTHON_DEFAULT} IGNORE= you have python ${PYTHON_DEFAULT} set as the default, and this needs ${PYTHON_VER} .endif Modified: head/dns/ldns/Makefile ============================================================================== --- head/dns/ldns/Makefile Mon Jul 4 09:47:25 2016 (r418010) +++ head/dns/ldns/Makefile Mon Jul 4 10:01:09 2016 (r418011) @@ -80,7 +80,7 @@ INSTALL_TARGET+=install-manpages .if ${PORT_OPTIONS:MGOST} . if ${OSVERSION} < 1000015 -BUILD_DEPENDS+= openssl>=1.0:security/openssl +WITH_OPENSSL_PORT= yes CONFLICTS+= libressl-* . endif .else Modified: head/net/openntpd/Makefile ============================================================================== --- head/net/openntpd/Makefile Mon Jul 4 09:47:25 2016 (r418010) +++ head/net/openntpd/Makefile Mon Jul 4 10:01:09 2016 (r418011) @@ -28,7 +28,6 @@ OPTIONS_DEFAULT= RESSL # Requires libtls from LibreSSL RESSL_USE= openssl=yes RESSL_VARS= with_openssl_port=yes \ - openssl_port=security/libressl RESSL_CONFIGURE_WITH= cacert=${LOCALBASE}/etc/ssl/cert.pem RESSL_CPPFLAGS= -I${LOCALBASE}/include RESSL_LDFLAGS= -L${LOCALBASE}/lib @@ -41,4 +40,10 @@ pre-build: post-install: cd ${STAGEDIR}${PREFIX}/etc && ${MV} ntpd.conf ntpd.conf.sample -.include +.include + +.if ${PORT_OPTIONS:MRESSL} && empty(SSL_DEFAULT:Mlibressl*) +IGNORE= Requires LibreSSL from ports, define DEFAULT_VERSIONS+=ssl=libressl in your make.conf and rebuild everything. +.endif + +.include Modified: head/security/bro/Makefile ============================================================================== --- head/security/bro/Makefile Mon Jul 4 09:47:25 2016 (r418010) +++ head/security/bro/Makefile Mon Jul 4 10:01:09 2016 (r418011) @@ -68,6 +68,8 @@ PORTS_SSL_DESC= Build with OpenSSL from OPTIONS_EXCLUDE=NLS DOCS +PORTS_SSL_VARS= WITH_OPENSSL_PORT=yes + .include .if ${PORT_OPTIONS:MBROCCOLI} @@ -134,8 +136,6 @@ CMAKE_ARGS+= -D ENABLE_PERFTOOLS:BOOL=fa .if ${PORT_OPTIONS:MPORTS_SSL} CMAKE_ARGS+= -D CMAKE_EXE_LINKER_FLAGS="${OPENSSL_LDFLAGS}" -BUILD_DEPENDS+= ${LOCALBASE}/lib/libcrypto.so:security/openssl -RUN_DEPENDS+= ${LOCALBASE}/lib/libcrypto.so:security/openssl .else .if ${SSL_DEFAULT} != base IGNORE= the SSL option is requred when using SSL from ports Modified: head/www/aws-demos/Makefile ============================================================================== --- head/www/aws-demos/Makefile Mon Jul 4 09:47:25 2016 (r418010) +++ head/www/aws-demos/Makefile Mon Jul 4 10:01:09 2016 (r418011) @@ -69,7 +69,8 @@ DEMO_DIRS+= zdemo .include .if ${PORT_OPTIONS:MSSL} -LIB_DEPENDS+= libssl.so:security/openssl +USES+= ssl +WITH_OPENSSL_PORT= yes CONF_ARGS+= SOCKET=openssl DEMO_DIRS+= agent DEMO_DIRS+= runme From owner-svn-ports-all@freebsd.org Mon Jul 4 10:01:17 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 6B744B9169E; Mon, 4 Jul 2016 10:01:17 +0000 (UTC) (envelope-from mat@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 387C02696; Mon, 4 Jul 2016 10:01:17 +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 u64A1G0k026782; Mon, 4 Jul 2016 10:01:16 GMT (envelope-from mat@FreeBSD.org) Received: (from mat@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u64A1FHT026778; Mon, 4 Jul 2016 10:01:15 GMT (envelope-from mat@FreeBSD.org) Message-Id: <201607041001.u64A1FHT026778@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: mat set sender to mat@FreeBSD.org using -f From: Mathieu Arnold Date: Mon, 4 Jul 2016 10:01:15 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418012 - in head/lang/perl5-devel: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Jul 2016 10:01:17 -0000 Author: mat Date: Mon Jul 4 10:01:15 2016 New Revision: 418012 URL: https://svnweb.freebsd.org/changeset/ports/418012 Log: Update to v5.25.2-92-g5bb5179. Changes: https://github.com/Perl/perl5/compare/v5.25.2-44-g7e169e8...v5.25.2-92-g5bb5179 Sponsored by: Absolight Deleted: head/lang/perl5-devel/files/patch-cpan_Math-BigInt_lib_Math_BigInt.pm Modified: head/lang/perl5-devel/Makefile (contents, props changed) head/lang/perl5-devel/distinfo (contents, props changed) head/lang/perl5-devel/files/patch-t_porting_customized.dat (contents, props changed) head/lang/perl5-devel/pkg-plist (contents, props changed) Modified: head/lang/perl5-devel/Makefile ============================================================================== --- head/lang/perl5-devel/Makefile Mon Jul 4 10:01:09 2016 (r418011) +++ head/lang/perl5-devel/Makefile Mon Jul 4 10:01:15 2016 (r418012) @@ -30,7 +30,7 @@ TEST_ENV= ${MAKE_ENV} TEST_JOBS=${MAKE_J USE_GITHUB= yes GH_ACCOUNT= Perl GH_PROJECT= perl5 -GH_TAGNAME= v5.25.2-44-g7e169e8 +GH_TAGNAME= v5.25.2-92-g5bb5179 MAKE_JOBS_UNSAFE= yes Modified: head/lang/perl5-devel/distinfo ============================================================================== --- head/lang/perl5-devel/distinfo Mon Jul 4 10:01:09 2016 (r418011) +++ head/lang/perl5-devel/distinfo Mon Jul 4 10:01:15 2016 (r418012) @@ -1,3 +1,3 @@ -TIMESTAMP = 1467027411 -SHA256 (perl/perl-5.25.2-44_GH0.tar.gz) = 1f67b971088bd1035f59244d97a6d9677996b0ba9aeb3ccc773373cbb263340b -SIZE (perl/perl-5.25.2-44_GH0.tar.gz) = 18162342 +TIMESTAMP = 1467623065 +SHA256 (perl/perl-5.25.2-92_GH0.tar.gz) = 2158f5ee902c707d3858a3bccbc50c84298f908b92cbddef56a0137fea6f0757 +SIZE (perl/perl-5.25.2-92_GH0.tar.gz) = 18182579 Modified: head/lang/perl5-devel/files/patch-t_porting_customized.dat ============================================================================== --- head/lang/perl5-devel/files/patch-t_porting_customized.dat Mon Jul 4 10:01:09 2016 (r418011) +++ head/lang/perl5-devel/files/patch-t_porting_customized.dat Mon Jul 4 10:01:15 2016 (r418012) @@ -1,6 +1,6 @@ ---- t/porting/customized.dat.orig 2016-06-26 22:23:33 UTC +--- t/porting/customized.dat.orig 2016-07-04 07:43:43 UTC +++ t/porting/customized.dat -@@ -1,12 +1,13 @@ +@@ -1,6 +1,7 @@ Encode cpan/Encode/Byte/Makefile.PL 54f446297d614331ef3f51e8310faff27cc44f90 Encode cpan/Encode/encoding.pm 51c19efc9bfe8467d6ae12a4654f6e7f980715bf ExtUtils::Constant cpan/ExtUtils-Constant/t/Constant.t a0369c919e216fb02767a637666bb4577ad79b02 @@ -8,8 +8,10 @@ ExtUtils::MakeMaker cpan/ExtUtils-MakeMaker/t/basic.t b7ee8691baf37197bf4249534f429fcf28f5cedf ExtUtils::MakeMaker cpan/ExtUtils-MakeMaker/t/lib/MakeMaker/Test/Setup/XS.pm 27aaa6acefd4223b57de74299314c19891ed17bc File::Path cpan/File-Path/lib/File/Path.pm fd8ce4420a0c113d3f47dd3223859743655c1da8 - File::Path cpan/File-Path/t/Path_win32.t 94b9276557ce7f80b91f6fd9bfa7a0cd9bf9683e - Math::BigRat cpan/Math-BigRat/lib/Math/BigRat.pm 6eabc68e04f67694f6fe523e64eb013fc337ca5b +@@ -10,7 +11,7 @@ Pod::Checker cpan/Pod-Checker/t/pod/cont + Pod::Checker cpan/Pod-Checker/t/pod/selfcheck.t 8ce3cfd38e4b9bcf5bc7fe7f2a14195e49aed7d8 + Pod::Checker cpan/Pod-Checker/t/pod/testcmp.pl a0cd5c8eca775c7753f4464eee96fa916e3d8a16 + Pod::Checker cpan/Pod-Checker/t/pod/testpchk.pl b2072c7f4379fd050e15424175d7cac5facf5b3b -Pod::Perldoc cpan/Pod-Perldoc/lib/Pod/Perldoc.pm fe0bc906fb74b69cfd3fb289316ba669d770d465 +Pod::Perldoc cpan/Pod-Perldoc/lib/Pod/Perldoc.pm 07e7d337de37d19b3cc7025af17b9111fb2ba265 Scalar-List-Utils cpan/Scalar-List-Utils/lib/List/Util.pm e479a29c6b66ac5cbbde4ef2296afaab6c4635a6 Modified: head/lang/perl5-devel/pkg-plist ============================================================================== --- head/lang/perl5-devel/pkg-plist Mon Jul 4 10:01:09 2016 (r418011) +++ head/lang/perl5-devel/pkg-plist Mon Jul 4 10:01:15 2016 (r418012) @@ -479,7 +479,6 @@ etc/man.d/perl%%PKGNAMESUFFIX%%.conf %%PRIV_LIB%%/Test/Builder/Tester.pm %%PRIV_LIB%%/Test/Builder/Tester/Color.pm %%PRIV_LIB%%/Test/Builder/TodoDiag.pm -%%PRIV_LIB%%/Test/FAQ.pod %%PRIV_LIB%%/Test/Harness.pm %%PRIV_LIB%%/Test/More.pm %%PRIV_LIB%%/Test/Simple.pm @@ -1381,7 +1380,6 @@ etc/man.d/perl%%PKGNAMESUFFIX%%.conf %%MAN3%%/Test::Builder::Tester.3.gz %%MAN3%%/Test::Builder::Tester::Color.3.gz %%MAN3%%/Test::Builder::TodoDiag.3.gz -%%MAN3%%/Test::FAQ.3.gz %%MAN3%%/Test::Harness.3.gz %%MAN3%%/Test::More.3.gz %%MAN3%%/Test::Simple.3.gz From owner-svn-ports-all@freebsd.org Mon Jul 4 10:01:22 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 05100B91766; Mon, 4 Jul 2016 10:01:22 +0000 (UTC) (envelope-from mat@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id BD02126D7; Mon, 4 Jul 2016 10:01:21 +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 u64A1KBW026916; Mon, 4 Jul 2016 10:01:20 GMT (envelope-from mat@FreeBSD.org) Received: (from mat@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u64A1Kuu026913; Mon, 4 Jul 2016 10:01:20 GMT (envelope-from mat@FreeBSD.org) Message-Id: <201607041001.u64A1Kuu026913@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: mat set sender to mat@FreeBSD.org using -f From: Mathieu Arnold Date: Mon, 4 Jul 2016 10:01:20 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418013 - in head/dns/bind9-devel: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Jul 2016 10:01:22 -0000 Author: mat Date: Mon Jul 4 10:01:20 2016 New Revision: 418013 URL: https://svnweb.freebsd.org/changeset/ports/418013 Log: Update to latest snapshot. Catch up on license changes. Sponsored by: Absolight Modified: head/dns/bind9-devel/Makefile (contents, props changed) head/dns/bind9-devel/distinfo (contents, props changed) head/dns/bind9-devel/files/patch-configure (contents, props changed) Modified: head/dns/bind9-devel/Makefile ============================================================================== --- head/dns/bind9-devel/Makefile Mon Jul 4 10:01:15 2016 (r418012) +++ head/dns/bind9-devel/Makefile Mon Jul 4 10:01:20 2016 (r418013) @@ -13,11 +13,11 @@ DISTNAME= ${PORTNAME}9-${HASH} MAINTAINER= mat@FreeBSD.org COMMENT= BIND DNS suite with updated DNSSEC and DNS64 -LICENSE= ISCL +LICENSE= MPL # ISC releases things like 9.8.0-P1, which our versioning doesn't like -ISCVERSION= 9.11.0.a20160627 -HASH= 33d0a77 +ISCVERSION= 9.12.0a.2016.07.04 +HASH= c8fb7e4 MAKE_JOBS_UNSAFE= yes Modified: head/dns/bind9-devel/distinfo ============================================================================== --- head/dns/bind9-devel/distinfo Mon Jul 4 10:01:15 2016 (r418012) +++ head/dns/bind9-devel/distinfo Mon Jul 4 10:01:20 2016 (r418013) @@ -1,3 +1,3 @@ -TIMESTAMP = 1467029021 -SHA256 (bind9-33d0a77.tar.gz) = 87a43c83b074357d4af9dbd131ba268c35b2dfd9497c5c56cf5bac2815375a2c -SIZE (bind9-33d0a77.tar.gz) = 11759207 +TIMESTAMP = 1467626025 +SHA256 (bind9-c8fb7e4.tar.gz) = 273b40b1ec4ec850007c5c4af0afdabd7b917232a4e889831ef3968a2dc8591a +SIZE (bind9-c8fb7e4.tar.gz) = 11761224 Modified: head/dns/bind9-devel/files/patch-configure ============================================================================== --- head/dns/bind9-devel/files/patch-configure Mon Jul 4 10:01:15 2016 (r418012) +++ head/dns/bind9-devel/files/patch-configure Mon Jul 4 10:01:20 2016 (r418013) @@ -1,6 +1,6 @@ ---- configure.orig 2016-06-27 05:29:38 UTC +--- configure.orig 2016-07-04 05:46:50 UTC +++ configure -@@ -14205,27 +14205,9 @@ done +@@ -14338,27 +14338,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 -@@ -14268,47 +14250,7 @@ $as_echo "no" >&6; } ;; +@@ -14401,47 +14383,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 -@@ -22147,7 +22089,7 @@ $as_echo "" >&6; } +@@ -22279,7 +22221,7 @@ $as_echo "" >&6; } # Check other locations for includes. # Order is important (sigh). From owner-svn-ports-all@freebsd.org Mon Jul 4 13:23:45 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 067A8B91C7A; Mon, 4 Jul 2016 13:23:45 +0000 (UTC) (envelope-from mat@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id B2E452A61; Mon, 4 Jul 2016 13:23:44 +0000 (UTC) (envelope-from mat@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u64DNhD1003906; Mon, 4 Jul 2016 13:23:43 GMT (envelope-from mat@FreeBSD.org) Received: (from mat@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u64DNh1g003905; Mon, 4 Jul 2016 13:23:43 GMT (envelope-from mat@FreeBSD.org) Message-Id: <201607041323.u64DNh1g003905@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: mat set sender to mat@FreeBSD.org using -f From: Mathieu Arnold Date: Mon, 4 Jul 2016 13:23:43 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418014 - head/www/awffull X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Jul 2016 13:23:45 -0000 Author: mat Date: Mon Jul 4 13:23:43 2016 New Revision: 418014 URL: https://svnweb.freebsd.org/changeset/ports/418014 Log: Update MASTER_SITES and cleanup a bit. PR: 210797 Submitted by: tkato432 yahoo com Sponsored by: Absolight Modified: head/www/awffull/Makefile (contents, props changed) Modified: head/www/awffull/Makefile ============================================================================== --- head/www/awffull/Makefile Mon Jul 4 10:01:20 2016 (r418013) +++ head/www/awffull/Makefile Mon Jul 4 13:23:43 2016 (r418014) @@ -3,16 +3,12 @@ PORTNAME= awffull PORTVERSION= 3.10.2 -PORTREVISION= 14 +PORTREVISION= 15 CATEGORIES?= www -MASTER_SITES= http://www.stedee.id.au/files/ +MASTER_SITES= https://launchpadlibrarian.net/20395993/ MAINTAINER?= ports@FreeBSD.org -COMMENT= AWFFull is a webserver log analysis tool forked from Webalizer - -BROKEN= unfetchable -DEPRECATED= Broken for more than 6 months -EXPIRATION_DATE= 2016-07-04 +COMMENT= Webserver log analysis tool forked from Webalizer LICENSE= GPLv3 LICENSE_FILE= ${WRKSRC}/COPYING @@ -31,7 +27,7 @@ FONTLABEL?= ${LOCALBASE}/share/fonts/bit OPTIONS_DEFINE= GEOIP DOCS EXAMPLES NLS OPTIONS_SUB= yes -USES= gettext iconv shebangfix +USES= gettext iconv localbase shebangfix SHEBANG_FILES= contrib/awffull_history_regen.pl \ contrib/awffull_history_regen_german.pl @@ -40,9 +36,6 @@ CONFIGURE_ARGS+=--with-font-default=${FO --with-font-label=${FONTLABEL} \ --with-etcdir=${PREFIX}/etc -CPPFLAGS+= -I${LOCALBASE}/include -LDFLAGS+= -L${LOCALBASE}/lib - GEOIP_LIB_DEPENDS= libGeoIP.so:net/GeoIP GEOIP_CONFIGURE_ENABLE= geoip @@ -51,12 +44,14 @@ NLS_CONFIGURE_ENABLE= nls PORTDOCS= * PORTEXAMPLES= * -post-install: +post-install-DOCS-on: @${MKDIR} ${STAGEDIR}${DOCSDIR} (cd ${WRKSRC} && ${INSTALL_DATA} \ - COPYING ChangeLog DNS.README PERFORMANCE_TIPS.txt \ + ChangeLog DNS.README PERFORMANCE_TIPS.txt \ README* TODO country-codes.txt \ ${STAGEDIR}${DOCSDIR}) + +post-install-EXAMPLES-on: @${MKDIR} ${STAGEDIR}${EXAMPLESDIR} ${INSTALL_DATA} ${WRKSRC}/sample* ${STAGEDIR}${EXAMPLESDIR} ${INSTALL_SCRIPT} ${WRKSRC}/contrib/*.pl ${STAGEDIR}${EXAMPLESDIR} From owner-svn-ports-all@freebsd.org Mon Jul 4 13:23:50 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id A101AB91CAD; Mon, 4 Jul 2016 13:23: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 mx1.freebsd.org (Postfix) with ESMTPS id 37E452AAA; Mon, 4 Jul 2016 13:23: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 u64DNnLC004037; Mon, 4 Jul 2016 13:23:49 GMT (envelope-from mat@FreeBSD.org) Received: (from mat@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u64DNndv004035; Mon, 4 Jul 2016 13:23:49 GMT (envelope-from mat@FreeBSD.org) Message-Id: <201607041323.u64DNndv004035@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: mat set sender to mat@FreeBSD.org using -f From: Mathieu Arnold Date: Mon, 4 Jul 2016 13:23:49 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418015 - head/lang/sketchy X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Jul 2016 13:23:51 -0000 Author: mat Date: Mon Jul 4 13:23:49 2016 New Revision: 418015 URL: https://svnweb.freebsd.org/changeset/ports/418015 Log: Update MASTER_SITES, minor cleanup. PR: 210795 Submitted by: tkato432 yahoo com Sponsored by: Absolight Modified: head/lang/sketchy/Makefile (contents, props changed) head/lang/sketchy/pkg-descr (contents, props changed) Modified: head/lang/sketchy/Makefile ============================================================================== --- head/lang/sketchy/Makefile Mon Jul 4 13:23:43 2016 (r418014) +++ head/lang/sketchy/Makefile Mon Jul 4 13:23:49 2016 (r418015) @@ -5,15 +5,11 @@ PORTNAME= sketchy PORTVERSION= 20070218 PORTREVISION= 1 CATEGORIES= lang devel lisp scheme -MASTER_SITES= http://www.t3x.org/files/ +MASTER_SITES= SF/sketchy-lisp/sketchy-lisp/2007-02-18 MAINTAINER= ports@FreeBSD.org COMMENT= Interpreter for purely applicative Scheme -BROKEN= unfetchable -DEPRECATED= Broken for more than 6 months -EXPIRATION_DATE= 2016-07-04 - USES= uidfix USE_LDCONFIG= yes @@ -28,10 +24,8 @@ post-patch: ${WRKSRC}/Makefile post-install: - cd ${STAGEDIR} && ${FIND} . -not -type d -exec ls -ld {} \; ${LN} -sf libsketchy.so.31 ${STAGEDIR}${PREFIX}/lib/libsketchy.so ${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/libsketchy.so - ${LN} -s ${MANPREFIX}/man/man1/sketchy.1.gz \ - ${STAGEDIR}${MANPREFIX}/man/man1/sk.1.gz + ${LN} -s sketchy.1.gz ${STAGEDIR}${MANPREFIX}/man/man1/sk.1.gz .include Modified: head/lang/sketchy/pkg-descr ============================================================================== --- head/lang/sketchy/pkg-descr Mon Jul 4 13:23:43 2016 (r418014) +++ head/lang/sketchy/pkg-descr Mon Jul 4 13:23:49 2016 (r418015) @@ -5,4 +5,4 @@ LISP plus global definitions and some in This package contains the SketchyLISP interpreter and library, the manual, and example programs. -WWW: http://www.t3x.org/sketchy/ +WWW: http://sketchy-lisp.sourceforge.net/ From owner-svn-ports-all@freebsd.org Mon Jul 4 13:23:54 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 9788AB91CD3; Mon, 4 Jul 2016 13:23:54 +0000 (UTC) (envelope-from mat@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 66D812B52; Mon, 4 Jul 2016 13:23:54 +0000 (UTC) (envelope-from mat@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u64DNrsk004151; Mon, 4 Jul 2016 13:23:53 GMT (envelope-from mat@FreeBSD.org) Received: (from mat@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u64DNruj004150; Mon, 4 Jul 2016 13:23:53 GMT (envelope-from mat@FreeBSD.org) Message-Id: <201607041323.u64DNruj004150@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: mat set sender to mat@FreeBSD.org using -f From: Mathieu Arnold Date: Mon, 4 Jul 2016 13:23:53 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418016 - head/audio/autozen X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Jul 2016 13:23:54 -0000 Author: mat Date: Mon Jul 4 13:23:53 2016 New Revision: 418016 URL: https://svnweb.freebsd.org/changeset/ports/418016 Log: Update MASTER_SITES, minor cleanup. PR: 210788 Submitted by: tkato432 yahoo com Sponsored by: Absolight Modified: head/audio/autozen/Makefile (contents, props changed) Modified: head/audio/autozen/Makefile ============================================================================== --- head/audio/autozen/Makefile Mon Jul 4 13:23:49 2016 (r418015) +++ head/audio/autozen/Makefile Mon Jul 4 13:23:53 2016 (r418016) @@ -5,16 +5,14 @@ PORTNAME= autozen PORTVERSION= 2.1 PORTREVISION= 7 CATEGORIES= audio -MASTER_SITES= http://www.sourcefiles.org/Miscellaneous/ +MASTER_SITES= http://www.linuxlabs.com/download/ MAINTAINER= ports@FreeBSD.org COMMENT= Adjust brain waves with sound LICENSE= GPLv2 +LICENSE_FILE= ${WRKSRC}/COPYING -BROKEN= unfetchable -DEPRECATED= Broken for more than 6 months -EXPIRATION_DATE= 2016-07-04 OPTIONS_DEFINE= DOCS @@ -45,7 +43,7 @@ post-patch: s|share/AutoZen|${DATADIR_REL}| ; \ s|gtk-config|$${GTK_CONFIG}|g ; \ s|$$(CC) seq2wav|$$(CC) $$(CFLAGS) seq2wav| ; \ - s|-pthread|-lm -pthread|g' \ + s|-pthread|-lm|' \ ${WRKSRC}/Makefile do-install: From owner-svn-ports-all@freebsd.org Mon Jul 4 13:23:59 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 01284B91D07; Mon, 4 Jul 2016 13:23:59 +0000 (UTC) (envelope-from mat@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id D17C72C2F; Mon, 4 Jul 2016 13:23:58 +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 u64DNwCm004282; Mon, 4 Jul 2016 13:23:58 GMT (envelope-from mat@FreeBSD.org) Received: (from mat@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u64DNvNk004280; Mon, 4 Jul 2016 13:23:57 GMT (envelope-from mat@FreeBSD.org) Message-Id: <201607041323.u64DNvNk004280@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: mat set sender to mat@FreeBSD.org using -f From: Mathieu Arnold Date: Mon, 4 Jul 2016 13:23:57 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418017 - head/games/tuxmath X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Jul 2016 13:23:59 -0000 Author: mat Date: Mon Jul 4 13:23:57 2016 New Revision: 418017 URL: https://svnweb.freebsd.org/changeset/ports/418017 Log: Update MASTER_SITES. PR: 210791 Submitted by: tkato432 yahoo com Sponsored by: Absolight Modified: head/games/tuxmath/Makefile (contents, props changed) head/games/tuxmath/distinfo (contents, props changed) Modified: head/games/tuxmath/Makefile ============================================================================== --- head/games/tuxmath/Makefile Mon Jul 4 13:23:53 2016 (r418016) +++ head/games/tuxmath/Makefile Mon Jul 4 13:23:57 2016 (r418017) @@ -6,18 +6,14 @@ PORTVERSION= 2.0.3 PORTREVISION= 6 PORTEPOCH= 1 CATEGORIES= games -MASTER_SITES= http://alioth.debian.org/frs/download.php/3571/ \ - http://alioth.debian.org/frs/download.php/3540/:t4k_common -DISTFILES= ${PORTNAME}_w_fonts-${PORTVERSION}${EXTRACT_SUFX} \ +MASTER_SITES= DEBIAN_POOL \ + DEBIAN/pool/main/t/t4kcommon:t4k_common +DISTFILES= ${PORTNAME}_${PORTVERSION}.orig${EXTRACT_SUFX} \ ${T4K_DISTFILE}:t4k_common MAINTAINER= ports@FreeBSD.org COMMENT= Educational arcade game starring Tux -BROKEN= unfetchable -DEPRECATED= Broken for more than 6 months -EXPIRATION_DATE= 2016-07-04 - LICENSE= GPLv3+ LICENSE_FILE= ${WRKSRC}/doc/COPYING_GPL3 @@ -25,19 +21,19 @@ WRKSRC= ${WRKDIR}/${PORTNAME}_w_fonts-$ USE_GNOME= libxml2 USE_SDL= image mixer net pango sdl -USES= iconv gmake perl5 pkgconfig +USES= gmake iconv localbase perl5 pkgconfig GNU_CONFIGURE= yes CONFIGURE_ENV= T4K_COMMON_CFLAGS="-I${T4K_WRKSRC}/src" \ T4K_COMMON_LIBS="${T4K_WRKSRC}/src/.libs/libt4k_common.a" \ ac_cv_lib_m_csin=yes -CPPFLAGS+= $$(pkg-config --cflags SDL_Pango) -I${LOCALBASE}/include \ +CPPFLAGS+= $$(pkg-config --cflags SDL_Pango libpng) \ -DHAVE_ALPHASORT -DHAVE_SCANDIR -DHAVE_FSYNC -DICONV_CONST="" -LDFLAGS+= $$(pkg-config --libs SDL_Pango) -L${LOCALBASE}/lib ${ICONV_LIB} -lpng +LDFLAGS+= $$(pkg-config --libs SDL_Pango libpng) ${ICONV_LIB} T4K_NAME= t4k_common T4K_VERSION= 0.1.1 -T4K_DISTFILE= ${T4K_NAME}-${T4K_VERSION}${EXTRACT_SUFX} +T4K_DISTFILE= ${T4K_NAME:S/_//}_${T4K_VERSION}.orig${EXTRACT_SUFX} T4K_WRKSRC= ${WRKDIR}/${T4K_NAME}-${T4K_VERSION} OPTIONS_DEFINE= NLS SVG DOCS @@ -51,9 +47,6 @@ NLS_LDFLAGS= -lintl SVG_CONFIGURE_WITH= rsvg SVG_USE= GNOME=librsvg2 -# use multiple make jobs for T4K_WRKSRC -_make_jobs= -j${MAKE_JOBS_NUMBER} - post-extract: @${LN} -sf ${T4K_WRKSRC} ${WRKDIR}/${T4K_NAME} @@ -71,11 +64,12 @@ pre-configure: CPPFLAGS="${CPPFLAGS}" LDFLAGS="${LDFLAGS}") pre-build: - @(cd ${T4K_WRKSRC} && ${SETENV} ${MAKE_ENV} ${MAKE_CMD} ${MAKE_FLAGS} \ - ${MAKEFILE} ${_make_jobs} ${ALL_TARGET}) + @(cd ${T4K_WRKSRC} && ${DO_MAKE_BUILD} ${ALL_TARGET}) post-install: - ${LN} -s ${DATADIR}/images/status ${STAGEDIR}${DATADIR}/images/menu + ${LN} -s status ${STAGEDIR}${DATADIR}/images/menu + +post-install-DOCS-on: @${MKDIR} ${STAGEDIR}${DOCSDIR} .for file in OFL README README_DATA_LICENSES TODO changelog ${INSTALL_DATA} ${WRKSRC}/doc/${file} ${STAGEDIR}${DOCSDIR} Modified: head/games/tuxmath/distinfo ============================================================================== --- head/games/tuxmath/distinfo Mon Jul 4 13:23:53 2016 (r418016) +++ head/games/tuxmath/distinfo Mon Jul 4 13:23:57 2016 (r418017) @@ -1,4 +1,4 @@ -SHA256 (tuxmath_w_fonts-2.0.3.tar.gz) = eec49c296d41df39a6474d94ba4e3334e4c16dc180d3ea4a6defc2debfc39887 -SIZE (tuxmath_w_fonts-2.0.3.tar.gz) = 10396696 -SHA256 (t4k_common-0.1.1.tar.gz) = 42c155816dae2c5dad560faa50edaa1ca84536530283d37859c4b91e82675110 -SIZE (t4k_common-0.1.1.tar.gz) = 629215 +SHA256 (tuxmath_2.0.3.orig.tar.gz) = eec49c296d41df39a6474d94ba4e3334e4c16dc180d3ea4a6defc2debfc39887 +SIZE (tuxmath_2.0.3.orig.tar.gz) = 10396696 +SHA256 (t4kcommon_0.1.1.orig.tar.gz) = 42c155816dae2c5dad560faa50edaa1ca84536530283d37859c4b91e82675110 +SIZE (t4kcommon_0.1.1.orig.tar.gz) = 629215 From owner-svn-ports-all@freebsd.org Mon Jul 4 13:24:05 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 0B9B5B91D3B; Mon, 4 Jul 2016 13:24:05 +0000 (UTC) (envelope-from mat@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 8370C2D6D; Mon, 4 Jul 2016 13:24:04 +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 u64DO3dg004489; Mon, 4 Jul 2016 13:24:03 GMT (envelope-from mat@FreeBSD.org) Received: (from mat@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u64DO3U0004482; Mon, 4 Jul 2016 13:24:03 GMT (envelope-from mat@FreeBSD.org) Message-Id: <201607041324.u64DO3U0004482@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: mat set sender to mat@FreeBSD.org using -f From: Mathieu Arnold Date: Mon, 4 Jul 2016 13:24:03 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418018 - in head/games/exult: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Jul 2016 13:24:05 -0000 Author: mat Date: Mon Jul 4 13:24:02 2016 New Revision: 418018 URL: https://svnweb.freebsd.org/changeset/ports/418018 Log: Update to version 1.5.0.20160514 PR: 210790 Submitted by: tkato432 yahoo com Sponsored by: Absolight Added: head/games/exult/files/patch-configure.ac (contents, props changed) head/games/exult/files/patch-mapedit_Makefile.am (contents, props changed) head/games/exult/files/patch-tools_Makefile.am (contents, props changed) Deleted: head/games/exult/files/patch-shapes_pngio.cc Modified: head/games/exult/Makefile (contents, props changed) head/games/exult/distinfo (contents, props changed) head/games/exult/pkg-plist (contents, props changed) Modified: head/games/exult/Makefile ============================================================================== --- head/games/exult/Makefile Mon Jul 4 13:23:57 2016 (r418017) +++ head/games/exult/Makefile Mon Jul 4 13:24:02 2016 (r418018) @@ -2,50 +2,58 @@ # $FreeBSD$ PORTNAME= exult -PORTVERSION= 1.5.0.20130315 -PORTREVISION= 3 +PORTVERSION= 1.5.0.20160514 CATEGORIES= games -MASTER_SITES= http://www.math.leidenuniv.nl/~wpalenst/cvs/ -DISTNAME= exult-20130315-0400 MAINTAINER= ports@FreeBSD.org COMMENT= Ultima VII engine -BROKEN= unfetchable -DEPRECATED= Broken for more than 6 months -EXPIRATION_DATE= 2016-07-04 - LICENSE= GPLv2+ LICENSE_FILE= ${WRKSRC}/COPYING -BUILD_DEPENDS= timidity:audio/timidity -RUN_DEPENDS= timidity:audio/timidity +LIB_DEPENDS= libvorbis.so:audio/libvorbis \ + libpng.so:graphics/png -USE_SDL= sdl mixer -USE_XORG= x11 -USES= autoreconf gmake libtool pkgconfig -GNU_CONFIGURE= yes -CPPFLAGS+= -I${LOCALBASE}/include -LDFLAGS+= -L${LOCALBASE}/lib +USE_GITHUB= yes +GH_TAGNAME= b15afba -WRKSRC= ${WRKDIR}/exult +USES= autoreconf compiler:c++11-lib gmake libtool localbase pkgconfig +USE_XORG= xext +GNU_CONFIGURE= yes +CONFIGURE_ARGS= --disable-alsa \ + --with-icondir=${PREFIX}/share/pixmaps SUB_FILES= pkg-message -OPTIONS_DEFINE= STUDIO -OPTIONS_DEFAULT=STUDIO -OPTIONS_SUB= yes -STUDIO_DESC= Install Exult Studio - -.include - -.if ${PORT_OPTIONS:MSTUDIO} -CONFIGURE_ARGS+=--enable-exult-studio \ - --enable-exult-studio-support -USE_GNOME+= libglade2 -.endif +OPTIONS_DEFINE= DOCS FLUIDSYNTH GIMP STUDIO THUMBNAILER +OPTIONS_SINGLE= SDL +OPTIONS_SINGLE_SDL= SDL1 SDL2 +OPTIONS_DEFAULT= SDL1 STUDIO +OPTIONS_SUB= yes + +FLUIDSYNTH_LIB_DEPENDS= libfluidsynth.so:audio/fluidsynth +FLUIDSYNTH_CONFIGURE_ENABLE=\ + fluidsynth +GIMP_DESC= GIMP plugin support +GIMP_LIB_DEPENDS= libgimp-2.0.so:graphics/gimp-app +GIMP_CONFIGURE_ENABLE= gimp-plugin +SDL1_DESC= Simple Direct Media Layer 1 support +SDL1_USE= sdl=mixer +SDL1_CONFIGURE_ARGS= --with-sdl=sdl12 +SDL2_DESC= Simple Direct Media Layer 2 support +SDL2_USE= sdl=mixer2 +SDL2_CONFIGURE_ARGS= --with-sdl=sdl2 +STUDIO_DESC= Install Exult Studio +STUDIO_CONFIGURE_ENABLE=\ + exult-studio exult-studio-support +STUDIO_USE= gnome=libglade2 +THUMBNAILER_DESC= Gnome SHP thumbnailer support +THUMBNAILER_USES= shared-mime-info +THUMBNAILER_USE= gnome=libgnomeui +THUMBNAILER_CONFIGURE_ENABLE=\ + gnome-shp-thumbnailer -post-install: +post-install-DOCS-on: @${MKDIR} ${STAGEDIR}${DOCSDIR} .for i in FAQ NEWS README ${INSTALL_DATA} ${WRKSRC}/${i} ${STAGEDIR}${DOCSDIR} Modified: head/games/exult/distinfo ============================================================================== --- head/games/exult/distinfo Mon Jul 4 13:23:57 2016 (r418017) +++ head/games/exult/distinfo Mon Jul 4 13:24:02 2016 (r418018) @@ -1,2 +1,2 @@ -SHA256 (exult-20130315-0400.tar.gz) = 368dc28016d56c5251531e4cff463d9ffcaa151d74bad65bdc5366c213e12fcc -SIZE (exult-20130315-0400.tar.gz) = 4784001 +SHA256 (exult-exult-1.5.0.20160514-b15afba_GH0.tar.gz) = f517470ff132fbe114c47c996c2f8775693fca8a4a8bc3caf479ed7580d2cc2a +SIZE (exult-exult-1.5.0.20160514-b15afba_GH0.tar.gz) = 4941781 Added: head/games/exult/files/patch-configure.ac ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/games/exult/files/patch-configure.ac Mon Jul 4 13:24:02 2016 (r418018) @@ -0,0 +1,20 @@ +--- configure.ac.orig 2016-05-14 01:04:00 UTC ++++ configure.ac +@@ -71,7 +71,7 @@ case "$host_os" in + WINDOWING_SYSTEM="-DXWIN" + AC_DEFINE(NETBSD, 1, [Using NetBSD]) + AC_MSG_RESULT([X11 (FreeBSD)]) +- CXXFLAGS="$CXXFLAGS -I/usr/local/include" ++ CXXFLAGS="$CXXFLAGS " + ;; + netbsd* ) + WINDOWING_SYSTEM="-DXWIN" +@@ -665,7 +665,7 @@ if test x$enable_debug = xyes; then + DEBUG_FLAGS="-g" + else + AC_MSG_RESULT(no) +- DEBUG_FLAGS="-O2" ++ DEBUG_FLAGS= + fi + + # optimized debugging mode Added: head/games/exult/files/patch-mapedit_Makefile.am ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/games/exult/files/patch-mapedit_Makefile.am Mon Jul 4 13:24:02 2016 (r418018) @@ -0,0 +1,13 @@ +--- mapedit/Makefile.am.orig 2016-05-14 01:04:00 UTC ++++ mapedit/Makefile.am +@@ -92,8 +92,8 @@ EXTRA_DIST= \ + + if GIMP_PLUGIN + install-exec-local: +- install -d $(DESTDIR)$(GIMP_PLUGIN_PREFIX) +- install -c $(GIMP_PLUGINS) $(DESTDIR)$(GIMP_PLUGIN_PREFIX) ++ $(MKDIR_P) $(DESTDIR)$(GIMP_PLUGIN_PREFIX) ++ $(INSTALL_PROGRAM) $(GIMP_PLUGINS) $(DESTDIR)$(GIMP_PLUGIN_PREFIX) + else + install-exec-local: + endif Added: head/games/exult/files/patch-tools_Makefile.am ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/games/exult/files/patch-tools_Makefile.am Mon Jul 4 13:24:02 2016 (r418018) @@ -0,0 +1,29 @@ +--- tools/Makefile.am.orig 2016-05-14 01:04:00 UTC ++++ tools/Makefile.am +@@ -56,11 +56,11 @@ if BUILD_GTHUMB + ## Does not work: + #thumbnailerdir=$(datadir)/thumbnailers + ## Needs to be in /usr/share/thumbnailers +-thumbnailerdir=/usr/share/thumbnailers ++thumbnailerdir=$(datadir)/thumbnailers + thumbnailer_in_files=gnome_u7shapes.thumbnailer.in + thumbnailer_DATA=$(thumbnailer_in_files:.thumbnailer.in=.thumbnailer) + gnome_shp_thumbnailer_DATA=x-shapefile.xml +-gnome_shp_thumbnailerdir=$(DESTDIR)$(datadir)/mime/packages ++gnome_shp_thumbnailerdir=$(datadir)/mime/packages + + # Rule to make the service file with bindir expanded + $(thumbnailer_DATA): $(thumbnailer_in_files) +@@ -99,10 +99,10 @@ cmanip_LDADD = \ + + if BUILD_GTHUMB + install-data-hook: +- update-mime-database $(DESTDIR)$(datadir)/mime || : ++ : + + uninstall-hook: +- update-mime-database $(DESTDIR)$(datadir)/mime || : ++ : + else + install-data-hook: + uninstall-hook: Modified: head/games/exult/pkg-plist ============================================================================== --- head/games/exult/pkg-plist Mon Jul 4 13:23:57 2016 (r418017) +++ head/games/exult/pkg-plist Mon Jul 4 13:24:02 2016 (r418018) @@ -1,6 +1,7 @@ bin/expack bin/exult %%STUDIO%%bin/exult_studio +%%THUMBNAILER%%bin/gnome_shp_thumbnailer bin/ipack bin/shp2pcx bin/splitshp @@ -14,7 +15,11 @@ man/man1/splitshp.1.gz man/man1/textpack.1.gz man/man1/ucc.1.gz man/man6/exult.6.gz +%%GIMP%%libexec/gimp/2.2/plug-ins/u7shp share/applications/exult.desktop +%%PORTDOCS%%%%DOCSDIR%%/FAQ +%%PORTDOCS%%%%DOCSDIR%%/NEWS +%%PORTDOCS%%%%DOCSDIR%%/README %%DATADIR%%/bg_mr_faces.vga %%DATADIR%%/bg_paperdol.vga %%STUDIO%%%%DATADIR%%/estudio/new/blends.dat @@ -39,7 +44,6 @@ share/applications/exult.desktop %%DATADIR%%/u7misc.data %%DATADIR%%/u7opcodes.data %%DATADIR%%/u7siintrinsics.data -%%DOCSDIR%%/FAQ -%%DOCSDIR%%/NEWS -%%DOCSDIR%%/README -share/icons/exult.png +%%THUMBNAILER%%share/mime/packages/x-shapefile.xml +share/pixmaps/exult.png +%%THUMBNAILER%%share/thumbnailers/gnome_u7shapes.thumbnailer From owner-svn-ports-all@freebsd.org Mon Jul 4 13:24:12 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 251D4B91D71; Mon, 4 Jul 2016 13:24: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 mx1.freebsd.org (Postfix) with ESMTPS id B80282E9F; Mon, 4 Jul 2016 13:24:11 +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 u64DOBYg004965; Mon, 4 Jul 2016 13:24:11 GMT (envelope-from mat@FreeBSD.org) Received: (from mat@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u64DO9dc004947; Mon, 4 Jul 2016 13:24:09 GMT (envelope-from mat@FreeBSD.org) Message-Id: <201607041324.u64DO9dc004947@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: mat set sender to mat@FreeBSD.org using -f From: Mathieu Arnold Date: Mon, 4 Jul 2016 13:24:09 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418019 - in head/graphics/aeskulap: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Jul 2016 13:24:12 -0000 Author: mat Date: Mon Jul 4 13:24:09 2016 New Revision: 418019 URL: https://svnweb.freebsd.org/changeset/ports/418019 Log: Update to version 0.2.2.20140119. PR: 210794 Submitted by: tkato432 yahoo com Sponsored by: Absolight Added: head/graphics/aeskulap/files/patch-configure.in (contents, props changed) head/graphics/aeskulap/files/patch-imagepool_dicomdir.cpp (contents, props changed) head/graphics/aeskulap/files/patch-imagepool_dicomdirloader.cpp (contents, props changed) head/graphics/aeskulap/files/patch-imagepool_poolassociation.cpp (contents, props changed) head/graphics/aeskulap/files/patch-imagepool_poolfindassociation.cpp (contents, props changed) head/graphics/aeskulap/files/patch-imagepool_poolfindassociation.h (contents, props changed) head/graphics/aeskulap/files/patch-imagepool_poolmoveassociation.cpp (contents, props changed) head/graphics/aeskulap/files/patch-imagepool_poolmoveassociation.h (contents, props changed) head/graphics/aeskulap/files/patch-imagepool_poolnetwork.cpp (contents, props changed) head/graphics/aeskulap/files/patch-imagepool_poolnetwork.h (contents, props changed) Deleted: head/graphics/aeskulap/files/patch-configuration_aconfiguration.cpp head/graphics/aeskulap/files/patch-dcmtk-clang head/graphics/aeskulap/files/patch-dcmtk-config_configure head/graphics/aeskulap/files/patch-dcmtk-dcmnet-include_dcompat.h head/graphics/aeskulap/files/patch-dcmtk-dcmnet-libsrc_dcompat.cc head/graphics/aeskulap/files/patch-dcmtk-ofstd-include_ofthread.h head/graphics/aeskulap/files/patch-dcmtk-ofstd-libsrc_ofthread.cc head/graphics/aeskulap/files/patch-dcmtk_ofstd_libsrc_oftime.cc head/graphics/aeskulap/files/patch-imagepool_imagepool.h head/graphics/aeskulap/files/patch-src_Makefile.am head/graphics/aeskulap/files/patch-src_Makefile.in head/graphics/aeskulap/files/patch-widgets_awindowleveltoolbutton.cpp Modified: head/graphics/aeskulap/Makefile (contents, props changed) head/graphics/aeskulap/distinfo (contents, props changed) head/graphics/aeskulap/files/patch-imagepool_poolinstance.h (contents, props changed) head/graphics/aeskulap/pkg-descr (contents, props changed) head/graphics/aeskulap/pkg-plist (contents, props changed) Modified: head/graphics/aeskulap/Makefile ============================================================================== --- head/graphics/aeskulap/Makefile Mon Jul 4 13:24:02 2016 (r418018) +++ head/graphics/aeskulap/Makefile Mon Jul 4 13:24:09 2016 (r418019) @@ -2,34 +2,32 @@ # $FreeBSD$ PORTNAME= aeskulap -PORTVERSION= 0.2.1 -PORTREVISION= 5 +PORTVERSION= 0.2.2.20140119 CATEGORIES= graphics -MASTER_SITES= http://www.sourcefiles.org/Home_and_Education/Health/ MAINTAINER= ports@FreeBSD.org COMMENT= Medical image viewer -BROKEN= unfetchable -DEPRECATED= Broken for more than 6 months -EXPIRATION_DATE= 2016-07-04 LICENSE= GPLv2 LICENSE_FILE= ${WRKSRC}/COPYING -LIB_DEPENDS= libglademm-2.4.so:devel/libglademm24 +LIB_DEPENDS= libglademm-2.4.so:devel/libglademm24\ + libdcmimage.so:devel/dcmtk -USES= desktop-file-utils gettext libtool pkgconfig +USE_GITHUB= yes +GH_ACCOUNT= pipelka +GH_TAGNAME= ea0a119 + +USES= autoreconf desktop-file-utils gettext gmake libtool localbase \ + pkgconfig USE_GNOME= gconfmm26 gtkmm24 intltool GCONF_SCHEMAS= aeskulap.schemas USE_LDCONFIG= ${PREFIX}/lib/aeskulap GNU_CONFIGURE= yes CONFIGURE_ARGS= --disable-static -CPPFLAGS+= -I${LOCALBASE}/include -LIBS+= -L${LOCALBASE}/lib INSTALL_TARGET= install-strip +INSTALLS_ICONS= yes -post-install: - ${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/aeskulap/*.so .include Modified: head/graphics/aeskulap/distinfo ============================================================================== --- head/graphics/aeskulap/distinfo Mon Jul 4 13:24:02 2016 (r418018) +++ head/graphics/aeskulap/distinfo Mon Jul 4 13:24:09 2016 (r418019) @@ -1,2 +1,2 @@ -SHA256 (aeskulap-0.2.1.tar.gz) = 6bbf1a26466ba190b1807e06f3d682575439668d6f11d7a5fa6b3fb1049fab50 -SIZE (aeskulap-0.2.1.tar.gz) = 4272339 +SHA256 (pipelka-aeskulap-0.2.2.20140119-ea0a119_GH0.tar.gz) = a98e07b31cf6d73b0cb2e4788a04f3e9bfdca856da709f01819fba0b58d21e89 +SIZE (pipelka-aeskulap-0.2.2.20140119-ea0a119_GH0.tar.gz) = 4323281 Added: head/graphics/aeskulap/files/patch-configure.in ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/aeskulap/files/patch-configure.in Mon Jul 4 13:24:09 2016 (r418019) @@ -0,0 +1,41 @@ +--- configure.in.orig 2014-01-19 07:38:17 UTC ++++ configure.in +@@ -104,17 +104,8 @@ DCMTK_LIBS="-L\$(prefix)/lib -ldcmjpeg - + + else + +-DCMJPEG_LIBS="-L../dcmtk/dcmjpeg/libijg8 -L../dcmtk/dcmjpeg/libijg12 -L../dcmtk/dcmjpeg/libijg16 -lijg8 -lijg12 -lijg16" +-AC_SUBST(DCMJPEG_LIBS) +- +-DCMTK_CFLAGS="-DHAVE_CONFIG_H -I\$(top_srcdir)/dcmtk/config/include -I\$(top_srcdir)/dcmtk/ofstd/include -I\$(top_srcdir)/dcmtk/dcmdata/include -I\$(top_srcdir)/dcmtk/dcmnet/include -I\$(top_srcdir)/dcmtk/dcmimage/include -I\$(top_srcdir)/dcmtk/dcmimgle/include -I\$(top_srcdir)/dcmtk/dcmjpeg/include" +-DCMTK_LIBS="-L../dcmtk/ofstd/libsrc \ +--L../dcmtk/dcmdata/libsrc \ +--L../dcmtk/dcmnet/libsrc \ +--L../dcmtk/dcmjpeg/libsrc \ +--L../dcmtk/dcmimage/libsrc \ +--L../dcmtk/dcmimgle/libsrc \ +-\$(DCMJPEG_LIBS) -ldcmjpeg -ldcmimage -ldcmimgle -ldcmnet -ldcmdata -lofstd -lrt -lpthread" ++DCMTK_CFLAGS="-DHAVE_CONFIG_H -I\$(prefix)/include" ++DCMTK_LIBS="-L\$(prefix)/lib -ldcmjpeg -lijg8 -lijg12 -lijg16 -ldcmimage -ldcmimgle -ldcmnet -ldcmdata -loflog -lofstd" + + fi + +@@ -130,8 +121,7 @@ fi + + DCMTK_SUBDIR="" + if test x"$MINGW32" = xno ; then +-DCMTK_SUBDIR="dcmtk" +-LDFLAGS_AESKULAP_LIBS="-Wl,-rpath,${prefix}/lib/aeskulap -avoid-version" ++LDFLAGS_AESKULAP_LIBS="-avoid-version" + else + LDFLAGS_MINGW32="-mwindows" + LDFLAGS_AESKULAP_LIBS="-avoid-version -no-undefined" +@@ -161,7 +151,7 @@ packaging/win32/aeskulap.iss + ]) + + +-if test x"$MINGW32" = xno ; then ++if false ; then + + cd $srcdir/dcmtk + export CFLAGS="$CFLAGS" Added: head/graphics/aeskulap/files/patch-imagepool_dicomdir.cpp ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/aeskulap/files/patch-imagepool_dicomdir.cpp Mon Jul 4 13:24:09 2016 (r418019) @@ -0,0 +1,89 @@ +--- imagepool/dicomdir.cpp.orig 2014-01-19 07:38:17 UTC ++++ imagepool/dicomdir.cpp +@@ -43,7 +43,7 @@ namespace ImagePool { + DcmDicomDir dir(dicomdir.c_str()); + OFCondition ret; + +- if ( (ret=dir.error()) != ECC_Normal ) { ++ if ( (ret=dir.error()) != EC_Normal ) { + std::cout << "DICOMDIR Error: " << ret.text() << std::endl; + return; + } +@@ -151,21 +151,21 @@ namespace ImagePool { + DcmDataset study; + DcmElement *el; + +- if ( studyRec->findAndGetElement(DCM_SpecificCharacterSet, el, OFFalse, OFTrue) == ECC_Normal ) ++ if ( studyRec->findAndGetElement(DCM_SpecificCharacterSet, el, OFFalse, OFTrue) == EC_Normal ) + study.insert(el); +- if ( studyRec->findAndGetElement(DCM_StudyInstanceUID, el, OFFalse, OFTrue) == ECC_Normal ) ++ if ( studyRec->findAndGetElement(DCM_StudyInstanceUID, el, OFFalse, OFTrue) == EC_Normal ) + study.insert(el); +- if ( studyRec->findAndGetElement(DCM_StudyDate, el, OFFalse, OFTrue) == ECC_Normal ) ++ if ( studyRec->findAndGetElement(DCM_StudyDate, el, OFFalse, OFTrue) == EC_Normal ) + study.insert(el); +- if ( studyRec->findAndGetElement(DCM_StudyTime, el, OFFalse, OFTrue) == ECC_Normal ) ++ if ( studyRec->findAndGetElement(DCM_StudyTime, el, OFFalse, OFTrue) == EC_Normal ) + study.insert(el); +- if ( studyRec->findAndGetElement(DCM_StudyDescription, el, OFFalse, OFTrue) == ECC_Normal ) ++ if ( studyRec->findAndGetElement(DCM_StudyDescription, el, OFFalse, OFTrue) == EC_Normal ) + study.insert(el); +- if ( patRec->findAndGetElement(DCM_PatientName, el, OFFalse, OFTrue) == ECC_Normal ) ++ if ( patRec->findAndGetElement(DCM_PatientName, el, OFFalse, OFTrue) == EC_Normal ) + study.insert(el); +- if ( patRec->findAndGetElement(DCM_PatientBirthDate, el, OFFalse, OFTrue) == ECC_Normal ) ++ if ( patRec->findAndGetElement(DCM_PatientBirthDate, el, OFFalse, OFTrue) == EC_Normal ) + study.insert(el); +- if ( patRec->findAndGetElement(DCM_PatientSex, el, OFFalse, OFTrue) == ECC_Normal ) ++ if ( patRec->findAndGetElement(DCM_PatientSex, el, OFFalse, OFTrue) == EC_Normal ) + study.insert(el); + resultslot(create_query_study(&study, std::string("DICOMDIR:") + dicomdir)); + } +@@ -179,7 +179,7 @@ namespace ImagePool { + DcmDirectoryRecord *seriesRec; + OFCondition ret; + +- if ( dir.error() != ECC_Normal ) { ++ if ( dir.error() != EC_Normal ) { + std::cout << "DICOMDIR Error: " << ret.text() << std::endl; + return; + } +@@ -191,7 +191,7 @@ namespace ImagePool { + for ( studyRec=patRec->nextSub(NULL); studyRec; studyRec = patRec->nextSub(studyRec) ) { + if ( studyRec->getRecordType()==ERT_Study ) { + OFString uid; +- if ( studyRec->findAndGetOFString(DCM_StudyInstanceUID, uid)==ECC_Normal ) { ++ if ( studyRec->findAndGetOFString(DCM_StudyInstanceUID, uid)==EC_Normal ) { + if ( studyinstanceuid == uid.c_str() ) { + open_dicomdir_series_result(dicomdir, patRec, studyRec, resultslot); + return; +@@ -221,21 +221,21 @@ namespace ImagePool { + DcmDataset series; + DcmElement *el; + +- if ( seriesRec->findAndGetElement(DCM_SpecificCharacterSet, el, OFFalse, OFTrue) == ECC_Normal ) ++ if ( seriesRec->findAndGetElement(DCM_SpecificCharacterSet, el, OFFalse, OFTrue) == EC_Normal ) + series.insert(el); +- if ( seriesRec->findAndGetElement(DCM_SeriesDescription, el, OFFalse, OFTrue) == ECC_Normal ) ++ if ( seriesRec->findAndGetElement(DCM_SeriesDescription, el, OFFalse, OFTrue) == EC_Normal ) + series.insert(el); +- if ( seriesRec->findAndGetElement(DCM_SeriesInstanceUID, el, OFFalse, OFTrue) == ECC_Normal ) ++ if ( seriesRec->findAndGetElement(DCM_SeriesInstanceUID, el, OFFalse, OFTrue) == EC_Normal ) + series.insert(el); +- if ( seriesRec->findAndGetElement(DCM_Modality, el, OFFalse, OFTrue) == ECC_Normal ) ++ if ( seriesRec->findAndGetElement(DCM_Modality, el, OFFalse, OFTrue) == EC_Normal ) + series.insert(el); +- if ( seriesRec->findAndGetElement(DCM_SeriesDate, el, OFFalse, OFTrue) == ECC_Normal ) ++ if ( seriesRec->findAndGetElement(DCM_SeriesDate, el, OFFalse, OFTrue) == EC_Normal ) + series.insert(el); +- if ( seriesRec->findAndGetElement(DCM_SeriesTime, el, OFFalse, OFTrue) == ECC_Normal ) ++ if ( seriesRec->findAndGetElement(DCM_SeriesTime, el, OFFalse, OFTrue) == EC_Normal ) + series.insert(el); +- if ( studyRec->findAndGetElement(DCM_StudyDescription, el, OFFalse, OFTrue) == ECC_Normal ) ++ if ( studyRec->findAndGetElement(DCM_StudyDescription, el, OFFalse, OFTrue) == EC_Normal ) + series.insert(el); +- if ( studyRec->findAndGetElement(DCM_StationName, el, OFFalse, OFTrue) == ECC_Normal ) ++ if ( studyRec->findAndGetElement(DCM_StationName, el, OFFalse, OFTrue) == EC_Normal ) + series.insert(el); + + // Count Related SOP Instances Added: head/graphics/aeskulap/files/patch-imagepool_dicomdirloader.cpp ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/aeskulap/files/patch-imagepool_dicomdirloader.cpp Mon Jul 4 13:24:09 2016 (r418019) @@ -0,0 +1,41 @@ +--- imagepool/dicomdirloader.cpp.orig 2014-01-19 07:38:17 UTC ++++ imagepool/dicomdirloader.cpp +@@ -42,7 +42,7 @@ namespace ImagePool { + return false; + } + +- if ( (ret=dir.error()) != ECC_Normal ) { ++ if ( (ret=dir.error()) != EC_Normal ) { + std::cout << "DicomdirLoader::load Error: " << ret.text() << std::endl; + return false; + } +@@ -80,7 +80,7 @@ namespace ImagePool { + for ( studyRec = patRec->nextSub(NULL); studyRec; studyRec = patRec->nextSub(studyRec) ) { + if ( studyRec->getRecordType()==ERT_Study ) { + OFString uid; +- if ( studyRec->findAndGetOFString(DCM_StudyInstanceUID, uid)==ECC_Normal ) { ++ if ( studyRec->findAndGetOFString(DCM_StudyInstanceUID, uid)==EC_Normal ) { + if ( studyinstanceuid == uid.c_str() ) + return studyRec; + } +@@ -107,9 +107,9 @@ namespace ImagePool { + while ( seriesRec ) { + OFString modality; + +- if ( seriesRec->findAndGetOFString(DCM_Modality, modality) == ECC_Normal ) { ++ if ( seriesRec->findAndGetOFString(DCM_Modality, modality) == EC_Normal ) { + OFString seriesinstanceuid; +- if ( seriesRec->findAndGetOFString(DCM_SeriesInstanceUID, seriesinstanceuid) != ECC_Normal ) { ++ if ( seriesRec->findAndGetOFString(DCM_SeriesInstanceUID, seriesinstanceuid) != EC_Normal ) { + seriesRec = studyRec->nextSub(seriesRec); + continue; + } +@@ -124,7 +124,7 @@ namespace ImagePool { + switch ( sopRec->getRecordType() ) { + case ERT_Image: + case ERT_StoredPrint: +- if ( sopRec->findAndGetElement(DCM_ReferencedFileID, el, true)!=ECC_Normal ) { ++ if ( sopRec->findAndGetElement(DCM_ReferencedFileID, el, true)!=EC_Normal ) { + sopRec = seriesRec->nextSub(sopRec); + continue; + } Added: head/graphics/aeskulap/files/patch-imagepool_poolassociation.cpp ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/aeskulap/files/patch-imagepool_poolassociation.cpp Mon Jul 4 13:24:09 2016 (r418019) @@ -0,0 +1,109 @@ +--- imagepool/poolassociation.cpp.orig 2014-01-19 07:38:17 UTC ++++ imagepool/poolassociation.cpp +@@ -72,24 +72,24 @@ Association::~Association() + Drop(); + } + +-CONDITION Association::Drop(CONDITION cond) { ++OFCondition Association::Drop(OFCondition cond) { + // tear down association +- if(cond == DIMSE_NORMAL) { ++ if(cond == EC_Normal) { + /* release association */ + cond = ASC_releaseAssociation(assoc); + } +- else if(cond == DIMSE_PEERREQUESTEDRELEASE) { ++ else if(cond == DUL_PEERREQUESTEDRELEASE) { + cond = ASC_abortAssociation(assoc); +- if (SUCCESS(cond)) { ++ if (cond.good()) { + return cond; + } + } +- else if(cond == DIMSE_PEERABORTEDASSOCIATION) { ++ else if(cond == DUL_PEERABORTEDASSOCIATION) { + return cond; + } + else { + cond = ASC_abortAssociation(assoc); +- if (SUCCESS(cond)) { ++ if (cond.good()) { + return cond; + } + } +@@ -99,7 +99,7 @@ CONDITION Association::Drop(CONDITION co + } + + void Association::Destroy() { +- CONDITION cond = ASC_destroyAssociation(&assoc); ++ OFCondition cond = ASC_destroyAssociation(&assoc); + + dcmNet = NULL; + assoc = NULL; +@@ -110,8 +110,8 @@ void Association::Destroy() { + + } + +-CONDITION Association::SendObject(DcmDataset *dataset) { +- CONDITION cond; ++OFCondition Association::SendObject(DcmDataset *dataset) { ++ OFCondition cond; + DcmDataset *statusDetail = NULL; + + T_DIMSE_C_StoreRQ req; +@@ -163,7 +163,7 @@ CONDITION Association::SendObject(DcmDat + if(opt_oxferSyn.getXfer() != ori_oxferSyn) { + std::cout << "Converting object to accepted transfer-syntax " << opt_oxferSyn.getXferName() << std::endl; + +- CONDITION cond; ++ OFCondition cond; + // create RepresentationParameter + DJ_RPLossless rp_lossless(6, 0); + DJ_RPLossy rp_lossy(m_CompressionQuality); +@@ -172,10 +172,18 @@ CONDITION Association::SendObject(DcmDat + + const DcmRepresentationParameter *rp = NULL; + ++#if 0 ++ if(opt_oxferSyn.getXfer() == EXS_JPEGProcess14SV1 || opt_oxferSyn.getXfer() == EXS_JPEGProcess14) { ++#else + if(opt_oxferSyn.getXfer() == EXS_JPEGProcess14SV1TransferSyntax || opt_oxferSyn.getXfer() == EXS_JPEGProcess14TransferSyntax) { ++#endif + rp = &rp_lossless; + } ++#if 0 ++ else if(opt_oxferSyn.getXfer() == EXS_JPEGProcess1 || opt_oxferSyn.getXfer() == EXS_JPEGProcess2_4) { ++#else + else if(opt_oxferSyn.getXfer() == EXS_JPEGProcess1TransferSyntax || opt_oxferSyn.getXfer() == EXS_JPEGProcess2_4TransferSyntax) { ++#endif + rp = &rp_lossy; + } + +@@ -232,15 +240,15 @@ CONDITION Association::SendObject(DcmDat + delete statusDetail; + } + +- if (cond != DIMSE_NORMAL) ++ if (cond != EC_Normal) + { + return cond; + } + +- return (rsp.DimseStatus == STATUS_Success) ? DIMSE_NORMAL : DIMSE_BADDATA; ++ return (rsp.DimseStatus == STATUS_Success) ? EC_Normal : DIMSE_BADDATA; + } + +-CONDITION Association::SendObject(DcmFileFormat *dcmff) ++OFCondition Association::SendObject(DcmFileFormat *dcmff) + { + DcmDataset* dataset = dcmff->getDataset(); + return SendObject(dataset); +@@ -334,7 +342,7 @@ Network* Association::GetNetwork() + return dcmNet; + } + +-CONDITION Association::Connect(Network *network, int lossy) ++OFCondition Association::Connect(Network *network, int lossy) + { + dcmNet = network; + return network->ConnectAssociation(this, lossy); Added: head/graphics/aeskulap/files/patch-imagepool_poolfindassociation.cpp ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/aeskulap/files/patch-imagepool_poolfindassociation.cpp Mon Jul 4 13:24:09 2016 (r418019) @@ -0,0 +1,22 @@ +--- imagepool/poolfindassociation.cpp.orig 2014-01-19 07:38:17 UTC ++++ imagepool/poolfindassociation.cpp +@@ -40,8 +40,8 @@ FindAssociation::~FindAssociation() { + DeleteResultStack(); + } + +-CONDITION FindAssociation::findSCU(T_ASC_Association *assoc, DcmDataset *query) { +- CONDITION cond; ++OFCondition FindAssociation::findSCU(T_ASC_Association *assoc, DcmDataset *query) { ++ OFCondition cond; + DIC_US msgId = assoc->nextMsgID++; + T_ASC_PresentationContextID presId; + T_DIMSE_C_FindRQ req; +@@ -100,7 +100,7 @@ void FindAssociation::findCallback(void* + caller->OnResponseReceived(response); + } + +-CONDITION FindAssociation::SendObject(DcmDataset *dataset) { ++OFCondition FindAssociation::SendObject(DcmDataset *dataset) { + return findSCU(assoc, dataset); + } + Added: head/graphics/aeskulap/files/patch-imagepool_poolfindassociation.h ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/aeskulap/files/patch-imagepool_poolfindassociation.h Mon Jul 4 13:24:09 2016 (r418019) @@ -0,0 +1,20 @@ +--- imagepool/poolfindassociation.h.orig 2014-01-19 07:38:17 UTC ++++ imagepool/poolfindassociation.h +@@ -45,7 +45,7 @@ public: + /** + Send a query object (C-Find) through association + */ +- CONDITION SendObject(DcmDataset *dataset); ++ OFCondition SendObject(DcmDataset *dataset); + + /** + Get the result stack of the last query +@@ -88,7 +88,7 @@ private: + /** + C-Find service class user + */ +- CONDITION findSCU(T_ASC_Association * assoc, DcmDataset * query); ++ OFCondition findSCU(T_ASC_Association * assoc, DcmDataset * query); + + /** + Callback function for C-Find service class user Modified: head/graphics/aeskulap/files/patch-imagepool_poolinstance.h ============================================================================== --- head/graphics/aeskulap/files/patch-imagepool_poolinstance.h Mon Jul 4 13:24:02 2016 (r418018) +++ head/graphics/aeskulap/files/patch-imagepool_poolinstance.h Mon Jul 4 13:24:09 2016 (r418019) @@ -1,11 +1,47 @@ ---- imagepool/poolinstance.h.orig 2012-12-13 10:27:07.000000000 +0100 -+++ imagepool/poolinstance.h 2012-12-13 10:30:33.000000000 +0100 -@@ -49,7 +49,7 @@ +--- imagepool/poolinstance.h.orig 2014-01-19 07:38:17 UTC ++++ imagepool/poolinstance.h +@@ -50,9 +50,9 @@ protected: Instance(const std::string& sopinstanceuid); - friend void ImagePool::remove_instance(const Glib::RefPtr&); + friend void remove_instance(const Glib::RefPtr&); - friend class ImagePool::Loader; +- friend class ImagePool::Loader; ++ friend class Loader; + + public: + +@@ -131,9 +131,9 @@ public: + + int instancenumber(); + +- const Glib::RefPtr& series(); ++ const Glib::RefPtr& series(); + +- const Glib::RefPtr& study(); ++ const Glib::RefPtr& study(); + + const std::string& date(); + +@@ -176,7 +176,7 @@ public: + + bool has_3d_information(); + +- static Glib::RefPtr create(DcmDataset* dset); ++ static Glib::RefPtr create(DcmDataset* dset); + + int studyrelatedinstances(); + +@@ -248,9 +248,9 @@ private: + + std::string m_modality; + +- Glib::RefPtr m_series; ++ Glib::RefPtr m_series; + +- Glib::RefPtr m_study; ++ Glib::RefPtr m_study; + + std::string m_date; Added: head/graphics/aeskulap/files/patch-imagepool_poolmoveassociation.cpp ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/aeskulap/files/patch-imagepool_poolmoveassociation.cpp Mon Jul 4 13:24:09 2016 (r418019) @@ -0,0 +1,64 @@ +--- imagepool/poolmoveassociation.cpp.orig 2014-01-19 07:38:17 UTC ++++ imagepool/poolmoveassociation.cpp +@@ -68,7 +68,7 @@ void MoveAssociation::Create(const std:: + Association::Create(title, peer, port, ouraet, abstractSyntax); + } + +-CONDITION MoveAssociation::SendObject(DcmDataset *dataset) { ++OFCondition MoveAssociation::SendObject(DcmDataset *dataset) { + return moveSCU(dataset); + } + +@@ -79,8 +79,8 @@ void MoveAssociation::OnAddPresentationC + ASC_addPresentationContext(params, 5, m_abstractSyntax, mpeg_transfer, DIM_OF(mpeg_transfer)); + } + +-CONDITION MoveAssociation::moveSCU(DcmDataset *pdset) { +- CONDITION cond; ++OFCondition MoveAssociation::moveSCU(DcmDataset *pdset) { ++ OFCondition cond; + T_ASC_PresentationContextID presId; + T_DIMSE_C_MoveRQ req; + T_DIMSE_C_MoveRSP rsp; +@@ -161,8 +161,8 @@ void MoveAssociation::subOpCallback(void + } + } + +-CONDITION MoveAssociation::acceptSubAssoc(T_ASC_Network *aNet, T_ASC_Association **assoc) { +- CONDITION cond = ASC_NORMAL; ++OFCondition MoveAssociation::acceptSubAssoc(T_ASC_Network *aNet, T_ASC_Association **assoc) { ++ OFCondition cond = EC_Normal; + const char* knownAbstractSyntaxes[] = { UID_VerificationSOPClass }; + const char* transferSyntaxes[] = { UID_JPEGProcess14SV1TransferSyntax, NULL, NULL, UID_LittleEndianImplicitTransferSyntax, UID_MPEG2MainProfileAtMainLevelTransferSyntax }; + +@@ -222,7 +222,7 @@ CONDITION MoveAssociation::acceptSubAsso + + } + +-CONDITION MoveAssociation::subOpSCP(T_ASC_Association **subAssoc) { ++OFCondition MoveAssociation::subOpSCP(T_ASC_Association **subAssoc) { + T_DIMSE_Message msg; + T_ASC_PresentationContextID presID; + +@@ -269,8 +269,8 @@ CONDITION MoveAssociation::subOpSCP(T_AS + return cond; + } + +-CONDITION MoveAssociation::storeSCP(T_ASC_Association *assoc, T_DIMSE_Message *msg, T_ASC_PresentationContextID presID) { +- CONDITION cond; ++OFCondition MoveAssociation::storeSCP(T_ASC_Association *assoc, T_DIMSE_Message *msg, T_ASC_PresentationContextID presID) { ++ OFCondition cond; + T_DIMSE_C_StoreRQ* req; + DcmDataset *dset = new DcmDataset; + +@@ -328,8 +328,8 @@ void MoveAssociation::storeSCPCallback(v + + } + +-CONDITION MoveAssociation::echoSCP(T_ASC_Association *assoc, T_DIMSE_Message *msg, T_ASC_PresentationContextID presID) { +- CONDITION cond; ++OFCondition MoveAssociation::echoSCP(T_ASC_Association *assoc, T_DIMSE_Message *msg, T_ASC_PresentationContextID presID) { ++ OFCondition cond; + + // the echo succeeded !! + cond = DIMSE_sendEchoResponse(assoc, presID, &msg->msg.CEchoRQ, STATUS_Success, NULL); Added: head/graphics/aeskulap/files/patch-imagepool_poolmoveassociation.h ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/aeskulap/files/patch-imagepool_poolmoveassociation.h Mon Jul 4 13:24:09 2016 (r418019) @@ -0,0 +1,34 @@ +--- imagepool/poolmoveassociation.h.orig 2014-01-19 07:38:17 UTC ++++ imagepool/poolmoveassociation.h +@@ -39,7 +39,7 @@ public: + + void Create(const std::string& title, const std::string& peer, int port, const std::string& ouraet, /*int ourPort,*/ const char *abstractSyntax = UID_MOVEPatientRootQueryRetrieveInformationModel/*, const char *abstractSyntaxMove = UID_MOVEPatientRootQueryRetrieveInformationModel*/); + +- CONDITION SendObject(DcmDataset *dataset); ++ OFCondition SendObject(DcmDataset *dataset); + + protected: + +@@ -62,17 +62,17 @@ private: + MoveAssociation* pCaller; + } StoreCallbackInfo; + +- CONDITION moveSCU(DcmDataset *pdset); ++ OFCondition moveSCU(DcmDataset *pdset); + static void moveCallback(void *callbackData, T_DIMSE_C_MoveRQ *request, int responseCount, T_DIMSE_C_MoveRSP *response); + +- CONDITION acceptSubAssoc(T_ASC_Network *aNet, T_ASC_Association **assoc); +- CONDITION subOpSCP(T_ASC_Association **subAssoc); ++ OFCondition acceptSubAssoc(T_ASC_Network *aNet, T_ASC_Association **assoc); ++ OFCondition subOpSCP(T_ASC_Association **subAssoc); + static void subOpCallback(void * pCaller, T_ASC_Network *aNet, T_ASC_Association **subAssoc); + +- CONDITION storeSCP(T_ASC_Association *assoc, T_DIMSE_Message *msg, T_ASC_PresentationContextID presID); ++ OFCondition storeSCP(T_ASC_Association *assoc, T_DIMSE_Message *msg, T_ASC_PresentationContextID presID); + static void storeSCPCallback(void *callbackData, T_DIMSE_StoreProgress *progress, T_DIMSE_C_StoreRQ *req, char *imageFileName, DcmDataset **imageDataSet, T_DIMSE_C_StoreRSP *rsp, DcmDataset **statusDetail); + +- CONDITION echoSCP(T_ASC_Association *assoc, T_DIMSE_Message *msg, T_ASC_PresentationContextID presID); ++ OFCondition echoSCP(T_ASC_Association *assoc, T_DIMSE_Message *msg, T_ASC_PresentationContextID presID); + }; + + #endif // IMAGEPOOL_MOVEASSOCIATION_H Added: head/graphics/aeskulap/files/patch-imagepool_poolnetwork.cpp ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/aeskulap/files/patch-imagepool_poolnetwork.cpp Mon Jul 4 13:24:09 2016 (r418019) @@ -0,0 +1,101 @@ +--- imagepool/poolnetwork.cpp.orig 2014-01-19 07:38:17 UTC ++++ imagepool/poolnetwork.cpp +@@ -42,8 +42,8 @@ Network::~Network() { + DropNetwork(); + } + +-CONDITION Network::ConnectAssociation(Association* assoc, int lossy) { +- CONDITION cond; ++OFCondition Network::ConnectAssociation(Association* assoc, int lossy) { ++ OFCondition cond; + + cond = ASC_ConnectAssociation( + assoc, +@@ -54,7 +54,7 @@ CONDITION Network::ConnectAssociation(As + assoc->m_abstractSyntax, + lossy); + +- if (!SUCCESS(cond)) { ++ if (!cond.good()) { + assoc->Drop(cond); + return cond; + } +@@ -65,7 +65,7 @@ CONDITION Network::ConnectAssociation(As + return cond; + } + +-CONDITION Network::InitializeNetwork(int timeout, int port) { ++OFCondition Network::InitializeNetwork(int timeout, int port) { + #ifdef _WIN32 + WORD wVersionRequested; + WSADATA wsaData; +@@ -78,9 +78,9 @@ CONDITION Network::InitializeNetwork(int + return ASC_initializeNetwork(NET_ACCEPTORREQUESTOR, port, timeout, &net); + } + +-CONDITION Network::DropNetwork() ++OFCondition Network::DropNetwork() + { +- CONDITION cond = ASC_dropNetwork(&net); ++ OFCondition cond = ASC_dropNetwork(&net); + net = NULL; + + #ifdef _WIN32 +@@ -90,9 +90,9 @@ CONDITION Network::DropNetwork() + return cond; + } + +-CONDITION Network::ASC_ConnectAssociation(Association* assoc, const std::string& peerTitle, const std::string& peer, int port, const std::string& ouraet, const char *abstractSyntax, int lossy) ++OFCondition Network::ASC_ConnectAssociation(Association* assoc, const std::string& peerTitle, const std::string& peer, int port, const std::string& ouraet, const char *abstractSyntax, int lossy) + { +- CONDITION cond; ++ OFCondition cond; + T_ASC_Parameters *params; + bool bProposeCompression = assoc->GetProposeCompression(); + +@@ -100,7 +100,7 @@ CONDITION Network::ASC_ConnectAssociatio + DIC_NODENAME localHost; + + cond = ASC_createAssociationParameters(¶ms, ASC_DEFAULTMAXPDU); +- if (!SUCCESS(cond)) ++ if (!cond.good()) + { + return cond; + } +@@ -155,9 +155,9 @@ CONDITION Network::ASC_ConnectAssociatio + + /* create association */ + cond = ASC_requestAssociation(net, params, &(assoc->assoc)); +- if (cond != ASC_NORMAL) ++ if (cond != EC_Normal) + { +- if (cond == ASC_ASSOCIATIONREJECTED) ++ if (cond == DUL_ASSOCIATIONREJECTED) + { + T_ASC_RejectParameters rej; + +@@ -178,12 +178,12 @@ CONDITION Network::ASC_ConnectAssociatio + return cond; + } + +- return ASC_NORMAL; ++ return EC_Normal; + } + +-CONDITION Network::addAllStoragePresentationContexts(T_ASC_Parameters *params, bool bProposeCompression, int lossy) ++OFCondition Network::addAllStoragePresentationContexts(T_ASC_Parameters *params, bool bProposeCompression, int lossy) + { +- CONDITION cond = ASC_NORMAL; ++ OFCondition cond = EC_Normal; + int i; + int pid = 1; + +@@ -232,7 +232,7 @@ CONDITION Network::addAllStoragePresenta + } + + /* the array of Storage SOP Class UIDs comes from dcuid.h */ +- for (i=0; i Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 549A5B91D90; Mon, 4 Jul 2016 13:24:17 +0000 (UTC) (envelope-from mat@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 0C0932EA9; Mon, 4 Jul 2016 13:24:16 +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 u64DOGhp005135; Mon, 4 Jul 2016 13:24:16 GMT (envelope-from mat@FreeBSD.org) Received: (from mat@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u64DOFaW005131; Mon, 4 Jul 2016 13:24:15 GMT (envelope-from mat@FreeBSD.org) Message-Id: <201607041324.u64DOFaW005131@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: mat set sender to mat@FreeBSD.org using -f From: Mathieu Arnold Date: Mon, 4 Jul 2016 13:24:15 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418020 - in head/math/giacxcas: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Jul 2016 13:24:17 -0000 Author: mat Date: Mon Jul 4 13:24:15 2016 New Revision: 418020 URL: https://svnweb.freebsd.org/changeset/ports/418020 Log: Update to 1.2.2-57. PR: 210796 Submitted by: tkato432 yahoo com Sponsored by: Absolight Deleted: head/math/giacxcas/files/ Modified: head/math/giacxcas/Makefile (contents, props changed) head/math/giacxcas/distinfo (contents, props changed) head/math/giacxcas/pkg-descr (contents, props changed) head/math/giacxcas/pkg-plist (contents, props changed) Modified: head/math/giacxcas/Makefile ============================================================================== --- head/math/giacxcas/Makefile Mon Jul 4 13:24:09 2016 (r418019) +++ head/math/giacxcas/Makefile Mon Jul 4 13:24:15 2016 (r418020) @@ -2,85 +2,121 @@ # $FreeBSD$ PORTNAME= giacxcas -PORTVERSION= 1.1.0 -PORTREVISION= 10 +DISTVERSION= 1.2.2-57 CATEGORIES= math -MASTER_SITES= http://www-fourier.ujf-grenoble.fr/~parisse/giac/ \ - http://www.math.jussieu.fr/~han/xcas/sources/v2/ -DISTFILES= fltk-giac.tar.gz CoCoALib-0.9950.tgz giac-${PORTVERSION}.tar.gz +MASTER_SITES= http://www-fourier.ujf-grenoble.fr/~parisse/debian/dists/stable/main/source/:giac \ + http://www-fourier.ujf-grenoble.fr/~parisse/giac/freebsd/ +DISTFILES= giac_${DISTVERSION}${EXTRACT_SUFX}:giac \ + CoCoALib-0.9950.tgz \ + fltk-giac.tar.gz DIST_SUBDIR= ${PORTNAME} MAINTAINER= ports@FreeBSD.org -COMMENT= Computer algebra system by Bernard Parisse - -BROKEN= unfetchable -DEPRECATED= Broken for more than 6 months -EXPIRATION_DATE= 2016-07-04 +COMMENT= Computer algebra system LICENSE= GPLv3 LICENSE_FILE= ${WRKSRC}/COPYING -BUILD_DEPENDS= bash:shells/bash \ - ${LOCALBASE}/lib/libntl.a:math/ntl +BUILD_DEPENDS= bash:shells/bash LIB_DEPENDS= libgmp.so:math/gmp \ libpng.so:graphics/png \ libpari.so:math/pari \ libmpfr.so:math/mpfr \ - libgsl.so:math/gsl \ - liblapack.so:math/lapack + libgsl.so:math/gsl +RUN_DEPENDS= xdg-open:devel/xdg-utils NO_CDROM= French documentation is for non-commercial use only GNU_CONFIGURE= yes -USES= desktop-file-utils gettext gmake jpeg libtool shebangfix +USES= blaslapack desktop-file-utils fortran gettext gmake jpeg \ + libtool readline shebangfix USE_GL= gl -USE_XORG= x11 xcursor xft xi +USE_XORG= x11 xcursor xext xft xi xinerama USE_TEX= latex:build dvipsk:build USE_LDCONFIG= yes # Warning: don't remove the USE_GCC without a runtime test *after* make install USE_GCC= yes -DOCSDIR= ${PREFIX}/share/doc/giac -PORTDOCS= * -DATADIR= ${PREFIX}/share/giac -PORTDATA= * +CONFIGURE_ENV= ac_cv_lib_X11_main=yes \ + ac_cv_lib_cocoa_main=yes \ + ac_cv_lib_fltk_gl_main=yes \ + ac_cv_lib_fltk_main=yes \ + ac_cv_lib_fltk_images_main=yes \ + ac_cv_lib_jpeg_main=yes SHEBANG_FILES= src/pgiac INSTALL_TARGET= install-strip +INSTALLS_ICONS= yes -CONFIGURE_ENV= X_LIBS=-lX11 -CPPFLAGS+= -I${FLTKDEV-GIAC} -I${COCOALIB-GIAC}/include -I${LOCALBASE}/include -LDFLAGS+= -L${FLTKDEV-GIAC}/lib -L${COCOALIB-GIAC}/lib -L${LOCALBASE}/lib CXXFLAGS+= -I${LOCALBASE}/include +CPPFLAGS+= -I${COCOALIB-GIAC}/include \ + -I${FLTKDEV-GIAC} \ + -I${LOCALBASE}/include +LDFLAGS+= -L${COCOALIB-GIAC}/lib \ + -L${FLTKDEV-GIAC}/lib \ + -L${LOCALBASE}/lib -WRKSRC= ${WRKDIR}/giac-${PORTVERSION} +WRKSRC= ${WRKDIR}/giac-${DISTVERSION:C/-[0-9]*//} FLTKDEV-GIAC= ${WRKDIR}/fltk-1.3.0 COCOALIB-GIAC= ${WRKDIR}/CoCoALib-0.9950 +DATADIR= ${PREFIX}/share/giac +DOCSDIR= ${PREFIX}/share/doc/giac +EXAMPLESDIR= ${PREFIX}/share/examples/giac + INFO= giac_es giac_us +OPTIONS_DEFINE= DOCS EXAMPLES + .include #NB: built of giacxcas with USE_GCC and nlt is successfull if the ntl port is also # installed with USE_GCC .if ${OSVERSION} >= 1000000 CONFIGURE_ARGS+= --disable-ntl +.else +BUILD_DEPENDS+= ${LOCALBASE}/lib/libntl.a:math/ntl .endif +post-extract: + @${FIND} ${WRKSRC}/examples/Exemples -name "._*" -delete + post-patch: @${GREP} -Rl --null /bin/bash ${COCOALIB-GIAC} | ${XARGS} -0 \ ${REINPLACE_CMD} -e 's|/bin/bash|/usr/bin/env bash|' + @${REINPLACE_CMD} -e '/^SUBDIR/s|examples||' \ + ${WRKSRC}/Makefile.in @${REINPLACE_CMD} -e 's|/usr/bin|${LOCALBASE}/bin|' \ - ${WRKSRC}/xcas.applications ${WRKSRC}/xcas.desktop -.if ${OSVERSION} >= 1000000 - @${REINPLACE_CMD} -e 's|friend class Fl_Group;|friend class Fl_Group;friend class Fl_X;|' \ - ${FLTKDEV-GIAC}/FL/Fl_Widget.H -.endif + ${WRKSRC}/xcas.applications + @${REINPLACE_CMD} -e 's|cp -f \*|$$(INSTALL_DATA) WARNINGS [a-z]*|' \ + ${WRKSRC}/doc/el/*/Makefile.in + @${REINPLACE_CMD} -e '/browser=/s|"mozilla"|"xdg-open"|' \ + ${WRKSRC}/src/global.cc + @${FIND} ${WRKSRC} -name "Makefile.in" | ${XARGS} \ + ${REINPLACE_CMD} -e 's|$$(prefix)/share/giac/doc|$$(docdir)|' + @${FIND} ${COCOALIB-GIAC} -name "Makefile" | ${XARGS} \ + ${REINPLACE_CMD} -e \ + 's|\($$(MAKE) \)-s |\1|; s|\([[:blank:]]\)@|\1|' + @${REINPLACE_CMD} -e '/.SILENT:/s|^|#|' \ + ${FLTKDEV-GIAC}/makeinclude.in pre-configure: - cd ${COCOALIB-GIAC} && \ - ./configure --with-libgmp=${LOCALBASE}/lib/libgmp.a --with-cxx=${CXX}&& \ - ${MAKE_CMD} library && \ - cd ${FLTKDEV-GIAC} && \ - ./configure --prefix=${FLTKDEV-GIAC} \ - && cd src && ${MAKE} + @(cd ${COCOALIB-GIAC} && ${SETENV} ${CONFIGURE_ENV} ./configure \ + --with-libgmp=${LOCALBASE}/lib/libgmp.a \ + --with-cxx="${CXX}") + @(cd ${FLTKDEV-GIAC} && ${SETENV} ${CONFIGURE_ENV} ./configure \ + --prefix=${FLTKDEV-GIAC} \ + CXX="${CXX}" CXXFLAGS="${CXXFLAGS}") + +pre-build: + @(cd ${COCOALIB-GIAC} && ${DO_MAKE_BUILD} \ + CXXFLAGS_SPECIFIC="${CXXFLAGS}" library) + @(cd ${FLTKDEV-GIAC}/src && ${DO_MAKE_BUILD}) + +post-install-DOCS-on: + @${LN} -sf ../doc/giac ${STAGEDIR}${DATADIR}/doc + +post-install-EXAMPLES-on: + @(cd ${WRKSRC}/examples && ${COPYTREE_SHARE} "Exemples [a-z]*" \ + ${STAGEDIR}${EXAMPLESDIR}) + @${LN} -sf ../examples/giac ${STAGEDIR}${DATADIR}/examples .include Modified: head/math/giacxcas/distinfo ============================================================================== --- head/math/giacxcas/distinfo Mon Jul 4 13:24:09 2016 (r418019) +++ head/math/giacxcas/distinfo Mon Jul 4 13:24:15 2016 (r418020) @@ -1,6 +1,6 @@ -SHA256 (giacxcas/fltk-giac.tar.gz) = 538243c536a62e562bc26dec1c54454f54ce614cc540371f5ccfe71d8ed27cf7 -SIZE (giacxcas/fltk-giac.tar.gz) = 4776876 +SHA256 (giacxcas/giac_1.2.2-57.tar.gz) = a1d03bf191f49362c98a3c6941082393129b286febe643c5534bd6aebaeabef6 +SIZE (giacxcas/giac_1.2.2-57.tar.gz) = 50571933 SHA256 (giacxcas/CoCoALib-0.9950.tgz) = b30d840593e1930c1629467918b508c429e0a983ef0d1343eab570f238275678 SIZE (giacxcas/CoCoALib-0.9950.tgz) = 4120680 -SHA256 (giacxcas/giac-1.1.0.tar.gz) = 2464613ff477a6f7c53dc5dfba6015bf2320ce634742a2aa4aeb8c7196eae6ef -SIZE (giacxcas/giac-1.1.0.tar.gz) = 46376334 +SHA256 (giacxcas/fltk-giac.tar.gz) = 538243c536a62e562bc26dec1c54454f54ce614cc540371f5ccfe71d8ed27cf7 +SIZE (giacxcas/fltk-giac.tar.gz) = 4776876 Modified: head/math/giacxcas/pkg-descr ============================================================================== --- head/math/giacxcas/pkg-descr Mon Jul 4 13:24:09 2016 (r418019) +++ head/math/giacxcas/pkg-descr Mon Jul 4 13:24:15 2016 (r418020) @@ -1,24 +1,18 @@ -General purpose computer algebra system by Bernard Parisse released under -GPLv3. French documentation by Renee De Graeve is for non-commercial use -only. The package consists of: +General purpose computer algebra system released under GPLv3. French +documentation by Renee De Graeve is for non-commercial use only. The +package consists of: - - a C++ library (libgiac). It is build on C and C++ libraries: - PARI, NTL (arithmetic), CoCoA (Groebner basis), GSL (numerics), - GMP (big integers), MPFR (bigfloats) and provides algorithms for - basic polynomial operations (product, GCD) and symbolic - computations (simplifications, limits/series, symbolic - integration, summation, ...). The library can be configured to - accept Maple or TI syntax to ease the transition for users of - these systems. - - a command line interpreter (icas or giac). It can be called from texmacs. - - a FLTK-based GUI (xcas). It is a GUI for symbolic computation - with several modules added: 2-d and 3-d graphics, dynamic 2-d and - 3-d geometry (exact or numeric), spreadsheet, programming - environment. - -Bernard Parisse is the main author of the CAS of HP40G and HP49G calculators. - -This port is statically linked against snapshots of FLTK-1.3.x -(http://www.fltk.org) and of CoCoALib (http://cocoa.dima.unige.it/cocoalib) + - C++ library (libgiac). It is build on C and C++ libraries: PARI, + NTL (arithmetic), CoCoA (Groebner basis), GSL (numerics), GMP + (big integers), MPFR (bigfloats) and provides algorithms for basic + polynomial operations (product, GCD) and symbolic computations + (simplifications, limits/series, symbolic integration, summation, + ...). The library can be configured to accept Maple or TI syntax + to ease the transition for users of these systems. + - Command line interpreter (icas or giac). It can be called from + texmacs. + - FLTK-based GUI (xcas). It is a GUI for symbolic computation with + several modules added: 2-d and 3-d graphics, dynamic 2-d and 3-d + geometry (exact or numeric), spreadsheet, programming environment. WWW: http://www-fourier.ujf-grenoble.fr/~parisse/giac.html Modified: head/math/giacxcas/pkg-plist ============================================================================== --- head/math/giacxcas/pkg-plist Mon Jul 4 13:24:09 2016 (r418019) +++ head/math/giacxcas/pkg-plist Mon Jul 4 13:24:15 2016 (r418020) @@ -53,6 +53,7 @@ include/giac/risch.h include/giac/rpn.h include/giac/series.h include/giac/solve.h +include/giac/sparse.h include/giac/static.h include/giac/static_extern.h include/giac/static_help.h @@ -76,16 +77,3600 @@ lib/libgiac.so.0 lib/libgiac.so.0.0.0 share/application-registry/xcas.applications share/applications/xcas.desktop -share/icons/hicolor/256x256/apps/xcas.png -share/icons/hicolor/256x256/mimetypes/application-x-xcas.png +%%PORTDOCS%%%%DOCSDIR%%/FileSaver.js +%%PORTDOCS%%%%DOCSDIR%%/README +%%PORTDOCS%%%%DOCSDIR%%/aide_cas +%%PORTDOCS%%%%DOCSDIR%%/codemirror.css +%%PORTDOCS%%%%DOCSDIR%%/codemirror.js +%%PORTDOCS%%%%DOCSDIR%%/de/aide_cas +%%PORTDOCS%%%%DOCSDIR%%/de/keywords +%%PORTDOCS%%%%DOCSDIR%%/de/xcasex +%%PORTDOCS%%%%DOCSDIR%%/de/xcasmenu +%%PORTDOCS%%%%DOCSDIR%%/dxcas/demarr1.xws +%%PORTDOCS%%%%DOCSDIR%%/dxcas/demarr10.xws +%%PORTDOCS%%%%DOCSDIR%%/dxcas/demarr11.xws +%%PORTDOCS%%%%DOCSDIR%%/dxcas/demarr12.xws +%%PORTDOCS%%%%DOCSDIR%%/dxcas/demarr13.xws +%%PORTDOCS%%%%DOCSDIR%%/dxcas/demarr14.xws +%%PORTDOCS%%%%DOCSDIR%%/dxcas/demarr15.xws +%%PORTDOCS%%%%DOCSDIR%%/dxcas/demarr16.xws +%%PORTDOCS%%%%DOCSDIR%%/dxcas/demarr17.xws +%%PORTDOCS%%%%DOCSDIR%%/dxcas/demarr18.xws +%%PORTDOCS%%%%DOCSDIR%%/dxcas/demarr19.xws +%%PORTDOCS%%%%DOCSDIR%%/dxcas/demarr2.xws +%%PORTDOCS%%%%DOCSDIR%%/dxcas/demarr20.xws +%%PORTDOCS%%%%DOCSDIR%%/dxcas/demarr21.xws +%%PORTDOCS%%%%DOCSDIR%%/dxcas/demarr22.xws +%%PORTDOCS%%%%DOCSDIR%%/dxcas/demarr23.xws +%%PORTDOCS%%%%DOCSDIR%%/dxcas/demarr24.xws +%%PORTDOCS%%%%DOCSDIR%%/dxcas/demarr25.xws +%%PORTDOCS%%%%DOCSDIR%%/dxcas/demarr3.xws +%%PORTDOCS%%%%DOCSDIR%%/dxcas/demarr4.xws +%%PORTDOCS%%%%DOCSDIR%%/dxcas/demarr5.xws +%%PORTDOCS%%%%DOCSDIR%%/dxcas/demarr6.xws +%%PORTDOCS%%%%DOCSDIR%%/dxcas/demarr7.xws +%%PORTDOCS%%%%DOCSDIR%%/dxcas/demarr8.xws +%%PORTDOCS%%%%DOCSDIR%%/dxcas/demarr9.xws +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el.css +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el.png +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el001.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el002.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el003.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el004.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el005.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el006.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el007.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el008.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el009.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el010.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el011.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el012.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el013.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el014.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el015.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el016.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el017.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el018.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el019.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el020.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el021.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el022.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el023.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el024.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el025.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el026.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el027.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el028.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el029.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el030.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el031.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el032.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el033.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el034.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el035.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el036.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el037.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el038.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el039.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el040.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el041.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el042.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el043.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el044.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el045.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el046.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el047.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el048.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el049.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el050.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el051.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el052.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el053.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el054.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el055.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el056.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el057.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el058.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el059.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el060.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el061.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el062.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el063.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el064.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el065.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el066.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el067.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el068.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el069.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el070.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el071.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el072.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el073.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el074.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el075.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el076.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el077.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el078.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el079.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el080.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el081.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el082.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el083.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el084.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el085.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el086.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el087.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el088.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el089.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el090.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el091.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el092.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el093.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el094.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el095.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el096.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el097.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el098.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el099.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el100.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el101.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el102.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el103.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el104.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el105.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el106.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el107.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el108.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el109.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el110.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el111.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el112.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el113.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el114.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el115.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el116.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el117.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el118.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el119.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el120.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el121.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el122.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el123.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el124.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el125.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el126.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el127.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el128.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el129.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el130.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el131.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el132.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el133.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el134.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el135.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el136.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el137.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el138.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el139.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el140.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el141.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el142.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el143.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el144.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el145.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el146.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el147.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el148.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el149.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el150.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el151.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el152.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el153.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el154.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el155.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el156.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el157.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el158.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el159.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el160.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el161.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el162.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el163.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el164.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el165.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el166.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el167.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el168.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el169.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el170.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el171.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el172.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el173.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el174.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el175.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el176.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el177.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el178.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el179.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el180.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el181.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el182.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el183.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el184.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el185.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el186.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el187.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el188.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el189.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el190.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el191.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el192.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el193.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el194.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el195.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el196.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el197.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el198.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el199.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el200.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el201.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el202.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el203.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el204.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el205.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el206.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el207.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el208.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el209.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el210.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el211.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el212.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el213.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el214.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el215.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el216.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el217.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el218.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el219.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el220.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el221.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el222.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el223.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el224.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el225.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el226.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el227.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el228.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el229.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el230.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el231.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el232.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el233.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el234.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el235.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el236.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el237.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el238.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el239.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el240.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el241.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el242.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el243.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el244.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el245.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el246.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el247.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el248.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el249.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el250.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el251.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el252.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el253.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el254.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el255.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el256.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el257.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el258.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el259.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el260.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el261.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el262.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el263.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el264.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el265.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el266.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el267.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el268.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el269.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el270.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el271.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el272.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el273.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el274.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el275.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el276.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el277.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el278.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el279.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el280.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el281.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el282.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el283.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el284.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el285.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el286.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el287.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el288.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el289.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el290.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el291.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el292.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el293.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el294.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el295.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el296.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el297.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el298.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el299.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el300.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el301.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el302.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el303.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el304.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el305.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el306.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el307.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el308.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el309.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el310.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el311.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el312.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el313.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el314.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el315.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el316.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el317.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el318.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el319.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el320.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el321.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el322.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el323.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el324.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el325.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el326.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el327.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el328.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el329.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el330.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el331.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el332.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el333.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el334.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el335.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el336.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el337.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el338.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el339.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el340.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el341.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el342.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el343.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el344.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el345.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el346.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el347.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el348.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el349.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el350.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el351.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el352.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el353.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el354.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el355.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el356.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el357.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el358.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el359.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el360.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el361.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el362.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el363.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el364.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el365.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el366.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el367.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el368.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el369.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el370.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el371.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el372.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el373.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el374.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el375.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el376.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el377.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el378.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el379.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el380.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el381.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el382.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el383.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el384.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el385.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el386.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el387.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el388.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el389.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el390.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el391.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el392.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el393.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el394.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el395.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el396.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el397.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el398.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el399.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el400.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el401.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el402.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el403.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el404.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el405.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el406.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el407.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el408.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el409.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el410.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el411.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el412.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el413.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el414.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el415.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el416.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el417.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el418.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el419.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el420.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el421.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el422.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el423.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el424.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el425.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el426.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el427.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el428.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el429.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el430.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el431.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el432.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el433.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el434.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el435.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el436.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el437.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el438.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el439.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el440.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el441.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el442.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el443.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el444.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el445.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el446.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el447.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el448.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el449.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el450.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el451.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el452.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el453.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el454.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el455.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el456.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el457.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el458.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el459.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el460.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el461.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el462.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el463.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el464.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el465.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el466.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el467.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el468.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el469.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el470.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el471.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el472.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el473.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el474.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el475.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el476.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el477.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el478.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el479.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el480.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el481.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el482.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el483.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el484.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el485.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el486.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el487.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el488.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el489.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el490.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el491.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el492.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el493.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el494.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el495.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el496.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el497.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el498.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el499.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el500.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el501.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el502.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el503.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el504.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el505.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el506.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el507.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/cascmd_el508.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/contents_motif.gif +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/index.html +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/next_motif.gif +%%PORTDOCS%%%%DOCSDIR%%/el/cascmd_el/previous_motif.gif +%%PORTDOCS%%%%DOCSDIR%%/el/casinter/WARNINGS +%%PORTDOCS%%%%DOCSDIR%%/el/casinter/casinter.css +%%PORTDOCS%%%%DOCSDIR%%/el/casinter/casinter.html +%%PORTDOCS%%%%DOCSDIR%%/el/casinter/casinter.lnk +%%PORTDOCS%%%%DOCSDIR%%/el/casinter/demarr1.jpg +%%PORTDOCS%%%%DOCSDIR%%/el/casinter/demarr1.png +%%PORTDOCS%%%%DOCSDIR%%/el/casinter/images.aux +%%PORTDOCS%%%%DOCSDIR%%/el/casinter/images.idx +%%PORTDOCS%%%%DOCSDIR%%/el/casinter/images.log +%%PORTDOCS%%%%DOCSDIR%%/el/casinter/images.pl +%%PORTDOCS%%%%DOCSDIR%%/el/casinter/images.tex +%%PORTDOCS%%%%DOCSDIR%%/el/casinter/img1.png +%%PORTDOCS%%%%DOCSDIR%%/el/casinter/img10.png +%%PORTDOCS%%%%DOCSDIR%%/el/casinter/img11.png +%%PORTDOCS%%%%DOCSDIR%%/el/casinter/img12.png +%%PORTDOCS%%%%DOCSDIR%%/el/casinter/img13.png +%%PORTDOCS%%%%DOCSDIR%%/el/casinter/img14.png +%%PORTDOCS%%%%DOCSDIR%%/el/casinter/img15.png +%%PORTDOCS%%%%DOCSDIR%%/el/casinter/img16.png +%%PORTDOCS%%%%DOCSDIR%%/el/casinter/img17.png +%%PORTDOCS%%%%DOCSDIR%%/el/casinter/img18.png +%%PORTDOCS%%%%DOCSDIR%%/el/casinter/img19.png +%%PORTDOCS%%%%DOCSDIR%%/el/casinter/img2.png +%%PORTDOCS%%%%DOCSDIR%%/el/casinter/img20.png +%%PORTDOCS%%%%DOCSDIR%%/el/casinter/img21.png +%%PORTDOCS%%%%DOCSDIR%%/el/casinter/img22.png +%%PORTDOCS%%%%DOCSDIR%%/el/casinter/img23.png +%%PORTDOCS%%%%DOCSDIR%%/el/casinter/img24.png +%%PORTDOCS%%%%DOCSDIR%%/el/casinter/img25.png +%%PORTDOCS%%%%DOCSDIR%%/el/casinter/img26.png +%%PORTDOCS%%%%DOCSDIR%%/el/casinter/img27.png +%%PORTDOCS%%%%DOCSDIR%%/el/casinter/img3.png +%%PORTDOCS%%%%DOCSDIR%%/el/casinter/img4.png +%%PORTDOCS%%%%DOCSDIR%%/el/casinter/img5.png +%%PORTDOCS%%%%DOCSDIR%%/el/casinter/img6.png +%%PORTDOCS%%%%DOCSDIR%%/el/casinter/img7.png +%%PORTDOCS%%%%DOCSDIR%%/el/casinter/img8.png +%%PORTDOCS%%%%DOCSDIR%%/el/casinter/img9.png +%%PORTDOCS%%%%DOCSDIR%%/el/casinter/index.html +%%PORTDOCS%%%%DOCSDIR%%/el/casinter/internals.pl +%%PORTDOCS%%%%DOCSDIR%%/el/casinter/labels.pl +%%PORTDOCS%%%%DOCSDIR%%/el/casinter/next.png +%%PORTDOCS%%%%DOCSDIR%%/el/casinter/node1.html +%%PORTDOCS%%%%DOCSDIR%%/el/casinter/node10.html +%%PORTDOCS%%%%DOCSDIR%%/el/casinter/node11.html +%%PORTDOCS%%%%DOCSDIR%%/el/casinter/node12.html +%%PORTDOCS%%%%DOCSDIR%%/el/casinter/node13.html +%%PORTDOCS%%%%DOCSDIR%%/el/casinter/node14.html +%%PORTDOCS%%%%DOCSDIR%%/el/casinter/node15.html +%%PORTDOCS%%%%DOCSDIR%%/el/casinter/node16.html +%%PORTDOCS%%%%DOCSDIR%%/el/casinter/node17.html +%%PORTDOCS%%%%DOCSDIR%%/el/casinter/node18.html +%%PORTDOCS%%%%DOCSDIR%%/el/casinter/node19.html +%%PORTDOCS%%%%DOCSDIR%%/el/casinter/node2.html +%%PORTDOCS%%%%DOCSDIR%%/el/casinter/node20.html +%%PORTDOCS%%%%DOCSDIR%%/el/casinter/node3.html +%%PORTDOCS%%%%DOCSDIR%%/el/casinter/node4.html +%%PORTDOCS%%%%DOCSDIR%%/el/casinter/node5.html +%%PORTDOCS%%%%DOCSDIR%%/el/casinter/node6.html +%%PORTDOCS%%%%DOCSDIR%%/el/casinter/node7.html +%%PORTDOCS%%%%DOCSDIR%%/el/casinter/node8.html +%%PORTDOCS%%%%DOCSDIR%%/el/casinter/node9.html +%%PORTDOCS%%%%DOCSDIR%%/el/casinter/prev.png +%%PORTDOCS%%%%DOCSDIR%%/el/casinter/up.png +%%PORTDOCS%%%%DOCSDIR%%/el/html_mall +%%PORTDOCS%%%%DOCSDIR%%/el/html_mtt +%%PORTDOCS%%%%DOCSDIR%%/el/html_vall +%%PORTDOCS%%%%DOCSDIR%%/el/keywords +%%PORTDOCS%%%%DOCSDIR%%/el/tutoriel/WARNINGS +%%PORTDOCS%%%%DOCSDIR%%/el/tutoriel/contents.png +%%PORTDOCS%%%%DOCSDIR%%/el/tutoriel/demarr1.jpg +%%PORTDOCS%%%%DOCSDIR%%/el/tutoriel/demarr1.png +%%PORTDOCS%%%%DOCSDIR%%/el/tutoriel/footnode.html +%%PORTDOCS%%%%DOCSDIR%%/el/tutoriel/images.aux +%%PORTDOCS%%%%DOCSDIR%%/el/tutoriel/images.idx +%%PORTDOCS%%%%DOCSDIR%%/el/tutoriel/images.log +%%PORTDOCS%%%%DOCSDIR%%/el/tutoriel/images.pl +%%PORTDOCS%%%%DOCSDIR%%/el/tutoriel/images.tex +%%PORTDOCS%%%%DOCSDIR%%/el/tutoriel/img1.png +%%PORTDOCS%%%%DOCSDIR%%/el/tutoriel/img10.png +%%PORTDOCS%%%%DOCSDIR%%/el/tutoriel/img100.png +%%PORTDOCS%%%%DOCSDIR%%/el/tutoriel/img101.png +%%PORTDOCS%%%%DOCSDIR%%/el/tutoriel/img102.png +%%PORTDOCS%%%%DOCSDIR%%/el/tutoriel/img103.png +%%PORTDOCS%%%%DOCSDIR%%/el/tutoriel/img104.png +%%PORTDOCS%%%%DOCSDIR%%/el/tutoriel/img105.png +%%PORTDOCS%%%%DOCSDIR%%/el/tutoriel/img106.png +%%PORTDOCS%%%%DOCSDIR%%/el/tutoriel/img107.png +%%PORTDOCS%%%%DOCSDIR%%/el/tutoriel/img108.png +%%PORTDOCS%%%%DOCSDIR%%/el/tutoriel/img109.png +%%PORTDOCS%%%%DOCSDIR%%/el/tutoriel/img11.png +%%PORTDOCS%%%%DOCSDIR%%/el/tutoriel/img110.png +%%PORTDOCS%%%%DOCSDIR%%/el/tutoriel/img111.png +%%PORTDOCS%%%%DOCSDIR%%/el/tutoriel/img112.png +%%PORTDOCS%%%%DOCSDIR%%/el/tutoriel/img113.png +%%PORTDOCS%%%%DOCSDIR%%/el/tutoriel/img114.png +%%PORTDOCS%%%%DOCSDIR%%/el/tutoriel/img115.png +%%PORTDOCS%%%%DOCSDIR%%/el/tutoriel/img116.png +%%PORTDOCS%%%%DOCSDIR%%/el/tutoriel/img117.png +%%PORTDOCS%%%%DOCSDIR%%/el/tutoriel/img118.png +%%PORTDOCS%%%%DOCSDIR%%/el/tutoriel/img119.png +%%PORTDOCS%%%%DOCSDIR%%/el/tutoriel/img12.png +%%PORTDOCS%%%%DOCSDIR%%/el/tutoriel/img120.png +%%PORTDOCS%%%%DOCSDIR%%/el/tutoriel/img121.png +%%PORTDOCS%%%%DOCSDIR%%/el/tutoriel/img122.png +%%PORTDOCS%%%%DOCSDIR%%/el/tutoriel/img123.png +%%PORTDOCS%%%%DOCSDIR%%/el/tutoriel/img124.png +%%PORTDOCS%%%%DOCSDIR%%/el/tutoriel/img125.png +%%PORTDOCS%%%%DOCSDIR%%/el/tutoriel/img13.png +%%PORTDOCS%%%%DOCSDIR%%/el/tutoriel/img14.png +%%PORTDOCS%%%%DOCSDIR%%/el/tutoriel/img15.png +%%PORTDOCS%%%%DOCSDIR%%/el/tutoriel/img16.png +%%PORTDOCS%%%%DOCSDIR%%/el/tutoriel/img17.png +%%PORTDOCS%%%%DOCSDIR%%/el/tutoriel/img18.png +%%PORTDOCS%%%%DOCSDIR%%/el/tutoriel/img19.png +%%PORTDOCS%%%%DOCSDIR%%/el/tutoriel/img2.png +%%PORTDOCS%%%%DOCSDIR%%/el/tutoriel/img20.png +%%PORTDOCS%%%%DOCSDIR%%/el/tutoriel/img21.png +%%PORTDOCS%%%%DOCSDIR%%/el/tutoriel/img22.png +%%PORTDOCS%%%%DOCSDIR%%/el/tutoriel/img23.png +%%PORTDOCS%%%%DOCSDIR%%/el/tutoriel/img234.png +%%PORTDOCS%%%%DOCSDIR%%/el/tutoriel/img24.png +%%PORTDOCS%%%%DOCSDIR%%/el/tutoriel/img246.png +%%PORTDOCS%%%%DOCSDIR%%/el/tutoriel/img247.png +%%PORTDOCS%%%%DOCSDIR%%/el/tutoriel/img25.png +%%PORTDOCS%%%%DOCSDIR%%/el/tutoriel/img250.png +%%PORTDOCS%%%%DOCSDIR%%/el/tutoriel/img251.png +%%PORTDOCS%%%%DOCSDIR%%/el/tutoriel/img253.png +%%PORTDOCS%%%%DOCSDIR%%/el/tutoriel/img257.png +%%PORTDOCS%%%%DOCSDIR%%/el/tutoriel/img26.png +%%PORTDOCS%%%%DOCSDIR%%/el/tutoriel/img27.png +%%PORTDOCS%%%%DOCSDIR%%/el/tutoriel/img28.png +%%PORTDOCS%%%%DOCSDIR%%/el/tutoriel/img29.png +%%PORTDOCS%%%%DOCSDIR%%/el/tutoriel/img3.png +%%PORTDOCS%%%%DOCSDIR%%/el/tutoriel/img30.png +%%PORTDOCS%%%%DOCSDIR%%/el/tutoriel/img31.png +%%PORTDOCS%%%%DOCSDIR%%/el/tutoriel/img32.png +%%PORTDOCS%%%%DOCSDIR%%/el/tutoriel/img33.png +%%PORTDOCS%%%%DOCSDIR%%/el/tutoriel/img34.png +%%PORTDOCS%%%%DOCSDIR%%/el/tutoriel/img35.png +%%PORTDOCS%%%%DOCSDIR%%/el/tutoriel/img36.png +%%PORTDOCS%%%%DOCSDIR%%/el/tutoriel/img37.png +%%PORTDOCS%%%%DOCSDIR%%/el/tutoriel/img38.png +%%PORTDOCS%%%%DOCSDIR%%/el/tutoriel/img39.png +%%PORTDOCS%%%%DOCSDIR%%/el/tutoriel/img4.png +%%PORTDOCS%%%%DOCSDIR%%/el/tutoriel/img40.png +%%PORTDOCS%%%%DOCSDIR%%/el/tutoriel/img41.png +%%PORTDOCS%%%%DOCSDIR%%/el/tutoriel/img42.png +%%PORTDOCS%%%%DOCSDIR%%/el/tutoriel/img43.png +%%PORTDOCS%%%%DOCSDIR%%/el/tutoriel/img44.png +%%PORTDOCS%%%%DOCSDIR%%/el/tutoriel/img45.png +%%PORTDOCS%%%%DOCSDIR%%/el/tutoriel/img46.png +%%PORTDOCS%%%%DOCSDIR%%/el/tutoriel/img47.png +%%PORTDOCS%%%%DOCSDIR%%/el/tutoriel/img48.png +%%PORTDOCS%%%%DOCSDIR%%/el/tutoriel/img49.png +%%PORTDOCS%%%%DOCSDIR%%/el/tutoriel/img5.png +%%PORTDOCS%%%%DOCSDIR%%/el/tutoriel/img50.png +%%PORTDOCS%%%%DOCSDIR%%/el/tutoriel/img51.png +%%PORTDOCS%%%%DOCSDIR%%/el/tutoriel/img52.png +%%PORTDOCS%%%%DOCSDIR%%/el/tutoriel/img53.png +%%PORTDOCS%%%%DOCSDIR%%/el/tutoriel/img54.png +%%PORTDOCS%%%%DOCSDIR%%/el/tutoriel/img55.png +%%PORTDOCS%%%%DOCSDIR%%/el/tutoriel/img56.png +%%PORTDOCS%%%%DOCSDIR%%/el/tutoriel/img57.png +%%PORTDOCS%%%%DOCSDIR%%/el/tutoriel/img58.png +%%PORTDOCS%%%%DOCSDIR%%/el/tutoriel/img59.png +%%PORTDOCS%%%%DOCSDIR%%/el/tutoriel/img6.png +%%PORTDOCS%%%%DOCSDIR%%/el/tutoriel/img60.png +%%PORTDOCS%%%%DOCSDIR%%/el/tutoriel/img61.png +%%PORTDOCS%%%%DOCSDIR%%/el/tutoriel/img62.png +%%PORTDOCS%%%%DOCSDIR%%/el/tutoriel/img63.png +%%PORTDOCS%%%%DOCSDIR%%/el/tutoriel/img64.png +%%PORTDOCS%%%%DOCSDIR%%/el/tutoriel/img65.png +%%PORTDOCS%%%%DOCSDIR%%/el/tutoriel/img66.png +%%PORTDOCS%%%%DOCSDIR%%/el/tutoriel/img67.png +%%PORTDOCS%%%%DOCSDIR%%/el/tutoriel/img68.png +%%PORTDOCS%%%%DOCSDIR%%/el/tutoriel/img69.png +%%PORTDOCS%%%%DOCSDIR%%/el/tutoriel/img7.png +%%PORTDOCS%%%%DOCSDIR%%/el/tutoriel/img70.png +%%PORTDOCS%%%%DOCSDIR%%/el/tutoriel/img71.png +%%PORTDOCS%%%%DOCSDIR%%/el/tutoriel/img72.png +%%PORTDOCS%%%%DOCSDIR%%/el/tutoriel/img73.png +%%PORTDOCS%%%%DOCSDIR%%/el/tutoriel/img74.png +%%PORTDOCS%%%%DOCSDIR%%/el/tutoriel/img75.png +%%PORTDOCS%%%%DOCSDIR%%/el/tutoriel/img76.png +%%PORTDOCS%%%%DOCSDIR%%/el/tutoriel/img77.png +%%PORTDOCS%%%%DOCSDIR%%/el/tutoriel/img78.png +%%PORTDOCS%%%%DOCSDIR%%/el/tutoriel/img79.png +%%PORTDOCS%%%%DOCSDIR%%/el/tutoriel/img8.png +%%PORTDOCS%%%%DOCSDIR%%/el/tutoriel/img80.png +%%PORTDOCS%%%%DOCSDIR%%/el/tutoriel/img81.png +%%PORTDOCS%%%%DOCSDIR%%/el/tutoriel/img82.png +%%PORTDOCS%%%%DOCSDIR%%/el/tutoriel/img83.png +%%PORTDOCS%%%%DOCSDIR%%/el/tutoriel/img84.png +%%PORTDOCS%%%%DOCSDIR%%/el/tutoriel/img85.png +%%PORTDOCS%%%%DOCSDIR%%/el/tutoriel/img86.png +%%PORTDOCS%%%%DOCSDIR%%/el/tutoriel/img87.png +%%PORTDOCS%%%%DOCSDIR%%/el/tutoriel/img88.png +%%PORTDOCS%%%%DOCSDIR%%/el/tutoriel/img89.png +%%PORTDOCS%%%%DOCSDIR%%/el/tutoriel/img9.png +%%PORTDOCS%%%%DOCSDIR%%/el/tutoriel/img90.png +%%PORTDOCS%%%%DOCSDIR%%/el/tutoriel/img91.png +%%PORTDOCS%%%%DOCSDIR%%/el/tutoriel/img92.png +%%PORTDOCS%%%%DOCSDIR%%/el/tutoriel/img93.png +%%PORTDOCS%%%%DOCSDIR%%/el/tutoriel/img94.png +%%PORTDOCS%%%%DOCSDIR%%/el/tutoriel/img95.png +%%PORTDOCS%%%%DOCSDIR%%/el/tutoriel/img96.png +%%PORTDOCS%%%%DOCSDIR%%/el/tutoriel/img97.png +%%PORTDOCS%%%%DOCSDIR%%/el/tutoriel/img98.png +%%PORTDOCS%%%%DOCSDIR%%/el/tutoriel/img99.png +%%PORTDOCS%%%%DOCSDIR%%/el/tutoriel/index.html +%%PORTDOCS%%%%DOCSDIR%%/el/tutoriel/index.png +%%PORTDOCS%%%%DOCSDIR%%/el/tutoriel/internals.pl +%%PORTDOCS%%%%DOCSDIR%%/el/tutoriel/labels.pl +%%PORTDOCS%%%%DOCSDIR%%/el/tutoriel/missfont.log +%%PORTDOCS%%%%DOCSDIR%%/el/tutoriel/next.png +%%PORTDOCS%%%%DOCSDIR%%/el/tutoriel/node1.html +%%PORTDOCS%%%%DOCSDIR%%/el/tutoriel/node10.html +%%PORTDOCS%%%%DOCSDIR%%/el/tutoriel/node11.html +%%PORTDOCS%%%%DOCSDIR%%/el/tutoriel/node12.html +%%PORTDOCS%%%%DOCSDIR%%/el/tutoriel/node13.html +%%PORTDOCS%%%%DOCSDIR%%/el/tutoriel/node14.html *** DIFF OUTPUT TRUNCATED AT 1000 LINES *** From owner-svn-ports-all@freebsd.org Mon Jul 4 13:24:27 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id E90EBB91DD5; Mon, 4 Jul 2016 13:24:27 +0000 (UTC) (envelope-from mat@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 91ED420BF; Mon, 4 Jul 2016 13:24:27 +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 u64DOQtm005495; Mon, 4 Jul 2016 13:24:26 GMT (envelope-from mat@FreeBSD.org) Received: (from mat@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u64DOQ1V005489; Mon, 4 Jul 2016 13:24:26 GMT (envelope-from mat@FreeBSD.org) Message-Id: <201607041324.u64DOQ1V005489@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: mat set sender to mat@FreeBSD.org using -f From: Mathieu Arnold Date: Mon, 4 Jul 2016 13:24:26 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418022 - in head/games/tuxtype: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Jul 2016 13:24:28 -0000 Author: mat Date: Mon Jul 4 13:24:26 2016 New Revision: 418022 URL: https://svnweb.freebsd.org/changeset/ports/418022 Log: Update to 1.8.3. PR: 210792 Submitted by: tkato432 yahoo com Sponsored by: Absolight Added: head/games/tuxtype/files/patch-Makefile.am (contents, props changed) - copied, changed from r418021, head/games/tuxtype/files/patch-Makefile.in head/games/tuxtype/files/patch-configure.ac (contents, props changed) Deleted: head/games/tuxtype/files/patch-Makefile.in head/games/tuxtype/files/patch-t4k_loaders.c Modified: head/games/tuxtype/Makefile (contents, props changed) head/games/tuxtype/distinfo (contents, props changed) head/games/tuxtype/pkg-plist (contents, props changed) Modified: head/games/tuxtype/Makefile ============================================================================== --- head/games/tuxtype/Makefile Mon Jul 4 13:24:21 2016 (r418021) +++ head/games/tuxtype/Makefile Mon Jul 4 13:24:26 2016 (r418022) @@ -2,94 +2,50 @@ # $FreeBSD$ PORTNAME= tuxtype -PORTVERSION= 1.8.1 -PORTREVISION= 7 +PORTVERSION= 1.8.3 CATEGORIES= games -MASTER_SITES= http://alioth.debian.org/frs/download.php/3270/ \ - http://alioth.debian.org/frs/download.php/3540/:t4k_common -DISTFILES= ${PORTNAME}_w_fonts-${PORTVERSION}${EXTRACT_SUFX} \ - ${T4K_DISTFILE}:t4k_common +MASTER_SITES= DEBIAN_POOL +DISTNAME= ${PORTNAME}_${PORTVERSION}.orig MAINTAINER= ports@FreeBSD.org COMMENT= Educational typing tutor starring Tux the Linux Penguin -BROKEN= unfetchable -DEPRECATED= Broken for more than 6 months -EXPIRATION_DATE= 2016-07-04 - LICENSE= GPLv2+ LICENSE_FILE= ${WRKSRC}/COPYING BUILD_DEPENDS= gsed:textproc/gsed -WRKSRC= ${WRKDIR}/${PORTNAME}_w_fonts-${PORTVERSION} +WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION} -USES= gmake iconv perl5 pkgconfig +USES= autoreconf gettext gmake iconv localbase perl5 pkgconfig USE_GNOME= libxml2 USE_SDL= image mixer net pango sdl GNU_CONFIGURE= yes CONFIGURE_ARGS= --localstatedir=/var/games -CONFIGURE_ENV= T4K_COMMON_CFLAGS="-I${T4K_WRKSRC}/src" \ - T4K_COMMON_LIBS="${T4K_WRKSRC}/src/.libs/libt4k_common.a" \ - ac_cv_lib_m_csin=yes - -CPPFLAGS+= $$(pkg-config --cflags SDL_Pango) -I${LOCALBASE}/include \ - -DHAVE_ALPHASORT -DHAVE_SCANDIR -DHAVE_FSYNC -DICONV_CONST="" -LDFLAGS+= $$(pkg-config --libs SDL_Pango) -L${LOCALBASE}/lib ${ICONV_LIB} +CONFIGURE_ENV= ac_cv_lib_m_csin=yes + +CPPFLAGS+= -I${ICONV_INCLUDE_PATH} +LDFLAGS+= ${ICONV_LIB_PATH} + +DESKTOP_ENTRIES="TuxType" "" "${DATADIR}/images/icons/icon.png" \ + "tuxtype" "" "" -OPTIONS_DEFINE= DOCS NLS SVG +OPTIONS_DEFINE= DOCS SVG OPTIONS_DEFAULT= SVG OPTIONS_SUB= yes -NLS_USES= gettext -NLS_CONFIGURE_ENABLE= nls -SVG_USE_GNOME= librsvg2 +SVG_USE= gnome=librsvg2 SVG_CONFIGURE_WITH= rsvg -T4K_NAME= t4k_common -T4K_VERSION= 0.1.1 -T4K_DISTFILE= ${T4K_NAME}-${T4K_VERSION}${EXTRACT_SUFX} -T4K_WRKSRC= ${WRKDIR}/${T4K_NAME}-${T4K_VERSION} - -post-extract: - @${LN} -sf ${T4K_WRKSRC} ${WRKDIR}/${T4K_NAME} - post-patch: -.for i in convert_utf.h mysetenv.h practice.c - @${ECHO_CMD} >> ${WRKSRC}/src/${i} -.endfor - @${REINPLACE_CMD} -e \ - '/-R$$found_dir/s|^|#|' ${WRKSRC}/configure - @${REINPLACE_CMD} -e \ - '/[[:blank:]]VERSION/d' ${WRKSRC}/config.h.in - @${REINPLACE_CMD} -e \ - '/doc[[:blank:]]/d' ${WRKSRC}/Makefile.in - @${REINPLACE_CMD} -e \ - 's|/bin/bash|/bin/sh| ; \ - s|^sed |gsed |' ${WRKSRC}/data/scripts/sed-linux.sh - @${REINPLACE_CMD} -e \ - 's|-Wall -g |-Wall | ; \ - s|-DDEBUG ||' ${WRKSRC}/src/Makefile.in - @${REINPLACE_CMD} -e \ - 's||"config.h"| ; \ - //d' ${WRKSRC}/src/globals.h - -pre-configure: - @(cd ${T4K_WRKSRC} && ${SETENV} ${CONFIGURE_ENV} ./configure \ - --disable-shared ${CONFIGURE_ARGS} CC="${CC}" CXX="${CXX}" \ - CFLAGS="${CFLAGS}" CXXFLAGS="${CXXFLAGS}" \ - CPPFLAGS="${CPPFLAGS}" LDFLAGS="${LDFLAGS}") - -pre-build: - @(cd ${T4K_WRKSRC} && ${SETENV} ${MAKE_ENV} ${MAKE_CMD} ${MAKE_FLAGS} \ - ${MAKEFILE} -j${MAKE_JOBS_NUMBER} ${ALL_TARGET}) - -post-install: - @${MKDIR} ${STAGEDIR}${DOCSDIR} -.for i in AUTHORS ChangeLog OFL README TODO - (cd ${WRKSRC}/doc && ${INSTALL_DATA} ${i} ${STAGEDIR}${DOCSDIR}) -.endfor - @${MKDIR} ${STAGEDIR}${DOCSDIR}/en - (cd ${WRKSRC}/doc/en && ${INSTALL_DATA} *.html ${STAGEDIR}${DOCSDIR}/en) + @${FIND} ${WRKSRC}/data -name "sed-linux.sh" | ${XARGS} \ + ${REINPLACE_CMD} -e 's|/bin/bash|/bin/sh|; s|^sed |gsed |' + @${REINPLACE_CMD} -e 's|\.\.\/ABOUT-NLS ||; s|COPYING ||; s|INSTALL ||' \ + ${WRKSRC}/doc/Makefile.am + @${REINPLACE_CMD} -e 's|-Wall -g |-Wall |; s|-DDEBUG ||' \ + ${WRKSRC}/src/Makefile.am + +post-configure: + @${REINPLACE_CMD} -e 's|-R${LOCALBASE}/lib||' ${WRKSRC}/src/Makefile .include Modified: head/games/tuxtype/distinfo ============================================================================== --- head/games/tuxtype/distinfo Mon Jul 4 13:24:21 2016 (r418021) +++ head/games/tuxtype/distinfo Mon Jul 4 13:24:26 2016 (r418022) @@ -1,4 +1,2 @@ -SHA256 (tuxtype_w_fonts-1.8.1.tar.gz) = 2687b858679b4f0b4f42204211d162234568198544bd95a9b71ec96e788d1481 -SIZE (tuxtype_w_fonts-1.8.1.tar.gz) = 11528002 -SHA256 (t4k_common-0.1.1.tar.gz) = 42c155816dae2c5dad560faa50edaa1ca84536530283d37859c4b91e82675110 -SIZE (t4k_common-0.1.1.tar.gz) = 629215 +SHA256 (tuxtype_1.8.3.orig.tar.gz) = e720b0a3131764630a8b8d0bd108e0aed6f72572222a3529a4cbed04f94c8fb3 +SIZE (tuxtype_1.8.3.orig.tar.gz) = 11964078 Copied and modified: head/games/tuxtype/files/patch-Makefile.am (from r418021, head/games/tuxtype/files/patch-Makefile.in) ============================================================================== --- head/games/tuxtype/files/patch-Makefile.in Mon Jul 4 13:24:21 2016 (r418021, copy source) +++ head/games/tuxtype/files/patch-Makefile.am Mon Jul 4 13:24:26 2016 (r418022) @@ -1,15 +1,17 @@ ---- Makefile.in.orig 2014-12-02 21:50:06.000000000 +0300 -+++ Makefile.in 2014-12-02 21:52:09.000000000 +0300 -@@ -776,10 +776,9 @@ +--- Makefile.am.orig 2014-08-20 03:55:27 UTC ++++ Makefile.am +@@ -44,12 +44,10 @@ uninstall-local: + # on upgrade?: + install-data-hook: # Global configuration (e.g. /etc/tuxtype): - $(MKDIR_P) -m 755 $(DESTDIR)$(pkgsysconfdir) +- $(MKDIR_P) -m 755 $(DESTDIR)$(pkgsysconfdir) ++ $(MKDIR_P) $(DESTDIR)$(pkgsysconfdir) # Global sites for game state data (e.g. /var/games/tuxtype): - $(MKDIR_P) -m 2755 $(DESTDIR)$(pkglocalstatedir) - $(MKDIR_P) -m 2755 $(DESTDIR)$(pkglocalstatedir)/words -+ $(MKDIR_P) $(DESTDIR)$(pkglocalstatedir) + $(MKDIR_P) $(DESTDIR)$(pkglocalstatedir)/words # chown root:games $(DESTDIR)$(pkglocalstatedir) - chown root:games $(DESTDIR)$(pkglocalstatedir)/words + uninstall-hook: - rm -rf $(DESTDIR)$(pkglocalstatedir)/words Added: head/games/tuxtype/files/patch-configure.ac ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/games/tuxtype/files/patch-configure.ac Mon Jul 4 13:24:26 2016 (r418022) @@ -0,0 +1,26 @@ +--- configure.ac.orig 2014-08-20 03:55:27 UTC ++++ configure.ac +@@ -246,23 +246,6 @@ LIBS="$LIBS $XML2_LIBS" + + + +-dnl libt4kcommon is now required: -------------------------------------------- +- +-PKG_CHECK_MODULES([T4K_COMMON], +- [t4k_common], +- [], +- [AC_MSG_NOTICE([t4k_common not located by pkg-config, checking with AC CHECK LIB:]) +- AC_CHECK_LIB([t4k_common], +- [InitT4KCommon], +- [], +- [AC_MSG_ERROR([libt4k_common is required: git://git.debian.org/tux4kids/t4kcommon.git])])]) +- +-AC_DEFINE([HAVE_LIBT4K_COMMON],[1],[Define to 1 if you have the `t4k_common` library]) +-CFLAGS="$CFLAGS $T4K_COMMON_CFLAGS" +-LIBS="$LIBS $T4K_COMMON_LIBS" +- +- +- + # -------------------------------------------------------------------------------------- + # Checks for header files. + # -------------------------------------------------------------------------------------- Modified: head/games/tuxtype/pkg-plist ============================================================================== --- head/games/tuxtype/pkg-plist Mon Jul 4 13:24:21 2016 (r418021) +++ head/games/tuxtype/pkg-plist Mon Jul 4 13:24:26 2016 (r418022) @@ -4,47 +4,56 @@ %%PORTDOCS%%%%DOCSDIR%%/OFL %%PORTDOCS%%%%DOCSDIR%%/README %%PORTDOCS%%%%DOCSDIR%%/TODO -%%PORTDOCS%%%%DOCSDIR%%/en/howtotheme.html -%%PORTDOCS%%%%DOCSDIR%%/en/lesson_scripting_reference.html -%%NLS%%share/locale/ar/LC_MESSAGES/tuxtype.mo -%%NLS%%share/locale/as/LC_MESSAGES/tuxtype.mo -%%NLS%%share/locale/ast/LC_MESSAGES/tuxtype.mo -%%NLS%%share/locale/ca/LC_MESSAGES/tuxtype.mo -%%NLS%%share/locale/cs/LC_MESSAGES/tuxtype.mo -%%NLS%%share/locale/da/LC_MESSAGES/tuxtype.mo -%%NLS%%share/locale/de/LC_MESSAGES/tuxtype.mo -%%NLS%%share/locale/el/LC_MESSAGES/tuxtype.mo -%%NLS%%share/locale/en@boldquot/LC_MESSAGES/tuxtype.mo -%%NLS%%share/locale/en@quot/LC_MESSAGES/tuxtype.mo -%%NLS%%share/locale/en_GB/LC_MESSAGES/tuxtype.mo -%%NLS%%share/locale/es/LC_MESSAGES/tuxtype.mo -%%NLS%%share/locale/eu/LC_MESSAGES/tuxtype.mo -%%NLS%%share/locale/fi/LC_MESSAGES/tuxtype.mo -%%NLS%%share/locale/fr/LC_MESSAGES/tuxtype.mo -%%NLS%%share/locale/gu/LC_MESSAGES/tuxtype.mo -%%NLS%%share/locale/hi/LC_MESSAGES/tuxtype.mo -%%NLS%%share/locale/it/LC_MESSAGES/tuxtype.mo -%%NLS%%share/locale/ja/LC_MESSAGES/tuxtype.mo -%%NLS%%share/locale/kn/LC_MESSAGES/tuxtype.mo -%%NLS%%share/locale/lt/LC_MESSAGES/tuxtype.mo -%%NLS%%share/locale/ml/LC_MESSAGES/tuxtype.mo -%%NLS%%share/locale/nb/LC_MESSAGES/tuxtype.mo -%%NLS%%share/locale/ne/LC_MESSAGES/tuxtype.mo -%%NLS%%share/locale/nl/LC_MESSAGES/tuxtype.mo -%%NLS%%share/locale/nn/LC_MESSAGES/tuxtype.mo -%%NLS%%share/locale/or/LC_MESSAGES/tuxtype.mo -%%NLS%%share/locale/pt/LC_MESSAGES/tuxtype.mo -%%NLS%%share/locale/ru/LC_MESSAGES/tuxtype.mo -%%NLS%%share/locale/sv/LC_MESSAGES/tuxtype.mo -%%NLS%%share/locale/sw/LC_MESSAGES/tuxtype.mo -%%NLS%%share/locale/ta/LC_MESSAGES/tuxtype.mo -%%NLS%%share/locale/te/LC_MESSAGES/tuxtype.mo -%%NLS%%share/locale/tr/LC_MESSAGES/tuxtype.mo -%%NLS%%share/locale/wo/LC_MESSAGES/tuxtype.mo -%%NLS%%share/locale/zh_N/LC_MESSAGES/tuxtype.mo +%%PORTDOCS%%%%DOCSDIR%%/TuxType_port_Mac.txt +%%PORTDOCS%%%%DOCSDIR%%/howtotheme.html +%%PORTDOCS%%%%DOCSDIR%%/lesson_scripting_reference.html +share/locale/ar/LC_MESSAGES/tuxtype.mo +share/locale/as/LC_MESSAGES/tuxtype.mo +share/locale/ast/LC_MESSAGES/tuxtype.mo +share/locale/be/LC_MESSAGES/tuxtype.mo +share/locale/ca/LC_MESSAGES/tuxtype.mo +share/locale/cs/LC_MESSAGES/tuxtype.mo +share/locale/da/LC_MESSAGES/tuxtype.mo +share/locale/de/LC_MESSAGES/tuxtype.mo +share/locale/el/LC_MESSAGES/tuxtype.mo +share/locale/en@boldquot/LC_MESSAGES/tuxtype.mo +share/locale/en@quot/LC_MESSAGES/tuxtype.mo +share/locale/en_GB/LC_MESSAGES/tuxtype.mo +share/locale/es/LC_MESSAGES/tuxtype.mo +share/locale/eu/LC_MESSAGES/tuxtype.mo +share/locale/fi/LC_MESSAGES/tuxtype.mo +share/locale/fr/LC_MESSAGES/tuxtype.mo +share/locale/gu/LC_MESSAGES/tuxtype.mo +share/locale/he/LC_MESSAGES/tuxtype.mo +share/locale/hi/LC_MESSAGES/tuxtype.mo +share/locale/hu/LC_MESSAGES/tuxtype.mo +share/locale/it/LC_MESSAGES/tuxtype.mo +share/locale/ja/LC_MESSAGES/tuxtype.mo +share/locale/kn/LC_MESSAGES/tuxtype.mo +share/locale/ko/LC_MESSAGES/tuxtype.mo +share/locale/lt/LC_MESSAGES/tuxtype.mo +share/locale/ml/LC_MESSAGES/tuxtype.mo +share/locale/nb/LC_MESSAGES/tuxtype.mo +share/locale/ne/LC_MESSAGES/tuxtype.mo +share/locale/nl/LC_MESSAGES/tuxtype.mo +share/locale/nn/LC_MESSAGES/tuxtype.mo +share/locale/or/LC_MESSAGES/tuxtype.mo +share/locale/pt/LC_MESSAGES/tuxtype.mo +share/locale/ro/LC_MESSAGES/tuxtype.mo +share/locale/ru/LC_MESSAGES/tuxtype.mo +share/locale/sv/LC_MESSAGES/tuxtype.mo +share/locale/sw/LC_MESSAGES/tuxtype.mo +share/locale/ta/LC_MESSAGES/tuxtype.mo +share/locale/te/LC_MESSAGES/tuxtype.mo +share/locale/th_TH/LC_MESSAGES/tuxtype.mo +share/locale/tr/LC_MESSAGES/tuxtype.mo +share/locale/uk/LC_MESSAGES/tuxtype.mo +share/locale/wo/LC_MESSAGES/tuxtype.mo +share/locale/zh_CN/LC_MESSAGES/tuxtype.mo %%DATADIR%%/fonts/AndikaDesRevG.ttf %%DATADIR%%/fonts/DoulosSILR.ttf %%DATADIR%%/fonts/Kedage-n.ttf +%%DATADIR%%/fonts/Loma.ttf %%DATADIR%%/fonts/Rachana_w01.ttf %%DATADIR%%/fonts/Vemana.ttf %%DATADIR%%/fonts/lohit_bn.ttf @@ -128,6 +137,7 @@ %%DATADIR%%/images/icons/icon.png %%DATADIR%%/images/icons/tuxtype.icns %%DATADIR%%/images/icons/tuxtype.ico +%%DATADIR%%/images/icons/tuxtype.svg %%DATADIR%%/images/insert1.png %%DATADIR%%/images/kcas0.jpg %%DATADIR%%/images/kcas1.jpg @@ -508,6 +518,74 @@ %%DATADIR%%/themes/assamese/words/words1.txt %%DATADIR%%/themes/assamese/words/words2.txt %%DATADIR%%/themes/assamese/words/words3.txt +%%DATADIR%%/themes/asturian/images/map.png +%%DATADIR%%/themes/asturian/images/photo.png +%%DATADIR%%/themes/asturian/keyboard.lst +%%DATADIR%%/themes/asturian/scripts/cascade.xml +%%DATADIR%%/themes/asturian/scripts/laser.xml +%%DATADIR%%/themes/asturian/scripts/lleicion_basica_01.xml +%%DATADIR%%/themes/asturian/scripts/lleicion_basica_02.xml +%%DATADIR%%/themes/asturian/scripts/lleicion_basica_03.xml +%%DATADIR%%/themes/asturian/scripts/lleicion_basica_04.xml +%%DATADIR%%/themes/asturian/scripts/lleicion_basica_05.xml +%%DATADIR%%/themes/asturian/scripts/lleicion_basica_06.xml +%%DATADIR%%/themes/asturian/scripts/lleicion_basica_07.xml +%%DATADIR%%/themes/asturian/scripts/lleicion_basica_08.xml +%%DATADIR%%/themes/asturian/scripts/lleicion_basica_09.xml +%%DATADIR%%/themes/asturian/scripts/lleicion_basica_10.xml +%%DATADIR%%/themes/asturian/scripts/lleicion_basica_11.xml +%%DATADIR%%/themes/asturian/scripts/lleicion_basica_12.xml +%%DATADIR%%/themes/asturian/scripts/lleicion_basica_13.xml +%%DATADIR%%/themes/asturian/scripts/lleicion_basica_14.xml +%%DATADIR%%/themes/asturian/scripts/lleicion_basica_15.xml +%%DATADIR%%/themes/asturian/scripts/lleicion_basica_16.xml +%%DATADIR%%/themes/asturian/scripts/lleicion_basica_17.xml +%%DATADIR%%/themes/asturian/scripts/lleicion_basica_18.xml +%%DATADIR%%/themes/asturian/scripts/lleicion_basica_19.xml +%%DATADIR%%/themes/asturian/scripts/lleicion_basica_20.xml +%%DATADIR%%/themes/asturian/scripts/lleicion_basica_21.xml +%%DATADIR%%/themes/asturian/scripts/lleicion_basica_22.xml +%%DATADIR%%/themes/asturian/scripts/lleicion_basica_23.xml +%%DATADIR%%/themes/asturian/scripts/lleicion_basica_24.xml +%%DATADIR%%/themes/asturian/scripts/lleicion_basica_25.xml +%%DATADIR%%/themes/asturian/scripts/lleicion_basica_26.xml +%%DATADIR%%/themes/asturian/scripts/lleicion_basica_27.xml +%%DATADIR%%/themes/asturian/scripts/lleicion_basica_28.xml +%%DATADIR%%/themes/asturian/scripts/lleicion_basica_29.xml +%%DATADIR%%/themes/asturian/scripts/lleicion_basica_30.xml +%%DATADIR%%/themes/asturian/scripts/lleicion_basica_31.xml +%%DATADIR%%/themes/asturian/scripts/lleicion_basica_32.xml +%%DATADIR%%/themes/asturian/scripts/lleicion_basica_33.xml +%%DATADIR%%/themes/asturian/scripts/lleicion_basica_34.xml +%%DATADIR%%/themes/asturian/scripts/lleicion_basica_35.xml +%%DATADIR%%/themes/asturian/scripts/lleicion_basica_36.xml +%%DATADIR%%/themes/asturian/scripts/lleicion_basica_37.xml +%%DATADIR%%/themes/asturian/scripts/lleicion_basica_38.xml +%%DATADIR%%/themes/asturian/scripts/lleicion_basica_39.xml +%%DATADIR%%/themes/asturian/scripts/lleicion_basica_40.xml +%%DATADIR%%/themes/asturian/scripts/lleicion_basica_41.xml +%%DATADIR%%/themes/asturian/scripts/lleicion_basica_42.xml +%%DATADIR%%/themes/asturian/scripts/projectInfo.xml +%%DATADIR%%/themes/asturian/settings.txt +%%DATADIR%%/themes/asturian/words/alphabet.txt +%%DATADIR%%/themes/asturian/words/animals.txt +%%DATADIR%%/themes/asturian/words/astronomy.txt +%%DATADIR%%/themes/asturian/words/colors.txt +%%DATADIR%%/themes/asturian/words/fingers.txt +%%DATADIR%%/themes/asturian/words/fruit.txt +%%DATADIR%%/themes/asturian/words/geography.txt +%%DATADIR%%/themes/asturian/words/numbers.txt +%%DATADIR%%/themes/asturian/words/plants.txt +%%DATADIR%%/themes/asturian/words/shapes.txt +%%DATADIR%%/themes/asturian/words/trees.txt +%%DATADIR%%/themes/asturian/words/words1.txt +%%DATADIR%%/themes/asturian/words/words2.txt +%%DATADIR%%/themes/asturian/words/words3.txt +%%DATADIR%%/themes/belarussian/keyboard.lst +%%DATADIR%%/themes/belarussian/settings.txt +%%DATADIR%%/themes/belarussian/words/words1.txt +%%DATADIR%%/themes/belarussian/words/words2.txt +%%DATADIR%%/themes/belarussian/words/words3.txt %%DATADIR%%/themes/bokmal/images/map.png %%DATADIR%%/themes/bokmal/images/splat0.png %%DATADIR%%/themes/bokmal/images/status/score.png @@ -603,20 +681,148 @@ %%DATADIR%%/themes/french/words/words3.txt %%DATADIR%%/themes/french/words/words4.txt %%DATADIR%%/themes/greek/keyboard.lst +%%DATADIR%%/themes/greek/phrases.txt +%%DATADIR%%/themes/greek/scripts/basic_lesson_01.xml +%%DATADIR%%/themes/greek/scripts/basic_lesson_02.xml +%%DATADIR%%/themes/greek/scripts/basic_lesson_03.xml +%%DATADIR%%/themes/greek/scripts/basic_lesson_04.xml +%%DATADIR%%/themes/greek/scripts/basic_lesson_05.xml +%%DATADIR%%/themes/greek/scripts/basic_lesson_06.xml +%%DATADIR%%/themes/greek/scripts/basic_lesson_07.xml +%%DATADIR%%/themes/greek/scripts/basic_lesson_08.xml +%%DATADIR%%/themes/greek/scripts/basic_lesson_09.xml +%%DATADIR%%/themes/greek/scripts/basic_lesson_10.xml +%%DATADIR%%/themes/greek/scripts/basic_lesson_11.xml +%%DATADIR%%/themes/greek/scripts/basic_lesson_12.xml +%%DATADIR%%/themes/greek/scripts/basic_lesson_13.xml +%%DATADIR%%/themes/greek/scripts/basic_lesson_14.xml +%%DATADIR%%/themes/greek/scripts/basic_lesson_15.xml +%%DATADIR%%/themes/greek/scripts/basic_lesson_16.xml +%%DATADIR%%/themes/greek/scripts/basic_lesson_17.xml +%%DATADIR%%/themes/greek/scripts/basic_lesson_18.xml +%%DATADIR%%/themes/greek/scripts/basic_lesson_19.xml +%%DATADIR%%/themes/greek/scripts/basic_lesson_20.xml +%%DATADIR%%/themes/greek/scripts/basic_lesson_21.xml +%%DATADIR%%/themes/greek/scripts/basic_lesson_22.xml +%%DATADIR%%/themes/greek/scripts/basic_lesson_23.xml +%%DATADIR%%/themes/greek/scripts/basic_lesson_24.xml +%%DATADIR%%/themes/greek/scripts/basic_lesson_25.xml +%%DATADIR%%/themes/greek/scripts/basic_lesson_26.xml +%%DATADIR%%/themes/greek/scripts/basic_lesson_27.xml +%%DATADIR%%/themes/greek/scripts/basic_lesson_28.xml +%%DATADIR%%/themes/greek/scripts/basic_lesson_29.xml +%%DATADIR%%/themes/greek/scripts/basic_lesson_30.xml +%%DATADIR%%/themes/greek/scripts/basic_lesson_31.xml +%%DATADIR%%/themes/greek/scripts/basic_lesson_32.xml +%%DATADIR%%/themes/greek/scripts/basic_lesson_33.xml +%%DATADIR%%/themes/greek/scripts/basic_lesson_34.xml +%%DATADIR%%/themes/greek/scripts/basic_lesson_35.xml +%%DATADIR%%/themes/greek/scripts/basic_lesson_36.xml +%%DATADIR%%/themes/greek/scripts/basic_lesson_37.xml +%%DATADIR%%/themes/greek/scripts/basic_lesson_38.xml +%%DATADIR%%/themes/greek/scripts/basic_lesson_39.xml +%%DATADIR%%/themes/greek/scripts/basic_lesson_40.xml +%%DATADIR%%/themes/greek/scripts/basic_lesson_41.xml +%%DATADIR%%/themes/greek/scripts/basic_lesson_42.xml +%%DATADIR%%/themes/greek/scripts/basic_lesson_43.xml +%%DATADIR%%/themes/greek/scripts/cascade.xml +%%DATADIR%%/themes/greek/scripts/laser.xml +%%DATADIR%%/themes/greek/scripts/projectInfo.xml %%DATADIR%%/themes/greek/settings.txt -%%DATADIR%%/themes/greek/words/easy.txt +%%DATADIR%%/themes/greek/words/alphabet.txt +%%DATADIR%%/themes/greek/words/animals.txt +%%DATADIR%%/themes/greek/words/astronomy.txt +%%DATADIR%%/themes/greek/words/colors.txt +%%DATADIR%%/themes/greek/words/fingers.txt +%%DATADIR%%/themes/greek/words/fruit.txt +%%DATADIR%%/themes/greek/words/geography.txt +%%DATADIR%%/themes/greek/words/numbers.txt +%%DATADIR%%/themes/greek/words/plants.txt +%%DATADIR%%/themes/greek/words/shapes.txt +%%DATADIR%%/themes/greek/words/trees.txt +%%DATADIR%%/themes/greek/words/words1.txt +%%DATADIR%%/themes/greek/words/words2.txt +%%DATADIR%%/themes/greek/words/words3.txt %%DATADIR%%/themes/gujarati/alphabet.txt %%DATADIR%%/themes/gujarati/keyboard.lst %%DATADIR%%/themes/gujarati/settings.txt %%DATADIR%%/themes/gujarati/words/words1.txt %%DATADIR%%/themes/gujarati/words/words2.txt %%DATADIR%%/themes/gujarati/words/words3.txt +%%DATADIR%%/themes/hebrew/keyboard.lst +%%DATADIR%%/themes/hebrew/settings.txt +%%DATADIR%%/themes/hebrew/words/family.txt +%%DATADIR%%/themes/hebrew/words/months.txt +%%DATADIR%%/themes/hebrew/words/numbers.txt +%%DATADIR%%/themes/hebrew/words/verbs.txt +%%DATADIR%%/themes/hebrew/words/words1.txt %%DATADIR%%/themes/hindi/alphabet.txt %%DATADIR%%/themes/hindi/keyboard.lst %%DATADIR%%/themes/hindi/settings.txt %%DATADIR%%/themes/hindi/words/words1.txt %%DATADIR%%/themes/hindi/words/words2.txt %%DATADIR%%/themes/hindi/words/words3.txt +%%DATADIR%%/themes/hungarian/images/photo.png +%%DATADIR%%/themes/hungarian/keyboard.lst +%%DATADIR%%/themes/hungarian/phrases.txt +%%DATADIR%%/themes/hungarian/scripts/0.xml +%%DATADIR%%/themes/hungarian/scripts/1.xml +%%DATADIR%%/themes/hungarian/scripts/2.xml +%%DATADIR%%/themes/hungarian/scripts/3.xml +%%DATADIR%%/themes/hungarian/scripts/4.xml +%%DATADIR%%/themes/hungarian/scripts/5.xml +%%DATADIR%%/themes/hungarian/scripts/6.xml +%%DATADIR%%/themes/hungarian/scripts/7.xml +%%DATADIR%%/themes/hungarian/scripts/8.xml +%%DATADIR%%/themes/hungarian/scripts/9.xml +%%DATADIR%%/themes/hungarian/scripts/a.xml +%%DATADIR%%/themes/hungarian/scripts/aposztrof.xml +%%DATADIR%%/themes/hungarian/scripts/b.xml +%%DATADIR%%/themes/hungarian/scripts/c.xml +%%DATADIR%%/themes/hungarian/scripts/cascade.xml +%%DATADIR%%/themes/hungarian/scripts/d.xml +%%DATADIR%%/themes/hungarian/scripts/e.xml +%%DATADIR%%/themes/hungarian/scripts/egyenloseg.xml +%%DATADIR%%/themes/hungarian/scripts/f.xml +%%DATADIR%%/themes/hungarian/scripts/g.xml +%%DATADIR%%/themes/hungarian/scripts/h.xml +%%DATADIR%%/themes/hungarian/scripts/i.xml +%%DATADIR%%/themes/hungarian/scripts/j.xml +%%DATADIR%%/themes/hungarian/scripts/k.xml +%%DATADIR%%/themes/hungarian/scripts/kotojel.xml +%%DATADIR%%/themes/hungarian/scripts/l.xml +%%DATADIR%%/themes/hungarian/scripts/laser.xml +%%DATADIR%%/themes/hungarian/scripts/m.xml +%%DATADIR%%/themes/hungarian/scripts/n.xml +%%DATADIR%%/themes/hungarian/scripts/o.xml +%%DATADIR%%/themes/hungarian/scripts/p.xml +%%DATADIR%%/themes/hungarian/scripts/per.xml +%%DATADIR%%/themes/hungarian/scripts/pont.xml +%%DATADIR%%/themes/hungarian/scripts/pontosvesszo.xml +%%DATADIR%%/themes/hungarian/scripts/projectInfo.xml +%%DATADIR%%/themes/hungarian/scripts/q.xml +%%DATADIR%%/themes/hungarian/scripts/r.xml +%%DATADIR%%/themes/hungarian/scripts/s.xml +%%DATADIR%%/themes/hungarian/scripts/t.xml +%%DATADIR%%/themes/hungarian/scripts/u.xml +%%DATADIR%%/themes/hungarian/scripts/v.xml +%%DATADIR%%/themes/hungarian/scripts/vesszo.xml +%%DATADIR%%/themes/hungarian/scripts/w.xml +%%DATADIR%%/themes/hungarian/scripts/x.xml +%%DATADIR%%/themes/hungarian/scripts/y.xml +%%DATADIR%%/themes/hungarian/scripts/z.xml +%%DATADIR%%/themes/hungarian/settings.txt +%%DATADIR%%/themes/hungarian/words/allatok.txt +%%DATADIR%%/themes/hungarian/words/fogasgyakorlatok.txt +%%DATADIR%%/themes/hungarian/words/freq.txt +%%DATADIR%%/themes/hungarian/words/nemzetek.txt +%%DATADIR%%/themes/hungarian/words/nevek.txt +%%DATADIR%%/themes/hungarian/words/novenyek.txt +%%DATADIR%%/themes/hungarian/words/varosok.txt +%%DATADIR%%/themes/hungarian/words/word1.txt +%%DATADIR%%/themes/hungarian/words/word2.txt +%%DATADIR%%/themes/hungarian/words/word3.txt +%%DATADIR%%/themes/hungarian/words/word4.txt %%DATADIR%%/themes/italian/images/map.png %%DATADIR%%/themes/italian/images/photo.png %%DATADIR%%/themes/italian/keyboard.lst @@ -649,6 +855,18 @@ %%DATADIR%%/themes/kannada/words/words1.txt %%DATADIR%%/themes/kannada/words/words2.txt %%DATADIR%%/themes/kannada/words/words3.txt +%%DATADIR%%/themes/korean/images/map.png +%%DATADIR%%/themes/korean/images/photo.png +%%DATADIR%%/themes/korean/keyboard.lst +%%DATADIR%%/themes/korean/phrases.txt +%%DATADIR%%/themes/korean/settings.txt +%%DATADIR%%/themes/korean/words/alphabet.txt +%%DATADIR%%/themes/korean/words/animals.txt +%%DATADIR%%/themes/korean/words/colors.txt +%%DATADIR%%/themes/korean/words/fruit.txt +%%DATADIR%%/themes/korean/words/geography.txt +%%DATADIR%%/themes/korean/words/numbers.txt +%%DATADIR%%/themes/korean/words/plants.txt %%DATADIR%%/themes/lithuanian/images/status/gameover.png %%DATADIR%%/themes/lithuanian/images/status/score.png %%DATADIR%%/themes/lithuanian/images/status/wave.png @@ -734,6 +952,11 @@ %%DATADIR%%/themes/punjabi/words/words1.txt %%DATADIR%%/themes/punjabi/words/words2.txt %%DATADIR%%/themes/punjabi/words/words3.txt +%%DATADIR%%/themes/romanian/keyboard.lst +%%DATADIR%%/themes/romanian/settings.txt +%%DATADIR%%/themes/romanian/words/words1.txt +%%DATADIR%%/themes/romanian/words/words2.txt +%%DATADIR%%/themes/romanian/words/words3.txt %%DATADIR%%/themes/russian/images/splat0.png %%DATADIR%%/themes/russian/images/status/score.png %%DATADIR%%/themes/russian/images/status/wave.png @@ -770,6 +993,29 @@ %%DATADIR%%/themes/telugu/words/words1.txt %%DATADIR%%/themes/telugu/words/words2.txt %%DATADIR%%/themes/telugu/words/words3.txt +%%DATADIR%%/themes/thai/authors.txt +%%DATADIR%%/themes/thai/keyboard.lst +%%DATADIR%%/themes/thai/settings.txt +%%DATADIR%%/themes/thai/words/Animals.txt +%%DATADIR%%/themes/thai/words/Colors.txt +%%DATADIR%%/themes/thai/words/Fruit.txt +%%DATADIR%%/themes/thai/words/Thai_Alphabet.txt +%%DATADIR%%/themes/ukrainian/keyboard.lst +%%DATADIR%%/themes/ukrainian/settings.txt +%%DATADIR%%/themes/ukrainian/words/alphabet.txt +%%DATADIR%%/themes/ukrainian/words/animals.txt +%%DATADIR%%/themes/ukrainian/words/astronomy.txt +%%DATADIR%%/themes/ukrainian/words/colors.txt +%%DATADIR%%/themes/ukrainian/words/fingers.txt +%%DATADIR%%/themes/ukrainian/words/fruit.txt +%%DATADIR%%/themes/ukrainian/words/geography.txt +%%DATADIR%%/themes/ukrainian/words/numbers.txt +%%DATADIR%%/themes/ukrainian/words/plants.txt +%%DATADIR%%/themes/ukrainian/words/shapes.txt +%%DATADIR%%/themes/ukrainian/words/trees.txt +%%DATADIR%%/themes/ukrainian/words/words1.txt +%%DATADIR%%/themes/ukrainian/words/words2.txt +%%DATADIR%%/themes/ukrainian/words/words3.txt %%DATADIR%%/themes/wolof/images/map.png %%DATADIR%%/themes/wolof/images/photo.png %%DATADIR%%/themes/wolof/keyboard.lst @@ -785,6 +1031,7 @@ %%DATADIR%%/words/animals.txt %%DATADIR%%/words/astronomy.txt %%DATADIR%%/words/colors.txt +%%DATADIR%%/words/elements.txt %%DATADIR%%/words/fingers.txt %%DATADIR%%/words/fruit.txt %%DATADIR%%/words/geography.txt @@ -795,6 +1042,6 @@ %%DATADIR%%/words/words1.txt %%DATADIR%%/words/words2.txt %%DATADIR%%/words/words3.txt -@dir(,games,775) /var/games/tuxtype/words -@dir(,games,775) /var/games/tuxtype +@dir(,games,2775) /var/games/tuxtype/words +@dir(,games,2775) /var/games/tuxtype @dir %%ETCDIR%% From owner-svn-ports-all@freebsd.org Mon Jul 4 13:24:22 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 5C366B91DA7; Mon, 4 Jul 2016 13:24:22 +0000 (UTC) (envelope-from mat@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 3445E2F80; Mon, 4 Jul 2016 13:24:22 +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 u64DOLgl005294; Mon, 4 Jul 2016 13:24:21 GMT (envelope-from mat@FreeBSD.org) Received: (from mat@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u64DOLxJ005292; Mon, 4 Jul 2016 13:24:21 GMT (envelope-from mat@FreeBSD.org) Message-Id: <201607041324.u64DOLxJ005292@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: mat set sender to mat@FreeBSD.org using -f From: Mathieu Arnold Date: Mon, 4 Jul 2016 13:24:21 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418021 - in head/devel/monotone-viz: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Jul 2016 13:24:22 -0000 Author: mat Date: Mon Jul 4 13:24:21 2016 New Revision: 418021 URL: https://svnweb.freebsd.org/changeset/ports/418021 Log: Fix build. PR: 210792 Submitted by: tkato432 yahoo com Sponsored by: Absolight Deleted: head/devel/monotone-viz/files/patch-agraph.ml head/devel/monotone-viz/files/patch-automate.ml Modified: head/devel/monotone-viz/Makefile (contents, props changed) head/devel/monotone-viz/distinfo (contents, props changed) Modified: head/devel/monotone-viz/Makefile ============================================================================== --- head/devel/monotone-viz/Makefile Mon Jul 4 13:24:15 2016 (r418020) +++ head/devel/monotone-viz/Makefile Mon Jul 4 13:24:21 2016 (r418021) @@ -3,37 +3,58 @@ PORTNAME= monotone-viz PORTVERSION= 1.0.2 -PORTREVISION= 6 +PORTREVISION= 7 CATEGORIES= devel MASTER_SITES= http://oandrieu.nerim.net/monotone-viz/ +PATCH_SITES= DEBIAN_POOL +PATCHFILES= ${PORTNAME}_${PORTVERSION}-4.diff.gz +PATCH_DIST_STRIP= -p1 + MAINTAINER= ports@FreeBSD.org COMMENT= Visual interface for Monotone VCS with revision graphs -LICENSE= GPLv2 +LICENSE= GPLv2+ LICENSE_FILE= ${WRKSRC}/COPYING -BROKEN= fails to build -DEPRECATED= Broken for more than 6 months -EXPIRATION_DATE= 2016-07-04 - -BUILD_DEPENDS= lablgtk2:x11-toolkits/ocaml-lablgtk2 -RUN_DEPENDS+= dot:graphics/graphviz \ +BUILD_DEPENDS= xpmtoppm:graphics/netpbm \ + lablgtk2:x11-toolkits/ocaml-lablgtk2 +RUN_DEPENDS= dot:graphics/graphviz \ mtn:devel/monotone \ + bash:shells/bash \ lablgtk2:x11-toolkits/ocaml-lablgtk2 USES= gmake USE_OCAML= yes USE_OCAML_CAMLP4=yes GNU_CONFIGURE= yes -CONFIGURE_ARGS+= --without-local-lablgtk +CONFIGURE_ARGS= --without-local-lablgtk -ALL_TARGET= +ALL_TARGET= monotone-viz MAKE_JOBS_UNSAFE= yes -PLIST_FILES= bin/monotone-viz +PLIST_FILES= bin/monotone-viz share/pixmaps/monotone-viz.png + +DESKTOP_ENTRIES="Monotone-viz" "" "monotone-viz" "monotone-viz" \ + "Development;RevisionControl;GTK;" "" + +post-patch: +.for i in 10-new-stdio.diff 20-dot-rankdir.diff 50-ocaml-4.02.2.diff + @${PATCH} -d ${WRKSRC} -p1 --quiet < ${WRKSRC}/debian/patches/${i} +.endfor + @${REINPLACE_CMD} -e 's|"/bin/bash"|"${LOCALBASE}/bin/bash"|' \ + ${WRKSRC}/agraph.ml + +# Monkey patch the icon.ml into an xpm file. +post-build: + @${SED} -e 's|^(\(\* XPM \*\))$$|/\1/|; \ + s/^let \(monotone_xpm\) = \[|$$/static char * \1[] = {/; \ + s/";$$/",/; s/|\]$$/};/; /GdkPixbuf/d' ${WRKSRC}/icon.ml | \ + xpmtoppm --alphaout=${WRKDIR}/icon.pgm | \ + pnmtopng --alpha=${WRKDIR}/icon.pgm > ${WRKDIR}/monotone-viz.png post-install: + ${INSTALL_DATA} ${WRKDIR}/monotone-viz.png ${STAGEDIR}${PREFIX}/share/pixmaps ${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/monotone-viz .include Modified: head/devel/monotone-viz/distinfo ============================================================================== --- head/devel/monotone-viz/distinfo Mon Jul 4 13:24:15 2016 (r418020) +++ head/devel/monotone-viz/distinfo Mon Jul 4 13:24:21 2016 (r418021) @@ -1,2 +1,4 @@ SHA256 (monotone-viz-1.0.2.tar.gz) = 404ee47378b144a62eb2dcdfb80430e68d193360216d120977a457cdbf85b7f6 SIZE (monotone-viz-1.0.2.tar.gz) = 545631 +SHA256 (monotone-viz_1.0.2-4.diff.gz) = aed1582e303395790f4b2f3d9a2838d98440f5e3c307e8222d7015fe72fd1bda +SIZE (monotone-viz_1.0.2-4.diff.gz) = 11922 From owner-svn-ports-all@freebsd.org Mon Jul 4 13:25:48 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id E9950B91E80; Mon, 4 Jul 2016 13:25:48 +0000 (UTC) (envelope-from junovitch@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id C707B2245; Mon, 4 Jul 2016 13:25:48 +0000 (UTC) (envelope-from junovitch@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u64DPmQR005665; Mon, 4 Jul 2016 13:25:48 GMT (envelope-from junovitch@FreeBSD.org) Received: (from junovitch@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u64DPl2O005664; Mon, 4 Jul 2016 13:25:47 GMT (envelope-from junovitch@FreeBSD.org) Message-Id: <201607041325.u64DPl2O005664@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: junovitch set sender to junovitch@FreeBSD.org using -f From: Jason Unovitch Date: Mon, 4 Jul 2016 13:25:47 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418023 - head/security/vuxml X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Jul 2016 13:25:49 -0000 Author: junovitch Date: Mon Jul 4 13:25:47 2016 New Revision: 418023 URL: https://svnweb.freebsd.org/changeset/ports/418023 Log: Document wnpa-sec-2016-29 through wnpa-sec-2016-37 for issues fixed in Wireshark 2.0.4 Security: CVE-2016-5350 Security: CVE-2016-5351 Security: CVE-2016-5352 Security: CVE-2016-5353 Security: CVE-2016-5354 Security: CVE-2016-5355 Security: CVE-2016-5356 Security: CVE-2016-5357 Security: CVE-2016-5358 Security: https://vuxml.FreeBSD.org/freebsd/313e9557-41e8-11e6-ab34-002590263bf5.html Modified: head/security/vuxml/vuln.xml Modified: head/security/vuxml/vuln.xml ============================================================================== --- head/security/vuxml/vuln.xml Mon Jul 4 13:24:26 2016 (r418022) +++ head/security/vuxml/vuln.xml Mon Jul 4 13:25:47 2016 (r418023) @@ -58,6 +58,71 @@ Notes: * Do not forget port variants (linux-f10-libxml2, libxml2, etc.) --> + + wireshark -- multiple vulnerabilities + + + wireshark + wireshark-lite + wireshark-qt5 + tshark + tshark-lite + 2.0.4 + + + + +

Wireshark development team reports:

+
+

The following vulnerabilities have been fixed:

+
    +
  • wnpa-sec-2016-29

    +

    The SPOOLS dissector could go into an infinite loop. Discovered + by the CESG.

  • +
  • wnpa-sec-2016-30

    +

    The IEEE 802.11 dissector could crash. (Bug 11585)

  • +
  • wnpa-sec-2016-31

    +

    The IEEE 802.11 dissector could crash. Discovered by Mateusz + Jurczyk. (Bug 12175)

  • +
  • wnpa-sec-2016-32

    +

    The UMTS FP dissector could crash. (Bug 12191)

  • +
  • wnpa-sec-2016-33

    +

    Some USB dissectors could crash. Discovered by Mateusz + Jurczyk. (Bug 12356)

  • +
  • wnpa-sec-2016-34

    +

    The Toshiba file parser could crash. Discovered by iDefense + Labs. (Bug 12394)

  • +
  • wnpa-sec-2016-35

    +

    The CoSine file parser could crash. Discovered by iDefense + Labs. (Bug 12395)

  • +
  • wnpa-sec-2016-36

    +

    The NetScreen file parser could crash. Discovered by iDefense + Labs. (Bug 12396)

  • +
  • wnpa-sec-2016-37

    +

    The Ethernet dissector could crash. (Bug 12440)

  • +
+
+ +
+ + CVE-2016-5350 + CVE-2016-5351 + CVE-2016-5352 + CVE-2016-5353 + CVE-2016-5354 + CVE-2016-5355 + CVE-2016-5356 + CVE-2016-5357 + CVE-2016-5358 + https://www.wireshark.org/docs/relnotes/wireshark-2.0.4.html + http://www.openwall.com/lists/oss-security/2016/06/09/4 + + + 2016-06-07 + 2016-07-04 + +
+ moodle -- multiple vulnerabilities From owner-svn-ports-all@freebsd.org Mon Jul 4 13:30:39 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 63106B91F63; Mon, 4 Jul 2016 13:30:39 +0000 (UTC) (envelope-from mat@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 2D64F25DC; Mon, 4 Jul 2016 13:30:39 +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 u64DUcLx005955; Mon, 4 Jul 2016 13:30:38 GMT (envelope-from mat@FreeBSD.org) Received: (from mat@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u64DUcCP005953; Mon, 4 Jul 2016 13:30:38 GMT (envelope-from mat@FreeBSD.org) Message-Id: <201607041330.u64DUcCP005953@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: mat set sender to mat@FreeBSD.org using -f From: Mathieu Arnold Date: Mon, 4 Jul 2016 13:30:38 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418024 - in head/games/xshisen: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Jul 2016 13:30:39 -0000 Author: mat Date: Mon Jul 4 13:30:38 2016 New Revision: 418024 URL: https://svnweb.freebsd.org/changeset/ports/418024 Log: Fix runtime error. PR: 210793 Submitted by: tkato432 yahoo com Sponsored by: Absolight Added: head/games/xshisen/files/patch-body.C (contents, props changed) Modified: head/games/xshisen/Makefile (contents, props changed) Modified: head/games/xshisen/Makefile ============================================================================== --- head/games/xshisen/Makefile Mon Jul 4 13:25:47 2016 (r418023) +++ head/games/xshisen/Makefile Mon Jul 4 13:30:38 2016 (r418024) @@ -10,19 +10,19 @@ MASTER_SITES= LOCAL/hrs MAINTAINER= TsurutaniNaoki@gmail.com COMMENT= Shisen-sho puzzle game for X11 -BROKEN= fails to start -DEPRECATED= Broken for more than 6 months -EXPIRATION_DATE= 2016-07-04 +LICENSE= BSD3CLAUSE +LICENSE_FILE= ${WRKSRC}/LICENSE USE_XORG= xpm GNU_CONFIGURE= yes CONFIGURE_ARGS= --sharedstatedir="${DATADIR}" INSTALL_TARGET= install-prog -.if !defined(WITHOUT_MOTIF) -USES= motif -CONFIGURE_ARGS+= --with-motif -.endif +OPTIONS_DEFINE= MOTIF +OPTIONS_DEFAULT= MOTIF + +MOTIF_USES= motif +MOTIF_CONFIGURE_WITH= motif post-patch: @${REINPLACE_CMD} -e \ Added: head/games/xshisen/files/patch-body.C ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/games/xshisen/files/patch-body.C Mon Jul 4 13:30:38 2016 (r418024) @@ -0,0 +1,11 @@ +--- body.C.orig 2002-07-07 07:22:35 UTC ++++ body.C +@@ -227,7 +227,7 @@ Body::refreshhint(void) + p = new Point[max_c][2]; + t = new Point[xsize*ysize/PKIND]; + +- if (hintNum == 0) ++ if (hintNum != 0) + delete[] hintArray; + for(int i=0; iGetPosArray(t, num); From owner-svn-ports-all@freebsd.org Mon Jul 4 13:32:42 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id DDF1DB912AA; Mon, 4 Jul 2016 13:32:42 +0000 (UTC) (envelope-from junovitch@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id AF97F290A; Mon, 4 Jul 2016 13:32:42 +0000 (UTC) (envelope-from junovitch@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u64DWfje009355; Mon, 4 Jul 2016 13:32:41 GMT (envelope-from junovitch@FreeBSD.org) Received: (from junovitch@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u64DWfoN009354; Mon, 4 Jul 2016 13:32:41 GMT (envelope-from junovitch@FreeBSD.org) Message-Id: <201607041332.u64DWfoN009354@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: junovitch set sender to junovitch@FreeBSD.org using -f From: Jason Unovitch Date: Mon, 4 Jul 2016 13:32:41 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418025 - head/security/vuxml X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Jul 2016 13:32:43 -0000 Author: junovitch Date: Mon Jul 4 13:32:41 2016 New Revision: 418025 URL: https://svnweb.freebsd.org/changeset/ports/418025 Log: Update wnpa-sec-2016-19 through wnpa-sec-2016-27 with CVE assignment for issues fixed in Wireshark 2.0.3 Security: CVE-2016-4006 Security: CVE-2016-4076 Security: CVE-2016-4077 Security: CVE-2016-4078 Security: CVE-2016-4079 Security: CVE-2016-4080 Security: CVE-2016-4081 Security: CVE-2016-4082 Security: CVE-2016-4083 Security: CVE-2016-4084 Security: https://vuxml.FreeBSD.org/freebsd/7e36c369-10c0-11e6-94fa-002590263bf5.html Modified: head/security/vuxml/vuln.xml Modified: head/security/vuxml/vuln.xml ============================================================================== --- head/security/vuxml/vuln.xml Mon Jul 4 13:30:38 2016 (r418024) +++ head/security/vuxml/vuln.xml Mon Jul 4 13:32:41 2016 (r418025) @@ -3179,11 +3179,23 @@ Notes: + CVE-2016-4076 + CVE-2016-4077 + CVE-2016-4078 + CVE-2016-4079 + CVE-2016-4080 + CVE-2016-4081 + CVE-2016-4006 + CVE-2016-4082 + CVE-2016-4083 + CVE-2016-4084 https://www.wireshark.org/docs/relnotes/wireshark-2.0.3.html + http://www.openwall.com/lists/oss-security/2016/04/25/2 2016-04-22 2016-05-02 + 2016-07-04 From owner-svn-ports-all@freebsd.org Mon Jul 4 13:39:19 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 8C665B913EE; Mon, 4 Jul 2016 13:39:19 +0000 (UTC) (envelope-from cy.schubert@komquats.com) Received: from smtp-out-no.shaw.ca (smtp-out-no.shaw.ca [64.59.134.12]) (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 4052F2AE2; Mon, 4 Jul 2016 13:39:18 +0000 (UTC) (envelope-from cy.schubert@komquats.com) Received: from spqr.komquats.com ([96.50.22.10]) by shaw.ca with SMTP id K45cbFwcokqLbK45dbd34w; Mon, 04 Jul 2016 07:39:11 -0600 X-Authority-Analysis: v=2.2 cv=UoshDK4B c=1 sm=1 tr=0 a=jvE2nwUzI0ECrNeyr98KWA==:117 a=jvE2nwUzI0ECrNeyr98KWA==:17 a=L9H7d07YOLsA:10 a=9cW_t1CCXrUA:10 a=s5jvgZ67dGcA:10 a=cAmyUtKerLwA:10 a=YxBL1-UpAAAA:8 a=6I5d2MoRAAAA:8 a=pGLkceISAAAA:8 a=Ese1mUn0AAAA:8 a=2iAC7nLhmTH6EyqWicIA:9 a=Ia-lj3WSrqcvXOmTRaiG:22 a=IjZwj45LgO3ly-622nXo:22 a=6kGIvZw6iX1k4Y-7sg4_:22 a=Xpq640wllleqoDMZPo79:22 Received: from slippy.cwsent.com (slippy [10.1.1.91]) by spqr.komquats.com (Postfix) with ESMTPS id 8EE7E13753; Mon, 4 Jul 2016 06:39:08 -0700 (PDT) Received: from slippy (localhost [127.0.0.1]) by slippy.cwsent.com (8.15.2/8.15.2) with ESMTP id u64Dd7xL048099; Mon, 4 Jul 2016 06:39:08 -0700 (PDT) (envelope-from Cy.Schubert@cschubert.com) Message-Id: <201607041339.u64Dd7xL048099@slippy.cwsent.com> X-Mailer: exmh version 2.8.0 04/21/2012 with nmh-1.6 Reply-to: Cy Schubert From: Cy Schubert X-os: FreeBSD X-Sender: cy@cwsent.com X-URL: http://www.cschubert.com/ To: v@fatpipi.com cc: Lars Engels , "ports-committers@freebsd.org" , "svn-ports-all@freebsd.org" , "svn-ports-head@freebsd.org" Subject: Re: svn commit: r417974 - head/sysutils/iohyve In-Reply-To: Message from Vanilla Hsu of "Mon, 04 Jul 2016 17:56:19 +0800." Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Mon, 04 Jul 2016 06:39:07 -0700 X-CMAE-Envelope: MS4wfPVeQwgQIf056A37XCa9PDuo94jRy3qvcVMG5UGOZw/5ZKQVws5LxfLK75tEHempHqjLoXF1HTHhtuEwv5WeKWHKIaB2VGbJll24PrM0T/JctEABbFXy G0Kv6ewsLK5jJGx4Zuh76eYILFyNAOjVzfk2ZaFzCirKYD1KPHzOOaYprwpRpaZsvokodVhBtpshP4tOsxDDhvMMeHSwC/p2g4kYy4qkWGK5rBntWJk6B4Nz TNq6Bx8JnocbWE4tTqtPitQ9cNiYugO0xkbYzFtGZtD9IOQq1nZN5cpA1w8+dMveoCueqmFReQcxr7zVW/ED6w== X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Jul 2016 13:39:19 -0000 slippy# make check-orphans ====> Checking for pkg-plist issues (check-plist) ===> Parsing plist ===> Checking for items in STAGEDIR missing from pkg-plist Error: Orphaned: etc/rc.d/iohyve Error: Orphaned: lib/iohyve/ioh-cmd Error: Orphaned: lib/iohyve/ioh-console Error: Orphaned: lib/iohyve/ioh-disk Error: Orphaned: lib/iohyve/ioh-firmware Error: Orphaned: lib/iohyve/ioh-guest Error: Orphaned: lib/iohyve/ioh-iso Error: Orphaned: lib/iohyve/ioh-setup Error: Orphaned: lib/iohyve/ioh-tap Error: Orphaned: lib/iohyve/ioh-zfs Error: Orphaned: man/man8/iohyve.8.gz Error: Orphaned: sbin/iohyve ===> Checking for items in pkg-plist which are not in STAGEDIR ===> Error: Plist issues found. *** Error code 1 Stop. make: stopped in /usr/ports/sysutils/iohyve slippy# It's always a good idea to run make check-orphans prior to commit. Not related to this but, DEVELOPER=yes in make.conf is also advisable. -- Cheers, Cy Schubert FreeBSD UNIX: Web: http://www.FreeBSD.org The need of the many outweighs the greed of the few. In message , Vanilla Hsu writes: > nat [/usr/ports/sysutils/iohyve] -root- pkg info -l iohyve > iohyve-0.7.6: > /usr/local/share/licenses/iohyve-0.7.6/BSD2CLAUSE > /usr/local/share/licenses/iohyve-0.7.6/LICENSE > /usr/local/share/licenses/iohyve-0.7.6/catalog.mk > > it install nothing to my box, please help to check this one. > > thanks. > > 2016-07-03 23:17 GMT+08:00 Lars Engels : > > > Author: lme > > Date: Sun Jul 3 15:17:01 2016 > > New Revision: 417974 > > URL: https://svnweb.freebsd.org/changeset/ports/417974 > > > > Log: > > Update to 0.7.6 > > > > PR: 210546 [1], 210668 [2] > > Submitted by: [1] Trent Thompson , [2] > > Christian Schwarz > > > > Modified: > > head/sysutils/iohyve/Makefile > > head/sysutils/iohyve/distinfo > > > > Modified: head/sysutils/iohyve/Makefile > > > > =========================================================================== > === > > --- head/sysutils/iohyve/Makefile Sun Jul 3 14:56:01 2016 > > (r417973) > > +++ head/sysutils/iohyve/Makefile Sun Jul 3 15:17:01 2016 > > (r417974) > > @@ -1,7 +1,7 @@ > > # $FreeBSD$ > > > > PORTNAME= iohyve > > -PORTVERSION= 0.7.5 > > +PORTVERSION= 0.7.6 > > CATEGORIES= sysutils > > > > MAINTAINER= lme@FreeBSD.org > > @@ -16,11 +16,7 @@ GH_ACCOUNT= pr1ntf > > NO_BUILD= yes > > NO_ARCH= yes > > > > -PLIST_FILES= etc/rc.d/iohyve man/man8/iohyve.8.gz sbin/iohyve > > - > > -do-install: > > - ${INSTALL_SCRIPT} ${WRKSRC}/rc.d/iohyve > > ${STAGEDIR}${PREFIX}/etc/rc.d > > - ${INSTALL_SCRIPT} ${WRKSRC}/iohyve ${STAGEDIR}${PREFIX}/sbin > > - ${INSTALL_MAN} ${WRKSRC}/iohyve.8 ${STAGEDIR}${PREFIX}/man/man8 > > +do-patch: > > + ${REINPLACE_CMD} 's%\$$(PREFIX)%${STAGEDIR}/$$(PREFIX)%g' > > ${WRKSRC}/Makefile > > > > .include > > > > Modified: head/sysutils/iohyve/distinfo > > > > =========================================================================== > === > > --- head/sysutils/iohyve/distinfo Sun Jul 3 14:56:01 2016 > > (r417973) > > +++ head/sysutils/iohyve/distinfo Sun Jul 3 15:17:01 2016 > > (r417974) > > @@ -1,2 +1,3 @@ > > -SHA256 (pr1ntf-iohyve-0.7.5_GH0.tar.gz) = > > 803bdeff69650209edca0570f232cb89aa33b844aef38967b6f146152c4214ae > > -SIZE (pr1ntf-iohyve-0.7.5_GH0.tar.gz) = 19760 > > +TIMESTAMP = 1467139724 > > +SHA256 (pr1ntf-iohyve-0.7.6_GH0.tar.gz) = > > 248756a466c54b2c9f2d9cb70b0247ea2d135858ffae7d633dabc347090760f6 > > +SIZE (pr1ntf-iohyve-0.7.6_GH0.tar.gz) = 22246 > > > > From owner-svn-ports-all@freebsd.org Mon Jul 4 13:40:30 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 85B5BB91448; Mon, 4 Jul 2016 13:40:30 +0000 (UTC) (envelope-from junovitch@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 566862BD8; Mon, 4 Jul 2016 13:40:30 +0000 (UTC) (envelope-from junovitch@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u64DeTGa009755; Mon, 4 Jul 2016 13:40:29 GMT (envelope-from junovitch@FreeBSD.org) Received: (from junovitch@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u64DeThm009754; Mon, 4 Jul 2016 13:40:29 GMT (envelope-from junovitch@FreeBSD.org) Message-Id: <201607041340.u64DeThm009754@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: junovitch set sender to junovitch@FreeBSD.org using -f From: Jason Unovitch Date: Mon, 4 Jul 2016 13:40:29 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418026 - head/security/vuxml X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Jul 2016 13:40:30 -0000 Author: junovitch Date: Mon Jul 4 13:40:29 2016 New Revision: 418026 URL: https://svnweb.freebsd.org/changeset/ports/418026 Log: Update wnpa-sec-2016-12 through wnpa-sec-2016-18 with CVE assignment for issues fixed in Wireshark 2.0.2 While here, fix bad copy/paste on upstream URL when the entry was made. Security: CVE-2016-4415 Security: CVE-2016-4416 Security: CVE-2016-4417 Security: CVE-2016-4418 Security: CVE-2016-4419 Security: CVE-2016-4420 Security: CVE-2016-4421 Secuirty: https://vuxml.FreeBSD.org/freebsd/45117749-df55-11e5-b2bd-002590263bf5.html Modified: head/security/vuxml/vuln.xml Modified: head/security/vuxml/vuln.xml ============================================================================== --- head/security/vuxml/vuln.xml Mon Jul 4 13:32:41 2016 (r418025) +++ head/security/vuxml/vuln.xml Mon Jul 4 13:40:29 2016 (r418026) @@ -6259,11 +6259,20 @@ Notes: CVE-2016-2530 CVE-2016-2531 CVE-2016-2532 - https://www.wireshark.org/docs/relnotes/wireshark-2.0.1.html + CVE-2016-4415 + CVE-2016-4416 + CVE-2016-4417 + CVE-2016-4418 + CVE-2016-4419 + CVE-2016-4420 + CVE-2016-4421 + https://www.wireshark.org/docs/relnotes/wireshark-2.0.2.html + http://www.openwall.com/lists/oss-security/2016/05/01/1 2016-02-26 2016-03-01 + 2016-07-04
From owner-svn-ports-all@freebsd.org Mon Jul 4 13:53:30 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 347DEB91805; Mon, 4 Jul 2016 13:53:30 +0000 (UTC) (envelope-from tz@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id F299F23E9; Mon, 4 Jul 2016 13:53:29 +0000 (UTC) (envelope-from tz@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u64DrTVr016781; Mon, 4 Jul 2016 13:53:29 GMT (envelope-from tz@FreeBSD.org) Received: (from tz@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u64DrTPE016779; Mon, 4 Jul 2016 13:53:29 GMT (envelope-from tz@FreeBSD.org) Message-Id: <201607041353.u64DrTPE016779@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tz set sender to tz@FreeBSD.org using -f From: Torsten Zuehlsdorff Date: Mon, 4 Jul 2016 13:53:29 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418027 - in head/www/gitlab: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Jul 2016 13:53:30 -0000 Author: tz Date: Mon Jul 4 13:53:28 2016 New Revision: 418027 URL: https://svnweb.freebsd.org/changeset/ports/418027 Log: www/gitlab: fix typo in files/patch-lib_support_nginx_gitlab-ssl Fix wrong root directory for HTTP error codes 404, 422, 500, 502 and 503 point. Submitted by: Jose Luis Duran Approved by: pi (mentor) Modified: head/www/gitlab/Makefile head/www/gitlab/files/patch-lib_support_nginx_gitlab-ssl Modified: head/www/gitlab/Makefile ============================================================================== --- head/www/gitlab/Makefile Mon Jul 4 13:40:29 2016 (r418026) +++ head/www/gitlab/Makefile Mon Jul 4 13:53:28 2016 (r418027) @@ -4,6 +4,7 @@ PORTNAME= gitlab PORTVERSION= 8.8.5 DISTVERSIONPREFIX= v +PORTREVISION= 1 CATEGORIES= www devel MAINTAINER= tz@FreeBSD.org Modified: head/www/gitlab/files/patch-lib_support_nginx_gitlab-ssl ============================================================================== --- head/www/gitlab/files/patch-lib_support_nginx_gitlab-ssl Mon Jul 4 13:40:29 2016 (r418026) +++ head/www/gitlab/files/patch-lib_support_nginx_gitlab-ssl Mon Jul 4 13:53:28 2016 (r418027) @@ -14,7 +14,7 @@ error_page 503 /503.html; location ~ ^/(404|422|500|502|503)\.html$ { - root /home/git/gitlab/public; -+ root /home/git/gitlab/public; ++ root /usr/local/www/gitlab/public; internal; } } From owner-svn-ports-all@freebsd.org Mon Jul 4 14:06:50 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 2EF7DB91AB2; Mon, 4 Jul 2016 14:06:50 +0000 (UTC) (envelope-from olgeni@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id D7C3C2951; Mon, 4 Jul 2016 14:06:49 +0000 (UTC) (envelope-from olgeni@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u64E6npY020891; Mon, 4 Jul 2016 14:06:49 GMT (envelope-from olgeni@FreeBSD.org) Received: (from olgeni@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u64E6m8G020882; Mon, 4 Jul 2016 14:06:48 GMT (envelope-from olgeni@FreeBSD.org) Message-Id: <201607041406.u64E6m8G020882@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: olgeni set sender to olgeni@FreeBSD.org using -f From: Jimmy Olgeni Date: Mon, 4 Jul 2016 14:06:48 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418028 - in head/lang: racket racket-minimal racket-minimal/files racket/files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Jul 2016 14:06:50 -0000 Author: olgeni Date: Mon Jul 4 14:06:48 2016 New Revision: 418028 URL: https://svnweb.freebsd.org/changeset/ports/418028 Log: Update lang/racket and lang/racket-minimal to version 6.5. - Use prebuilt Racket packages to prevent building during the staging phase (PR 200101). - patch-share_pkgs_gui-lib_mred_private_wx_gtk_queue.rkt Prevent inclusion of libunique, which brings in GTK2, which then conflicts with the default GTK3 toolkit. - patch-src_racket_src_future.c Include commit f16f54a from github/racket/racket, which fixes semaphore handling when futures are disabled (this broke the IDE). - Add options for FUTURES and JIT (i386/amd64 only). - Remove unnecessary patches. ~ Credits ~ Juan Francisco Cantero Hurtado (OpenBSD maintainer) - kindly brought me up to speed on Racket's status and prebuilt packages, so I could remove lots of cruft from the port. Sam Tobin-Hochstadt - tracked down the futures issue. PR: 200101 Differential Revision: https://reviews.freebsd.org/D6984 Differential Revision: https://reviews.freebsd.org/D6985 Reviewed by: Martin Sugioarto Added: head/lang/racket-minimal/files/patch-src_racket_src_future.c (contents, props changed) head/lang/racket/files/patch-share_pkgs_gui-lib_mred_private_wx_gtk_queue.rkt (contents, props changed) head/lang/racket/files/patch-src_racket_src_future.c (contents, props changed) Deleted: head/lang/racket-minimal/files/patch-racket_include_scheme.h head/lang/racket-minimal/files/patch-racket_src_bool.c head/lang/racket-minimal/files/patch-racket_src_number.c head/lang/racket/files/patch-racket_include_scheme.h head/lang/racket/files/patch-racket_src_bool.c head/lang/racket/files/patch-racket_src_number.c Modified: head/lang/racket-minimal/Makefile head/lang/racket-minimal/distinfo (contents, props changed) head/lang/racket-minimal/pkg-plist (contents, props changed) head/lang/racket/Makefile head/lang/racket/distinfo (contents, props changed) head/lang/racket/pkg-plist (contents, props changed) Modified: head/lang/racket-minimal/Makefile ============================================================================== --- head/lang/racket-minimal/Makefile Mon Jul 4 13:53:28 2016 (r418027) +++ head/lang/racket-minimal/Makefile Mon Jul 4 14:06:48 2016 (r418028) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= racket -PKGNAMESUFFIX= -minimal -PORTVERSION= 6.2 +PORTVERSION= 6.5 CATEGORIES= lang scheme MASTER_SITES= http://mirror.racket-lang.org/installers/${PORTVERSION}/ \ http://www.cs.utah.edu/plt/installers/${PORTVERSION}/ \ @@ -11,39 +10,46 @@ MASTER_SITES= http://mirror.racket-lang. http://mirror.csclub.uwaterloo.ca/racket/racket-installers/${PORTVERSION}/ \ http://mirror.informatik.uni-tuebingen.de/mirror/racket/${PORTVERSION}/ \ http://racket.infogroep.be/${PORTVERSION}/ - -DISTNAME= ${PORTNAME}${PKGNAMESUFFIX}-${PORTVERSION}-src +PKGNAMESUFFIX= -minimal +DISTNAME= ${PORTNAME}${PKGNAMESUFFIX}-${PORTVERSION}-src-builtpkgs DIST_SUBDIR= ${PORTNAME}${PKGNAMESUFFIX}/${PORTVERSION} MAINTAINER= olgeni@FreeBSD.org COMMENT= Interactive, integrated, graphical Scheme programming environment +LICENSE= LGPL3 + LIB_DEPENDS= libffi.so:devel/libffi MAKE_JOBS_UNSAFE=yes -OPTIONS_DEFINE= RACKET_PLACES -OPTIONS_DEFAULT= RACKET_PLACES -RACKET_PLACES_DESC= Enable Places -RACKET_PLACES_CONFIGURE_ENABLE= places - CONFLICTS= racket-[0-9]* GNU_CONFIGURE= yes -CONFIGURE_ARGS= --disable-lt --enable-shared --enable-pthread +CONFIGURE_ARGS= -enable-libffi --enable-pthread --enable-places --enable-shared CPPFLAGS+= -I${LOCALBASE}/include LIBS+= -L${LOCALBASE}/lib - WRKSRC= ${WRKDIR}/racket-${PORTVERSION}/src +PATCH_WRKSRC= ${WRKDIR}/racket-${PORTVERSION} USES= iconv libtool tar:tgz USE_LDCONFIG= yes +REINPLACE_ARGS= -i "" +OPTIONS_DEFINE= FUTURES +OPTIONS_DEFAULT=FUTURES + +OPTIONS_DEFINE_amd64= JIT +OPTIONS_DEFINE_i386= JIT +OPTIONS_DEFAULT_amd64= JIT +OPTIONS_DEFAULT_i386= JIT + +FUTURES_DESC= Enable futures +JIT_DESC= Enable JIT compiler +JIT_CFLAGS= -msse -msse2 -mfpmath=sse -ONLY_FOR_ARCHS= i386 amd64 - -.include +FUTURES_CONFIGURE_ENABLE= futures +JIT_CONFIGURE_ENABLE= jit -.if ${ARCH} == "amd64" -CPPFLAGS+= -DLONG64 -.endif +post-install: + ${FIND} ${STAGEDIR}${PREFIX} -type d -empty -delete .include Modified: head/lang/racket-minimal/distinfo ============================================================================== --- head/lang/racket-minimal/distinfo Mon Jul 4 13:53:28 2016 (r418027) +++ head/lang/racket-minimal/distinfo Mon Jul 4 14:06:48 2016 (r418028) @@ -1,2 +1,3 @@ -SHA256 (racket-minimal/6.2/racket-minimal-6.2-src.tgz) = 5e2947c84791233493429519a28a874a89e751c5c2aac8671763af34769cbffc -SIZE (racket-minimal/6.2/racket-minimal-6.2-src.tgz) = 6034994 +TIMESTAMP = 1467016094 +SHA256 (racket-minimal/6.5/racket-minimal-6.5-src-builtpkgs.tgz) = 44fe95a4ec4d442b4f6f68e360104ca9715bd1fe3795d302d6cddaceb15696dc +SIZE (racket-minimal/6.5/racket-minimal-6.5-src-builtpkgs.tgz) = 11037268 Added: head/lang/racket-minimal/files/patch-src_racket_src_future.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/lang/racket-minimal/files/patch-src_racket_src_future.c Mon Jul 4 14:06:48 2016 (r418028) @@ -0,0 +1,179 @@ +--- src/racket/src/future.c.orig 2016-04-15 20:33:56 UTC ++++ src/racket/src/future.c +@@ -184,6 +184,11 @@ Scheme_Object *scheme_make_fsemaphore(in + return (Scheme_Object*)fsema; + } + ++static Scheme_Object *make_fsemaphore(int argc, Scheme_Object *argv[]) ++{ ++ return scheme_make_fsemaphore(argc, argv); ++} ++ + Scheme_Object *scheme_fsemaphore_post(int argc, Scheme_Object *argv[]) + { + fsemaphore_t *fsema; +@@ -247,46 +252,24 @@ static Scheme_Object *mark_future_trace_ + return scheme_void; + } + +-# define FUTURE_PRIM_W_ARITY(name, func, a1, a2, env) GLOBAL_PRIM_W_ARITY(name, func, a1, a2, env) +- +-void scheme_init_futures(Scheme_Env *newenv) +-{ +- FUTURE_PRIM_W_ARITY("future?", future_p, 1, 1, newenv); +- FUTURE_PRIM_W_ARITY("future", scheme_future, 1, 1, newenv); +- FUTURE_PRIM_W_ARITY("processor-count", processor_count, 0, 0, newenv); +- FUTURE_PRIM_W_ARITY("touch", touch, 1, 1, newenv); +- FUTURE_PRIM_W_ARITY("current-future", scheme_current_future, 0, 0, newenv); +- FUTURE_PRIM_W_ARITY("make-fsemaphore", scheme_make_fsemaphore, 1, 1, newenv); +- FUTURE_PRIM_W_ARITY("fsemaphore?", scheme_fsemaphore_p, 1, 1, newenv); +- FUTURE_PRIM_W_ARITY("fsemaphore-post", scheme_fsemaphore_post, 1, 1, newenv); +- FUTURE_PRIM_W_ARITY("fsemaphore-wait", scheme_fsemaphore_wait, 1, 1, newenv); +- FUTURE_PRIM_W_ARITY("fsemaphore-try-wait?", scheme_fsemaphore_try_wait, 1, 1, newenv); +- FUTURE_PRIM_W_ARITY("fsemaphore-count", scheme_fsemaphore_count, 1, 1, newenv); +- FUTURE_PRIM_W_ARITY("would-be-future", would_be_future, 1, 1, newenv); +- FUTURE_PRIM_W_ARITY("futures-enabled?", futures_enabled, 0, 0, newenv); +- FUTURE_PRIM_W_ARITY("reset-future-logs-for-tracing!", reset_future_logs_for_tracking, 0, 0, newenv); +- GLOBAL_PRIM_W_ARITY("mark-future-trace-end!", mark_future_trace_end, 0, 0, newenv); +- +- scheme_finish_primitive_module(newenv); +- scheme_protect_primitive_provide(newenv, NULL); +- +-#ifdef MZ_PRECISE_GC +- register_traversers(); +-#endif +-} +- + void scheme_init_futures_once() + { + } + + void scheme_init_futures_per_place() + { ++#ifdef MZ_PRECISE_GC ++ register_traversers(); ++#endif + } + + void scheme_end_futures_per_place() + { + } + ++#define SCHEME_FUTURE_PRIM_IS_NARY_INLINED SCHEME_PRIM_SOMETIMES_INLINED ++#define SCHEME_FUTURE_PRIM_IS_UNARY_INLINED SCHEME_PRIM_SOMETIMES_INLINED ++ + #else + + #include "future.h" +@@ -467,6 +450,11 @@ typedef struct future_thread_params_t { + Scheme_Current_LWC *lwc; + } future_thread_params_t; + ++#define SCHEME_FUTURE_PRIM_IS_NARY_INLINED SCHEME_PRIM_IS_NARY_INLINED ++#define SCHEME_FUTURE_PRIM_IS_UNARY_INLINED SCHEME_PRIM_IS_UNARY_INLINED ++ ++#endif ++ + /**********************************************************************/ + /* Plumbing for Racket initialization */ + /**********************************************************************/ +@@ -476,6 +464,9 @@ void scheme_init_futures(Scheme_Env *new + { + Scheme_Object *p; + ++ /* Order and properties here need to be in sync with the order and ++ properties in the other scheme_init_futures() */ ++ + scheme_add_global_constant( + "future?", + scheme_make_folding_prim( +@@ -487,7 +478,7 @@ void scheme_init_futures(Scheme_Env *new + newenv); + + p = scheme_make_prim_w_arity(scheme_future, "future", 1, 1); +- SCHEME_PRIM_PROC_FLAGS(p) |= scheme_intern_prim_opt_flags(SCHEME_PRIM_IS_UNARY_INLINED); ++ SCHEME_PRIM_PROC_FLAGS(p) |= scheme_intern_prim_opt_flags(SCHEME_FUTURE_PRIM_IS_UNARY_INLINED); + scheme_add_global_constant("future", p, newenv); + + scheme_add_global_constant( +@@ -500,7 +491,7 @@ void scheme_init_futures(Scheme_Env *new + newenv); + + p = scheme_make_prim_w_arity(touch, "touch", 1, 1); +- SCHEME_PRIM_PROC_FLAGS(p) |= scheme_intern_prim_opt_flags(SCHEME_PRIM_IS_UNARY_INLINED); ++ SCHEME_PRIM_PROC_FLAGS(p) |= scheme_intern_prim_opt_flags(SCHEME_FUTURE_PRIM_IS_UNARY_INLINED); + scheme_add_global_constant("touch", p, newenv); + + p = scheme_make_immed_prim( +@@ -508,7 +499,7 @@ void scheme_init_futures(Scheme_Env *new + "current-future", + 0, + 0); +- SCHEME_PRIM_PROC_FLAGS(p) |= scheme_intern_prim_opt_flags(SCHEME_PRIM_IS_NARY_INLINED); ++ SCHEME_PRIM_PROC_FLAGS(p) |= scheme_intern_prim_opt_flags(SCHEME_FUTURE_PRIM_IS_NARY_INLINED); + scheme_add_global_constant("current-future", p, newenv); + + p = scheme_make_immed_prim( +@@ -517,7 +508,7 @@ void scheme_init_futures(Scheme_Env *new + 1, + 1); + +- SCHEME_PRIM_PROC_FLAGS(p) |= scheme_intern_prim_opt_flags(SCHEME_PRIM_IS_UNARY_INLINED); ++ SCHEME_PRIM_PROC_FLAGS(p) |= scheme_intern_prim_opt_flags(SCHEME_FUTURE_PRIM_IS_UNARY_INLINED); + scheme_add_global_constant("fsemaphore?", p, newenv); + + p = scheme_make_immed_prim( +@@ -525,7 +516,7 @@ void scheme_init_futures(Scheme_Env *new + "make-fsemaphore", + 1, + 1); +- SCHEME_PRIM_PROC_FLAGS(p) |= scheme_intern_prim_opt_flags(SCHEME_PRIM_IS_UNARY_INLINED); ++ SCHEME_PRIM_PROC_FLAGS(p) |= scheme_intern_prim_opt_flags(SCHEME_FUTURE_PRIM_IS_UNARY_INLINED); + scheme_add_global_constant("make-fsemaphore", p, newenv); + + p = scheme_make_immed_prim( +@@ -533,7 +524,7 @@ void scheme_init_futures(Scheme_Env *new + "fsemaphore-count", + 1, + 1); +- SCHEME_PRIM_PROC_FLAGS(p) |= scheme_intern_prim_opt_flags(SCHEME_PRIM_IS_UNARY_INLINED); ++ SCHEME_PRIM_PROC_FLAGS(p) |= scheme_intern_prim_opt_flags(SCHEME_FUTURE_PRIM_IS_UNARY_INLINED); + scheme_add_global_constant("fsemaphore-count", p, newenv); + + p = scheme_make_immed_prim( +@@ -541,7 +532,7 @@ void scheme_init_futures(Scheme_Env *new + "fsemaphore-wait", + 1, + 1); +- SCHEME_PRIM_PROC_FLAGS(p) |= scheme_intern_prim_opt_flags(SCHEME_PRIM_IS_UNARY_INLINED); ++ SCHEME_PRIM_PROC_FLAGS(p) |= scheme_intern_prim_opt_flags(SCHEME_FUTURE_PRIM_IS_UNARY_INLINED); + scheme_add_global_constant("fsemaphore-wait", p, newenv); + + p = scheme_make_immed_prim( +@@ -549,7 +540,7 @@ void scheme_init_futures(Scheme_Env *new + "fsemaphore-post", + 1, + 1); +- SCHEME_PRIM_PROC_FLAGS(p) |= scheme_intern_prim_opt_flags(SCHEME_PRIM_IS_UNARY_INLINED); ++ SCHEME_PRIM_PROC_FLAGS(p) |= scheme_intern_prim_opt_flags(SCHEME_FUTURE_PRIM_IS_UNARY_INLINED); + scheme_add_global_constant("fsemaphore-post", p, newenv); + + p = scheme_make_immed_prim( +@@ -557,7 +548,7 @@ void scheme_init_futures(Scheme_Env *new + "fsemaphore-try-wait?", + 1, + 1); +- SCHEME_PRIM_PROC_FLAGS(p) |= scheme_intern_prim_opt_flags(SCHEME_PRIM_IS_UNARY_INLINED); ++ SCHEME_PRIM_PROC_FLAGS(p) |= scheme_intern_prim_opt_flags(SCHEME_FUTURE_PRIM_IS_UNARY_INLINED); + scheme_add_global_constant("fsemaphore-try-wait?", p, newenv); + + GLOBAL_PRIM_W_ARITY("would-be-future", would_be_future, 1, 1, newenv); +@@ -569,6 +560,8 @@ void scheme_init_futures(Scheme_Env *new + scheme_protect_primitive_provide(newenv, NULL); + } + ++#ifdef MZ_USE_FUTURES ++ + void scheme_init_futures_once() + { + init_cpucount(); Modified: head/lang/racket-minimal/pkg-plist ============================================================================== --- head/lang/racket-minimal/pkg-plist Mon Jul 4 13:53:28 2016 (r418027) +++ head/lang/racket-minimal/pkg-plist Mon Jul 4 14:06:48 2016 (r418028) @@ -1,5 +1,6 @@ bin/racket bin/raco +%%ETCDIR%%/config.rktd include/racket/escheme.h include/racket/ext.exp include/racket/mzconfig.h @@ -17,7 +18,7 @@ include/racket/schvers.h include/racket/sconfig.h include/racket/stypes.h include/racket/uconfig.h -lib/libracket3m-6.2.so +lib/libracket3m-6.5.so lib/libracket3m.so lib/racket/buildinfo lib/racket/gracket @@ -26,6 +27,7 @@ lib/racket/mans.rktd lib/racket/mzdyn3m.o lib/racket/starter lib/racket/starter-sh +lib/racket/system.rktd man/man1/racket.1.gz man/man1/raco.1.gz %%DATADIR%%/COPYING-libscheme.txt @@ -52,14 +54,20 @@ man/man1/raco.1.gz %%DATADIR%%/collects/compiler/compiled/distribute_rkt.zo %%DATADIR%%/collects/compiler/compiled/embed_rkt.dep %%DATADIR%%/collects/compiler/compiled/embed_rkt.zo +%%DATADIR%%/collects/compiler/compiled/exe-dylib-path_rkt.dep +%%DATADIR%%/collects/compiler/compiled/exe-dylib-path_rkt.zo %%DATADIR%%/collects/compiler/compiled/find-exe_rkt.dep %%DATADIR%%/collects/compiler/compiled/find-exe_rkt.zo +%%DATADIR%%/collects/compiler/compiled/module-suffix_rkt.dep +%%DATADIR%%/collects/compiler/compiled/module-suffix_rkt.zo %%DATADIR%%/collects/compiler/compiled/option_rkt.dep %%DATADIR%%/collects/compiler/compiled/option_rkt.zo %%DATADIR%%/collects/compiler/compiler.rkt %%DATADIR%%/collects/compiler/distribute.rkt %%DATADIR%%/collects/compiler/embed.rkt +%%DATADIR%%/collects/compiler/exe-dylib-path.rkt %%DATADIR%%/collects/compiler/find-exe.rkt +%%DATADIR%%/collects/compiler/module-suffix.rkt %%DATADIR%%/collects/compiler/option.rkt %%DATADIR%%/collects/compiler/private/collects-path.rkt %%DATADIR%%/collects/compiler/private/compiled/collects-path_rkt.dep @@ -76,12 +84,18 @@ man/man1/raco.1.gz %%DATADIR%%/collects/compiler/private/compiled/macfw_rkt.zo %%DATADIR%%/collects/compiler/private/compiled/mach-o_rkt.dep %%DATADIR%%/collects/compiler/private/compiled/mach-o_rkt.zo +%%DATADIR%%/collects/compiler/private/compiled/pe-rsrc_rkt.dep +%%DATADIR%%/collects/compiler/private/compiled/pe-rsrc_rkt.zo +%%DATADIR%%/collects/compiler/private/compiled/read-bstr_rkt.dep +%%DATADIR%%/collects/compiler/private/compiled/read-bstr_rkt.zo %%DATADIR%%/collects/compiler/private/compiled/windlldir_rkt.dep %%DATADIR%%/collects/compiler/private/compiled/windlldir_rkt.zo %%DATADIR%%/collects/compiler/private/compiled/winsubsys_rkt.dep %%DATADIR%%/collects/compiler/private/compiled/winsubsys_rkt.zo %%DATADIR%%/collects/compiler/private/compiled/winutf16_rkt.dep %%DATADIR%%/collects/compiler/private/compiled/winutf16_rkt.zo +%%DATADIR%%/collects/compiler/private/compiled/write-perm_rkt.dep +%%DATADIR%%/collects/compiler/private/compiled/write-perm_rkt.zo %%DATADIR%%/collects/compiler/private/compiled/xform_rkt.dep %%DATADIR%%/collects/compiler/private/compiled/xform_rkt.zo %%DATADIR%%/collects/compiler/private/configdir.rkt @@ -90,9 +104,12 @@ man/man1/raco.1.gz %%DATADIR%%/collects/compiler/private/embed.rkt %%DATADIR%%/collects/compiler/private/macfw.rkt %%DATADIR%%/collects/compiler/private/mach-o.rkt +%%DATADIR%%/collects/compiler/private/pe-rsrc.rkt +%%DATADIR%%/collects/compiler/private/read-bstr.rkt %%DATADIR%%/collects/compiler/private/windlldir.rkt %%DATADIR%%/collects/compiler/private/winsubsys.rkt %%DATADIR%%/collects/compiler/private/winutf16.rkt +%%DATADIR%%/collects/compiler/private/write-perm.rkt %%DATADIR%%/collects/compiler/private/xform.rkt %%DATADIR%%/collects/data/bit-vector.rkt %%DATADIR%%/collects/data/compiled/bit-vector_rkt.dep @@ -234,6 +251,9 @@ man/man1/raco.1.gz %%DATADIR%%/collects/file/gzip.rkt %%DATADIR%%/collects/file/ico.rkt %%DATADIR%%/collects/file/md5.rkt +%%DATADIR%%/collects/file/private/check-path.rkt +%%DATADIR%%/collects/file/private/compiled/check-path_rkt.dep +%%DATADIR%%/collects/file/private/compiled/check-path_rkt.zo %%DATADIR%%/collects/file/private/compiled/strip-prefix_rkt.dep %%DATADIR%%/collects/file/private/compiled/strip-prefix_rkt.zo %%DATADIR%%/collects/file/private/strip-prefix.rkt @@ -269,10 +289,16 @@ man/man1/raco.1.gz %%DATADIR%%/collects/net/compiled/head_rkt.zo %%DATADIR%%/collects/net/compiled/http-client_rkt.dep %%DATADIR%%/collects/net/compiled/http-client_rkt.zo +%%DATADIR%%/collects/net/compiled/osx-ssl_rkt.dep +%%DATADIR%%/collects/net/compiled/osx-ssl_rkt.zo %%DATADIR%%/collects/net/compiled/uri-codec_rkt.dep %%DATADIR%%/collects/net/compiled/uri-codec_rkt.zo %%DATADIR%%/collects/net/compiled/url-connect_rkt.dep %%DATADIR%%/collects/net/compiled/url-connect_rkt.zo +%%DATADIR%%/collects/net/compiled/url-exception_rkt.dep +%%DATADIR%%/collects/net/compiled/url-exception_rkt.zo +%%DATADIR%%/collects/net/compiled/url-string_rkt.dep +%%DATADIR%%/collects/net/compiled/url-string_rkt.zo %%DATADIR%%/collects/net/compiled/url-structs_rkt.dep %%DATADIR%%/collects/net/compiled/url-structs_rkt.zo %%DATADIR%%/collects/net/compiled/url_rkt.dep @@ -282,8 +308,11 @@ man/man1/raco.1.gz %%DATADIR%%/collects/net/git-checkout.rkt %%DATADIR%%/collects/net/head.rkt %%DATADIR%%/collects/net/http-client.rkt +%%DATADIR%%/collects/net/osx-ssl.rkt %%DATADIR%%/collects/net/uri-codec.rkt %%DATADIR%%/collects/net/url-connect.rkt +%%DATADIR%%/collects/net/url-exception.rkt +%%DATADIR%%/collects/net/url-string.rkt %%DATADIR%%/collects/net/url-structs.rkt %%DATADIR%%/collects/net/url.rkt %%DATADIR%%/collects/net/win32-ssl.rkt @@ -354,6 +383,7 @@ man/man1/raco.1.gz %%DATADIR%%/collects/pkg/private/catalog-show.rkt %%DATADIR%%/collects/pkg/private/catalog-update.rkt %%DATADIR%%/collects/pkg/private/catalog.rkt +%%DATADIR%%/collects/pkg/private/check-will-exist.rkt %%DATADIR%%/collects/pkg/private/clone-path.rkt %%DATADIR%%/collects/pkg/private/collects.rkt %%DATADIR%%/collects/pkg/private/compiled/addl-installs_rkt.dep @@ -370,6 +400,8 @@ man/man1/raco.1.gz %%DATADIR%%/collects/pkg/private/compiled/catalog-update_rkt.zo %%DATADIR%%/collects/pkg/private/compiled/catalog_rkt.dep %%DATADIR%%/collects/pkg/private/compiled/catalog_rkt.zo +%%DATADIR%%/collects/pkg/private/compiled/check-will-exist_rkt.dep +%%DATADIR%%/collects/pkg/private/compiled/check-will-exist_rkt.zo %%DATADIR%%/collects/pkg/private/compiled/clone-path_rkt.dep %%DATADIR%%/collects/pkg/private/compiled/clone-path_rkt.zo %%DATADIR%%/collects/pkg/private/compiled/collects_rkt.dep @@ -404,6 +436,8 @@ man/man1/raco.1.gz %%DATADIR%%/collects/pkg/private/compiled/migrate_rkt.zo %%DATADIR%%/collects/pkg/private/compiled/mod-paths_rkt.dep %%DATADIR%%/collects/pkg/private/compiled/mod-paths_rkt.zo +%%DATADIR%%/collects/pkg/private/compiled/network_rkt.dep +%%DATADIR%%/collects/pkg/private/compiled/network_rkt.zo %%DATADIR%%/collects/pkg/private/compiled/new_rkt.dep %%DATADIR%%/collects/pkg/private/compiled/new_rkt.zo %%DATADIR%%/collects/pkg/private/compiled/orig-pkg_rkt.dep @@ -414,6 +448,8 @@ man/man1/raco.1.gz %%DATADIR%%/collects/pkg/private/compiled/path_rkt.zo %%DATADIR%%/collects/pkg/private/compiled/pkg-db_rkt.dep %%DATADIR%%/collects/pkg/private/compiled/pkg-db_rkt.zo +%%DATADIR%%/collects/pkg/private/compiled/prefetch_rkt.dep +%%DATADIR%%/collects/pkg/private/compiled/prefetch_rkt.zo %%DATADIR%%/collects/pkg/private/compiled/print_rkt.dep %%DATADIR%%/collects/pkg/private/compiled/print_rkt.zo %%DATADIR%%/collects/pkg/private/compiled/remove_rkt.dep @@ -443,11 +479,13 @@ man/man1/raco.1.gz %%DATADIR%%/collects/pkg/private/metadata.rkt %%DATADIR%%/collects/pkg/private/migrate.rkt %%DATADIR%%/collects/pkg/private/mod-paths.rkt +%%DATADIR%%/collects/pkg/private/network.rkt %%DATADIR%%/collects/pkg/private/new.rkt %%DATADIR%%/collects/pkg/private/orig-pkg.rkt %%DATADIR%%/collects/pkg/private/params.rkt %%DATADIR%%/collects/pkg/private/path.rkt %%DATADIR%%/collects/pkg/private/pkg-db.rkt +%%DATADIR%%/collects/pkg/private/prefetch.rkt %%DATADIR%%/collects/pkg/private/print.rkt %%DATADIR%%/collects/pkg/private/remove.rkt %%DATADIR%%/collects/pkg/private/repo-path.rkt @@ -540,6 +578,8 @@ man/man1/raco.1.gz %%DATADIR%%/collects/racket/compiled/engine_rkt.zo %%DATADIR%%/collects/racket/compiled/enter_rkt.dep %%DATADIR%%/collects/racket/compiled/enter_rkt.zo +%%DATADIR%%/collects/racket/compiled/exn_rkt.dep +%%DATADIR%%/collects/racket/compiled/exn_rkt.zo %%DATADIR%%/collects/racket/compiled/extflonum_rkt.dep %%DATADIR%%/collects/racket/compiled/extflonum_rkt.zo %%DATADIR%%/collects/racket/compiled/fasl_rkt.dep @@ -560,6 +600,8 @@ man/man1/raco.1.gz %%DATADIR%%/collects/racket/compiled/generator_rkt.zo %%DATADIR%%/collects/racket/compiled/generic_rkt.dep %%DATADIR%%/collects/racket/compiled/generic_rkt.zo +%%DATADIR%%/collects/racket/compiled/hash_rkt.dep +%%DATADIR%%/collects/racket/compiled/hash_rkt.zo %%DATADIR%%/collects/racket/compiled/help_rkt.dep %%DATADIR%%/collects/racket/compiled/help_rkt.zo %%DATADIR%%/collects/racket/compiled/include_rkt.dep @@ -582,12 +624,16 @@ man/man1/raco.1.gz %%DATADIR%%/collects/racket/compiled/load_rkt.zo %%DATADIR%%/collects/racket/compiled/local_rkt.dep %%DATADIR%%/collects/racket/compiled/local_rkt.zo +%%DATADIR%%/collects/racket/compiled/logging_rkt.dep +%%DATADIR%%/collects/racket/compiled/logging_rkt.zo %%DATADIR%%/collects/racket/compiled/main_rkt.dep %%DATADIR%%/collects/racket/compiled/main_rkt.zo %%DATADIR%%/collects/racket/compiled/match_rkt.dep %%DATADIR%%/collects/racket/compiled/match_rkt.zo %%DATADIR%%/collects/racket/compiled/math_rkt.dep %%DATADIR%%/collects/racket/compiled/math_rkt.zo +%%DATADIR%%/collects/racket/compiled/os_rkt.dep +%%DATADIR%%/collects/racket/compiled/os_rkt.zo %%DATADIR%%/collects/racket/compiled/path_rkt.dep %%DATADIR%%/collects/racket/compiled/path_rkt.zo %%DATADIR%%/collects/racket/compiled/performance-hint_rkt.dep @@ -606,6 +652,8 @@ man/man1/raco.1.gz %%DATADIR%%/collects/racket/compiled/provide-transform_rkt.zo %%DATADIR%%/collects/racket/compiled/provide_rkt.dep %%DATADIR%%/collects/racket/compiled/provide_rkt.zo +%%DATADIR%%/collects/racket/compiled/random_rkt.dep +%%DATADIR%%/collects/racket/compiled/random_rkt.zo %%DATADIR%%/collects/racket/compiled/require-syntax_rkt.dep %%DATADIR%%/collects/racket/compiled/require-syntax_rkt.zo %%DATADIR%%/collects/racket/compiled/require-transform_rkt.dep @@ -634,6 +682,8 @@ man/man1/raco.1.gz %%DATADIR%%/collects/racket/compiled/string_rkt.zo %%DATADIR%%/collects/racket/compiled/struct-info_rkt.dep %%DATADIR%%/collects/racket/compiled/struct-info_rkt.zo +%%DATADIR%%/collects/racket/compiled/struct_rkt.dep +%%DATADIR%%/collects/racket/compiled/struct_rkt.zo %%DATADIR%%/collects/racket/compiled/stxparam-exptime_rkt.dep %%DATADIR%%/collects/racket/compiled/stxparam-exptime_rkt.zo %%DATADIR%%/collects/racket/compiled/stxparam_rkt.dep @@ -672,35 +722,41 @@ man/man1/raco.1.gz %%DATADIR%%/collects/racket/contract/compiled/region_rkt.dep %%DATADIR%%/collects/racket/contract/compiled/region_rkt.zo %%DATADIR%%/collects/racket/contract/parametric.rkt +%%DATADIR%%/collects/racket/contract/private/and.rkt %%DATADIR%%/collects/racket/contract/private/application-arity-checking.rkt %%DATADIR%%/collects/racket/contract/private/arity-checking.rkt +%%DATADIR%%/collects/racket/contract/private/arr-d.rkt %%DATADIR%%/collects/racket/contract/private/arr-i-parse.rkt %%DATADIR%%/collects/racket/contract/private/arr-i.rkt %%DATADIR%%/collects/racket/contract/private/arr-util.rkt +%%DATADIR%%/collects/racket/contract/private/arrow-common.rkt %%DATADIR%%/collects/racket/contract/private/arrow-higher-order.rkt %%DATADIR%%/collects/racket/contract/private/arrow-val-first.rkt -%%DATADIR%%/collects/racket/contract/private/arrow.rkt %%DATADIR%%/collects/racket/contract/private/base.rkt %%DATADIR%%/collects/racket/contract/private/basic-opters.rkt %%DATADIR%%/collects/racket/contract/private/blame.rkt %%DATADIR%%/collects/racket/contract/private/box.rkt %%DATADIR%%/collects/racket/contract/private/case-arrow.rkt +%%DATADIR%%/collects/racket/contract/private/compiled/and_rkt.dep +%%DATADIR%%/collects/racket/contract/private/compiled/and_rkt.zo %%DATADIR%%/collects/racket/contract/private/compiled/application-arity-checking_rkt.dep %%DATADIR%%/collects/racket/contract/private/compiled/application-arity-checking_rkt.zo %%DATADIR%%/collects/racket/contract/private/compiled/arity-checking_rkt.dep %%DATADIR%%/collects/racket/contract/private/compiled/arity-checking_rkt.zo +%%DATADIR%%/collects/racket/contract/private/compiled/arr-d_rkt.dep +%%DATADIR%%/collects/racket/contract/private/compiled/arr-d_rkt.zo %%DATADIR%%/collects/racket/contract/private/compiled/arr-i-parse_rkt.dep %%DATADIR%%/collects/racket/contract/private/compiled/arr-i-parse_rkt.zo %%DATADIR%%/collects/racket/contract/private/compiled/arr-i_rkt.dep %%DATADIR%%/collects/racket/contract/private/compiled/arr-i_rkt.zo %%DATADIR%%/collects/racket/contract/private/compiled/arr-util_rkt.dep %%DATADIR%%/collects/racket/contract/private/compiled/arr-util_rkt.zo +%%DATADIR%%/collects/racket/contract/private/compiled/arrow-common_rkt.dep +%%DATADIR%%/collects/racket/contract/private/compiled/arrow-common_rkt.zo %%DATADIR%%/collects/racket/contract/private/compiled/arrow-higher-order_rkt.dep %%DATADIR%%/collects/racket/contract/private/compiled/arrow-higher-order_rkt.zo %%DATADIR%%/collects/racket/contract/private/compiled/arrow-val-first_rkt.dep %%DATADIR%%/collects/racket/contract/private/compiled/arrow-val-first_rkt.zo -%%DATADIR%%/collects/racket/contract/private/compiled/arrow_rkt.dep -%%DATADIR%%/collects/racket/contract/private/compiled/arrow_rkt.zo %%DATADIR%%/collects/racket/contract/private/compiled/base_rkt.dep %%DATADIR%%/collects/racket/contract/private/compiled/base_rkt.zo %%DATADIR%%/collects/racket/contract/private/compiled/basic-opters_rkt.dep @@ -715,8 +771,6 @@ man/man1/raco.1.gz %%DATADIR%%/collects/racket/contract/private/compiled/ds-helpers_rkt.zo %%DATADIR%%/collects/racket/contract/private/compiled/ds_rkt.dep %%DATADIR%%/collects/racket/contract/private/compiled/ds_rkt.zo -%%DATADIR%%/collects/racket/contract/private/compiled/env_rkt.dep -%%DATADIR%%/collects/racket/contract/private/compiled/env_rkt.zo %%DATADIR%%/collects/racket/contract/private/compiled/exists_rkt.dep %%DATADIR%%/collects/racket/contract/private/compiled/exists_rkt.zo %%DATADIR%%/collects/racket/contract/private/compiled/generate-base_rkt.dep @@ -733,6 +787,8 @@ man/man1/raco.1.gz %%DATADIR%%/collects/racket/contract/private/compiled/kwd-info-struct_rkt.zo %%DATADIR%%/collects/racket/contract/private/compiled/legacy_rkt.dep %%DATADIR%%/collects/racket/contract/private/compiled/legacy_rkt.zo +%%DATADIR%%/collects/racket/contract/private/compiled/list_rkt.dep +%%DATADIR%%/collects/racket/contract/private/compiled/list_rkt.zo %%DATADIR%%/collects/racket/contract/private/compiled/misc_rkt.dep %%DATADIR%%/collects/racket/contract/private/compiled/misc_rkt.zo %%DATADIR%%/collects/racket/contract/private/compiled/object_rkt.dep @@ -761,11 +817,14 @@ man/man1/raco.1.gz %%DATADIR%%/collects/racket/contract/private/compiled/struct-prop_rkt.zo %%DATADIR%%/collects/racket/contract/private/compiled/top-sort_rkt.dep %%DATADIR%%/collects/racket/contract/private/compiled/top-sort_rkt.zo +%%DATADIR%%/collects/racket/contract/private/compiled/types_rkt.dep +%%DATADIR%%/collects/racket/contract/private/compiled/types_rkt.zo +%%DATADIR%%/collects/racket/contract/private/compiled/unconstrained-domain-arrow_rkt.dep +%%DATADIR%%/collects/racket/contract/private/compiled/unconstrained-domain-arrow_rkt.zo %%DATADIR%%/collects/racket/contract/private/compiled/vector_rkt.dep %%DATADIR%%/collects/racket/contract/private/compiled/vector_rkt.zo %%DATADIR%%/collects/racket/contract/private/ds-helpers.rkt %%DATADIR%%/collects/racket/contract/private/ds.rkt -%%DATADIR%%/collects/racket/contract/private/env.rkt %%DATADIR%%/collects/racket/contract/private/exists.rkt %%DATADIR%%/collects/racket/contract/private/generate-base.rkt %%DATADIR%%/collects/racket/contract/private/generate.rkt @@ -774,6 +833,7 @@ man/man1/raco.1.gz %%DATADIR%%/collects/racket/contract/private/helpers.rkt %%DATADIR%%/collects/racket/contract/private/kwd-info-struct.rkt %%DATADIR%%/collects/racket/contract/private/legacy.rkt +%%DATADIR%%/collects/racket/contract/private/list.rkt %%DATADIR%%/collects/racket/contract/private/misc.rkt %%DATADIR%%/collects/racket/contract/private/object.rkt %%DATADIR%%/collects/racket/contract/private/opt-guts.rkt @@ -788,6 +848,8 @@ man/man1/raco.1.gz %%DATADIR%%/collects/racket/contract/private/struct-dc.rkt %%DATADIR%%/collects/racket/contract/private/struct-prop.rkt %%DATADIR%%/collects/racket/contract/private/top-sort.rkt +%%DATADIR%%/collects/racket/contract/private/types.rkt +%%DATADIR%%/collects/racket/contract/private/unconstrained-domain-arrow.rkt %%DATADIR%%/collects/racket/contract/private/vector.rkt %%DATADIR%%/collects/racket/contract/region.rkt %%DATADIR%%/collects/racket/control.rkt @@ -795,6 +857,7 @@ man/man1/raco.1.gz %%DATADIR%%/collects/racket/dict.rkt %%DATADIR%%/collects/racket/engine.rkt %%DATADIR%%/collects/racket/enter.rkt +%%DATADIR%%/collects/racket/exn.rkt %%DATADIR%%/collects/racket/extflonum.rkt %%DATADIR%%/collects/racket/fasl.rkt %%DATADIR%%/collects/racket/file.rkt @@ -808,6 +871,7 @@ man/man1/raco.1.gz %%DATADIR%%/collects/racket/gui/compiled/dynamic_rkt.dep %%DATADIR%%/collects/racket/gui/compiled/dynamic_rkt.zo %%DATADIR%%/collects/racket/gui/dynamic.rkt +%%DATADIR%%/collects/racket/hash.rkt %%DATADIR%%/collects/racket/help.rkt %%DATADIR%%/collects/racket/include.rkt %%DATADIR%%/collects/racket/info.rkt @@ -828,6 +892,7 @@ man/man1/raco.1.gz %%DATADIR%%/collects/racket/load/lang/compiled/reader_rkt.zo %%DATADIR%%/collects/racket/load/lang/reader.rkt %%DATADIR%%/collects/racket/local.rkt +%%DATADIR%%/collects/racket/logging.rkt %%DATADIR%%/collects/racket/main.rkt %%DATADIR%%/collects/racket/match.rkt %%DATADIR%%/collects/racket/match/compiled/compiler_rkt.dep @@ -882,6 +947,7 @@ man/man1/raco.1.gz %%DATADIR%%/collects/racket/match/stxtime.rkt %%DATADIR%%/collects/racket/match/syntax-local-match-introduce.rkt %%DATADIR%%/collects/racket/math.rkt +%%DATADIR%%/collects/racket/os.rkt %%DATADIR%%/collects/racket/path.rkt %%DATADIR%%/collects/racket/performance-hint.rkt %%DATADIR%%/collects/racket/place.rkt @@ -899,6 +965,7 @@ man/man1/raco.1.gz %%DATADIR%%/collects/racket/place/private/th-place.rkt %%DATADIR%%/collects/racket/port.rkt %%DATADIR%%/collects/racket/pretty.rkt +%%DATADIR%%/collects/racket/private/arity.rkt %%DATADIR%%/collects/racket/private/base.rkt %%DATADIR%%/collects/racket/private/case.rkt %%DATADIR%%/collects/racket/private/cert.rkt @@ -908,6 +975,8 @@ man/man1/raco.1.gz %%DATADIR%%/collects/racket/private/class-undef.rkt %%DATADIR%%/collects/racket/private/class-wrapped.rkt %%DATADIR%%/collects/racket/private/classidmap.rkt +%%DATADIR%%/collects/racket/private/compiled/arity_rkt.dep +%%DATADIR%%/collects/racket/private/compiled/arity_rkt.zo %%DATADIR%%/collects/racket/private/compiled/base_rkt.dep %%DATADIR%%/collects/racket/private/compiled/base_rkt.zo %%DATADIR%%/collects/racket/private/compiled/case_rkt.dep @@ -930,6 +999,8 @@ man/man1/raco.1.gz %%DATADIR%%/collects/racket/private/compiled/cond_rkt.zo %%DATADIR%%/collects/racket/private/compiled/custom-hash_rkt.dep %%DATADIR%%/collects/racket/private/compiled/custom-hash_rkt.zo +%%DATADIR%%/collects/racket/private/compiled/custom-write_rkt.dep +%%DATADIR%%/collects/racket/private/compiled/custom-write_rkt.zo %%DATADIR%%/collects/racket/private/compiled/define-et-al_rkt.dep %%DATADIR%%/collects/racket/private/compiled/define-et-al_rkt.zo %%DATADIR%%/collects/racket/private/compiled/define-struct_rkt.dep @@ -1070,12 +1141,17 @@ man/man1/raco.1.gz %%DATADIR%%/collects/racket/private/compiled/unit-syntax_rkt.zo %%DATADIR%%/collects/racket/private/compiled/unit-utils_rkt.dep %%DATADIR%%/collects/racket/private/compiled/unit-utils_rkt.zo +%%DATADIR%%/collects/racket/private/compiled/unix-rand_rkt.dep +%%DATADIR%%/collects/racket/private/compiled/unix-rand_rkt.zo %%DATADIR%%/collects/racket/private/compiled/vector-wraps_rkt.dep %%DATADIR%%/collects/racket/private/compiled/vector-wraps_rkt.zo +%%DATADIR%%/collects/racket/private/compiled/windows-rand_rkt.dep +%%DATADIR%%/collects/racket/private/compiled/windows-rand_rkt.zo %%DATADIR%%/collects/racket/private/compiled/with-stx_rkt.dep %%DATADIR%%/collects/racket/private/compiled/with-stx_rkt.zo %%DATADIR%%/collects/racket/private/cond.rkt %%DATADIR%%/collects/racket/private/custom-hash.rkt +%%DATADIR%%/collects/racket/private/custom-write.rkt %%DATADIR%%/collects/racket/private/define-et-al.rkt %%DATADIR%%/collects/racket/private/define-struct.rkt %%DATADIR%%/collects/racket/private/define.rkt @@ -1146,13 +1222,16 @@ man/man1/raco.1.gz %%DATADIR%%/collects/racket/private/unit-runtime.rkt %%DATADIR%%/collects/racket/private/unit-syntax.rkt %%DATADIR%%/collects/racket/private/unit-utils.rkt +%%DATADIR%%/collects/racket/private/unix-rand.rkt %%DATADIR%%/collects/racket/private/vector-wraps.rkt +%%DATADIR%%/collects/racket/private/windows-rand.rkt %%DATADIR%%/collects/racket/private/with-stx.rkt %%DATADIR%%/collects/racket/promise.rkt %%DATADIR%%/collects/racket/provide-syntax.rkt %%DATADIR%%/collects/racket/provide-transform.rkt %%DATADIR%%/collects/racket/provide.rkt %%DATADIR%%/collects/racket/racket.1 +%%DATADIR%%/collects/racket/random.rkt %%DATADIR%%/collects/racket/require-syntax.rkt %%DATADIR%%/collects/racket/require-transform.rkt %%DATADIR%%/collects/racket/require.rkt @@ -1173,6 +1252,7 @@ man/man1/raco.1.gz %%DATADIR%%/collects/racket/stream.rkt %%DATADIR%%/collects/racket/string.rkt %%DATADIR%%/collects/racket/struct-info.rkt +%%DATADIR%%/collects/racket/struct.rkt %%DATADIR%%/collects/racket/stxparam-exptime.rkt %%DATADIR%%/collects/racket/stxparam.rkt %%DATADIR%%/collects/racket/surrogate.rkt @@ -1223,14 +1303,19 @@ man/man1/raco.1.gz %%DATADIR%%/collects/s-exp/lang/compiled/reader_rkt.zo %%DATADIR%%/collects/s-exp/lang/reader.rkt %%DATADIR%%/collects/setup/collection-name.rkt +%%DATADIR%%/collects/setup/collection-search.rkt %%DATADIR%%/collects/setup/collects.rkt %%DATADIR%%/collects/setup/commands/compiled/link_rkt.dep %%DATADIR%%/collects/setup/commands/compiled/link_rkt.zo %%DATADIR%%/collects/setup/commands/link.rkt %%DATADIR%%/collects/setup/compiled/collection-name_rkt.dep %%DATADIR%%/collects/setup/compiled/collection-name_rkt.zo +%%DATADIR%%/collects/setup/compiled/collection-search_rkt.dep +%%DATADIR%%/collects/setup/compiled/collection-search_rkt.zo %%DATADIR%%/collects/setup/compiled/collects_rkt.dep %%DATADIR%%/collects/setup/compiled/collects_rkt.zo +%%DATADIR%%/collects/setup/compiled/cross-system_rkt.dep +%%DATADIR%%/collects/setup/compiled/cross-system_rkt.zo %%DATADIR%%/collects/setup/compiled/dirs_rkt.dep %%DATADIR%%/collects/setup/compiled/dirs_rkt.zo %%DATADIR%%/collects/setup/compiled/doc-db_rkt.dep @@ -1283,6 +1368,7 @@ man/man1/raco.1.gz %%DATADIR%%/collects/setup/compiled/winvers-change_rkt.zo %%DATADIR%%/collects/setup/compiled/winvers_rkt.dep %%DATADIR%%/collects/setup/compiled/winvers_rkt.zo +%%DATADIR%%/collects/setup/cross-system.rkt %%DATADIR%%/collects/setup/dirs.rkt %%DATADIR%%/collects/setup/doc-db.rkt %%DATADIR%%/collects/setup/getinfo.rkt @@ -1310,6 +1396,8 @@ man/man1/raco.1.gz %%DATADIR%%/collects/setup/private/compiled/cc-struct_rkt.zo %%DATADIR%%/collects/setup/private/compiled/command-name_rkt.dep %%DATADIR%%/collects/setup/private/compiled/command-name_rkt.zo +%%DATADIR%%/collects/setup/private/compiled/dirs_rkt.dep +%%DATADIR%%/collects/setup/private/compiled/dirs_rkt.zo %%DATADIR%%/collects/setup/private/compiled/dylib_rkt.dep %%DATADIR%%/collects/setup/private/compiled/dylib_rkt.zo %%DATADIR%%/collects/setup/private/compiled/elf_rkt.dep @@ -1322,6 +1410,7 @@ man/man1/raco.1.gz %%DATADIR%%/collects/setup/private/compiled/omitted-paths_rkt.zo %%DATADIR%%/collects/setup/private/compiled/pkg-deps_rkt.dep %%DATADIR%%/collects/setup/private/compiled/pkg-deps_rkt.zo +%%DATADIR%%/collects/setup/private/dirs.rkt %%DATADIR%%/collects/setup/private/dylib.rkt %%DATADIR%%/collects/setup/private/elf.rkt %%DATADIR%%/collects/setup/private/format-error.rkt @@ -1343,6 +1432,8 @@ man/man1/raco.1.gz %%DATADIR%%/collects/syntax/compiled/boundmap_rkt.zo %%DATADIR%%/collects/syntax/compiled/context_rkt.dep %%DATADIR%%/collects/syntax/compiled/context_rkt.zo +%%DATADIR%%/collects/syntax/compiled/contract_rkt.dep +%%DATADIR%%/collects/syntax/compiled/contract_rkt.zo %%DATADIR%%/collects/syntax/compiled/datum_rkt.dep %%DATADIR%%/collects/syntax/compiled/datum_rkt.zo %%DATADIR%%/collects/syntax/compiled/define_rkt.dep @@ -1355,14 +1446,20 @@ man/man1/raco.1.gz %%DATADIR%%/collects/syntax/compiled/for-body_rkt.zo %%DATADIR%%/collects/syntax/compiled/free-vars_rkt.dep %%DATADIR%%/collects/syntax/compiled/free-vars_rkt.zo +%%DATADIR%%/collects/syntax/compiled/id-set_rkt.dep +%%DATADIR%%/collects/syntax/compiled/id-set_rkt.zo %%DATADIR%%/collects/syntax/compiled/id-table_rkt.dep %%DATADIR%%/collects/syntax/compiled/id-table_rkt.zo +%%DATADIR%%/collects/syntax/compiled/intdef_rkt.dep +%%DATADIR%%/collects/syntax/compiled/intdef_rkt.zo %%DATADIR%%/collects/syntax/compiled/kerncase_rkt.dep %%DATADIR%%/collects/syntax/compiled/kerncase_rkt.zo %%DATADIR%%/collects/syntax/compiled/keyword_rkt.dep %%DATADIR%%/collects/syntax/compiled/keyword_rkt.zo %%DATADIR%%/collects/syntax/compiled/location_rkt.dep %%DATADIR%%/collects/syntax/compiled/location_rkt.zo +%%DATADIR%%/collects/syntax/compiled/macro-testing_rkt.dep +%%DATADIR%%/collects/syntax/compiled/macro-testing_rkt.zo %%DATADIR%%/collects/syntax/compiled/modcode_rkt.dep %%DATADIR%%/collects/syntax/compiled/modcode_rkt.zo %%DATADIR%%/collects/syntax/compiled/modcollapse_rkt.dep @@ -1401,11 +1498,14 @@ man/man1/raco.1.gz %%DATADIR%%/collects/syntax/compiled/to-string_rkt.zo %%DATADIR%%/collects/syntax/compiled/toplevel_rkt.dep %%DATADIR%%/collects/syntax/compiled/toplevel_rkt.zo +%%DATADIR%%/collects/syntax/compiled/transformer_rkt.dep +%%DATADIR%%/collects/syntax/compiled/transformer_rkt.zo %%DATADIR%%/collects/syntax/compiled/trusted-xforms_rkt.dep %%DATADIR%%/collects/syntax/compiled/trusted-xforms_rkt.zo %%DATADIR%%/collects/syntax/compiled/wrap-modbeg_rkt.dep %%DATADIR%%/collects/syntax/compiled/wrap-modbeg_rkt.zo %%DATADIR%%/collects/syntax/context.rkt +%%DATADIR%%/collects/syntax/contract.rkt %%DATADIR%%/collects/syntax/datum.rkt %%DATADIR%%/collects/syntax/define.rkt %%DATADIR%%/collects/syntax/doc.txt @@ -1413,10 +1513,13 @@ man/man1/raco.1.gz %%DATADIR%%/collects/syntax/flatten-begin.rkt %%DATADIR%%/collects/syntax/for-body.rkt %%DATADIR%%/collects/syntax/free-vars.rkt +%%DATADIR%%/collects/syntax/id-set.rkt %%DATADIR%%/collects/syntax/id-table.rkt +%%DATADIR%%/collects/syntax/intdef.rkt %%DATADIR%%/collects/syntax/kerncase.rkt %%DATADIR%%/collects/syntax/keyword.rkt %%DATADIR%%/collects/syntax/location.rkt +%%DATADIR%%/collects/syntax/macro-testing.rkt %%DATADIR%%/collects/syntax/modcode.rkt %%DATADIR%%/collects/syntax/modcollapse.rkt %%DATADIR%%/collects/syntax/moddep.rkt @@ -1435,6 +1538,8 @@ man/man1/raco.1.gz %%DATADIR%%/collects/syntax/parse/define.rkt %%DATADIR%%/collects/syntax/parse/experimental/compiled/contract_rkt.dep %%DATADIR%%/collects/syntax/parse/experimental/compiled/contract_rkt.zo +%%DATADIR%%/collects/syntax/parse/experimental/compiled/dset_rkt.dep +%%DATADIR%%/collects/syntax/parse/experimental/compiled/dset_rkt.zo %%DATADIR%%/collects/syntax/parse/experimental/compiled/eh_rkt.dep %%DATADIR%%/collects/syntax/parse/experimental/compiled/eh_rkt.zo %%DATADIR%%/collects/syntax/parse/experimental/compiled/provide_rkt.dep @@ -1448,6 +1553,7 @@ man/man1/raco.1.gz %%DATADIR%%/collects/syntax/parse/experimental/compiled/template_rkt.dep %%DATADIR%%/collects/syntax/parse/experimental/compiled/template_rkt.zo %%DATADIR%%/collects/syntax/parse/experimental/contract.rkt +%%DATADIR%%/collects/syntax/parse/experimental/dset.rkt %%DATADIR%%/collects/syntax/parse/experimental/eh.rkt %%DATADIR%%/collects/syntax/parse/experimental/private/compiled/substitute_rkt.dep %%DATADIR%%/collects/syntax/parse/experimental/private/compiled/substitute_rkt.zo @@ -1472,6 +1578,8 @@ man/man1/raco.1.gz %%DATADIR%%/collects/syntax/parse/private/compiled/lib_rkt.zo %%DATADIR%%/collects/syntax/parse/private/compiled/litconv_rkt.dep %%DATADIR%%/collects/syntax/parse/private/compiled/litconv_rkt.zo +%%DATADIR%%/collects/syntax/parse/private/compiled/make_rkt.dep +%%DATADIR%%/collects/syntax/parse/private/compiled/make_rkt.zo %%DATADIR%%/collects/syntax/parse/private/compiled/minimatch_rkt.dep %%DATADIR%%/collects/syntax/parse/private/compiled/minimatch_rkt.zo %%DATADIR%%/collects/syntax/parse/private/compiled/opt_rkt.dep @@ -1512,6 +1620,7 @@ man/man1/raco.1.gz %%DATADIR%%/collects/syntax/parse/private/kws.rkt %%DATADIR%%/collects/syntax/parse/private/lib.rkt %%DATADIR%%/collects/syntax/parse/private/litconv.rkt +%%DATADIR%%/collects/syntax/parse/private/make.rkt %%DATADIR%%/collects/syntax/parse/private/minimatch.rkt %%DATADIR%%/collects/syntax/parse/private/opt.rkt %%DATADIR%%/collects/syntax/parse/private/parse-aux.rkt @@ -1538,6 +1647,8 @@ man/man1/raco.1.gz %%DATADIR%%/collects/syntax/private/compiled/boundmap_rkt.zo %%DATADIR%%/collects/syntax/private/compiled/doctable_rkt.dep %%DATADIR%%/collects/syntax/private/compiled/doctable_rkt.zo +%%DATADIR%%/collects/syntax/private/compiled/id-set_rkt.dep +%%DATADIR%%/collects/syntax/private/compiled/id-set_rkt.zo %%DATADIR%%/collects/syntax/private/compiled/id-table_rkt.dep %%DATADIR%%/collects/syntax/private/compiled/id-table_rkt.zo %%DATADIR%%/collects/syntax/private/compiled/keyword_rkt.dep @@ -1549,6 +1660,7 @@ man/man1/raco.1.gz %%DATADIR%%/collects/syntax/private/compiled/template-runtime_rkt.dep %%DATADIR%%/collects/syntax/private/compiled/template-runtime_rkt.zo %%DATADIR%%/collects/syntax/private/doctable.rkt +%%DATADIR%%/collects/syntax/private/id-set.rkt %%DATADIR%%/collects/syntax/private/id-table.rkt %%DATADIR%%/collects/syntax/private/keyword.rkt %%DATADIR%%/collects/syntax/private/modcollapse-noctc.rkt @@ -1566,35 +1678,12 @@ man/man1/raco.1.gz %%DATADIR%%/collects/syntax/template.rkt %%DATADIR%%/collects/syntax/to-string.rkt %%DATADIR%%/collects/syntax/toplevel.rkt +%%DATADIR%%/collects/syntax/transformer.rkt %%DATADIR%%/collects/syntax/trusted-xforms.rkt %%DATADIR%%/collects/syntax/unsafe/compiled/for-transform_rkt.dep %%DATADIR%%/collects/syntax/unsafe/compiled/for-transform_rkt.zo %%DATADIR%%/collects/syntax/unsafe/for-transform.rkt %%DATADIR%%/collects/syntax/wrap-modbeg.rkt -%%DATADIR%%/collects/unstable/compiled/custom-write_rkt.dep -%%DATADIR%%/collects/unstable/compiled/custom-write_rkt.zo -%%DATADIR%%/collects/unstable/compiled/error_rkt.dep -%%DATADIR%%/collects/unstable/compiled/error_rkt.zo -%%DATADIR%%/collects/unstable/compiled/markparam_rkt.dep -%%DATADIR%%/collects/unstable/compiled/markparam_rkt.zo -%%DATADIR%%/collects/unstable/compiled/sequence_rkt.dep -%%DATADIR%%/collects/unstable/compiled/sequence_rkt.zo -%%DATADIR%%/collects/unstable/compiled/socket_rkt.dep -%%DATADIR%%/collects/unstable/compiled/socket_rkt.zo -%%DATADIR%%/collects/unstable/compiled/struct_rkt.dep -%%DATADIR%%/collects/unstable/compiled/struct_rkt.zo -%%DATADIR%%/collects/unstable/compiled/syntax_rkt.dep -%%DATADIR%%/collects/unstable/compiled/syntax_rkt.zo -%%DATADIR%%/collects/unstable/compiled/wrapc_rkt.dep -%%DATADIR%%/collects/unstable/compiled/wrapc_rkt.zo -%%DATADIR%%/collects/unstable/custom-write.rkt -%%DATADIR%%/collects/unstable/error.rkt -%%DATADIR%%/collects/unstable/markparam.rkt -%%DATADIR%%/collects/unstable/sequence.rkt -%%DATADIR%%/collects/unstable/socket.rkt -%%DATADIR%%/collects/unstable/struct.rkt -%%DATADIR%%/collects/unstable/syntax.rkt -%%DATADIR%%/collects/unstable/wrapc.rkt %%DATADIR%%/collects/version/check.rkt %%DATADIR%%/collects/version/compiled/check_rkt.dep %%DATADIR%%/collects/version/compiled/check_rkt.zo @@ -1648,5 +1737,3 @@ man/man1/raco.1.gz %%DATADIR%%/pkgs/pkgs.rktd %%DATADIR%%/pkgs/racket-lib/LICENSE.txt %%DATADIR%%/pkgs/racket-lib/info.rkt -%%ETCDIR%%/config.rktd -%%PORTDOCS%%@dir %%DOCSDIR%% Modified: head/lang/racket/Makefile ============================================================================== --- head/lang/racket/Makefile Mon Jul 4 13:53:28 2016 (r418027) +++ head/lang/racket/Makefile Mon Jul 4 14:06:48 2016 (r418028) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= racket -PORTVERSION= 6.2 +PORTVERSION= 6.5 CATEGORIES= lang scheme MASTER_SITES= http://mirror.racket-lang.org/installers/${PORTVERSION}/ \ http://www.cs.utah.edu/plt/installers/${PORTVERSION}/ \ @@ -10,45 +10,50 @@ MASTER_SITES= http://mirror.racket-lang. http://mirror.csclub.uwaterloo.ca/racket/racket-installers/${PORTVERSION}/ \ http://mirror.informatik.uni-tuebingen.de/mirror/racket/${PORTVERSION}/ \ http://racket.infogroep.be/${PORTVERSION}/ -DISTNAME= ${PORTNAME}-${PORTVERSION}-src +DISTNAME= ${PORTNAME}-${PORTVERSION}-src-builtpkgs DIST_SUBDIR= ${PORTNAME}/${PORTVERSION} MAINTAINER= olgeni@FreeBSD.org COMMENT= Interactive, integrated, graphical Scheme programming environment -LIB_DEPENDS= libffi.so:devel/libffi \ +LICENSE= LGPL3 + +LIB_DEPENDS= libffi.so:devel/libffi \ libcairo.so:graphics/cairo \ libpng.so:graphics/png MAKE_JOBS_UNSAFE=yes -OPTIONS_DEFINE= RACKET_PLACES -OPTIONS_DEFAULT= RACKET_PLACES -RACKET_PLACES_DESC= Enable Places -RACKET_PLACES_CONFIGURE_ENABLE= places - CONFLICTS= racket-minimal-[0-9]* GNU_CONFIGURE= yes -CONFIGURE_ARGS= --disable-lt --enable-shared --enable-pthread +CONFIGURE_ARGS= -enable-libffi --enable-pthread --enable-places --enable-shared CPPFLAGS+= -I${LOCALBASE}/include LIBS+= -L${LOCALBASE}/lib - WRKSRC= ${WRKDIR}/racket-${PORTVERSION}/src +PATCH_WRKSRC= ${WRKDIR}/racket-${PORTVERSION} USES= iconv jpeg libtool sqlite tar:tgz USE_LDCONFIG= yes -USE_GNOME= pango +REINPLACE_ARGS= -i "" +USE_GNOME= cairo pango -ONLY_FOR_ARCHS= i386 amd64 +OPTIONS_DEFINE= FUTURES +OPTIONS_DEFAULT=FUTURES -.include +OPTIONS_DEFINE_amd64= JIT +OPTIONS_DEFINE_i386= JIT +OPTIONS_DEFAULT_amd64= JIT +OPTIONS_DEFAULT_i386= JIT + +FUTURES_DESC= Enable futures +JIT_DESC= Enable JIT compiler +JIT_CFLAGS= -msse -msse2 -mfpmath=sse -.if ${ARCH} == "amd64" -CPPFLAGS+= -DLONG64 -.endif +FUTURES_CONFIGURE_ENABLE= futures +JIT_CONFIGURE_ENABLE= jit post-install: + ${FIND} ${STAGEDIR}${PREFIX} -type d -empty -delete ${REINPLACE_CMD} -e "s@${STAGEDIR}@@" ${STAGEDIR}${PREFIX}/share/applications/*.desktop - ${RM} ${STAGEDIR}${PREFIX}/share/applications/*.bak .include Modified: head/lang/racket/distinfo ============================================================================== --- head/lang/racket/distinfo Mon Jul 4 13:53:28 2016 (r418027) +++ head/lang/racket/distinfo Mon Jul 4 14:06:48 2016 (r418028) @@ -1,2 +1,3 @@ -SHA256 (racket/6.2/racket-6.2-src.tgz) = 1331113742b3b3c26b5b95242c714379f1e5f325fad824bb28eeb7b4be03e615 -SIZE (racket/6.2/racket-6.2-src.tgz) = 20109661 +TIMESTAMP = 1467016113 +SHA256 (racket/6.5/racket-6.5-src-builtpkgs.tgz) = 9cfd20e7b68f6e7effaef144e184d7e67e1a2bab1df2b1c0b5fce8581f4c9457 +SIZE (racket/6.5/racket-6.5-src-builtpkgs.tgz) = 125157499 Added: head/lang/racket/files/patch-share_pkgs_gui-lib_mred_private_wx_gtk_queue.rkt ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/lang/racket/files/patch-share_pkgs_gui-lib_mred_private_wx_gtk_queue.rkt Mon Jul 4 14:06:48 2016 (r418028) @@ -0,0 +1,19 @@ +--- share/pkgs/gui-lib/mred/private/wx/gtk/queue.rkt.orig 2016-04-22 21:19:48 UTC ++++ share/pkgs/gui-lib/mred/private/wx/gtk/queue.rkt +@@ -9,7 +9,6 @@ + "clipboard.rkt" + "const.rkt" + "w32.rkt" +- "unique.rkt" + "../common/keep-forever.rkt") + + (provide (protect-out gtk-start-event-pump +@@ -83,8 +82,6 @@ + (error (format + "Gtk initialization failed for display ~s" + (or display ":0")))) +- (when single-instance? +- (do-single-instance)) + (let ([v (scheme_register_process_global "Racket-GUI-wm-class" #f)]) + (when v + (gdk_set_program_class (cast v _pointer _string)))) Added: head/lang/racket/files/patch-src_racket_src_future.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/lang/racket/files/patch-src_racket_src_future.c Mon Jul 4 14:06:48 2016 (r418028) @@ -0,0 +1,179 @@ +--- src/racket/src/future.c.orig 2016-04-15 20:33:56 UTC ++++ src/racket/src/future.c +@@ -184,6 +184,11 @@ Scheme_Object *scheme_make_fsemaphore(in + return (Scheme_Object*)fsema; + } + ++static Scheme_Object *make_fsemaphore(int argc, Scheme_Object *argv[]) ++{ ++ return scheme_make_fsemaphore(argc, argv); ++} *** DIFF OUTPUT TRUNCATED AT 1000 LINES *** From owner-svn-ports-all@freebsd.org Mon Jul 4 14:07:16 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id F3C61B91AE9; Mon, 4 Jul 2016 14:07:15 +0000 (UTC) (envelope-from mat@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id C6E5B2A3B; Mon, 4 Jul 2016 14:07:15 +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 u64E7F8h021017; Mon, 4 Jul 2016 14:07:15 GMT (envelope-from mat@FreeBSD.org) Received: (from mat@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u64E7F0V021016; Mon, 4 Jul 2016 14:07:15 GMT (envelope-from mat@FreeBSD.org) Message-Id: <201607041407.u64E7F0V021016@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: mat set sender to mat@FreeBSD.org using -f From: Mathieu Arnold Date: Mon, 4 Jul 2016 14:07:15 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418029 - head/shells/bash X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Jul 2016 14:07:16 -0000 Author: mat Date: Mon Jul 4 14:07:14 2016 New Revision: 418029 URL: https://svnweb.freebsd.org/changeset/ports/418029 Log: Fix build on FreeBSD 9 WITHOUT=NLS. Sponsored by: Absolight Modified: head/shells/bash/Makefile (contents, props changed) Modified: head/shells/bash/Makefile ============================================================================== --- head/shells/bash/Makefile Mon Jul 4 14:06:48 2016 (r418028) +++ head/shells/bash/Makefile Mon Jul 4 14:07:14 2016 (r418029) @@ -90,9 +90,6 @@ post-patch: -e "s|/\*.*#define SYSLOG_HISTORY .*\*/|#define SYSLOG_HISTORY|g" \ ${WRKSRC}/config-top.h .endif -.if empty(PORT_OPTIONS:MNLS) - @${REINPLACE_CMD} -e "s|@LIBICONV@||g" ${WRKSRC}/Makefile.in -.endif post-configure: @${FIND} ${WRKSRC} -name Makefile -print0 | ${XARGS} -0 \ From owner-svn-ports-all@freebsd.org Mon Jul 4 14:10:03 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 00B2CB91BE0; Mon, 4 Jul 2016 14:10:03 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id C756D2C03; Mon, 4 Jul 2016 14:10:02 +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 u64EA24Z021219; Mon, 4 Jul 2016 14:10:02 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u64EA2RU021218; Mon, 4 Jul 2016 14:10:02 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201607041410.u64EA2RU021218@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Mon, 4 Jul 2016 14:10:02 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418030 - head/games/fmars X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Jul 2016 14:10:03 -0000 Author: amdmi3 Date: Mon Jul 4 14:10:01 2016 New Revision: 418030 URL: https://svnweb.freebsd.org/changeset/ports/418030 Log: - Simplify installation - Switch to options helpers Modified: head/games/fmars/Makefile Modified: head/games/fmars/Makefile ============================================================================== --- head/games/fmars/Makefile Mon Jul 4 14:07:14 2016 (r418029) +++ head/games/fmars/Makefile Mon Jul 4 14:10:01 2016 (r418030) @@ -30,18 +30,13 @@ post-patch: s|gcc -E|$$(CC) -E|' ${WRKSRC}/Makefile do-install: -# Program. - (cd ${WRKSRC} && ${INSTALL_PROGRAM} x${PORTNAME} \ - ${STAGEDIR}${PREFIX}/bin/${PORTNAME}) - -# Data. + ${INSTALL_PROGRAM} ${WRKSRC}/x${PORTNAME} \ + ${STAGEDIR}${PREFIX}/bin/${PORTNAME} @${MKDIR} ${STAGEDIR}${DATADIR} -.for d in rc rc-test - @(cd ${WRKSRC} && ${COPYTREE_SHARE} ${d} ${STAGEDIR}${DATADIR}) -.endfor + @(cd ${WRKSRC} && ${COPYTREE_SHARE} "rc rc-test" ${STAGEDIR}${DATADIR}) -# Documentation (optional). +do-install-DOCS-on: @${MKDIR} ${STAGEDIR}${DOCSDIR} - (cd ${WRKSRC} && ${INSTALL_DATA} README ${STAGEDIR}${DOCSDIR}) + ${INSTALL_DATA} ${WRKSRC}/README ${STAGEDIR}${DOCSDIR} .include From owner-svn-ports-all@freebsd.org Mon Jul 4 14:22:47 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 5AD37B910E7; Mon, 4 Jul 2016 14:22:47 +0000 (UTC) (envelope-from mat@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 2D5AA2550; Mon, 4 Jul 2016 14:22:47 +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 u64EMkZD028265; Mon, 4 Jul 2016 14:22:46 GMT (envelope-from mat@FreeBSD.org) Received: (from mat@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u64EMk2A028263; Mon, 4 Jul 2016 14:22:46 GMT (envelope-from mat@FreeBSD.org) Message-Id: <201607041422.u64EMk2A028263@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: mat set sender to mat@FreeBSD.org using -f From: Mathieu Arnold Date: Mon, 4 Jul 2016 14:22:46 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418031 - head/sysutils/iohyve X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Jul 2016 14:22:47 -0000 Author: mat Date: Mon Jul 4 14:22:46 2016 New Revision: 418031 URL: https://svnweb.freebsd.org/changeset/ports/418031 Log: Add missing plist. Sponsored by: Absolight Added: head/sysutils/iohyve/pkg-plist (contents, props changed) Modified: head/sysutils/iohyve/Makefile (contents, props changed) Modified: head/sysutils/iohyve/Makefile ============================================================================== --- head/sysutils/iohyve/Makefile Mon Jul 4 14:10:01 2016 (r418030) +++ head/sysutils/iohyve/Makefile Mon Jul 4 14:22:46 2016 (r418031) @@ -2,6 +2,7 @@ PORTNAME= iohyve PORTVERSION= 0.7.6 +PORTREVISION= 1 CATEGORIES= sysutils MAINTAINER= lme@FreeBSD.org Added: head/sysutils/iohyve/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/iohyve/pkg-plist Mon Jul 4 14:22:46 2016 (r418031) @@ -0,0 +1,12 @@ +etc/rc.d/iohyve +lib/iohyve/ioh-cmd +lib/iohyve/ioh-console +lib/iohyve/ioh-disk +lib/iohyve/ioh-firmware +lib/iohyve/ioh-guest +lib/iohyve/ioh-iso +lib/iohyve/ioh-setup +lib/iohyve/ioh-tap +lib/iohyve/ioh-zfs +man/man8/iohyve.8.gz +sbin/iohyve From owner-svn-ports-all@freebsd.org Mon Jul 4 14:42:09 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 6428BB91582; Mon, 4 Jul 2016 14:42:09 +0000 (UTC) (envelope-from matthew@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 19AAA2E70; Mon, 4 Jul 2016 14:42:09 +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 u64Eg8DW035051; Mon, 4 Jul 2016 14:42:08 GMT (envelope-from matthew@FreeBSD.org) Received: (from matthew@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u64Eg7bR035047; Mon, 4 Jul 2016 14:42:07 GMT (envelope-from matthew@FreeBSD.org) Message-Id: <201607041442.u64Eg7bR035047@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: matthew set sender to matthew@FreeBSD.org using -f From: Matthew Seaman Date: Mon, 4 Jul 2016 14:42:07 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418032 - in head/textproc: . py-awesome-slugify X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Jul 2016 14:42:09 -0000 Author: matthew Date: Mon Jul 4 14:42:07 2016 New Revision: 418032 URL: https://svnweb.freebsd.org/changeset/ports/418032 Log: Python flexible slugify function WWW: https://pypi.python.org/pypi/awesome-slugify Added: head/textproc/py-awesome-slugify/ head/textproc/py-awesome-slugify/Makefile (contents, props changed) head/textproc/py-awesome-slugify/distinfo (contents, props changed) head/textproc/py-awesome-slugify/pkg-descr (contents, props changed) Modified: head/textproc/Makefile Modified: head/textproc/Makefile ============================================================================== --- head/textproc/Makefile Mon Jul 4 14:22:46 2016 (r418031) +++ head/textproc/Makefile Mon Jul 4 14:42:07 2016 (r418032) @@ -1218,6 +1218,7 @@ SUBDIR += py-acora SUBDIR += py-alabaster SUBDIR += py-asv + SUBDIR += py-awesome-slugify SUBDIR += py-bugzillatools SUBDIR += py-chardet SUBDIR += py-cloud_sptheme Added: head/textproc/py-awesome-slugify/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/py-awesome-slugify/Makefile Mon Jul 4 14:42:07 2016 (r418032) @@ -0,0 +1,28 @@ +# $FreeBSD$ + +PORTNAME= awesome-slugify +PORTVERSION= 1.6.5 +CATEGORIES= textproc python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= matthew@FreeBSD.org +COMMENT= Flexible slugify function + +LICENSE= GPLv3 + +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}regex>=0:textproc/py-regex \ + ${PYTHON_PKGNAMEPREFIX}unidecode>=0.04.14:converters/py-unidecode +TEST_DEPENDS= ${PYTHON_PKGNAMEPREFIX}nose>=0:devel/py-nose + +USES= python +USE_PYTHON= autoplist distutils + +NO_ARCH= yes +TEST_TARGET= do-test +NOSETESTS= nosetests + +do-test: + ${NOSETESTS} ${STAGEDIR}${PYTHON_SITELIBDIR}/slugify + +.include Added: head/textproc/py-awesome-slugify/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/py-awesome-slugify/distinfo Mon Jul 4 14:42:07 2016 (r418032) @@ -0,0 +1,3 @@ +TIMESTAMP = 1467633317 +SHA256 (awesome-slugify-1.6.5.tar.gz) = bbdec3fa2187917473a2efad092b57f7125a55f841a7cf6a1773178d32ccfd71 +SIZE (awesome-slugify-1.6.5.tar.gz) = 8405 Added: head/textproc/py-awesome-slugify/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/py-awesome-slugify/pkg-descr Mon Jul 4 14:42:07 2016 (r418032) @@ -0,0 +1,3 @@ +Python flexible slugify function + +WWW: https://pypi.python.org/pypi/awesome-slugify From owner-svn-ports-all@freebsd.org Mon Jul 4 14:59:17 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 6DCCFB91AB3; Mon, 4 Jul 2016 14:59:17 +0000 (UTC) (envelope-from riggs@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 494ED256A; Mon, 4 Jul 2016 14:59:17 +0000 (UTC) (envelope-from riggs@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u64ExGY6039862; Mon, 4 Jul 2016 14:59:16 GMT (envelope-from riggs@FreeBSD.org) Received: (from riggs@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u64ExF37039855; Mon, 4 Jul 2016 14:59:15 GMT (envelope-from riggs@FreeBSD.org) Message-Id: <201607041459.u64ExF37039855@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: riggs set sender to riggs@FreeBSD.org using -f From: Thomas Zander Date: Mon, 4 Jul 2016 14:59:15 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418033 - in head/databases: mysql57-client mysql57-client/files mysql57-server mysql57-server/files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Jul 2016 14:59:17 -0000 Author: riggs Date: Mon Jul 4 14:59:15 2016 New Revision: 418033 URL: https://svnweb.freebsd.org/changeset/ports/418033 Log: Make my.cnf path correct according to hier(7), bump PORTREVISION PR: 209579 Submitted by: mokhi64@gmail.com Reviewed by: rootservice@gmail.com Modified: head/databases/mysql57-client/Makefile head/databases/mysql57-client/files/patch-mysys__ssl_my__default.cc head/databases/mysql57-server/Makefile head/databases/mysql57-server/files/mysql-server.in head/databases/mysql57-server/files/patch-mysys__ssl_my__default.cc head/databases/mysql57-server/pkg-message head/databases/mysql57-server/pkg-plist Modified: head/databases/mysql57-client/Makefile ============================================================================== --- head/databases/mysql57-client/Makefile Mon Jul 4 14:42:07 2016 (r418032) +++ head/databases/mysql57-client/Makefile Mon Jul 4 14:59:15 2016 (r418033) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= mysql -PORTREVISION?= 0 +PORTREVISION?= 1 PKGNAMESUFFIX= 57-client COMMENT= Multithreaded SQL database (client) Modified: head/databases/mysql57-client/files/patch-mysys__ssl_my__default.cc ============================================================================== --- head/databases/mysql57-client/files/patch-mysys__ssl_my__default.cc Mon Jul 4 14:42:07 2016 (r418032) +++ head/databases/mysql57-client/files/patch-mysys__ssl_my__default.cc Mon Jul 4 14:59:15 2016 (r418033) @@ -9,18 +9,48 @@ #define DEFAULT_DIRS_SIZE (MAX_DEFAULT_DIRS + 1) /* Terminate with NULL */ static const char **default_directories = NULL; -@@ -1409,7 +1409,10 @@ static const char **init_default_directo +@@ -909,6 +909,14 @@ + return 1; /* Ignore wrong files */ + } - #if defined(DEFAULT_SYSCONFDIR) - if (DEFAULT_SYSCONFDIR[0]) ++ if (strstr(name, "/etc") == name) + { - errors += add_directory(alloc, DEFAULT_SYSCONFDIR, dirs); -+ errors += add_directory(alloc, DEFAULT_SYSCONFDIR "/mysql", dirs); ++ fprintf(stderr, ++ "error: Config file %s in invalid location, please move to or merge with /usr/local%s\n", ++ name,name); ++ goto err; + } - #endif /* DEFAULT_SYSCONFDIR */ ++ + while (mysql_file_getline(buff, sizeof(buff) - 1, fp)) + { + line++; +@@ -1245,7 +1253,8 @@ + end[(strlen(end)-1)] = ' '; + else + strxmov(end, conf_file, *ext , " ", NullS); +- fputs(name, stdout); ++ if (strstr(name, "/etc") != name) ++ fputs(name, stdout); + } + } + } +@@ -1404,13 +1413,8 @@ + + #else + +- errors += add_directory(alloc, "/etc/", dirs); +- errors += add_directory(alloc, "/etc/mysql/", dirs); +- +-#if defined(DEFAULT_SYSCONFDIR) +- if (DEFAULT_SYSCONFDIR[0]) +- errors += add_directory(alloc, DEFAULT_SYSCONFDIR, dirs); +-#endif /* DEFAULT_SYSCONFDIR */ ++ errors += add_directory(alloc, "/usr/local/etc/", dirs); ++ errors += add_directory(alloc, "/usr/local/etc/mysql/", dirs); #endif -@@ -1480,7 +1483,7 @@ int check_file_permissions(const char *f + +@@ -1480,7 +1484,7 @@ MY_STAT stat_info; if (!my_stat(file_name,&stat_info,MYF(0))) Modified: head/databases/mysql57-server/Makefile ============================================================================== --- head/databases/mysql57-server/Makefile Mon Jul 4 14:42:07 2016 (r418032) +++ head/databases/mysql57-server/Makefile Mon Jul 4 14:59:15 2016 (r418033) @@ -3,7 +3,7 @@ PORTNAME?= mysql PORTVERSION= 5.7.13 -PORTREVISION?= 0 +PORTREVISION?= 1 CATEGORIES= databases ipv6 MASTER_SITES= MYSQL/MySQL-5.7 PKGNAMESUFFIX?= 57-server @@ -51,7 +51,6 @@ CMAKE_ARGS+= -DINSTALL_LAYOUT=FREEBSD \ -DINSTALL_SHAREDIR="share" \ -DINSTALL_SUPPORTFILESDIR="share/mysql" \ -DMYSQL_KEYRINGDIR="${ETCDIR}/keyring" \ - -DSYSCONFDIR="${ETCDIR}" \ -DWITH_BOOST="${WRKSRC}/boost" \ -DWITH_EDITLINE=system \ -DWITH_LIBEVENT=system \ Modified: head/databases/mysql57-server/files/mysql-server.in ============================================================================== --- head/databases/mysql57-server/files/mysql-server.in Mon Jul 4 14:42:07 2016 (r418032) +++ head/databases/mysql57-server/files/mysql-server.in Mon Jul 4 14:59:15 2016 (r418033) @@ -64,9 +64,11 @@ mysql_prestart() { if [ -f "${mysql_dbdir}/my.cnf" ]; then echo "" - echo "Please keep in mind that the default location for my.cnf will be changed" - echo "from \"%%MY_DBDIR%%/my.cnf\" to \"%%ETCDIR%%/my.cnf\" in the near" - echo "future. If you do not want to move your my.cnf to the new location then" + echo "Please keep in mind that the default location for my.cnf has changed" + echo "from \"%%MY_DBDIR%%/my.cnf\" to \"%%ETCDIR%%/my.cnf\". " + echo "Please merge your existing my.cnf with the new default and move" + echo "it to \"%%ETCDIR%%/my.cnf\"." + echo "If you do not want to move your my.cnf to the new location then" echo "you must set \"mysql_optfile\" in /etc/rc.conf to \"/var/db/mysql/my.cnf\"." echo "" fi Modified: head/databases/mysql57-server/files/patch-mysys__ssl_my__default.cc ============================================================================== --- head/databases/mysql57-server/files/patch-mysys__ssl_my__default.cc Mon Jul 4 14:42:07 2016 (r418032) +++ head/databases/mysql57-server/files/patch-mysys__ssl_my__default.cc Mon Jul 4 14:59:15 2016 (r418033) @@ -9,18 +9,48 @@ #define DEFAULT_DIRS_SIZE (MAX_DEFAULT_DIRS + 1) /* Terminate with NULL */ static const char **default_directories = NULL; -@@ -1409,7 +1409,10 @@ static const char **init_default_directo +@@ -909,6 +909,14 @@ + return 1; /* Ignore wrong files */ + } - #if defined(DEFAULT_SYSCONFDIR) - if (DEFAULT_SYSCONFDIR[0]) ++ if (strstr(name, "/etc") == name) + { - errors += add_directory(alloc, DEFAULT_SYSCONFDIR, dirs); -+ errors += add_directory(alloc, DEFAULT_SYSCONFDIR "/mysql", dirs); ++ fprintf(stderr, ++ "error: Config file %s in invalid location, please move to or merge with /usr/local%s\n", ++ name,name); ++ goto err; + } - #endif /* DEFAULT_SYSCONFDIR */ ++ + while (mysql_file_getline(buff, sizeof(buff) - 1, fp)) + { + line++; +@@ -1245,7 +1253,8 @@ + end[(strlen(end)-1)] = ' '; + else + strxmov(end, conf_file, *ext , " ", NullS); +- fputs(name, stdout); ++ if (strstr(name, "/etc") != name) ++ fputs(name, stdout); + } + } + } +@@ -1404,13 +1413,8 @@ + + #else + +- errors += add_directory(alloc, "/etc/", dirs); +- errors += add_directory(alloc, "/etc/mysql/", dirs); +- +-#if defined(DEFAULT_SYSCONFDIR) +- if (DEFAULT_SYSCONFDIR[0]) +- errors += add_directory(alloc, DEFAULT_SYSCONFDIR, dirs); +-#endif /* DEFAULT_SYSCONFDIR */ ++ errors += add_directory(alloc, "/usr/local/etc/", dirs); ++ errors += add_directory(alloc, "/usr/local/etc/mysql/", dirs); #endif -@@ -1480,7 +1483,7 @@ int check_file_permissions(const char *f + +@@ -1480,7 +1484,7 @@ MY_STAT stat_info; if (!my_stat(file_name,&stat_info,MYF(0))) Modified: head/databases/mysql57-server/pkg-message ============================================================================== --- head/databases/mysql57-server/pkg-message Mon Jul 4 14:42:07 2016 (r418032) +++ head/databases/mysql57-server/pkg-message Mon Jul 4 14:59:15 2016 (r418033) @@ -11,9 +11,10 @@ in /root/.mysql_secret ***************************************************************************** -Please keep in mind that the default location for my.cnf will be changed -from "/var/db/mysql/my.cnf" to "/usr/local/etc/mysql/my.cnf" in the near -future. If you do not want to move your my.cnf to the new location then -you must set "mysql_optfile" in /etc/rc.conf to "/var/db/mysql/my.cnf". +The default location for my.cnf has changed from "/var/db/mysql/my.cnf" to +"/usr/local/etc/mysql/my.cnf". Existing my.cnf files must be merged manually +with the new default and moved to the new location. To continue using the +my.cnf file at the old location, set "mysql_optfile" in /etc/rc.conf to +point to the location of the existing my.cnf file. ***************************************************************************** Modified: head/databases/mysql57-server/pkg-plist ============================================================================== --- head/databases/mysql57-server/pkg-plist Mon Jul 4 14:42:07 2016 (r418032) +++ head/databases/mysql57-server/pkg-plist Mon Jul 4 14:59:15 2016 (r418033) @@ -62,6 +62,8 @@ lib/mysql/plugin/rewriter.so lib/mysql/plugin/semisync_master.so lib/mysql/plugin/semisync_slave.so lib/mysql/plugin/test_security_context.so +lib/mysql/plugin/keyring_udf.so +lib/mysql/plugin/test_udf_services.so lib/mysql/plugin/validate_password.so lib/mysql/plugin/version_token.so libdata/pkgconfig/LIBMYSQL_OS_OUTPUT_NAME-NOTFOUND.pc From owner-svn-ports-all@freebsd.org Mon Jul 4 15:00:45 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 35A5EB91B0B; Mon, 4 Jul 2016 15:00:45 +0000 (UTC) (envelope-from riggs@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 02CDE2678; Mon, 4 Jul 2016 15:00:44 +0000 (UTC) (envelope-from riggs@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u64F0ibc040067; Mon, 4 Jul 2016 15:00:44 GMT (envelope-from riggs@FreeBSD.org) Received: (from riggs@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u64F0iTj040066; Mon, 4 Jul 2016 15:00:44 GMT (envelope-from riggs@FreeBSD.org) Message-Id: <201607041500.u64F0iTj040066@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: riggs set sender to riggs@FreeBSD.org using -f From: Thomas Zander Date: Mon, 4 Jul 2016 15:00:44 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418034 - head X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Jul 2016 15:00:45 -0000 Author: riggs Date: Mon Jul 4 15:00:43 2016 New Revision: 418034 URL: https://svnweb.freebsd.org/changeset/ports/418034 Log: Document change of default location for my.cnf for databases/mysql57-* PR: 209579 Submitted by: mokhi64@gmail.com Reviewed by: rootservice@gmail.com Modified: head/UPDATING Modified: head/UPDATING ============================================================================== --- head/UPDATING Mon Jul 4 14:59:15 2016 (r418033) +++ head/UPDATING Mon Jul 4 15:00:43 2016 (r418034) @@ -5,6 +5,17 @@ they are unavoidable. You should get into the habit of checking this file for changes each time you update your ports collection, before attempting any port upgrades. + +20160704: + AFFECTS: users of databases/mysql57-* + AUTHOR: riggs@FreeBSD.org + + The default location for my.cnf has changed from "/var/db/mysql/my.cnf" + to "/usr/local/etc/mysql/my.cnf". Existing my.cnf files must be merged + manually with the new default and moved to the new location. To + continue using the my.cnf file at the old location, set "mysql_optfile" + in /etc/rc.conf to point to the location of the existing my.cnf file. + 20160701: AFFECTS: users of www/node5 AUTHOR: bradleythughes@fastmail.fm From owner-svn-ports-all@freebsd.org Mon Jul 4 15:25:18 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 23E2DB910C1; Mon, 4 Jul 2016 15:25:18 +0000 (UTC) (envelope-from matthew@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id CCC7021DC; Mon, 4 Jul 2016 15:25:17 +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 u64FPHhc051072; Mon, 4 Jul 2016 15:25:17 GMT (envelope-from matthew@FreeBSD.org) Received: (from matthew@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u64FPG8J051068; Mon, 4 Jul 2016 15:25:16 GMT (envelope-from matthew@FreeBSD.org) Message-Id: <201607041525.u64FPG8J051068@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: matthew set sender to matthew@FreeBSD.org using -f From: Matthew Seaman Date: Mon, 4 Jul 2016 15:25:16 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418035 - in head/textproc: . py-agate X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Jul 2016 15:25:18 -0000 Author: matthew Date: Mon Jul 4 15:25:16 2016 New Revision: 418035 URL: https://svnweb.freebsd.org/changeset/ports/418035 Log: agate is a Python data analysis library that is optimized for humans instead of machines. It is an alternative to numpy and pandas that solves real-world problems with readable code. agate was previously known as journalism. WWW: http://agate.rtfd.org/ Added: head/textproc/py-agate/ head/textproc/py-agate/Makefile (contents, props changed) head/textproc/py-agate/distinfo (contents, props changed) head/textproc/py-agate/pkg-descr (contents, props changed) Modified: head/textproc/Makefile Modified: head/textproc/Makefile ============================================================================== --- head/textproc/Makefile Mon Jul 4 15:00:43 2016 (r418034) +++ head/textproc/Makefile Mon Jul 4 15:25:16 2016 (r418035) @@ -1216,6 +1216,7 @@ SUBDIR += py-MarkupSafe SUBDIR += py-Tempita SUBDIR += py-acora + SUBDIR += py-agate SUBDIR += py-alabaster SUBDIR += py-asv SUBDIR += py-awesome-slugify Added: head/textproc/py-agate/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/py-agate/Makefile Mon Jul 4 15:25:16 2016 (r418035) @@ -0,0 +1,26 @@ +# $FreeBSD$ + +PORTNAME= agate +PORTVERSION= 1.4.0 +CATEGORIES= textproc python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= matthew@FreeBSD.org +COMMENT= Data analysis library optimized for humans + +LICENSE= MIT + +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}six>=1.6.1:devel/py-six \ + ${PYTHON_PKGNAMEPREFIX}pytimeparse>=1.1.5:devel/py-pytimeparse \ + ${PYTHON_PKGNAMEPREFIX}Babel>=2.0:devel/py-babel \ + ${PYTHON_PKGNAMEPREFIX}parsedatetime>=2.1:devel/py-parsedatetime \ + ${PYTHON_PKGNAMEPREFIX}isodate>=0.5.4:devel/py-isodate \ + ${PYTHON_PKGNAMEPREFIX}awesome-slugify>=1.6.5:textproc/py-awesome-slugify + +USES= python +USE_PYTHON= autoplist distutils + +NO_ARCH= yes + +.include Added: head/textproc/py-agate/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/py-agate/distinfo Mon Jul 4 15:25:16 2016 (r418035) @@ -0,0 +1,3 @@ +TIMESTAMP = 1467645785 +SHA256 (agate-1.4.0.tar.gz) = 4436fca90177886e7747ce0a2dc293c3a49d4152baead4784c8da80861085eaf +SIZE (agate-1.4.0.tar.gz) = 47345 Added: head/textproc/py-agate/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/py-agate/pkg-descr Mon Jul 4 15:25:16 2016 (r418035) @@ -0,0 +1,7 @@ +agate is a Python data analysis library that is optimized for humans +instead of machines. It is an alternative to numpy and pandas that +solves real-world problems with readable code. + +agate was previously known as journalism. + +WWW: http://agate.rtfd.org/ From owner-svn-ports-all@freebsd.org Mon Jul 4 15:29:47 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 82C85B911A3; Mon, 4 Jul 2016 15:29:47 +0000 (UTC) (envelope-from royger@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 5B6542455; Mon, 4 Jul 2016 15:29:47 +0000 (UTC) (envelope-from royger@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u64FTk43051389; Mon, 4 Jul 2016 15:29:46 GMT (envelope-from royger@FreeBSD.org) Received: (from royger@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u64FTkaa051384; Mon, 4 Jul 2016 15:29:46 GMT (envelope-from royger@FreeBSD.org) Message-Id: <201607041529.u64FTkaa051384@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: royger set sender to royger@FreeBSD.org using -f From: =?UTF-8?Q?Roger_Pau_Monn=c3=a9?= Date: Mon, 4 Jul 2016 15:29:46 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418036 - in head: emulators/xen emulators/xen-kernel sysutils/xen-tools X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Jul 2016 15:29:47 -0000 Author: royger (src committer) Date: Mon Jul 4 15:29:45 2016 New Revision: 418036 URL: https://svnweb.freebsd.org/changeset/ports/418036 Log: xen: update to final 4.7.0 Sponsored by: Citrix Systems R&D Modified: head/emulators/xen-kernel/Makefile head/emulators/xen-kernel/distinfo head/emulators/xen/Makefile head/sysutils/xen-tools/Makefile head/sysutils/xen-tools/distinfo Modified: head/emulators/xen-kernel/Makefile ============================================================================== --- head/emulators/xen-kernel/Makefile Mon Jul 4 15:25:16 2016 (r418035) +++ head/emulators/xen-kernel/Makefile Mon Jul 4 15:29:45 2016 (r418036) @@ -3,11 +3,9 @@ PORTNAME= xen PKGNAMESUFFIX= -kernel PORTVERSION= 4.7.0 -PORTREVISION= 1 -RCVERSION= 6 -DISTNAME= ${PORTNAME}-${DISTVERSION}-rc${RCVERSION} +PORTREVISION= 2 CATEGORIES= emulators -MASTER_SITES= http://bits.xensource.com/oss-xen/release/${DISTVERSION}-rc${RCVERSION}/ +MASTER_SITES= http://bits.xensource.com/oss-xen/release/${PORTVERSION}/ MAINTAINER= royger@FreeBSD.org COMMENT= Hypervisor using a microkernel design Modified: head/emulators/xen-kernel/distinfo ============================================================================== --- head/emulators/xen-kernel/distinfo Mon Jul 4 15:25:16 2016 (r418035) +++ head/emulators/xen-kernel/distinfo Mon Jul 4 15:29:45 2016 (r418036) @@ -1,3 +1,3 @@ -TIMESTAMP = 1466081623 -SHA256 (xen-4.7.0-rc6.tar.gz) = d25e5e84b4d8f279be9a1a42b5c07c1b50cff48b49201e32ebf3809df187b428 -SIZE (xen-4.7.0-rc6.tar.gz) = 20707097 +TIMESTAMP = 1467644898 +SHA256 (xen-4.7.0.tar.gz) = be5876144d49729572ae06142e0bb93f1c1f2695578141eff2931995add24623 +SIZE (xen-4.7.0.tar.gz) = 20702550 Modified: head/emulators/xen/Makefile ============================================================================== --- head/emulators/xen/Makefile Mon Jul 4 15:25:16 2016 (r418035) +++ head/emulators/xen/Makefile Mon Jul 4 15:29:45 2016 (r418036) @@ -2,7 +2,7 @@ PORTNAME= xen PORTVERSION= 4.7.0 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= emulators MAINTAINER= royger@FreeBSD.org Modified: head/sysutils/xen-tools/Makefile ============================================================================== --- head/sysutils/xen-tools/Makefile Mon Jul 4 15:25:16 2016 (r418035) +++ head/sysutils/xen-tools/Makefile Mon Jul 4 15:29:45 2016 (r418036) @@ -3,11 +3,9 @@ PORTNAME= xen PKGNAMESUFFIX= -tools PORTVERSION= 4.7.0 -PORTREVISION= 1 -RCVERSION= 6 -DISTNAME= ${PORTNAME}-${DISTVERSION}-rc${RCVERSION} +PORTREVISION= 2 CATEGORIES= sysutils emulators -MASTER_SITES= http://bits.xensource.com/oss-xen/release/${DISTVERSION}-rc${RCVERSION}/ +MASTER_SITES= http://bits.xensource.com/oss-xen/release/${PORTVERSION}/ MAINTAINER= royger@FreeBSD.org COMMENT= Xen management tool, based on LibXenlight Modified: head/sysutils/xen-tools/distinfo ============================================================================== --- head/sysutils/xen-tools/distinfo Mon Jul 4 15:25:16 2016 (r418035) +++ head/sysutils/xen-tools/distinfo Mon Jul 4 15:29:45 2016 (r418036) @@ -1,3 +1,3 @@ -TIMESTAMP = 1466081611 -SHA256 (xen-4.7.0-rc6.tar.gz) = d25e5e84b4d8f279be9a1a42b5c07c1b50cff48b49201e32ebf3809df187b428 -SIZE (xen-4.7.0-rc6.tar.gz) = 20707097 +TIMESTAMP = 1467644940 +SHA256 (xen-4.7.0.tar.gz) = be5876144d49729572ae06142e0bb93f1c1f2695578141eff2931995add24623 +SIZE (xen-4.7.0.tar.gz) = 20702550 From owner-svn-ports-all@freebsd.org Mon Jul 4 15:38:41 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id A8034B913DC; Mon, 4 Jul 2016 15:38:41 +0000 (UTC) (envelope-from matthew@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 6AC6629C6; Mon, 4 Jul 2016 15:38:41 +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 u64FceI1055113; Mon, 4 Jul 2016 15:38:40 GMT (envelope-from matthew@FreeBSD.org) Received: (from matthew@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u64FcenC055109; Mon, 4 Jul 2016 15:38:40 GMT (envelope-from matthew@FreeBSD.org) Message-Id: <201607041538.u64FcenC055109@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: matthew set sender to matthew@FreeBSD.org using -f From: Matthew Seaman Date: Mon, 4 Jul 2016 15:38:40 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418037 - in head/textproc: . py-dbf X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Jul 2016 15:38:41 -0000 Author: matthew Date: Mon Jul 4 15:38:40 2016 New Revision: 418037 URL: https://svnweb.freebsd.org/changeset/ports/418037 Log: Pure python package for reading/writing dBase, FoxPro, and Visual FoxPro .dbf files (including memos) Currently supports dBase III, Clipper, FoxPro, and Visual FoxPro tables. Text is returned as unicode, and codepage settings in tables are honored. Memos and Null fields are supported. WWW: https://pypi.python.org/pypi/dbf Added: head/textproc/py-dbf/ head/textproc/py-dbf/Makefile (contents, props changed) head/textproc/py-dbf/distinfo (contents, props changed) head/textproc/py-dbf/pkg-descr (contents, props changed) Modified: head/textproc/Makefile Modified: head/textproc/Makefile ============================================================================== --- head/textproc/Makefile Mon Jul 4 15:29:45 2016 (r418036) +++ head/textproc/Makefile Mon Jul 4 15:38:40 2016 (r418037) @@ -1224,6 +1224,7 @@ SUBDIR += py-chardet SUBDIR += py-cloud_sptheme SUBDIR += py-creole + SUBDIR += py-dbf SUBDIR += py-dbfread SUBDIR += py-diff-match-patch SUBDIR += py-docutils Added: head/textproc/py-dbf/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/py-dbf/Makefile Mon Jul 4 15:38:40 2016 (r418037) @@ -0,0 +1,21 @@ +# $FreeBSD$ + +PORTNAME= dbf +DISTVERSION= 0.96.7 +CATEGORIES= textproc python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= matthew@FreeBSD.org +COMMENT= Read and write DBF files + +LICENSE= BSD3CLAUSE + +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}enum34>0:devel/py-enum34 + +USES= python +USE_PYTHON= autoplist distutils + +NO_ARCH= yes + +.include Added: head/textproc/py-dbf/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/py-dbf/distinfo Mon Jul 4 15:38:40 2016 (r418037) @@ -0,0 +1,3 @@ +TIMESTAMP = 1467646228 +SHA256 (dbf-0.96.7.tar.gz) = db7fbea41fa16aedc49397b9f768526ea47f40856ccb9036ae1adab53735e587 +SIZE (dbf-0.96.7.tar.gz) = 184153 Added: head/textproc/py-dbf/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/py-dbf/pkg-descr Mon Jul 4 15:38:40 2016 (r418037) @@ -0,0 +1,8 @@ +Pure python package for reading/writing dBase, FoxPro, and Visual +FoxPro .dbf files (including memos) + +Currently supports dBase III, Clipper, FoxPro, and Visual FoxPro +tables. Text is returned as unicode, and codepage settings in tables +are honored. Memos and Null fields are supported. + +WWW: https://pypi.python.org/pypi/dbf From owner-svn-ports-all@freebsd.org Mon Jul 4 15:49:17 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id E4259B91587; Mon, 4 Jul 2016 15:49:17 +0000 (UTC) (envelope-from matthew@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 9CD4D2DB1; Mon, 4 Jul 2016 15:49:17 +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 u64FnGjb059065; Mon, 4 Jul 2016 15:49:16 GMT (envelope-from matthew@FreeBSD.org) Received: (from matthew@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u64FnGZf059061; Mon, 4 Jul 2016 15:49:16 GMT (envelope-from matthew@FreeBSD.org) Message-Id: <201607041549.u64FnGZf059061@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: matthew set sender to matthew@FreeBSD.org using -f From: Matthew Seaman Date: Mon, 4 Jul 2016 15:49:16 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418038 - in head/textproc: . py-agate-dbf X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Jul 2016 15:49:18 -0000 Author: matthew Date: Mon Jul 4 15:49:16 2016 New Revision: 418038 URL: https://svnweb.freebsd.org/changeset/ports/418038 Log: agate-dbf adds read support for dbf files to agate WWW: http://agate-dbf.rtfd.org/ Added: head/textproc/py-agate-dbf/ head/textproc/py-agate-dbf/Makefile (contents, props changed) head/textproc/py-agate-dbf/distinfo (contents, props changed) head/textproc/py-agate-dbf/pkg-descr (contents, props changed) Modified: head/textproc/Makefile Modified: head/textproc/Makefile ============================================================================== --- head/textproc/Makefile Mon Jul 4 15:38:40 2016 (r418037) +++ head/textproc/Makefile Mon Jul 4 15:49:16 2016 (r418038) @@ -1217,6 +1217,7 @@ SUBDIR += py-Tempita SUBDIR += py-acora SUBDIR += py-agate + SUBDIR += py-agate-dbf SUBDIR += py-alabaster SUBDIR += py-asv SUBDIR += py-awesome-slugify Added: head/textproc/py-agate-dbf/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/py-agate-dbf/Makefile Mon Jul 4 15:49:16 2016 (r418038) @@ -0,0 +1,22 @@ +# $FreeBSD$ + +PORTNAME= agate-dbf +PORTVERSION= 0.1.0 +CATEGORIES= textproc python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= matthew@FreeBSD.org +COMMENT= Support reading dbf files for agate + +LICENSE= MIT + +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}agate>=1.2.2:textproc/py-agate \ + ${PYTHON_PKGNAMEPREFIX}dbfread>=2.0.5:textproc/py-dbfread + +USES= python +USE_PYTHON= autoplist distutils + +NO_ARCH= yes + +.include Added: head/textproc/py-agate-dbf/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/py-agate-dbf/distinfo Mon Jul 4 15:49:16 2016 (r418038) @@ -0,0 +1,3 @@ +TIMESTAMP = 1463409454 +SHA256 (agate-dbf-0.1.0.tar.gz) = ffd9bfc7c04fc3ce1c54522f41aeccba5a7f3cee951b26c8a0ab1348c940ff77 +SIZE (agate-dbf-0.1.0.tar.gz) = 2147 Added: head/textproc/py-agate-dbf/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/py-agate-dbf/pkg-descr Mon Jul 4 15:49:16 2016 (r418038) @@ -0,0 +1,3 @@ +agate-dbf adds read support for dbf files to agate + +WWW: http://agate-dbf.rtfd.org/ From owner-svn-ports-all@freebsd.org Mon Jul 4 15:52:47 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 05CB3B9184E; Mon, 4 Jul 2016 15:52:47 +0000 (UTC) (envelope-from junovitch@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id CA9AB21C6; Mon, 4 Jul 2016 15:52:46 +0000 (UTC) (envelope-from junovitch@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u64Fqke3062678; Mon, 4 Jul 2016 15:52:46 GMT (envelope-from junovitch@FreeBSD.org) Received: (from junovitch@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u64FqjhA062676; Mon, 4 Jul 2016 15:52:45 GMT (envelope-from junovitch@FreeBSD.org) Message-Id: <201607041552.u64FqjhA062676@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: junovitch set sender to junovitch@FreeBSD.org using -f From: Jason Unovitch Date: Mon, 4 Jul 2016 15:52:45 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r418039 - branches/2016Q3/sysutils/iohyve X-SVN-Group: ports-branches MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Jul 2016 15:52:47 -0000 Author: junovitch Date: Mon Jul 4 15:52:45 2016 New Revision: 418039 URL: https://svnweb.freebsd.org/changeset/ports/418039 Log: MFH: r418031 Add missing plist. Sponsored by: Absolight Approved by: ports-secteam (with hat) Added: branches/2016Q3/sysutils/iohyve/pkg-plist - copied unchanged from r418031, head/sysutils/iohyve/pkg-plist Modified: branches/2016Q3/sysutils/iohyve/Makefile Directory Properties: branches/2016Q3/ (props changed) Modified: branches/2016Q3/sysutils/iohyve/Makefile ============================================================================== --- branches/2016Q3/sysutils/iohyve/Makefile Mon Jul 4 15:49:16 2016 (r418038) +++ branches/2016Q3/sysutils/iohyve/Makefile Mon Jul 4 15:52:45 2016 (r418039) @@ -2,6 +2,7 @@ PORTNAME= iohyve PORTVERSION= 0.7.6 +PORTREVISION= 1 CATEGORIES= sysutils MAINTAINER= lme@FreeBSD.org Copied: branches/2016Q3/sysutils/iohyve/pkg-plist (from r418031, head/sysutils/iohyve/pkg-plist) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2016Q3/sysutils/iohyve/pkg-plist Mon Jul 4 15:52:45 2016 (r418039, copy of r418031, head/sysutils/iohyve/pkg-plist) @@ -0,0 +1,12 @@ +etc/rc.d/iohyve +lib/iohyve/ioh-cmd +lib/iohyve/ioh-console +lib/iohyve/ioh-disk +lib/iohyve/ioh-firmware +lib/iohyve/ioh-guest +lib/iohyve/ioh-iso +lib/iohyve/ioh-setup +lib/iohyve/ioh-tap +lib/iohyve/ioh-zfs +man/man8/iohyve.8.gz +sbin/iohyve From owner-svn-ports-all@freebsd.org Mon Jul 4 15:59:47 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id EE364B9195E; Mon, 4 Jul 2016 15:59:47 +0000 (UTC) (envelope-from matthew@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 97FC124C8; Mon, 4 Jul 2016 15:59:47 +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 u64FxkrD063088; Mon, 4 Jul 2016 15:59:46 GMT (envelope-from matthew@FreeBSD.org) Received: (from matthew@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u64Fxk5W063084; Mon, 4 Jul 2016 15:59:46 GMT (envelope-from matthew@FreeBSD.org) Message-Id: <201607041559.u64Fxk5W063084@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: matthew set sender to matthew@FreeBSD.org using -f From: Matthew Seaman Date: Mon, 4 Jul 2016 15:59:46 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418040 - in head/textproc: . py-agate-excel X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Jul 2016 15:59:48 -0000 Author: matthew Date: Mon Jul 4 15:59:46 2016 New Revision: 418040 URL: https://svnweb.freebsd.org/changeset/ports/418040 Log: agate-excel adds read support for Excel files (xls and xlsx) to agate. WWW: http://agate-excel.rtfd.org/ Added: head/textproc/py-agate-excel/ head/textproc/py-agate-excel/Makefile (contents, props changed) head/textproc/py-agate-excel/distinfo (contents, props changed) head/textproc/py-agate-excel/pkg-descr (contents, props changed) Modified: head/textproc/Makefile Modified: head/textproc/Makefile ============================================================================== --- head/textproc/Makefile Mon Jul 4 15:52:45 2016 (r418039) +++ head/textproc/Makefile Mon Jul 4 15:59:46 2016 (r418040) @@ -1218,6 +1218,7 @@ SUBDIR += py-acora SUBDIR += py-agate SUBDIR += py-agate-dbf + SUBDIR += py-agate-excel SUBDIR += py-alabaster SUBDIR += py-asv SUBDIR += py-awesome-slugify Added: head/textproc/py-agate-excel/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/py-agate-excel/Makefile Mon Jul 4 15:59:46 2016 (r418040) @@ -0,0 +1,23 @@ +# $FreeBSD$ + +PORTNAME= agate-excel +PORTVERSION= 0.1.0 +CATEGORIES= textproc python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= matthew@FreeBSD.org +COMMENT= Support reading Excel files for agate + +LICENSE= MIT + +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}agate>=1.2.2:textproc/py-agate \ + ${PYTHON_PKGNAMEPREFIX}xlrd>=0.9.4:textproc/py-xlrd \ + ${PYTHON_PKGNAMEPREFIX}openpyxl>=2.3.0:textproc/py-openpyxl + +USES= python +USE_PYTHON= autoplist distutils + +NO_ARCH= yes + +.include Added: head/textproc/py-agate-excel/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/py-agate-excel/distinfo Mon Jul 4 15:59:46 2016 (r418040) @@ -0,0 +1,3 @@ +TIMESTAMP = 1463408146 +SHA256 (agate-excel-0.1.0.tar.gz) = 5341b08ffa6882b5b558d97b431ff122cd4c178fd5fb884a831f71ccef90fb23 +SIZE (agate-excel-0.1.0.tar.gz) = 3436 Added: head/textproc/py-agate-excel/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/py-agate-excel/pkg-descr Mon Jul 4 15:59:46 2016 (r418040) @@ -0,0 +1,3 @@ +agate-excel adds read support for Excel files (xls and xlsx) to agate. + +WWW: http://agate-excel.rtfd.org/ From owner-svn-ports-all@freebsd.org Mon Jul 4 16:07:11 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 1608AB91B45; Mon, 4 Jul 2016 16:07:11 +0000 (UTC) (envelope-from junovitch@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id DA10D28D4; Mon, 4 Jul 2016 16:07:10 +0000 (UTC) (envelope-from junovitch@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u64G7Axa066770; Mon, 4 Jul 2016 16:07:10 GMT (envelope-from junovitch@FreeBSD.org) Received: (from junovitch@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u64G7A1R066769; Mon, 4 Jul 2016 16:07:10 GMT (envelope-from junovitch@FreeBSD.org) Message-Id: <201607041607.u64G7A1R066769@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: junovitch set sender to junovitch@FreeBSD.org using -f From: Jason Unovitch Date: Mon, 4 Jul 2016 16:07:10 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r418041 - branches/2016Q3/shells/bash X-SVN-Group: ports-branches MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Jul 2016 16:07:11 -0000 Author: junovitch Date: Mon Jul 4 16:07:09 2016 New Revision: 418041 URL: https://svnweb.freebsd.org/changeset/ports/418041 Log: MFH: r418029 Fix build on FreeBSD 9 WITHOUT=NLS. Sponsored by: Absolight Approved by: ports-secteam (build fix blanket) Modified: branches/2016Q3/shells/bash/Makefile Directory Properties: branches/2016Q3/ (props changed) Modified: branches/2016Q3/shells/bash/Makefile ============================================================================== --- branches/2016Q3/shells/bash/Makefile Mon Jul 4 15:59:46 2016 (r418040) +++ branches/2016Q3/shells/bash/Makefile Mon Jul 4 16:07:09 2016 (r418041) @@ -90,9 +90,6 @@ post-patch: -e "s|/\*.*#define SYSLOG_HISTORY .*\*/|#define SYSLOG_HISTORY|g" \ ${WRKSRC}/config-top.h .endif -.if empty(PORT_OPTIONS:MNLS) - @${REINPLACE_CMD} -e "s|@LIBICONV@||g" ${WRKSRC}/Makefile.in -.endif post-configure: @${FIND} ${WRKSRC} -name Makefile -print0 | ${XARGS} -0 \ From owner-svn-ports-all@freebsd.org Mon Jul 4 16:24:02 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id C92BBB91F40; Mon, 4 Jul 2016 16:24:02 +0000 (UTC) (envelope-from marino@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 816EC20F9; Mon, 4 Jul 2016 16:24:02 +0000 (UTC) (envelope-from marino@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u64GO1sB074052; Mon, 4 Jul 2016 16:24:01 GMT (envelope-from marino@FreeBSD.org) Received: (from marino@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u64GO1Tt074049; Mon, 4 Jul 2016 16:24:01 GMT (envelope-from marino@FreeBSD.org) Message-Id: <201607041624.u64GO1Tt074049@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: marino set sender to marino@FreeBSD.org using -f From: John Marino Date: Mon, 4 Jul 2016 16:24:01 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418042 - head/devel/pragmarcs X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Jul 2016 16:24:02 -0000 Author: marino Date: Mon Jul 4 16:24:01 2016 New Revision: 418042 URL: https://svnweb.freebsd.org/changeset/ports/418042 Log: devel/pragmarcs: Upgrade version 20160427 => 20160627 Adds Job_Pools and minor improvements to B_Strings. Modified: head/devel/pragmarcs/Makefile head/devel/pragmarcs/distinfo head/devel/pragmarcs/pkg-plist Modified: head/devel/pragmarcs/Makefile ============================================================================== --- head/devel/pragmarcs/Makefile Mon Jul 4 16:07:09 2016 (r418041) +++ head/devel/pragmarcs/Makefile Mon Jul 4 16:24:01 2016 (r418042) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= pragmarcs -PORTVERSION= 20160427 -PORTREVISION= 1 +PORTVERSION= 20160627 CATEGORIES= devel MAINTAINER= marino@FreeBSD.org @@ -16,7 +15,7 @@ USES= ada USE_GITHUB= yes GH_ACCOUNT= jrcarter GH_PROJECT= PragmARC -GH_TAGNAME= a532976 +GH_TAGNAME= cd8b6ef post-extract: @${CP} ${FILESDIR}/buildlib.gpr ${WRKSRC}/ Modified: head/devel/pragmarcs/distinfo ============================================================================== --- head/devel/pragmarcs/distinfo Mon Jul 4 16:07:09 2016 (r418041) +++ head/devel/pragmarcs/distinfo Mon Jul 4 16:24:01 2016 (r418042) @@ -1,2 +1,3 @@ -SHA256 (jrcarter-PragmARC-20160427-a532976_GH0.tar.gz) = e68f91a555c878dea77097ce15a35ff87e07feea16b81c253fea9319eef3ed05 -SIZE (jrcarter-PragmARC-20160427-a532976_GH0.tar.gz) = 90630 +TIMESTAMP = 1467580159 +SHA256 (jrcarter-PragmARC-20160627-cd8b6ef_GH0.tar.gz) = 1df33e3e4469cb770bfb025a641bb2c6bdab1888e93324440315037893c2d955 +SIZE (jrcarter-PragmARC-20160627-cd8b6ef_GH0.tar.gz) = 92102 Modified: head/devel/pragmarcs/pkg-plist ============================================================================== --- head/devel/pragmarcs/pkg-plist Mon Jul 4 16:07:09 2016 (r418041) +++ head/devel/pragmarcs/pkg-plist Mon Jul 4 16:24:01 2016 (r418042) @@ -30,6 +30,8 @@ include/pragmarcs/pragmarc-hash_fast_var include/pragmarcs/pragmarc-images-image.ads include/pragmarcs/pragmarc-images.adb include/pragmarcs/pragmarc-images.ads +include/pragmarcs/pragmarc-job_pools.adb +include/pragmarcs/pragmarc-job_pools.ads include/pragmarcs/pragmarc-kiss_random.adb include/pragmarcs/pragmarc-kiss_random.ads include/pragmarcs/pragmarc-least_squares_fitting.adb @@ -152,6 +154,7 @@ lib/pragmarcs/pragmarc-get_line.ali lib/pragmarcs/pragmarc-hash_fast_variable_length.ali lib/pragmarcs/pragmarc-images-image.ali lib/pragmarcs/pragmarc-images.ali +lib/pragmarcs/pragmarc-job_pools.ali lib/pragmarcs/pragmarc-kiss_random.ali lib/pragmarcs/pragmarc-least_squares_fitting.ali lib/pragmarcs/pragmarc-linear_equation_solver.ali From owner-svn-ports-all@freebsd.org Mon Jul 4 16:35:56 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 1EBEFB9076D; Mon, 4 Jul 2016 16:35:56 +0000 (UTC) (envelope-from royger@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id EAAFE2B06; Mon, 4 Jul 2016 16:35:55 +0000 (UTC) (envelope-from royger@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u64GZtu1078307; Mon, 4 Jul 2016 16:35:55 GMT (envelope-from royger@FreeBSD.org) Received: (from royger@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u64GZsJm078302; Mon, 4 Jul 2016 16:35:54 GMT (envelope-from royger@FreeBSD.org) Message-Id: <201607041635.u64GZsJm078302@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: royger set sender to royger@FreeBSD.org using -f From: =?UTF-8?Q?Roger_Pau_Monn=c3=a9?= Date: Mon, 4 Jul 2016 16:35:54 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r418043 - in branches/2016Q3: emulators/xen emulators/xen-kernel sysutils/xen-tools X-SVN-Group: ports-branches MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Jul 2016 16:35:56 -0000 Author: royger (src committer) Date: Mon Jul 4 16:35:54 2016 New Revision: 418043 URL: https://svnweb.freebsd.org/changeset/ports/418043 Log: MFH: r418036 xen: update to final 4.7.0 Sponsored by: Citrix Systems R&D Approved by: ports-secteam Modified: branches/2016Q3/emulators/xen-kernel/Makefile branches/2016Q3/emulators/xen-kernel/distinfo branches/2016Q3/emulators/xen/Makefile branches/2016Q3/sysutils/xen-tools/Makefile branches/2016Q3/sysutils/xen-tools/distinfo Directory Properties: branches/2016Q3/ (props changed) Modified: branches/2016Q3/emulators/xen-kernel/Makefile ============================================================================== --- branches/2016Q3/emulators/xen-kernel/Makefile Mon Jul 4 16:24:01 2016 (r418042) +++ branches/2016Q3/emulators/xen-kernel/Makefile Mon Jul 4 16:35:54 2016 (r418043) @@ -3,11 +3,9 @@ PORTNAME= xen PKGNAMESUFFIX= -kernel PORTVERSION= 4.7.0 -PORTREVISION= 1 -RCVERSION= 6 -DISTNAME= ${PORTNAME}-${DISTVERSION}-rc${RCVERSION} +PORTREVISION= 2 CATEGORIES= emulators -MASTER_SITES= http://bits.xensource.com/oss-xen/release/${DISTVERSION}-rc${RCVERSION}/ +MASTER_SITES= http://bits.xensource.com/oss-xen/release/${PORTVERSION}/ MAINTAINER= royger@FreeBSD.org COMMENT= Hypervisor using a microkernel design Modified: branches/2016Q3/emulators/xen-kernel/distinfo ============================================================================== --- branches/2016Q3/emulators/xen-kernel/distinfo Mon Jul 4 16:24:01 2016 (r418042) +++ branches/2016Q3/emulators/xen-kernel/distinfo Mon Jul 4 16:35:54 2016 (r418043) @@ -1,3 +1,3 @@ -TIMESTAMP = 1466081623 -SHA256 (xen-4.7.0-rc6.tar.gz) = d25e5e84b4d8f279be9a1a42b5c07c1b50cff48b49201e32ebf3809df187b428 -SIZE (xen-4.7.0-rc6.tar.gz) = 20707097 +TIMESTAMP = 1467644898 +SHA256 (xen-4.7.0.tar.gz) = be5876144d49729572ae06142e0bb93f1c1f2695578141eff2931995add24623 +SIZE (xen-4.7.0.tar.gz) = 20702550 Modified: branches/2016Q3/emulators/xen/Makefile ============================================================================== --- branches/2016Q3/emulators/xen/Makefile Mon Jul 4 16:24:01 2016 (r418042) +++ branches/2016Q3/emulators/xen/Makefile Mon Jul 4 16:35:54 2016 (r418043) @@ -2,7 +2,7 @@ PORTNAME= xen PORTVERSION= 4.7.0 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= emulators MAINTAINER= royger@FreeBSD.org Modified: branches/2016Q3/sysutils/xen-tools/Makefile ============================================================================== --- branches/2016Q3/sysutils/xen-tools/Makefile Mon Jul 4 16:24:01 2016 (r418042) +++ branches/2016Q3/sysutils/xen-tools/Makefile Mon Jul 4 16:35:54 2016 (r418043) @@ -3,11 +3,9 @@ PORTNAME= xen PKGNAMESUFFIX= -tools PORTVERSION= 4.7.0 -PORTREVISION= 1 -RCVERSION= 6 -DISTNAME= ${PORTNAME}-${DISTVERSION}-rc${RCVERSION} +PORTREVISION= 2 CATEGORIES= sysutils emulators -MASTER_SITES= http://bits.xensource.com/oss-xen/release/${DISTVERSION}-rc${RCVERSION}/ +MASTER_SITES= http://bits.xensource.com/oss-xen/release/${PORTVERSION}/ MAINTAINER= royger@FreeBSD.org COMMENT= Xen management tool, based on LibXenlight Modified: branches/2016Q3/sysutils/xen-tools/distinfo ============================================================================== --- branches/2016Q3/sysutils/xen-tools/distinfo Mon Jul 4 16:24:01 2016 (r418042) +++ branches/2016Q3/sysutils/xen-tools/distinfo Mon Jul 4 16:35:54 2016 (r418043) @@ -1,3 +1,3 @@ -TIMESTAMP = 1466081611 -SHA256 (xen-4.7.0-rc6.tar.gz) = d25e5e84b4d8f279be9a1a42b5c07c1b50cff48b49201e32ebf3809df187b428 -SIZE (xen-4.7.0-rc6.tar.gz) = 20707097 +TIMESTAMP = 1467644940 +SHA256 (xen-4.7.0.tar.gz) = be5876144d49729572ae06142e0bb93f1c1f2695578141eff2931995add24623 +SIZE (xen-4.7.0.tar.gz) = 20702550 From owner-svn-ports-all@freebsd.org Mon Jul 4 16:48:17 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 45FABB90C92; Mon, 4 Jul 2016 16:48:17 +0000 (UTC) (envelope-from matthew@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 208FE225C; Mon, 4 Jul 2016 16:48:17 +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 u64GmGuK082192; Mon, 4 Jul 2016 16:48:16 GMT (envelope-from matthew@FreeBSD.org) Received: (from matthew@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u64GmFUa082186; Mon, 4 Jul 2016 16:48:15 GMT (envelope-from matthew@FreeBSD.org) Message-Id: <201607041648.u64GmFUa082186@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: matthew set sender to matthew@FreeBSD.org using -f From: Matthew Seaman Date: Mon, 4 Jul 2016 16:48:15 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418044 - in head/textproc: . py-csvkit py-csvkit/files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Jul 2016 16:48:17 -0000 Author: matthew Date: Mon Jul 4 16:48:15 2016 New Revision: 418044 URL: https://svnweb.freebsd.org/changeset/ports/418044 Log: csvkit is a suite of command-line tools for converting to and working with CSV, the king of tabular file formats. Added: head/textproc/py-csvkit/ head/textproc/py-csvkit/Makefile (contents, props changed) head/textproc/py-csvkit/distinfo (contents, props changed) head/textproc/py-csvkit/files/ head/textproc/py-csvkit/files/patch-csvkit.egg-info_requires.txt (contents, props changed) head/textproc/py-csvkit/files/patch-setup.py (contents, props changed) head/textproc/py-csvkit/pkg-descr (contents, props changed) Modified: head/textproc/Makefile Modified: head/textproc/Makefile ============================================================================== --- head/textproc/Makefile Mon Jul 4 16:35:54 2016 (r418043) +++ head/textproc/Makefile Mon Jul 4 16:48:15 2016 (r418044) @@ -1226,6 +1226,7 @@ SUBDIR += py-chardet SUBDIR += py-cloud_sptheme SUBDIR += py-creole + SUBDIR += py-csvkit SUBDIR += py-dbf SUBDIR += py-dbfread SUBDIR += py-diff-match-patch Added: head/textproc/py-csvkit/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/py-csvkit/Makefile Mon Jul 4 16:48:15 2016 (r418044) @@ -0,0 +1,25 @@ +# $FreeBSD$ + +PORTNAME= csvkit +PORTVERSION= 0.9.1 +CATEGORIES= textproc python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= matthew@FreeBSD.org +COMMENT= Command line tools for working with CSV + +LICENSE= MIT + +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}agate-dbf>=0.1.0:textproc/py-agate-dbf \ + ${PYTHON_PKGNAMEPREFIX}agate-excel>=0.1.0:textproc/py-agate-excel \ + ${PYTHON_PKGNAMEPREFIX}agate>=1.2.2:textproc/py-agate \ + ${PYTHON_PKGNAMEPREFIX}dateutil>=2.2:devel/py-dateutil \ + ${PYTHON_PKGNAMEPREFIX}dbf>0.94.003:textproc/py-dbf \ + ${PYTHON_PKGNAMEPREFIX}six>=1.6.1:devel/py-six \ + ${PYTHON_PKGNAMEPREFIX}sqlalchemy09>=0.9.3:databases/py-sqlalchemy09 + +USES= python +USE_PYTHON= autoplist distutils + +.include Added: head/textproc/py-csvkit/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/py-csvkit/distinfo Mon Jul 4 16:48:15 2016 (r418044) @@ -0,0 +1,3 @@ +TIMESTAMP = 1463399029 +SHA256 (csvkit-0.9.1.tar.gz) = 92f8b8647becb5cb1dccb3af92a13a4e85702d42ba465ce8447881fb38c9f93a +SIZE (csvkit-0.9.1.tar.gz) = 34170 Added: head/textproc/py-csvkit/files/patch-csvkit.egg-info_requires.txt ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/py-csvkit/files/patch-csvkit.egg-info_requires.txt Mon Jul 4 16:48:15 2016 (r418044) @@ -0,0 +1,12 @@ +--- csvkit.egg-info/requires.txt.orig 2015-03-31 02:06:59 UTC ++++ csvkit.egg-info/requires.txt +@@ -1,6 +1,6 @@ + xlrd>=0.7.1 + sqlalchemy>=0.6.6 +-openpyxl==2.2.0-b1 ++openpyxl>=2.2.0-b1 + six>=1.6.1 +-python-dateutil==2.2 +-dbf==0.94.003 ++python-dateutil>=2.2 ++dbf>=0.94.003 Added: head/textproc/py-csvkit/files/patch-setup.py ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/py-csvkit/files/patch-setup.py Mon Jul 4 16:48:15 2016 (r418044) @@ -0,0 +1,23 @@ +--- setup.py.orig 2015-03-31 01:07:39 UTC ++++ setup.py +@@ -6,9 +6,9 @@ from setuptools import setup + install_requires = [ + 'xlrd>=0.7.1', + 'sqlalchemy>=0.6.6', +- 'openpyxl==2.2.0-b1', ++ 'openpyxl>=2.2.0-b1', + 'six>=1.6.1', +- 'python-dateutil==2.2' ++ 'python-dateutil>=2.2' + ] + + if sys.version_info < (2, 7): +@@ -17,7 +17,7 @@ if sys.version_info < (2, 7): + install_requires.append('simplejson>=3.6.3') + + if sys.version_info[0] == 2: +- install_requires.append('dbf==0.94.003') ++ install_requires.append('dbf>=0.94.003') + + setup( + name='csvkit', Added: head/textproc/py-csvkit/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/py-csvkit/pkg-descr Mon Jul 4 16:48:15 2016 (r418044) @@ -0,0 +1,2 @@ +csvkit is a suite of command-line tools for converting to and working +with CSV, the king of tabular file formats. From owner-svn-ports-all@freebsd.org Mon Jul 4 16:56:04 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id E7CBDB911FB; Mon, 4 Jul 2016 16:56:04 +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 mx1.freebsd.org (Postfix) with ESMTPS id BA6892E24; Mon, 4 Jul 2016 16:56:04 +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 u64Gu3xI085845; Mon, 4 Jul 2016 16:56:03 GMT (envelope-from bofh@FreeBSD.org) Received: (from bofh@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u64Gu3IR085844; Mon, 4 Jul 2016 16:56:03 GMT (envelope-from bofh@FreeBSD.org) Message-Id: <201607041656.u64Gu3IR085844@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: bofh set sender to bofh@FreeBSD.org using -f From: Muhammad Moinur Rahman Date: Mon, 4 Jul 2016 16:56:03 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418045 - head/emulators/qemu-devel X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Jul 2016 16:56:05 -0000 Author: bofh Date: Mon Jul 4 16:56:03 2016 New Revision: 418045 URL: https://svnweb.freebsd.org/changeset/ports/418045 Log: emulators/qemu-devel: Fix OPTIONS knob for NO_X11 - This patch fixes the unecessary build of X11 for NO_X11 Submitted by: olgeni Modified: head/emulators/qemu-devel/Makefile Modified: head/emulators/qemu-devel/Makefile ============================================================================== --- head/emulators/qemu-devel/Makefile Mon Jul 4 16:48:15 2016 (r418044) +++ head/emulators/qemu-devel/Makefile Mon Jul 4 16:56:03 2016 (r418045) @@ -3,7 +3,7 @@ PORTNAME= qemu DISTVERSION= 2.6.0 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= emulators MASTER_SITES= http://wiki.qemu.org/download/ PKGNAMESUFFIX= -devel @@ -16,8 +16,8 @@ LICENSE= GPLv2 HAS_CONFIGURE= yes USES= cpe gmake pkgconfig bison perl5 python:2,build tar:bzip2 USE_PERL5= build -USE_XORG= pixman x11 xext -USE_GNOME+= cairo gdkpixbuf2 glib20 +USE_XORG= pixman +USE_GNOME+= cairo glib20 MAKE_ENV+= BSD_MAKE="${MAKE}" ONLY_FOR_ARCHS= amd64 i386 powerpc powerpc64 # XXX someone wants to debug sparc64 hosts? @@ -37,7 +37,7 @@ X86_TARGETS_DESC= Build only x86 system STATIC_LINK_DESC= Statically link the executables OPTIONS_DEFAULT=X11 GTK2 OPENGL GNUTLS SASL JPEG PNG CDROM_DMA CURL PCAP GNS3 OPTIONS_SUB= yes -X11_USE= SDL=sdl +X11_USE= SDL=sdl XORG=x11,xext GNOME=gdkpixbuf2 X11_CONFIGURE_ON= --enable-sdl X11_CONFIGURE_OFF= --disable-sdl GTK2_USE= GNOME=gtk20,vte From owner-svn-ports-all@freebsd.org Mon Jul 4 17:59:56 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 9809BB912DF; Mon, 4 Jul 2016 17:59:56 +0000 (UTC) (envelope-from pawel@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 7410E2D75; Mon, 4 Jul 2016 17:59:56 +0000 (UTC) (envelope-from pawel@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u64Hxt7e008095; Mon, 4 Jul 2016 17:59:55 GMT (envelope-from pawel@FreeBSD.org) Received: (from pawel@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u64HxtYD008092; Mon, 4 Jul 2016 17:59:55 GMT (envelope-from pawel@FreeBSD.org) Message-Id: <201607041759.u64HxtYD008092@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pawel set sender to pawel@FreeBSD.org using -f From: Pawel Pekala Date: Mon, 4 Jul 2016 17:59:55 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418046 - head/archivers/dpkg X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Jul 2016 17:59:56 -0000 Author: pawel Date: Mon Jul 4 17:59:55 2016 New Revision: 418046 URL: https://svnweb.freebsd.org/changeset/ports/418046 Log: Update to version 1.18.8 Modified: head/archivers/dpkg/Makefile head/archivers/dpkg/distinfo head/archivers/dpkg/pkg-plist Modified: head/archivers/dpkg/Makefile ============================================================================== --- head/archivers/dpkg/Makefile Mon Jul 4 16:56:03 2016 (r418045) +++ head/archivers/dpkg/Makefile Mon Jul 4 17:59:55 2016 (r418046) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= dpkg -PORTVERSION= 1.18.7 +PORTVERSION= 1.18.8 CATEGORIES= archivers sysutils MASTER_SITES= DEBIAN_POOL DISTNAME= dpkg_${PORTVERSION} Modified: head/archivers/dpkg/distinfo ============================================================================== --- head/archivers/dpkg/distinfo Mon Jul 4 16:56:03 2016 (r418045) +++ head/archivers/dpkg/distinfo Mon Jul 4 17:59:55 2016 (r418046) @@ -1,2 +1,3 @@ -SHA256 (dpkg_1.18.7.tar.xz) = ace36d3a6dc750a42baf797f9e75ec580a21f92bb9ff96b482100755d6d9b87b -SIZE (dpkg_1.18.7.tar.xz) = 4617284 +TIMESTAMP = 1467652641 +SHA256 (dpkg_1.18.8.tar.xz) = 0b5562578a46d5c54fe77c262cd0a13ad13f4ff4bda8ccc285757ad37a3f65b7 +SIZE (dpkg_1.18.8.tar.xz) = 4633168 Modified: head/archivers/dpkg/pkg-plist ============================================================================== --- head/archivers/dpkg/pkg-plist Mon Jul 4 16:56:03 2016 (r418045) +++ head/archivers/dpkg/pkg-plist Mon Jul 4 17:59:55 2016 (r418046) @@ -91,6 +91,8 @@ include/dpkg/version.h %%SITE_PERL%%/Dpkg/Control/Hash.pm %%SITE_PERL%%/Dpkg/Control/HashCore.pm %%SITE_PERL%%/Dpkg/Control/Info.pm +%%SITE_PERL%%/Dpkg/Control/Tests.pm +%%SITE_PERL%%/Dpkg/Control/Tests/Entry.pm %%SITE_PERL%%/Dpkg/Control/Types.pm %%SITE_PERL%%/Dpkg/Deps.pm %%SITE_PERL%%/Dpkg/Dist/Files.pm @@ -155,12 +157,10 @@ libexec/dpkg/methods/multicd/install libexec/dpkg/methods/multicd/names libexec/dpkg/methods/multicd/setup libexec/dpkg/methods/multicd/update -libexec/dpkg/parsechangelog/debian libexec/libdpkg.a libexec/pkgconfig/libdpkg.pc %%NLS%%man/de/man1/dpkg-architecture.1.gz %%NLS%%man/de/man1/dpkg-buildflags.1.gz -%%NLS%%man/de/man1/dpkg-buildpackage.1.gz %%NLS%%man/de/man1/dpkg-checkbuilddeps.1.gz %%NLS%%man/de/man1/dpkg-deb.1.gz %%NLS%%man/de/man1/dpkg-distaddfile.1.gz @@ -228,7 +228,6 @@ libexec/pkgconfig/libdpkg.pc %%NLS%%man/es/man5/dselect.cfg.5.gz %%NLS%%man/es/man8/start-stop-daemon.8.gz %%NLS%%man/fr/man1/dpkg-architecture.1.gz -%%NLS%%man/fr/man1/dpkg-buildflags.1.gz %%NLS%%man/fr/man1/dpkg-deb.1.gz %%NLS%%man/fr/man1/dpkg-distaddfile.1.gz %%NLS%%man/fr/man1/dpkg-divert.1.gz @@ -261,8 +260,6 @@ libexec/pkgconfig/libdpkg.pc %%NLS%%man/fr/man5/dpkg.cfg.5.gz %%NLS%%man/fr/man5/dselect.cfg.5.gz %%NLS%%man/fr/man8/start-stop-daemon.8.gz -%%NLS%%man/hu/man5/dpkg.cfg.5.gz -%%NLS%%man/hu/man5/dselect.cfg.5.gz %%NLS%%man/it/man1/dpkg-architecture.1.gz %%NLS%%man/it/man1/dpkg-deb.1.gz %%NLS%%man/it/man1/dpkg-distaddfile.1.gz @@ -362,6 +359,8 @@ man/man3/Dpkg::Control::FieldsCore.3.gz man/man3/Dpkg::Control::Hash.3.gz man/man3/Dpkg::Control::HashCore.3.gz man/man3/Dpkg::Control::Info.3.gz +man/man3/Dpkg::Control::Tests.3.gz +man/man3/Dpkg::Control::Tests::Entry.3.gz man/man3/Dpkg::Control::Types.3.gz man/man3/Dpkg::Deps.3.gz man/man3/Dpkg::Exit.3.gz @@ -399,7 +398,6 @@ man/man5/dselect.cfg.5.gz man/man8/start-stop-daemon.8.gz %%NLS%%man/nl/man1/dpkg-architecture.1.gz %%NLS%%man/nl/man1/dpkg-buildflags.1.gz -%%NLS%%man/nl/man1/dpkg-buildpackage.1.gz %%NLS%%man/nl/man1/dpkg-checkbuilddeps.1.gz %%NLS%%man/nl/man1/dpkg-deb.1.gz %%NLS%%man/nl/man1/dpkg-distaddfile.1.gz @@ -462,7 +460,6 @@ man/man8/start-stop-daemon.8.gz %%NLS%%man/pl/man5/dselect.cfg.5.gz %%NLS%%man/pl/man8/start-stop-daemon.8.gz %%NLS%%man/sv/man1/dpkg-architecture.1.gz -%%NLS%%man/sv/man1/dpkg-buildflags.1.gz %%NLS%%man/sv/man1/dpkg-deb.1.gz %%NLS%%man/sv/man1/dpkg-distaddfile.1.gz %%NLS%%man/sv/man1/dpkg-divert.1.gz @@ -587,8 +584,6 @@ sbin/start-stop-daemon @sample %%DPKGDIR%%/diversions.sample @sample %%DPKGDIR%%/statoverride.sample @sample %%DPKGDIR%%/status.sample -%%NLS%%@dir man/hu/man8 -%%NLS%%@dir man/hu/man1 @dir etc/dpkg/dselect.cfg.d @dir etc/dpkg/dpkg.cfg.d @dir %%DPKGDIR%%/updates From owner-svn-ports-all@freebsd.org Mon Jul 4 18:02:22 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id A3407B9146C; Mon, 4 Jul 2016 18:02:22 +0000 (UTC) (envelope-from pi@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 73083207E; Mon, 4 Jul 2016 18:02:22 +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 u64I2LhJ011564; Mon, 4 Jul 2016 18:02:21 GMT (envelope-from pi@FreeBSD.org) Received: (from pi@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u64I2LhF011562; Mon, 4 Jul 2016 18:02:21 GMT (envelope-from pi@FreeBSD.org) Message-Id: <201607041802.u64I2LhF011562@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pi set sender to pi@FreeBSD.org using -f From: Kurt Jaeger Date: Mon, 4 Jul 2016 18:02:21 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418047 - head/textproc/py-xlwt X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Jul 2016 18:02:22 -0000 Author: pi Date: Mon Jul 4 18:02:21 2016 New Revision: 418047 URL: https://svnweb.freebsd.org/changeset/ports/418047 Log: textproc/py-xlwt: 0.7.5 -> 1.1.2 - now supports python3 up to 3.5 PR: 210768 Changes: http://xlwt.readthedocs.io/en/latest/changes.html Approved by: dikshie@sfc.wide.ad.jp (maintainer) Modified: head/textproc/py-xlwt/Makefile head/textproc/py-xlwt/distinfo Modified: head/textproc/py-xlwt/Makefile ============================================================================== --- head/textproc/py-xlwt/Makefile Mon Jul 4 17:59:55 2016 (r418046) +++ head/textproc/py-xlwt/Makefile Mon Jul 4 18:02:21 2016 (r418047) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= xlwt -PORTVERSION= 0.7.5 +PORTVERSION= 1.1.2 CATEGORIES= textproc python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -13,6 +13,6 @@ COMMENT= Writing data and formatting inf LICENSE= BSD4CLAUSE USES= python -USE_PYTHON= distutils autoplist +USE_PYTHON= autoplist concurrent distutils .include Modified: head/textproc/py-xlwt/distinfo ============================================================================== --- head/textproc/py-xlwt/distinfo Mon Jul 4 17:59:55 2016 (r418046) +++ head/textproc/py-xlwt/distinfo Mon Jul 4 18:02:21 2016 (r418047) @@ -1,2 +1,3 @@ -SHA256 (xlwt-0.7.5.tar.gz) = 9478bd70b86590b9ac2697967c8a10a4917d900636349ca73eeb362a3227423c -SIZE (xlwt-0.7.5.tar.gz) = 115100 +TIMESTAMP = 1467533906 +SHA256 (xlwt-1.1.2.tar.gz) = aed648c17731f40f84550dd2a1aaa53569f0cbcaf5610ba895cd2632587b723c +SIZE (xlwt-1.1.2.tar.gz) = 153374 From owner-svn-ports-all@freebsd.org Mon Jul 4 18:14:19 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 5C563B917BA; Mon, 4 Jul 2016 18:14:19 +0000 (UTC) (envelope-from brnrd@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 201BE2693; Mon, 4 Jul 2016 18:14:19 +0000 (UTC) (envelope-from brnrd@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u64IEIxE015313; Mon, 4 Jul 2016 18:14:18 GMT (envelope-from brnrd@FreeBSD.org) Received: (from brnrd@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u64IEIaK015312; Mon, 4 Jul 2016 18:14:18 GMT (envelope-from brnrd@FreeBSD.org) Message-Id: <201607041814.u64IEIaK015312@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: brnrd set sender to brnrd@FreeBSD.org using -f From: Bernard Spil Date: Mon, 4 Jul 2016 18:14:18 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418048 - head/devel/qca/files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Jul 2016 18:14:19 -0000 Author: brnrd Date: Mon Jul 4 18:14:18 2016 New Revision: 418048 URL: https://svnweb.freebsd.org/changeset/ports/418048 Log: devel/qca: Fix build failure on 9.3 / OpenSSL 0.9.7 - Re-add patch for compression to satisfy 0.9.7 PR: 210053 Modified: head/devel/qca/files/patch-plugins_qca-ossl_qca-ossl.cpp Modified: head/devel/qca/files/patch-plugins_qca-ossl_qca-ossl.cpp ============================================================================== --- head/devel/qca/files/patch-plugins_qca-ossl_qca-ossl.cpp Mon Jul 4 18:02:21 2016 (r418047) +++ head/devel/qca/files/patch-plugins_qca-ossl_qca-ossl.cpp Mon Jul 4 18:14:18 2016 (r418048) @@ -1,27 +1,27 @@ -qca-ossl: Fix build without SSLv3 +qca-ossl: Fix build without SSLv3 http://quickgit.kde.org/?p=qca.git&a=commit&h=20a587d77636186edb044cd2b71d6d90fe98d232 -This fixes building with LibreSSL >= 2.3.0 which has removed support -for SSLv3 completely. As far as I know OpenSSL can be configured to -build without it, so it might be helpful there as well. +This fixes building with LibreSSL >= 2.3.0 which has removed support +for SSLv3 completely. As far as I know OpenSSL can be configured to +build without it, so it might be helpful there as well. -REVIEW: 125386 +REVIEW: 125386 -qca-ossl: Fix build without support for SHA-0 +qca-ossl: Fix build without support for SHA-0 https://quickgit.kde.org/?p=qca.git&a=commit&h=0dbed8eb38afd1561907a52283091c37e7b85156 -LibreSSL >= 2.3.0 removed support for SHA-0, so there's no EVP_sha -anymore. -Wikipedia says about SHA-0: "160-bit hash function published in 1993 -under the name SHA. It was withdrawn shortly after publication due to -an undisclosed "significant flaw" and replaced by the slightly revised -version SHA-1.' +LibreSSL >= 2.3.0 removed support for SHA-0, so there's no EVP_sha +anymore. +Wikipedia says about SHA-0: "160-bit hash function published in 1993 +under the name SHA. It was withdrawn shortly after publication due to +an undisclosed "significant flaw" and replaced by the slightly revised +version SHA-1.' -REVIEW: 125387 +REVIEW: 125387 ---- plugins/qca-ossl/qca-ossl.cpp.orig 2016-07-03 11:34:48 UTC +--- plugins/qca-ossl/qca-ossl.cpp.orig 2015-10-02 09:39:21 UTC +++ plugins/qca-ossl/qca-ossl.cpp -@@ -5403,9 +5403,11 @@ +@@ -5403,9 +5403,11 @@ public: ctx = SSL_CTX_new(SSLv2_client_method()); break; #endif @@ -33,7 +33,20 @@ REVIEW: 125387 case TLS::TLS_v1: ctx = SSL_CTX_new(TLSv1_client_method()); break; -@@ -7135,8 +7135,10 @@ +@@ -5805,7 +5807,11 @@ public: + { + SessionInfo sessInfo; + +- sessInfo.isCompressed = (0 != SSL_SESSION_get_compress_id(ssl->session)); ++#ifndef OPENSSL_NO_COMP ++ sessInfo.isCompressed = (0 != ssl->session->compress_meth); ++#else ++ sessInfo.isCompressed = 0; ++#endif + + if (ssl->version == TLS1_VERSION) + sessInfo.version = TLS::TLS_v1; +@@ -7133,8 +7139,10 @@ public: return new opensslInfoContext(this); else if ( type == "sha1" ) return new opensslHashContext( EVP_sha1(), this, type); From owner-svn-ports-all@freebsd.org Mon Jul 4 19:02:28 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 6EBE2B913C1; Mon, 4 Jul 2016 19:02:28 +0000 (UTC) (envelope-from junovitch@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 43E2C296E; Mon, 4 Jul 2016 19:02:28 +0000 (UTC) (envelope-from junovitch@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u64J2R2x033769; Mon, 4 Jul 2016 19:02:27 GMT (envelope-from junovitch@FreeBSD.org) Received: (from junovitch@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u64J2RWJ033768; Mon, 4 Jul 2016 19:02:27 GMT (envelope-from junovitch@FreeBSD.org) Message-Id: <201607041902.u64J2RWJ033768@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: junovitch set sender to junovitch@FreeBSD.org using -f From: Jason Unovitch Date: Mon, 4 Jul 2016 19:02:27 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418049 - head/security/vuxml X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Jul 2016 19:02:28 -0000 Author: junovitch Date: Mon Jul 4 19:02:26 2016 New Revision: 418049 URL: https://svnweb.freebsd.org/changeset/ports/418049 Log: Document Xen Security Advisories (XSAs 173, 175, 176, 178, 179, and 180). XSAs 171, 172, 174, and 181 are not applicable to FreeBSD. Discussed with: royger Security: CVE-2014-3672 Security: CVE-2016-3710 Security: CVE-2016-3712 Security: CVE-2016-4963 Security: CVE-2016-4480 Security: CVE-2016-4962 Security: CVE-2016-3960 Security: https://vuxml.FreeBSD.org/freebsd/e800cd4b-4212-11e6-942d-bc5ff45d0f28.html Security: https://vuxml.FreeBSD.org/freebsd/e6ce6f50-4212-11e6-942d-bc5ff45d0f28.html Security: https://vuxml.FreeBSD.org/freebsd/e589ae90-4212-11e6-942d-bc5ff45d0f28.html Security: https://vuxml.FreeBSD.org/freebsd/e43b210a-4212-11e6-942d-bc5ff45d0f28.html Security: https://vuxml.FreeBSD.org/freebsd/e2fca11b-4212-11e6-942d-bc5ff45d0f28.html Security: https://vuxml.FreeBSD.org/freebsd/d51ced72-4212-11e6-942d-bc5ff45d0f28.html Modified: head/security/vuxml/vuln.xml Modified: head/security/vuxml/vuln.xml ============================================================================== --- head/security/vuxml/vuln.xml Mon Jul 4 18:14:18 2016 (r418048) +++ head/security/vuxml/vuln.xml Mon Jul 4 19:02:26 2016 (r418049) @@ -58,6 +58,214 @@ Notes: * Do not forget port variants (linux-f10-libxml2, libxml2, etc.) --> + + xen-tools -- Unrestricted qemu logging + + + xen-tools + 4.7.0_2 + + + + +

The Xen Project reports:

+
+

When the libxl toolstack launches qemu for HVM guests, it pipes the + output of stderr to a file in /var/log/xen. This output is not + rate-limited in any way. The guest can easily cause qemu to print + messages to stderr, causing this file to become arbitrarily large. +

+

The disk containing the logfile can be exausted, possibly causing a + denial-of-service (DoS).

+
+ +
+ + CVE-2014-3672 + http://xenbits.xen.org/xsa/advisory-180.html + + + 2016-05-23 + 2016-07-04 + +
+ + + xen-tools -- QEMU: Banked access to VGA memory (VBE) uses inconsistent bounds checks + + + xen-tools + 4.7.0_2 + + + + +

The Xen Project reports:

+
+

Qemu VGA module allows banked access to video memory using the + window at 0xa00000 and it supports different access modes with + different address calculations.

+

Qemu VGA module allows guest to edit certain registers in 'vbe' + and 'vga' modes.

+

A privileged guest user could use CVE-2016-3710 to exceed the bank + address window and write beyond the said memory area, potentially + leading to arbitrary code execution with privileges of the Qemu + process. If the system is not using stubdomains, this will be in + domain 0.

+

A privileged guest user could use CVE-2016-3712 to cause potential + integer overflow or OOB read access issues in Qemu, resulting in a DoS + of the guest itself. More dangerous effect, such as data leakage or + code execution, are not known but cannot be ruled out.

+
+ +
+ + CVE-2016-3710 + CVE-2016-3712 + http://xenbits.xen.org/xsa/advisory-179.html + + + 2016-05-09 + 2016-07-04 + +
+ + + xen-tools -- Unsanitised driver domain input in libxl device handling + + + xen-tools + 4.7.0_1 + + + + +

The Xen Project reports:

+
+

libxl's device-handling code freely uses and trusts information + from the backend directories in xenstore.

+

A malicious driver domain can deny service to management tools.

+
+ +
+ + CVE-2016-4963 + http://xenbits.xen.org/xsa/advisory-178.html + + + 2016-06-02 + 2016-07-04 + +
+ + + xen-kernel -- x86 software guest page walk PS bit handling flaw + + + xen-kernel + 4.7.0 + + + + +

The Xen Project reports:

+
+

The Page Size (PS) page table entry bit exists at all page table + levels other than L1. Its meaning is reserved in L4, and + conditionally reserved in L3 and L2 (depending on hardware + capabilities). The software page table walker in the hypervisor, + however, so far ignored that bit in L4 and (on respective hardware) + L3 entries, resulting in pages to be treated as page tables which + the guest OS may not have designated as such. If the page in + question is writable by an unprivileged user, then that user will + be able to map arbitrary guest memory.

+

On vulnerable OSes, guest user mode code may be able to establish + mappings of arbitrary memory inside the guest, allowing it to + elevate its privileges inside the guest.

+
+ +
+ + CVE-2016-4480 + http://xenbits.xen.org/xsa/advisory-176.html + + + 2016-05-17 + 2016-07-04 + +
+ + + xen-tools -- Unsanitised guest input in libxl device handling code + + + xen-tools + 4.7.0_1 + + + + +

The Xen Project reports:

+
+

Various parts of libxl device-handling code inappropriately use + information from (partially) guest controlled areas of xenstore.

+

A malicious guest administrator can cause denial of service by + resource exhaustion.

+

A malicious guest administrator can confuse and/or deny service to + management facilities.

+

A malicious guest administrator of a guest configured with channel + devices may be able to escalate their privilege to that of the + backend domain (i.e., normally, to that of the host).

+
+ +
+ + CVE-2016-4962 + http://xenbits.xen.org/xsa/advisory-175.html + + + 2016-06-02 + 2016-07-04 + +
+ + + xen-kernel -- x86 shadow pagetables: address width overflow + + + xen-kernel + 3.44.7.0 + + + + +

The Xen Project reports:

+
+

In the x86 shadow pagetable code, the guest frame number of a + superpage mapping is stored in a 32-bit field. If a shadowed guest + can cause a superpage mapping of a guest-physical address at or + above 2^44 to be shadowed, the top bits of the address will be lost, + causing an assertion failure or NULL dereference later on, in code + that removes the shadow.

+

A HVM guest using shadow pagetables can cause the host to crash. +

+

A PV guest using shadow pagetables (i.e. being migrated) with PV + superpages enabled (which is not the default) can crash the host, or + corrupt hypervisor memory, and so a privilege escalation cannot be + ruled out.

+
+ +
+ + CVE-2016-3960 + http://xenbits.xen.org/xsa/advisory-173.html + + + 2016-04-18 + 2016-07-04 + +
+ wireshark -- multiple vulnerabilities From owner-svn-ports-all@freebsd.org Mon Jul 4 19:12:57 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 1DB85B915E8; Mon, 4 Jul 2016 19:12:57 +0000 (UTC) (envelope-from adamw@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id E24492E94; Mon, 4 Jul 2016 19:12:56 +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 u64JCuIv037473; Mon, 4 Jul 2016 19:12:56 GMT (envelope-from adamw@FreeBSD.org) Received: (from adamw@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u64JCuvi037472; Mon, 4 Jul 2016 19:12:56 GMT (envelope-from adamw@FreeBSD.org) Message-Id: <201607041912.u64JCuvi037472@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: adamw set sender to adamw@FreeBSD.org using -f From: Adam Weinberger Date: Mon, 4 Jul 2016 19:12:56 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418050 - head/Mk X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Jul 2016 19:12:57 -0000 Author: adamw Date: Mon Jul 4 19:12:55 2016 New Revision: 418050 URL: https://svnweb.freebsd.org/changeset/ports/418050 Log: Extend the USES=php match so that it recognizes php:web as well, to prevent an erroneous deprecation warning. PR: 210822 Approved by: portmgr (mat) Modified: head/Mk/bsd.port.mk Modified: head/Mk/bsd.port.mk ============================================================================== --- head/Mk/bsd.port.mk Mon Jul 4 19:02:26 2016 (r418049) +++ head/Mk/bsd.port.mk Mon Jul 4 19:12:55 2016 (r418050) @@ -1357,7 +1357,7 @@ USES+= ssl .include "${PORTSDIR}/Mk/bsd.emacs.mk" .endif -.if defined(USE_PHP) && (!defined(USES) || ( defined(USES) && !${USES:Mphp} )) +.if defined(USE_PHP) && (!defined(USES) || ( defined(USES) && !${USES:Mphp*} )) DEV_WARNING+= "Using USE_PHP alone is deprecated, please use USES=php" USES+= php .endif @@ -1921,7 +1921,7 @@ _FORCE_POST_PATTERNS= rmdir kldxref mkfo .include "${PORTSDIR}/Mk/bsd.sdl.mk" .endif -.if defined(USE_PHP) && (!defined(USES) || ( defined(USES) && !${USES:Mphp} )) +.if defined(USE_PHP) && (!defined(USES) || ( defined(USES) && !${USES:Mphp*} )) DEV_WARNING+= "Using USE_PHP alone is deprecated, please use USES=php" _USES_POST+= php .endif From owner-svn-ports-all@freebsd.org Mon Jul 4 19:23:18 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 38275B9199E; Mon, 4 Jul 2016 19:23:18 +0000 (UTC) (envelope-from adamw@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 0ABE9246A; Mon, 4 Jul 2016 19:23:17 +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 u64JNHEm041347; Mon, 4 Jul 2016 19:23:17 GMT (envelope-from adamw@FreeBSD.org) Received: (from adamw@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u64JNHPk041346; Mon, 4 Jul 2016 19:23:17 GMT (envelope-from adamw@FreeBSD.org) Message-Id: <201607041923.u64JNHPk041346@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: adamw set sender to adamw@FreeBSD.org using -f From: Adam Weinberger Date: Mon, 4 Jul 2016 19:23:17 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418051 - head/net/openntpd X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Jul 2016 19:23:18 -0000 Author: adamw Date: Mon Jul 4 19:23:17 2016 New Revision: 418051 URL: https://svnweb.freebsd.org/changeset/ports/418051 Log: Fix dangling backslash after r418011. Committed under just-fix-it. Modified: head/net/openntpd/Makefile Modified: head/net/openntpd/Makefile ============================================================================== --- head/net/openntpd/Makefile Mon Jul 4 19:12:55 2016 (r418050) +++ head/net/openntpd/Makefile Mon Jul 4 19:23:17 2016 (r418051) @@ -27,7 +27,7 @@ OPTIONS_DEFAULT= RESSL # Requires libtls from LibreSSL RESSL_USE= openssl=yes -RESSL_VARS= with_openssl_port=yes \ +RESSL_VARS= with_openssl_port=yes RESSL_CONFIGURE_WITH= cacert=${LOCALBASE}/etc/ssl/cert.pem RESSL_CPPFLAGS= -I${LOCALBASE}/include RESSL_LDFLAGS= -L${LOCALBASE}/lib From owner-svn-ports-all@freebsd.org Mon Jul 4 19:23:45 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 7EE5CB919E3; Mon, 4 Jul 2016 19:23:45 +0000 (UTC) (envelope-from cy@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 51E8A2547; Mon, 4 Jul 2016 19:23:45 +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 u64JNiYZ041458; Mon, 4 Jul 2016 19:23:44 GMT (envelope-from cy@FreeBSD.org) Received: (from cy@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u64JNi42041457; Mon, 4 Jul 2016 19:23:44 GMT (envelope-from cy@FreeBSD.org) Message-Id: <201607041923.u64JNi42041457@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: cy set sender to cy@FreeBSD.org using -f From: Cy Schubert Date: Mon, 4 Jul 2016 19:23:44 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418052 - head/mail/heirloom-mailx X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Jul 2016 19:23:45 -0000 Author: cy Date: Mon Jul 4 19:23:44 2016 New Revision: 418052 URL: https://svnweb.freebsd.org/changeset/ports/418052 Log: Assume maintainership. PR: 210762 Modified: head/mail/heirloom-mailx/Makefile Modified: head/mail/heirloom-mailx/Makefile ============================================================================== --- head/mail/heirloom-mailx/Makefile Mon Jul 4 19:23:17 2016 (r418051) +++ head/mail/heirloom-mailx/Makefile Mon Jul 4 19:23:44 2016 (r418052) @@ -7,7 +7,7 @@ CATEGORIES= mail ipv6 MASTER_SITES= SF/heirloom/heirloom-${PORTNAME}/${PORTVERSION} PKGNAMEPREFIX= heirloom- -MAINTAINER= jamie@dyslexicfish.net +MAINTAINER= cy@FreeBSD.org COMMENT= BSD mail utility with MIME, IMAP, POP3, SMTP, and S/MIME extensions LICENSE= BSD4CLAUSE From owner-svn-ports-all@freebsd.org Mon Jul 4 19:47:12 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 3E9CDB91F85; Mon, 4 Jul 2016 19:47: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 mx1.freebsd.org (Postfix) with ESMTPS id 0F7332E6C; Mon, 4 Jul 2016 19:47: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 u64JlBfD049408; Mon, 4 Jul 2016 19:47:11 GMT (envelope-from cy@FreeBSD.org) Received: (from cy@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u64JlBvn049407; Mon, 4 Jul 2016 19:47:11 GMT (envelope-from cy@FreeBSD.org) Message-Id: <201607041947.u64JlBvn049407@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: cy set sender to cy@FreeBSD.org using -f From: Cy Schubert Date: Mon, 4 Jul 2016 19:47:11 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418053 - head/net/vnc X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Jul 2016 19:47:12 -0000 Author: cy Date: Mon Jul 4 19:47:11 2016 New Revision: 418053 URL: https://svnweb.freebsd.org/changeset/ports/418053 Log: Fix build. This port needs gcc 4.6 or earlier. Modified: head/net/vnc/Makefile Modified: head/net/vnc/Makefile ============================================================================== --- head/net/vnc/Makefile Mon Jul 4 19:23:44 2016 (r418052) +++ head/net/vnc/Makefile Mon Jul 4 19:47:11 2016 (r418053) @@ -48,7 +48,7 @@ DISTFILES+= X430src-1.tgz:x \ X430src-3.tgz:x .if ${OSVERSION} > 1000054 -USE_GCC= yes +USE_GCC= 4.6 MAKE_ENV= IMAKECPP="${CPP}" MAKE_ARGS= AR='ar rc' .endif From owner-svn-ports-all@freebsd.org Mon Jul 4 19:48:09 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id EC57DB91FDE; Mon, 4 Jul 2016 19:48:09 +0000 (UTC) (envelope-from bsam@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id C713D2F45; Mon, 4 Jul 2016 19:48:09 +0000 (UTC) (envelope-from bsam@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u64Jm8CC049702; Mon, 4 Jul 2016 19:48:08 GMT (envelope-from bsam@FreeBSD.org) Received: (from bsam@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u64Jm7wV049689; Mon, 4 Jul 2016 19:48:07 GMT (envelope-from bsam@FreeBSD.org) Message-Id: <201607041948.u64Jm7wV049689@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: bsam set sender to bsam@FreeBSD.org using -f From: Boris Samorodov Date: Mon, 4 Jul 2016 19:48:07 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418054 - in head: chinese/eric6 devel/cs-eric6 devel/eric6 devel/es-eric6 devel/it-eric6 devel/tr-eric6 french/eric6 german/eric6 portuguese/eric6 russian/eric6 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Jul 2016 19:48:10 -0000 Author: bsam Date: Mon Jul 4 19:48:07 2016 New Revision: 418054 URL: https://svnweb.freebsd.org/changeset/ports/418054 Log: eric6 ports: Update to version 6.1.7. Modified: head/chinese/eric6/distinfo head/devel/cs-eric6/distinfo head/devel/eric6/Makefile.inc head/devel/eric6/distinfo head/devel/es-eric6/distinfo head/devel/it-eric6/distinfo head/devel/tr-eric6/distinfo head/french/eric6/distinfo head/german/eric6/distinfo head/portuguese/eric6/distinfo head/russian/eric6/distinfo Modified: head/chinese/eric6/distinfo ============================================================================== --- head/chinese/eric6/distinfo Mon Jul 4 19:47:11 2016 (r418053) +++ head/chinese/eric6/distinfo Mon Jul 4 19:48:07 2016 (r418054) @@ -1,3 +1,3 @@ -TIMESTAMP = 1465137757 -SHA256 (eric6-i18n-zh_CN-6.1.6.tar.gz) = 4c1ada93053e3395d98fdb59dd8fa5a5cb65048f5a7fa331998f096ad693fc1b -SIZE (eric6-i18n-zh_CN-6.1.6.tar.gz) = 557933 +TIMESTAMP = 1467573095 +SHA256 (eric6-i18n-zh_CN-6.1.7.tar.gz) = aa1bf3e46695af477203f470752a7ec1f169ad02f55dbf150d287727599cd5ae +SIZE (eric6-i18n-zh_CN-6.1.7.tar.gz) = 557935 Modified: head/devel/cs-eric6/distinfo ============================================================================== --- head/devel/cs-eric6/distinfo Mon Jul 4 19:47:11 2016 (r418053) +++ head/devel/cs-eric6/distinfo Mon Jul 4 19:48:07 2016 (r418054) @@ -1,3 +1,3 @@ -TIMESTAMP = 1465138251 -SHA256 (eric6-i18n-cs-6.1.6.tar.gz) = 4a6c419fdfd6e5efb27eb5385103cd67fce3cace8e40e1e52c7aaed015db33d3 -SIZE (eric6-i18n-cs-6.1.6.tar.gz) = 565604 +TIMESTAMP = 1467573216 +SHA256 (eric6-i18n-cs-6.1.7.tar.gz) = 918db2eb7142cfeb9f1fc21b9c28b3c2fdc88816f8e4780a9972bd2de4906767 +SIZE (eric6-i18n-cs-6.1.7.tar.gz) = 565610 Modified: head/devel/eric6/Makefile.inc ============================================================================== --- head/devel/eric6/Makefile.inc Mon Jul 4 19:47:11 2016 (r418053) +++ head/devel/eric6/Makefile.inc Mon Jul 4 19:48:07 2016 (r418054) @@ -6,7 +6,7 @@ # french/eric6, german/eric6, russian/eric6 PORTNAME= eric6 -PORTVERSION= 6.1.6 +PORTVERSION= 6.1.7 MASTER_SITES= SF/eric-ide/${PORTNAME}/stable/${PORTVERSION} DISTNAME?= ${PORTNAME}-i18n-${I18N_LANG}-${PORTVERSION} WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION} Modified: head/devel/eric6/distinfo ============================================================================== --- head/devel/eric6/distinfo Mon Jul 4 19:47:11 2016 (r418053) +++ head/devel/eric6/distinfo Mon Jul 4 19:48:07 2016 (r418054) @@ -1,3 +1,3 @@ -TIMESTAMP = 1465137667 -SHA256 (eric6-6.1.6.tar.gz) = ff2c82478bab7bdb658a4cc5b9b520349c47a8e80e55a2bbadaec32a6d38cb47 -SIZE (eric6-6.1.6.tar.gz) = 10884644 +TIMESTAMP = 1467573072 +SHA256 (eric6-6.1.7.tar.gz) = 502c952bf818971163181974aa4d458227b10421fb26e410f488c00047994281 +SIZE (eric6-6.1.7.tar.gz) = 10885595 Modified: head/devel/es-eric6/distinfo ============================================================================== --- head/devel/es-eric6/distinfo Mon Jul 4 19:47:11 2016 (r418053) +++ head/devel/es-eric6/distinfo Mon Jul 4 19:48:07 2016 (r418054) @@ -1,3 +1,3 @@ -TIMESTAMP = 1465138341 -SHA256 (eric6-i18n-es-6.1.6.tar.gz) = ca30f66f30ba15acbb61e9c83cd2c11d35ef42713620168d84a8dddedced32ca -SIZE (eric6-i18n-es-6.1.6.tar.gz) = 789045 +TIMESTAMP = 1467573237 +SHA256 (eric6-i18n-es-6.1.7.tar.gz) = 21d7af080f06e7271db30e854c150520de79c041c968776c64b3dd90b87258aa +SIZE (eric6-i18n-es-6.1.7.tar.gz) = 789049 Modified: head/devel/it-eric6/distinfo ============================================================================== --- head/devel/it-eric6/distinfo Mon Jul 4 19:47:11 2016 (r418053) +++ head/devel/it-eric6/distinfo Mon Jul 4 19:48:07 2016 (r418054) @@ -1,3 +1,3 @@ -TIMESTAMP = 1465138429 -SHA256 (eric6-i18n-it-6.1.6.tar.gz) = 91fbd7af30372b05c30292f3f6821200d526295cfda23e277811fa6b79d08f7e -SIZE (eric6-i18n-it-6.1.6.tar.gz) = 641854 +TIMESTAMP = 1467573263 +SHA256 (eric6-i18n-it-6.1.7.tar.gz) = b86af0479bb9a59f795f885ae9c945b4f13601d50ce8137950d4c49222f227ad +SIZE (eric6-i18n-it-6.1.7.tar.gz) = 641861 Modified: head/devel/tr-eric6/distinfo ============================================================================== --- head/devel/tr-eric6/distinfo Mon Jul 4 19:47:11 2016 (r418053) +++ head/devel/tr-eric6/distinfo Mon Jul 4 19:48:07 2016 (r418054) @@ -1,3 +1,3 @@ -TIMESTAMP = 1465138517 -SHA256 (eric6-i18n-tr-6.1.6.tar.gz) = 0c482623b43947983d69c260ba95699ce24dc00119ade34ed703745194470e8d -SIZE (eric6-i18n-tr-6.1.6.tar.gz) = 491266 +TIMESTAMP = 1467573287 +SHA256 (eric6-i18n-tr-6.1.7.tar.gz) = 4b028ad27adfeb33518c161fb6d9ea877f974285a57a8d07275c1f369f9a643e +SIZE (eric6-i18n-tr-6.1.7.tar.gz) = 491271 Modified: head/french/eric6/distinfo ============================================================================== --- head/french/eric6/distinfo Mon Jul 4 19:47:11 2016 (r418053) +++ head/french/eric6/distinfo Mon Jul 4 19:48:07 2016 (r418054) @@ -1,3 +1,3 @@ -TIMESTAMP = 1465137846 -SHA256 (eric6-i18n-fr-6.1.6.tar.gz) = ac1804bd9a3aa69da479beddd7a6cfdb0da8e6809c36e40e0b5138a8f37adac7 -SIZE (eric6-i18n-fr-6.1.6.tar.gz) = 513289 +TIMESTAMP = 1467573119 +SHA256 (eric6-i18n-fr-6.1.7.tar.gz) = 6b1fb0657795eb919536c198874bdad6813b74d06a185d262af06b06ae3af103 +SIZE (eric6-i18n-fr-6.1.7.tar.gz) = 513292 Modified: head/german/eric6/distinfo ============================================================================== --- head/german/eric6/distinfo Mon Jul 4 19:47:11 2016 (r418053) +++ head/german/eric6/distinfo Mon Jul 4 19:48:07 2016 (r418054) @@ -1,3 +1,3 @@ -TIMESTAMP = 1465137933 -SHA256 (eric6-i18n-de-6.1.6.tar.gz) = 0caf0965ff7d2e6c64ef02762339d355a945904f0a046f0c7c4e49243b56db0b -SIZE (eric6-i18n-de-6.1.6.tar.gz) = 786357 +TIMESTAMP = 1467573144 +SHA256 (eric6-i18n-de-6.1.7.tar.gz) = ca6968bd3417524a775331cb221ddd3e04ee7e9d76f1b34c2f89abb9b0666203 +SIZE (eric6-i18n-de-6.1.7.tar.gz) = 786361 Modified: head/portuguese/eric6/distinfo ============================================================================== --- head/portuguese/eric6/distinfo Mon Jul 4 19:47:11 2016 (r418053) +++ head/portuguese/eric6/distinfo Mon Jul 4 19:48:07 2016 (r418054) @@ -1,3 +1,3 @@ -TIMESTAMP = 1465138061 -SHA256 (eric6-i18n-pt-6.1.6.tar.gz) = 3295c87be798b2ef29fbaf24a9f3a4ccf7d2d859e4e7fe88078f437377db5a6c -SIZE (eric6-i18n-pt-6.1.6.tar.gz) = 565560 +TIMESTAMP = 1467573168 +SHA256 (eric6-i18n-pt-6.1.7.tar.gz) = cf7a3ddbe6852d8f40acc879e4a5b6545fa7a66d508599817545b056fbbd4113 +SIZE (eric6-i18n-pt-6.1.7.tar.gz) = 565564 Modified: head/russian/eric6/distinfo ============================================================================== --- head/russian/eric6/distinfo Mon Jul 4 19:47:11 2016 (r418053) +++ head/russian/eric6/distinfo Mon Jul 4 19:48:07 2016 (r418054) @@ -1,3 +1,3 @@ -TIMESTAMP = 1465138149 -SHA256 (eric6-i18n-ru-6.1.6.tar.gz) = 41a37748b08bcc7f6e32539ad28a23dabb16c77cee1eb73f94c5c29c8f1237b0 -SIZE (eric6-i18n-ru-6.1.6.tar.gz) = 818718 +TIMESTAMP = 1467573192 +SHA256 (eric6-i18n-ru-6.1.7.tar.gz) = 601213ee5cdb1a6ea9269b3c6029208dece74a2382ff0337598f99ea04cffe97 +SIZE (eric6-i18n-ru-6.1.7.tar.gz) = 819276 From owner-svn-ports-all@freebsd.org Mon Jul 4 20:00:48 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 4C0DDB911DD; Mon, 4 Jul 2016 20:00:48 +0000 (UTC) (envelope-from madpilot@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 190DA24B5; Mon, 4 Jul 2016 20:00:48 +0000 (UTC) (envelope-from madpilot@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u64K0l0U053583; Mon, 4 Jul 2016 20:00:47 GMT (envelope-from madpilot@FreeBSD.org) Received: (from madpilot@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u64K0l3g053581; Mon, 4 Jul 2016 20:00:47 GMT (envelope-from madpilot@FreeBSD.org) Message-Id: <201607042000.u64K0l3g053581@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: madpilot set sender to madpilot@FreeBSD.org using -f From: Guido Falsi Date: Mon, 4 Jul 2016 20:00:47 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418055 - in head/graphics/zathura: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Jul 2016 20:00:48 -0000 Author: madpilot Date: Mon Jul 4 20:00:46 2016 New Revision: 418055 URL: https://svnweb.freebsd.org/changeset/ports/418055 Log: Update to 0.3.6. PR: 210270 Submitted by: me Approved by: maintainer timeout Deleted: head/graphics/zathura/files/ Modified: head/graphics/zathura/Makefile head/graphics/zathura/distinfo Modified: head/graphics/zathura/Makefile ============================================================================== --- head/graphics/zathura/Makefile Mon Jul 4 19:48:07 2016 (r418054) +++ head/graphics/zathura/Makefile Mon Jul 4 20:00:46 2016 (r418055) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= zathura -PORTVERSION= 0.3.4 +PORTVERSION= 0.3.6 CATEGORIES= graphics print MASTER_SITES= http://pwmt.org/projects/zathura/download/ Modified: head/graphics/zathura/distinfo ============================================================================== --- head/graphics/zathura/distinfo Mon Jul 4 19:48:07 2016 (r418054) +++ head/graphics/zathura/distinfo Mon Jul 4 20:00:46 2016 (r418055) @@ -1,2 +1,3 @@ -SHA256 (zathura-0.3.4.tar.gz) = 52c4a3efc5843ce7c720ea7357667699363c809fd34ada4cb350d0e1031d0234 -SIZE (zathura-0.3.4.tar.gz) = 167584 +TIMESTAMP = 1463993050 +SHA256 (zathura-0.3.6.tar.gz) = 086a8be25d538fc6539fbee8f01ecf16d25819dfaad50cd2dbd84e30152ccb3b +SIZE (zathura-0.3.6.tar.gz) = 169560 From owner-svn-ports-all@freebsd.org Mon Jul 4 20:44:24 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 5DC3AB91DFE; Mon, 4 Jul 2016 20:44:24 +0000 (UTC) (envelope-from mm@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 1EDF82808; Mon, 4 Jul 2016 20:44:24 +0000 (UTC) (envelope-from mm@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u64KiNAg072289; Mon, 4 Jul 2016 20:44:23 GMT (envelope-from mm@FreeBSD.org) Received: (from mm@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u64KiNFg072286; Mon, 4 Jul 2016 20:44:23 GMT (envelope-from mm@FreeBSD.org) Message-Id: <201607042044.u64KiNFg072286@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: mm set sender to mm@FreeBSD.org using -f From: Martin Matuska Date: Mon, 4 Jul 2016 20:44:23 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418056 - head/converters/wkhtmltopdf X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Jul 2016 20:44:24 -0000 Author: mm Date: Mon Jul 4 20:44:22 2016 New Revision: 418056 URL: https://svnweb.freebsd.org/changeset/ports/418056 Log: Update converters/wkhtmltopdf to 0.12.3.2 Modified: head/converters/wkhtmltopdf/Makefile head/converters/wkhtmltopdf/distinfo head/converters/wkhtmltopdf/pkg-plist Modified: head/converters/wkhtmltopdf/Makefile ============================================================================== --- head/converters/wkhtmltopdf/Makefile Mon Jul 4 20:00:46 2016 (r418055) +++ head/converters/wkhtmltopdf/Makefile Mon Jul 4 20:44:22 2016 (r418056) @@ -2,17 +2,14 @@ # $FreeBSD$ PORTNAME= wkhtmltopdf -PORTVERSION= 0.12.2.1 -PORTREVISION= 1 +PORTVERSION= 0.12.3.2 CATEGORIES= converters -MASTER_SITES= SF/${PORTNAME}/${PORTVERSION} -DISTNAME= wkhtmltox-${PORTVERSION} MAINTAINER= mm@FreeBSD.org COMMENT= Convert HTML (or live webpages) to PDF or image LICENSE= LGPL3 -LICENSE_FILE= ${WRKSRC}/COPYING +LICENSE_FILE= ${WRKSRC}/LICENSE BROKEN_powerpc64= Does not build @@ -20,13 +17,15 @@ LIB_DEPENDS= libfontconfig.so:x11-fonts/ libfreetype.so:print/freetype2 \ libpng.so:graphics/png -USES= gmake iconv jpeg perl5 pkgconfig tar:bzip2 +USES= gmake iconv jpeg perl5 pkgconfig USE_XORG= x11 xext xrender USE_PERL5= build USE_LDCONFIG= yes +USE_GITHUB= yes +WKQT_TAGNAME= fe194f9 +GH_TUPLE= ${PORTNAME}:qt:${WKQT_TAGNAME}:qt HAS_CONFIGURE= yes -WRKSRC= ${WRKDIR}/wkhtmltox-${PORTVERSION} PATCH_WRKSRC= ${WRKSRC}/qt CONFIGURE_WRKSRC= ${WRKSRC}/build/qt BUILD_WRKSRC= ${WRKSRC}/build/qt @@ -52,6 +51,10 @@ CONFIGURE_ARGS= -prefix ${WRKSRC}/build/ MAKE_ARGS= INSTALL_ROOT="${STAGEDIR}${PREFIX}" +pre-patch: + @${RMDIR} ${WRKSRC}/qt + @${LN} -s ../qt-${WKQT_TAGNAME} ${WRKSRC}/qt + post-patch: @${REINPLACE_CMD} -e 's|/usr/local|${LOCALBASE}|g' \ -e 's|/usr/X11R6/include|${LOCALBASE}/include/X11|g' \ Modified: head/converters/wkhtmltopdf/distinfo ============================================================================== --- head/converters/wkhtmltopdf/distinfo Mon Jul 4 20:00:46 2016 (r418055) +++ head/converters/wkhtmltopdf/distinfo Mon Jul 4 20:44:22 2016 (r418056) @@ -1,2 +1,5 @@ -SHA256 (wkhtmltox-0.12.2.1.tar.bz2) = acb62fa593c537f028883bc827cbb459ed232611d810be109f3942ec8c5aa5c2 -SIZE (wkhtmltox-0.12.2.1.tar.bz2) = 36248626 +TIMESTAMP = 1467664988 +SHA256 (wkhtmltopdf-wkhtmltopdf-0.12.3.2_GH0.tar.gz) = 721523ef87ccb937bf3714ade19b112f4cb8a2cd840e34b30f26ee262c41fe16 +SIZE (wkhtmltopdf-wkhtmltopdf-0.12.3.2_GH0.tar.gz) = 128050 +SHA256 (wkhtmltopdf-qt-fe194f9_GH0.tar.gz) = fa3f9dfc3fe3ee68280226bd1f4b8500883dd2549b985373e71aeff4e958b95a +SIZE (wkhtmltopdf-qt-fe194f9_GH0.tar.gz) = 173008155 Modified: head/converters/wkhtmltopdf/pkg-plist ============================================================================== --- head/converters/wkhtmltopdf/pkg-plist Mon Jul 4 20:00:46 2016 (r418055) +++ head/converters/wkhtmltopdf/pkg-plist Mon Jul 4 20:44:22 2016 (r418056) @@ -7,6 +7,6 @@ include/wkhtmltox/pdf.h lib/libwkhtmltox.so lib/libwkhtmltox.so.0 lib/libwkhtmltox.so.0.12 -lib/libwkhtmltox.so.0.12.2 +lib/libwkhtmltox.so.0.12.3 man/man1/wkhtmltoimage.1.gz man/man1/wkhtmltopdf.1.gz From owner-svn-ports-all@freebsd.org Mon Jul 4 20:48:27 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id B9A23B91F45; Mon, 4 Jul 2016 20:48:27 +0000 (UTC) (envelope-from rene@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 5C0FD2AF8; Mon, 4 Jul 2016 20:48:27 +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 u64KmQVM075234; Mon, 4 Jul 2016 20:48:26 GMT (envelope-from rene@FreeBSD.org) Received: (from rene@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u64KmOhv075213; Mon, 4 Jul 2016 20:48:24 GMT (envelope-from rene@FreeBSD.org) Message-Id: <201607042048.u64KmOhv075213@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: rene set sender to rene@FreeBSD.org using -f From: Rene Ladan Date: Mon, 4 Jul 2016 20:48:24 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418057 - in head: . archivers archivers/epkg audio audio/alac audio/hawkvoice audio/mangler audio/streamtuner biology biology/platon cad cad/qcad-partslib comms comms/dump1090_mr datab... X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Jul 2016 20:48:27 -0000 Author: rene Date: Mon Jul 4 20:48:23 2016 New Revision: 418057 URL: https://svnweb.freebsd.org/changeset/ports/418057 Log: Remove expired ports without open PRs: 2016-07-04 security/openpgpsdk: Broken for more than 6 months 2016-07-04 security/radiusniff: Broken for more than 6 months 2016-07-04 security/pear-Auth_OpenID: Broken for more than 6 months 2016-07-04 security/sshit: Broken for more than 6 months 2016-07-04 security/ifd-slb_rf60: Broken for more than 6 months 2016-07-04 security/rainbowcrack: Broken for more than 6 months 2016-07-04 security/vlog: Broken for more than 6 months 2016-07-04 security/cryptstring: Broken for more than 6 months 2016-07-04 x11/libdnd: Broken for more than 6 months 2016-07-04 x11/xlupe: Broken for more than 6 months 2016-07-04 x11/xco: Broken for more than 6 months 2016-07-04 x11/xclick: Broken for more than 6 months 2016-07-04 devel/ocfpcsc: Broken for more than 6 months 2016-07-04 devel/dits: Broken for more than 6 months 2016-07-04 devel/ruby-cache: Broken for more than 6 months 2016-07-04 devel/rapidsvn: Broken for more than 6 months 2016-07-04 devel/svnkit: Broken for more than 6 months 2016-07-04 devel/py-EnthoughtBase: Broken for more than 6 months 2016-07-04 devel/cl-uffi: Broken for more than 6 months 2016-07-04 devel/ruby-event-loop: Broken for more than 6 months 2016-07-04 devel/libqxt: Broken for more than 6 months 2016-07-04 devel/dasm: Broken for more than 6 months 2016-07-04 devel/libopendaap: Broken for more than 6 months 2016-07-04 devel/cl-uffi-sbcl: Depends on expiring devel/cl-uffi 2016-07-04 devel/cvs2p4: Broken for more than 6 months 2016-07-04 devel/bufferpool: Broken for more than 6 months 2016-07-04 devel/ifd-test: Broken for more than 6 months 2016-07-04 devel/eric4: Broken for more than 6 months 2016-07-04 devel/uclmmbase: Broken for more than 6 months 2016-07-04 devel/obfuscatejs: Broken for more than 6 months 2016-07-04 devel/oniguruma: Broken for more than 6 months 2016-07-04 devel/libbnr: Broken for more than 6 months 2016-07-04 devel/c4: Broken for more than 6 months 2016-07-04 devel/memcheck: Broken for more than 6 months 2016-07-04 devel/liblcfg: Broken for more than 6 months 2016-07-04 devel/omake: Broken for more than 6 months 2016-07-04 devel/svndelta: Broken for more than 6 months 2016-07-04 devel/papp: Broken for more than 6 months 2016-07-04 devel/mk: Broken for more than 6 months 2016-07-04 devel/avltree: Broken for more than 6 months 2016-07-04 devel/cbind: Broken for more than 6 months 2016-07-04 devel/tclgetopts: Broken for more than 6 months 2016-07-04 devel/antlrworks: Broken for more than 6 months 2016-07-04 devel/acme: Broken for more than 6 months 2016-07-04 devel/libopensync022: Broken for more than 6 months 2016-07-04 archivers/epkg: Broken for more than 6 months 2016-07-04 print/enscriptfonts: Broken for more than 6 months 2016-07-04 print/mup: Broken for more than 6 months 2016-07-04 lang/lua-mode.el: Broken for more than 6 months 2016-07-04 lang/s9fes: Broken for more than 6 months 2016-07-04 lang/alisp: Broken for more than 6 months 2016-07-04 lang/intel2gas: Broken for more than 6 months 2016-07-04 lang/stalin: Broken for more than 6 months 2016-07-04 french/eric4: Depends on expiring devel/eric4 2016-07-04 textproc/exslt: Broken for more than 6 months 2016-07-04 textproc/xt: Broken for more than 6 months 2016-07-04 textproc/ssddiff: Broken for more than 6 months 2016-07-04 textproc/xslint: Broken for more than 6 months 2016-07-04 textproc/cbedic: Broken for more than 6 months 2016-07-04 textproc/tralics: Broken for more than 6 months 2016-07-04 textproc/docbookide.el: Broken for more than 6 months 2016-07-04 textproc/glpi-plugins-AdditionalReports: Broken for more than 6 months 2016-07-04 textproc/tdhkit: Broken for more than 6 months 2016-07-04 textproc/p5-Groonga-API: Broken for more than 6 months 2016-07-04 textproc/glpi-plugins-DataInjection: Broken for more than 6 months 2016-07-04 dns/ldnsm: Broken for more than 6 months 2016-07-04 japanese/guesswork-classic: Broken for more than 6 months 2016-07-04 japanese/texinfo: Broken for more than 6 months 2016-07-04 japanese/jyuroku: Broken for more than 6 months 2016-07-04 japanese/mtools: Broken for more than 6 months 2016-07-04 palm/pdbar: Broken for more than 6 months 2016-07-04 graphics/gplot: Broken for more than 6 months 2016-07-04 graphics/white_dune: Broken for more than 6 months 2016-07-04 graphics/whirlgif: Broken for more than 6 months 2016-07-04 graphics/libaux: Broken for more than 6 months 2016-07-04 graphics/import-pictures: Broken for more than 6 months 2016-07-04 math/xgobi: Broken for more than 6 months 2016-07-04 math/fricas: Broken for more than 6 months 2016-07-04 math/dcdflib: Broken for more than 6 months 2016-07-04 math/libneural: Broken for more than 6 months 2016-07-04 math/open-axiom: Broken for more than 6 months 2016-07-04 irc/nefarious: Broken for more than 6 months 2016-07-04 irc/slirc: Broken for more than 6 months 2016-07-04 irc/ratbox-respond: Broken for more than 6 months 2016-07-04 irc/qwebirc: Broken for more than 6 months 2016-07-04 biology/platon: Broken for more than 6 months 2016-07-04 news/slnr: Broken for more than 6 months 2016-07-04 science/jmol: Broken for more than 6 months 2016-07-04 net/nstxd: Broken for more than 6 months 2016-07-04 net/sprinkle: Broken for more than 6 months 2016-07-04 editors/ssam: Broken for more than 6 months 2016-07-04 editors/fb: Broken for more than 6 months 2016-07-04 misc/quotes: Broken for more than 6 months 2016-07-04 misc/boxquote.el: Broken for more than 6 months 2016-07-04 misc/pypanda: Broken for more than 6 months 2016-07-04 misc/cuecat: Broken for more than 6 months 2016-07-04 deskutils/displaycalibrator: Broken for more than 6 months 2016-07-04 german/eric4: Depends on expiring devel/eric4 2016-07-04 multimedia/vic: Depends on expiring devel/uclmmbase 2016-07-04 multimedia/ggrab: Broken for more than 6 months 2016-07-04 emulators/dynamips: Broken for more than 6 months 2016-07-04 emulators/dynamips-devel: Broken for more than 6 months 2016-07-04 emulators/sim6811: Broken for more than 6 months 2016-07-04 emulators/minivmac: Broken for more than 6 months 2016-07-04 cad/qcad-partslib: Broken for more than 6 months 2016-07-04 comms/dump1090_mr: Broken for more than 6 months 2016-07-04 x11-fm/asfiles: Depends on expiring x11/libdnd 2016-07-04 x11-fonts/fonts-te: Broken for more than 6 months 2016-07-04 sysutils/rsyncmanager: Broken for more than 6 months 2016-07-04 sysutils/jfbterm: Broken for more than 6 months 2016-07-04 sysutils/daedalus: Broken for more than 6 months 2016-07-04 sysutils/pcfclock: Broken for more than 6 months 2016-07-04 sysutils/vlogger: Broken for more than 6 months 2016-07-04 sysutils/bontmia: Broken for more than 6 months 2016-07-04 mail/pop3gwd: Broken for more than 6 months 2016-07-04 mail/mailtray: Broken for more than 6 months 2016-07-04 mail/pflogstats: Broken for more than 6 months 2016-07-04 mail/exact: Broken for more than 6 months 2016-07-04 mail/wmpop3: Broken for more than 6 months 2016-07-04 mail/qmail-conf: Broken for more than 6 months 2016-07-04 mail/gld: Broken for more than 6 months 2016-07-04 mail/dsbl-testers: Broken for more than 6 months 2016-07-04 mail/vqregister: Broken for more than 6 months 2016-07-04 mail/atmail: Broken for more than 6 months 2016-07-04 mail/ml: Broken for more than 6 months 2016-07-04 net-im/icb: Broken for more than 6 months 2016-07-04 net-im/cicquin: Broken for more than 6 months 2016-07-04 net-im/pidgin-manualsize: Broken for more than 6 months 2016-07-04 net-im/pidgin-rhythmbox: Broken for more than 6 months 2016-07-04 russian/eric4: Depends on expiring devel/eric4 2016-07-04 russian/fortune-bashorgru: Broken for more than 6 months 2016-07-04 www/xpi-clearfields: Broken for more than 6 months 2016-07-04 www/pecl-varnish: Broken for more than 6 months 2016-07-04 www/py-requests-oauth-hook: Broken for more than 6 months 2016-07-04 www/hudson: Broken for more than 6 months 2016-07-04 www/xpi-mldonkey: Broken for more than 6 months 2016-07-04 www/xpi-cookiesafe: Broken for more than 6 months 2016-07-04 www/trac-mastertickets: Broken for more than 6 months 2016-07-04 www/dotclear: Broken for more than 6 months 2016-07-04 www/ruby-wgettsv: Broken for more than 6 months 2016-07-04 www/wwwstat: Broken for more than 6 months 2016-07-04 www/xpi-prism: Broken for more than 6 months 2016-07-04 www/xpi-fasterfox: Broken for more than 6 months 2016-07-04 www/siteframe: Broken for more than 6 months 2016-07-04 www/py-urljr: Broken for more than 6 months 2016-07-04 www/reviewboard: Broken for more than 6 months 2016-07-04 www/xpi-tabletools: Broken for more than 6 months 2016-07-04 www/wikindx: Broken for more than 6 months 2016-07-04 www/typolight: Broken for more than 6 months 2016-07-04 www/varnish-libvmod-header: Broken for more than 6 months 2016-07-04 www/xpi-gbrain: Broken for more than 6 months 2016-07-04 www/trac-robotstxt: Broken for more than 6 months 2016-07-04 www/simplog: Broken for more than 6 months 2016-07-04 www/chtml: Broken for more than 6 months 2016-07-04 databases/postgresql_autodoc: Broken for more than 6 months 2016-07-04 databases/oracle_odbc_driver: Broken for more than 6 months 2016-07-04 databases/mysql-xql: Broken for more than 6 months 2016-07-04 databases/mysql-udf-sys: Broken for more than 6 months 2016-07-04 games/lucidlife: Broken for more than 6 months 2016-07-04 games/gma: Broken for more than 6 months 2016-07-04 games/smiley: Broken for more than 6 months 2016-07-04 games/noegnud-littlehack: Broken for more than 6 months 2016-07-04 games/sdlquake2: Broken for more than 6 months 2016-07-04 games/daimonin: Depends on expiring games/daimonin-music 2016-07-04 games/noegnud-nethack: Broken for more than 6 months 2016-07-04 games/xbomber: Broken for more than 6 months 2016-07-04 games/xwelltris: Broken for more than 6 months 2016-07-04 games/ftjava: Broken for more than 6 months 2016-07-04 games/daimonin-music: Broken for more than 6 months 2016-07-04 games/gno3dtet: Broken for more than 6 months 2016-07-04 games/qtv: Broken for more than 6 months 2016-07-04 games/xwordpy: Broken for more than 6 months 2016-07-04 games/netris: Broken for more than 6 months 2016-07-04 games/rt2-demo: Broken for more than 6 months 2016-07-04 games/noegnud-addons: Broken for more than 6 months 2016-07-04 games/noegnud-nethack-deet: Broken for more than 6 months 2016-07-04 games/live-f1: Broken for more than 6 months 2016-07-04 games/xonix: Broken for more than 6 months 2016-07-04 games/fgkicker: Broken for more than 6 months 2016-07-04 games/tank: Depends on expiring graphics/libaux 2016-07-04 games/linux-nwserver: Broken for more than 6 months 2016-07-04 games/quake2-zaero: Broken for more than 6 months 2016-07-04 games/pyching: Broken for more than 6 months 2016-07-04 games/thevalley: Broken for more than 6 months 2016-07-04 games/xroads: Broken for more than 6 months 2016-07-04 games/fxsudoku: Broken for more than 6 months 2016-07-04 games/sudoku: Broken for more than 6 months 2016-07-04 games/kmancala: Broken for more than 6 months 2016-07-04 games/plonx: Broken for more than 6 months 2016-07-04 games/wmminichess: Broken for more than 6 months 2016-07-04 games/noegnud-slashem: Broken for more than 6 months 2016-07-04 games/latrine: Broken for more than 6 months 2016-07-04 games/pysycache-themes: Broken for more than 6 months 2016-07-04 games/nibbles: Broken for more than 6 months 2016-07-04 games/hlstatsx: Broken for more than 6 months 2016-07-04 audio/streamtuner: Broken for more than 6 months 2016-07-04 audio/mangler: Broken for more than 6 months 2016-07-04 audio/hawkvoice: Broken for more than 6 months 2016-07-04 audio/alac: Broken for more than 6 months 2016-07-04 x11-wm/e-module-mpdule: Broken for more than 6 months 2016-07-04 x11-wm/e-module-tclock: Broken for more than 6 months 2016-07-04 x11-wm/musca: Broken for more than 6 months 2016-07-04 x11-wm/e-module-places: Broken for more than 6 months 2016-07-04 x11-wm/e-module-forecasts: Broken for more than 6 months 2016-07-04 x11-wm/e-module-net: Broken for more than 6 months 2016-07-04 x11-wm/e-module-penguins: Broken for more than 6 months 2016-07-04 ftp/fget: Broken for more than 6 months 2016-07-04 net-mgmt/netmond: Broken for more than 6 months 2016-07-04 net-mgmt/ipfm: Broken for more than 6 months Deleted: head/archivers/epkg/ head/audio/alac/ head/audio/hawkvoice/ head/audio/mangler/ head/audio/streamtuner/ head/biology/platon/ head/cad/qcad-partslib/ head/comms/dump1090_mr/ head/databases/mysql-udf-sys/ head/databases/mysql-xql/ head/databases/oracle_odbc_driver/ head/databases/postgresql_autodoc/ head/deskutils/displaycalibrator/ head/devel/acme/ head/devel/antlrworks/ head/devel/avltree/ head/devel/bufferpool/ head/devel/c4/ head/devel/cbind/ head/devel/cl-uffi/ head/devel/cl-uffi-sbcl/ head/devel/cvs2p4/ head/devel/dasm/ head/devel/dits/ head/devel/eric4/ head/devel/ifd-test/ head/devel/libbnr/ head/devel/liblcfg/ head/devel/libopendaap/ head/devel/libopensync022/ head/devel/libqxt/ head/devel/memcheck/ head/devel/mk/ head/devel/obfuscatejs/ head/devel/ocfpcsc/ head/devel/omake/ head/devel/oniguruma/ head/devel/papp/ head/devel/py-EnthoughtBase/ head/devel/rapidsvn/ head/devel/ruby-cache/ head/devel/ruby-event-loop/ head/devel/svndelta/ head/devel/svnkit/ head/devel/tclgetopts/ head/devel/uclmmbase/ head/dns/ldnsm/ head/editors/fb/ head/editors/ssam/ head/emulators/dynamips/ head/emulators/dynamips-devel/ head/emulators/minivmac/ head/emulators/sim6811/ head/french/eric4/ head/ftp/fget/ head/games/daimonin/ head/games/daimonin-music/ head/games/fgkicker/ head/games/ftjava/ head/games/fxsudoku/ head/games/gma/ head/games/gno3dtet/ head/games/hlstatsx/ head/games/kmancala/ head/games/latrine/ head/games/linux-nwserver/ head/games/live-f1/ head/games/lucidlife/ head/games/netris/ head/games/nibbles/ head/games/noegnud-addons/ head/games/noegnud-littlehack/ head/games/noegnud-nethack/ head/games/noegnud-nethack-deet/ head/games/noegnud-slashem/ head/games/plonx/ head/games/pyching/ head/games/pysycache-themes/ head/games/qtv/ head/games/quake2-zaero/ head/games/rt2-demo/ head/games/sdlquake2/ head/games/smiley/ head/games/sudoku/ head/games/tank/ head/games/thevalley/ head/games/wmminichess/ head/games/xbomber/ head/games/xonix/ head/games/xroads/ head/games/xwelltris/ head/games/xwordpy/ head/german/eric4/ head/graphics/gplot/ head/graphics/import-pictures/ head/graphics/libaux/ head/graphics/whirlgif/ head/graphics/white_dune/ head/irc/nefarious/ head/irc/qwebirc/ head/irc/ratbox-respond/ head/irc/slirc/ head/japanese/guesswork-classic/ head/japanese/jyuroku/ head/japanese/mtools/ head/japanese/texinfo/ head/lang/alisp/ head/lang/intel2gas/ head/lang/lua-mode.el/ head/lang/s9fes/ head/lang/stalin/ head/mail/atmail/ head/mail/dsbl-testers/ head/mail/exact/ head/mail/gld/ head/mail/mailtray/ head/mail/ml/ head/mail/pflogstats/ head/mail/pop3gwd/ head/mail/qmail-conf/ head/mail/vqregister/ head/mail/wmpop3/ head/math/dcdflib/ head/math/fricas/ head/math/libneural/ head/math/open-axiom/ head/math/xgobi/ head/misc/boxquote.el/ head/misc/cuecat/ head/misc/pypanda/ head/misc/quotes/ head/multimedia/ggrab/ head/multimedia/vic/ head/net-im/cicquin/ head/net-im/icb/ head/net-im/pidgin-manualsize/ head/net-im/pidgin-rhythmbox/ head/net-mgmt/ipfm/ head/net-mgmt/netmond/ head/net/nstxd/ head/net/sprinkle/ head/news/slnr/ head/palm/pdbar/ head/print/enscriptfonts/ head/print/mup/ head/russian/eric4/ head/russian/fortune-bashorgru/ head/science/jmol/ head/security/cryptstring/ head/security/ifd-slb_rf60/ head/security/openpgpsdk/ head/security/pear-Auth_OpenID/ head/security/radiusniff/ head/security/rainbowcrack/ head/security/sshit/ head/security/vlog/ head/sysutils/bontmia/ head/sysutils/daedalus/ head/sysutils/jfbterm/ head/sysutils/pcfclock/ head/sysutils/rsyncmanager/ head/sysutils/vlogger/ head/textproc/cbedic/ head/textproc/docbookide.el/ head/textproc/exslt/ head/textproc/glpi-plugins-AdditionalReports/ head/textproc/glpi-plugins-DataInjection/ head/textproc/p5-Groonga-API/ head/textproc/ssddiff/ head/textproc/tdhkit/ head/textproc/tralics/ head/textproc/xslint/ head/textproc/xt/ head/www/chtml/ head/www/dotclear/ head/www/hudson/ head/www/pecl-varnish/ head/www/py-requests-oauth-hook/ head/www/py-urljr/ head/www/reviewboard/ head/www/ruby-wgettsv/ head/www/simplog/ head/www/siteframe/ head/www/trac-mastertickets/ head/www/trac-robotstxt/ head/www/typolight/ head/www/varnish-libvmod-header/ head/www/wikindx/ head/www/wwwstat/ head/www/xpi-clearfields/ head/www/xpi-cookiesafe/ head/www/xpi-fasterfox/ head/www/xpi-gbrain/ head/www/xpi-mldonkey/ head/www/xpi-prism/ head/www/xpi-tabletools/ head/x11-fm/asfiles/ head/x11-fonts/fonts-te/ head/x11-wm/e-module-forecasts/ head/x11-wm/e-module-mpdule/ head/x11-wm/e-module-net/ head/x11-wm/e-module-penguins/ head/x11-wm/e-module-places/ head/x11-wm/e-module-tclock/ head/x11-wm/musca/ head/x11/libdnd/ head/x11/xclick/ head/x11/xco/ head/x11/xlupe/ Modified: head/LEGAL head/MOVED head/archivers/Makefile head/audio/Makefile head/biology/Makefile head/cad/Makefile head/comms/Makefile head/databases/Makefile head/deskutils/Makefile head/devel/Makefile head/dns/Makefile head/editors/Makefile head/emulators/Makefile head/french/Makefile head/ftp/Makefile head/games/Makefile head/german/Makefile head/graphics/Makefile head/irc/Makefile head/japanese/Makefile head/lang/Makefile head/mail/Makefile head/math/Makefile head/misc/Makefile head/multimedia/Makefile head/net-im/Makefile head/net-mgmt/Makefile head/net/Makefile head/news/Makefile head/palm/Makefile head/print/Makefile head/russian/Makefile head/science/Makefile head/security/Makefile head/sysutils/Makefile head/textproc/Makefile head/www/Makefile head/x11-fm/Makefile head/x11-fonts/Makefile head/x11-wm/Makefile head/x11/Makefile Modified: head/LEGAL ============================================================================== --- head/LEGAL Mon Jul 4 20:44:22 2016 (r418056) +++ head/LEGAL Mon Jul 4 20:48:23 2016 (r418057) @@ -62,7 +62,6 @@ dcl-*-C.tar.gz science/cdcl No commerc dcl-*.tar.gz science/dcl No commercial use defcon* games/linux-defcon Redistribution is limited, see license djbdns* dns/djbdns No license -- see http://cr.yp.to/softwarelaw.html -djbdns-1.05.tar.gz mail/qmail-conf No license -- see http://cr.yp.to/softwarelaw.html djbfft-* math/djbfft No license -- see http://cr.yp.to/softwarelaw.html dlv lang/dlv Not sure if we can redistribute it dmd-* lang/dmd1 No redistribution of non validated binaries @@ -187,7 +186,6 @@ perforce/*/p4d devel/p4d Restricted di perforce/*/p4ftpd devel/p4ftpd Restricted distribution perforce/*/p4p devel/p4p Restricted distribution perforce/*/p4web devel/p4web Restricted distribution -platon* biology/platon $5000 USD for commercial users, free for academic ppsmall-* archivers/ppunpack No commercial redistribution qtools-* mail/qtools No license -- see http://cr.yp.to/softwarelaw.html quake4-linux-* games/linux-quake4 Redistribution is limited; see the license @@ -251,7 +249,6 @@ xchada01.lzh games/xchadance Contains xephem-* astro/xephem Personal use only XFrisk-*.tar.gz games/xfrisk Possible trademark infringement xGate/* japanese/xgate Requested by Orangesoft Inc. -xgobi.sh.gz math/xgobi Restrictive copyright (do not sell for profit) xhime*.tgz games/xhime Contains commercial character data xinvaders-* games/xinvaders Do not sell for profit xmdiary-* deskutils/xmdiary Do not sell for profit Modified: head/MOVED ============================================================================== --- head/MOVED Mon Jul 4 20:44:22 2016 (r418056) +++ head/MOVED Mon Jul 4 20:48:23 2016 (r418057) @@ -8387,3 +8387,212 @@ www/p5-WWW-Google-Notebook||2016-06-30|H sysutils/syslog-ng-incubator03||2016-06-30|Has expired: EOL, no longer supported by bababit.hu www/node5|www/node|2016-07-01|Has expired: upstream support has ended, use www/node instead devel/p5-Test2|devel/p5-Test-Simple|2016-07-02|Has expired: Test2 has been merged into Test-Simple distribution +security/openpgpsdk||2016-07-04|Has expired: Broken for more than 6 months +security/radiusniff||2016-07-04|Has expired: Broken for more than 6 months +security/pear-Auth_OpenID||2016-07-04|Has expired: Broken for more than 6 months +security/sshit||2016-07-04|Has expired: Broken for more than 6 months +security/ifd-slb_rf60||2016-07-04|Has expired: Broken for more than 6 months +security/rainbowcrack||2016-07-04|Has expired: Broken for more than 6 months +security/vlog||2016-07-04|Has expired: Broken for more than 6 months +security/cryptstring||2016-07-04|Has expired: Broken for more than 6 months +x11/libdnd||2016-07-04|Has expired: Broken for more than 6 months +x11/xlupe||2016-07-04|Has expired: Broken for more than 6 months +x11/xco||2016-07-04|Has expired: Broken for more than 6 months +x11/xclick||2016-07-04|Has expired: Broken for more than 6 months +devel/ocfpcsc||2016-07-04|Has expired: Broken for more than 6 months +devel/dits||2016-07-04|Has expired: Broken for more than 6 months +devel/ruby-cache||2016-07-04|Has expired: Broken for more than 6 months +devel/rapidsvn||2016-07-04|Has expired: Broken for more than 6 months +devel/svnkit||2016-07-04|Has expired: Broken for more than 6 months +devel/py-EnthoughtBase||2016-07-04|Has expired: Broken for more than 6 months +devel/cl-uffi||2016-07-04|Has expired: Broken for more than 6 months +devel/ruby-event-loop||2016-07-04|Has expired: Broken for more than 6 months +devel/libqxt||2016-07-04|Has expired: Broken for more than 6 months +devel/dasm||2016-07-04|Has expired: Broken for more than 6 months +devel/libopendaap||2016-07-04|Has expired: Broken for more than 6 months +devel/cl-uffi-sbcl||2016-07-04|Has expired: Depends on expiring devel/cl-uffi +devel/cvs2p4||2016-07-04|Has expired: Broken for more than 6 months +devel/bufferpool||2016-07-04|Has expired: Broken for more than 6 months +devel/ifd-test||2016-07-04|Has expired: Broken for more than 6 months +devel/eric4||2016-07-04|Has expired: Broken for more than 6 months +devel/uclmmbase||2016-07-04|Has expired: Broken for more than 6 months +devel/obfuscatejs||2016-07-04|Has expired: Broken for more than 6 months +devel/oniguruma||2016-07-04|Has expired: Broken for more than 6 months +devel/libbnr||2016-07-04|Has expired: Broken for more than 6 months +devel/c4||2016-07-04|Has expired: Broken for more than 6 months +devel/memcheck||2016-07-04|Has expired: Broken for more than 6 months +devel/liblcfg||2016-07-04|Has expired: Broken for more than 6 months +devel/omake||2016-07-04|Has expired: Broken for more than 6 months +devel/svndelta||2016-07-04|Has expired: Broken for more than 6 months +devel/papp||2016-07-04|Has expired: Broken for more than 6 months +devel/mk||2016-07-04|Has expired: Broken for more than 6 months +devel/avltree||2016-07-04|Has expired: Broken for more than 6 months +devel/cbind||2016-07-04|Has expired: Broken for more than 6 months +devel/tclgetopts||2016-07-04|Has expired: Broken for more than 6 months +devel/antlrworks||2016-07-04|Has expired: Broken for more than 6 months +devel/acme||2016-07-04|Has expired: Broken for more than 6 months +devel/libopensync022||2016-07-04|Has expired: Broken for more than 6 months +archivers/epkg||2016-07-04|Has expired: Broken for more than 6 months +print/enscriptfonts||2016-07-04|Has expired: Broken for more than 6 months +print/mup||2016-07-04|Has expired: Broken for more than 6 months +lang/lua-mode.el||2016-07-04|Has expired: Broken for more than 6 months +lang/s9fes||2016-07-04|Has expired: Broken for more than 6 months +lang/alisp||2016-07-04|Has expired: Broken for more than 6 months +lang/intel2gas||2016-07-04|Has expired: Broken for more than 6 months +lang/stalin||2016-07-04|Has expired: Broken for more than 6 months +french/eric4||2016-07-04|Has expired: Depends on expiring devel/eric4 +textproc/exslt||2016-07-04|Has expired: Broken for more than 6 months +textproc/xt||2016-07-04|Has expired: Broken for more than 6 months +textproc/ssddiff||2016-07-04|Has expired: Broken for more than 6 months +textproc/xslint||2016-07-04|Has expired: Broken for more than 6 months +textproc/cbedic||2016-07-04|Has expired: Broken for more than 6 months +textproc/tralics||2016-07-04|Has expired: Broken for more than 6 months +textproc/docbookide.el||2016-07-04|Has expired: Broken for more than 6 months +textproc/glpi-plugins-AdditionalReports||2016-07-04|Has expired: Broken for more than 6 months +textproc/tdhkit||2016-07-04|Has expired: Broken for more than 6 months +textproc/p5-Groonga-API||2016-07-04|Has expired: Broken for more than 6 months +textproc/glpi-plugins-DataInjection||2016-07-04|Has expired: Broken for more than 6 months +dns/ldnsm||2016-07-04|Has expired: Broken for more than 6 months +japanese/guesswork-classic||2016-07-04|Has expired: Broken for more than 6 months +japanese/texinfo||2016-07-04|Has expired: Broken for more than 6 months +japanese/jyuroku||2016-07-04|Has expired: Broken for more than 6 months +japanese/mtools||2016-07-04|Has expired: Broken for more than 6 months +palm/pdbar||2016-07-04|Has expired: Broken for more than 6 months +graphics/gplot||2016-07-04|Has expired: Broken for more than 6 months +graphics/white_dune||2016-07-04|Has expired: Broken for more than 6 months +graphics/whirlgif||2016-07-04|Has expired: Broken for more than 6 months +graphics/libaux||2016-07-04|Has expired: Broken for more than 6 months +graphics/import-pictures||2016-07-04|Has expired: Broken for more than 6 months +math/xgobi||2016-07-04|Has expired: Broken for more than 6 months +math/fricas||2016-07-04|Has expired: Broken for more than 6 months +math/dcdflib||2016-07-04|Has expired: Broken for more than 6 months +math/libneural||2016-07-04|Has expired: Broken for more than 6 months +math/open-axiom||2016-07-04|Has expired: Broken for more than 6 months +irc/nefarious||2016-07-04|Has expired: Broken for more than 6 months +irc/slirc||2016-07-04|Has expired: Broken for more than 6 months +irc/ratbox-respond||2016-07-04|Has expired: Broken for more than 6 months +irc/qwebirc||2016-07-04|Has expired: Broken for more than 6 months +biology/platon||2016-07-04|Has expired: Broken for more than 6 months +news/slnr||2016-07-04|Has expired: Broken for more than 6 months +science/jmol||2016-07-04|Has expired: Broken for more than 6 months +net/nstxd||2016-07-04|Has expired: Broken for more than 6 months +net/sprinkle||2016-07-04|Has expired: Broken for more than 6 months +editors/ssam||2016-07-04|Has expired: Broken for more than 6 months +editors/fb||2016-07-04|Has expired: Broken for more than 6 months +misc/quotes||2016-07-04|Has expired: Broken for more than 6 months +misc/boxquote.el||2016-07-04|Has expired: Broken for more than 6 months +misc/pypanda||2016-07-04|Has expired: Broken for more than 6 months +misc/cuecat||2016-07-04|Has expired: Broken for more than 6 months +deskutils/displaycalibrator||2016-07-04|Has expired: Broken for more than 6 months +german/eric4||2016-07-04|Has expired: Depends on expiring devel/eric4 +multimedia/vic||2016-07-04|Has expired: Depends on expiring devel/uclmmbase +multimedia/ggrab||2016-07-04|Has expired: Broken for more than 6 months +emulators/dynamips||2016-07-04|Has expired: Broken for more than 6 months +emulators/dynamips-devel||2016-07-04|Has expired: Broken for more than 6 months +emulators/sim6811||2016-07-04|Has expired: Broken for more than 6 months +emulators/minivmac||2016-07-04|Has expired: Broken for more than 6 months +cad/qcad-partslib||2016-07-04|Has expired: Broken for more than 6 months +comms/dump1090_mr||2016-07-04|Has expired: Broken for more than 6 months +x11-fm/asfiles||2016-07-04|Has expired: Depends on expiring x11/libdnd +x11-fonts/fonts-te||2016-07-04|Has expired: Broken for more than 6 months +sysutils/rsyncmanager||2016-07-04|Has expired: Broken for more than 6 months +sysutils/jfbterm||2016-07-04|Has expired: Broken for more than 6 months +sysutils/daedalus||2016-07-04|Has expired: Broken for more than 6 months +sysutils/pcfclock||2016-07-04|Has expired: Broken for more than 6 months +sysutils/vlogger||2016-07-04|Has expired: Broken for more than 6 months +sysutils/bontmia||2016-07-04|Has expired: Broken for more than 6 months +mail/pop3gwd||2016-07-04|Has expired: Broken for more than 6 months +mail/mailtray||2016-07-04|Has expired: Broken for more than 6 months +mail/pflogstats||2016-07-04|Has expired: Broken for more than 6 months +mail/exact||2016-07-04|Has expired: Broken for more than 6 months +mail/wmpop3||2016-07-04|Has expired: Broken for more than 6 months +mail/qmail-conf||2016-07-04|Has expired: Broken for more than 6 months +mail/gld||2016-07-04|Has expired: Broken for more than 6 months +mail/dsbl-testers||2016-07-04|Has expired: Broken for more than 6 months +mail/vqregister||2016-07-04|Has expired: Broken for more than 6 months +mail/atmail||2016-07-04|Has expired: Broken for more than 6 months +mail/ml||2016-07-04|Has expired: Broken for more than 6 months +net-im/icb||2016-07-04|Has expired: Broken for more than 6 months +net-im/cicquin||2016-07-04|Has expired: Broken for more than 6 months +net-im/pidgin-manualsize||2016-07-04|Has expired: Broken for more than 6 months +net-im/pidgin-rhythmbox||2016-07-04|Has expired: Broken for more than 6 months +russian/eric4||2016-07-04|Has expired: Depends on expiring devel/eric4 +russian/fortune-bashorgru||2016-07-04|Has expired: Broken for more than 6 months +www/xpi-clearfields||2016-07-04|Has expired: Broken for more than 6 months +www/pecl-varnish||2016-07-04|Has expired: Broken for more than 6 months +www/py-requests-oauth-hook||2016-07-04|Has expired: Broken for more than 6 months +www/hudson||2016-07-04|Has expired: Broken for more than 6 months +www/xpi-mldonkey||2016-07-04|Has expired: Broken for more than 6 months +www/xpi-cookiesafe||2016-07-04|Has expired: Broken for more than 6 months +www/trac-mastertickets||2016-07-04|Has expired: Broken for more than 6 months +www/dotclear||2016-07-04|Has expired: Broken for more than 6 months +www/ruby-wgettsv||2016-07-04|Has expired: Broken for more than 6 months +www/wwwstat||2016-07-04|Has expired: Broken for more than 6 months +www/xpi-prism||2016-07-04|Has expired: Broken for more than 6 months +www/xpi-fasterfox||2016-07-04|Has expired: Broken for more than 6 months +www/siteframe||2016-07-04|Has expired: Broken for more than 6 months +www/py-urljr||2016-07-04|Has expired: Broken for more than 6 months +www/reviewboard||2016-07-04|Has expired: Broken for more than 6 months +www/xpi-tabletools||2016-07-04|Has expired: Broken for more than 6 months +www/wikindx||2016-07-04|Has expired: Broken for more than 6 months +www/typolight||2016-07-04|Has expired: Broken for more than 6 months +www/varnish-libvmod-header||2016-07-04|Has expired: Broken for more than 6 months +www/xpi-gbrain||2016-07-04|Has expired: Broken for more than 6 months +www/trac-robotstxt||2016-07-04|Has expired: Broken for more than 6 months +www/simplog||2016-07-04|Has expired: Broken for more than 6 months +www/chtml||2016-07-04|Has expired: Broken for more than 6 months +databases/postgresql_autodoc||2016-07-04|Has expired: Broken for more than 6 months +databases/oracle_odbc_driver||2016-07-04|Has expired: Broken for more than 6 months +databases/mysql-xql||2016-07-04|Has expired: Broken for more than 6 months +databases/mysql-udf-sys||2016-07-04|Has expired: Broken for more than 6 months +games/lucidlife||2016-07-04|Has expired: Broken for more than 6 months +games/gma||2016-07-04|Has expired: Broken for more than 6 months +games/smiley||2016-07-04|Has expired: Broken for more than 6 months +games/noegnud-littlehack||2016-07-04|Has expired: Broken for more than 6 months +games/sdlquake2||2016-07-04|Has expired: Broken for more than 6 months +games/daimonin||2016-07-04|Has expired: Depends on expiring games/daimonin-music +games/noegnud-nethack||2016-07-04|Has expired: Broken for more than 6 months +games/xbomber||2016-07-04|Has expired: Broken for more than 6 months +games/xwelltris||2016-07-04|Has expired: Broken for more than 6 months +games/ftjava||2016-07-04|Has expired: Broken for more than 6 months +games/daimonin-music||2016-07-04|Has expired: Broken for more than 6 months +games/gno3dtet||2016-07-04|Has expired: Broken for more than 6 months +games/qtv||2016-07-04|Has expired: Broken for more than 6 months +games/xwordpy||2016-07-04|Has expired: Broken for more than 6 months +games/netris||2016-07-04|Has expired: Broken for more than 6 months +games/rt2-demo||2016-07-04|Has expired: Broken for more than 6 months +games/noegnud-addons||2016-07-04|Has expired: Broken for more than 6 months +games/noegnud-nethack-deet||2016-07-04|Has expired: Broken for more than 6 months +games/live-f1||2016-07-04|Has expired: Broken for more than 6 months +games/xonix||2016-07-04|Has expired: Broken for more than 6 months +games/fgkicker||2016-07-04|Has expired: Broken for more than 6 months +games/tank||2016-07-04|Has expired: Depends on expiring graphics/libaux +games/linux-nwserver||2016-07-04|Has expired: Broken for more than 6 months +games/quake2-zaero||2016-07-04|Has expired: Broken for more than 6 months +games/pyching||2016-07-04|Has expired: Broken for more than 6 months +games/thevalley||2016-07-04|Has expired: Broken for more than 6 months +games/xroads||2016-07-04|Has expired: Broken for more than 6 months +games/fxsudoku||2016-07-04|Has expired: Broken for more than 6 months +games/sudoku||2016-07-04|Has expired: Broken for more than 6 months +games/kmancala||2016-07-04|Has expired: Broken for more than 6 months +games/plonx||2016-07-04|Has expired: Broken for more than 6 months +games/wmminichess||2016-07-04|Has expired: Broken for more than 6 months +games/noegnud-slashem||2016-07-04|Has expired: Broken for more than 6 months +games/latrine||2016-07-04|Has expired: Broken for more than 6 months +games/pysycache-themes||2016-07-04|Has expired: Broken for more than 6 months +games/nibbles||2016-07-04|Has expired: Broken for more than 6 months +games/hlstatsx||2016-07-04|Has expired: Broken for more than 6 months +audio/streamtuner||2016-07-04|Has expired: Broken for more than 6 months +audio/mangler||2016-07-04|Has expired: Broken for more than 6 months +audio/hawkvoice||2016-07-04|Has expired: Broken for more than 6 months +audio/alac||2016-07-04|Has expired: Broken for more than 6 months +x11-wm/e-module-mpdule||2016-07-04|Has expired: Broken for more than 6 months +x11-wm/e-module-tclock||2016-07-04|Has expired: Broken for more than 6 months +x11-wm/musca||2016-07-04|Has expired: Broken for more than 6 months +x11-wm/e-module-places||2016-07-04|Has expired: Broken for more than 6 months +x11-wm/e-module-forecasts||2016-07-04|Has expired: Broken for more than 6 months +x11-wm/e-module-net||2016-07-04|Has expired: Broken for more than 6 months +x11-wm/e-module-penguins||2016-07-04|Has expired: Broken for more than 6 months +ftp/fget||2016-07-04|Has expired: Broken for more than 6 months +net-mgmt/netmond||2016-07-04|Has expired: Broken for more than 6 months +net-mgmt/ipfm||2016-07-04|Has expired: Broken for more than 6 months Modified: head/archivers/Makefile ============================================================================== --- head/archivers/Makefile Mon Jul 4 20:44:22 2016 (r418056) +++ head/archivers/Makefile Mon Jul 4 20:48:23 2016 (r418057) @@ -23,7 +23,6 @@ SUBDIR += dzip SUBDIR += ecm SUBDIR += engrampa - SUBDIR += epkg SUBDIR += fastjar SUBDIR += file-roller SUBDIR += fpc-bzip2 Modified: head/audio/Makefile ============================================================================== --- head/audio/Makefile Mon Jul 4 20:44:22 2016 (r418056) +++ head/audio/Makefile Mon Jul 4 20:48:23 2016 (r418057) @@ -15,7 +15,6 @@ SUBDIR += adplay SUBDIR += afsp SUBDIR += aften - SUBDIR += alac SUBDIR += alienwah SUBDIR += alsa-lib SUBDIR += alsa-plugins @@ -297,7 +296,6 @@ SUBDIR += gvolwheel SUBDIR += gxmms2 SUBDIR += harp - SUBDIR += hawkvoice SUBDIR += herrie SUBDIR += hexter SUBDIR += hs-ALUT @@ -461,7 +459,6 @@ SUBDIR += madfufw SUBDIR += madplay SUBDIR += malint - SUBDIR += mangler SUBDIR += maplay SUBDIR += mate-media SUBDIR += mbox @@ -730,7 +727,6 @@ SUBDIR += squeezeboxserver-trackstat SUBDIR += streamripper SUBDIR += streamtranscoder - SUBDIR += streamtuner SUBDIR += stymulator SUBDIR += sweep SUBDIR += swhplugins Modified: head/biology/Makefile ============================================================================== --- head/biology/Makefile Mon Jul 4 20:44:22 2016 (r418056) +++ head/biology/Makefile Mon Jul 4 20:48:23 2016 (r418057) @@ -74,7 +74,6 @@ SUBDIR += phred SUBDIR += phylip SUBDIR += phyml - SUBDIR += platon SUBDIR += plink SUBDIR += plinkseq SUBDIR += primer3 Modified: head/cad/Makefile ============================================================================== --- head/cad/Makefile Mon Jul 4 20:44:22 2016 (r418056) +++ head/cad/Makefile Mon Jul 4 20:48:23 2016 (r418057) @@ -67,7 +67,6 @@ SUBDIR += py-pycam SUBDIR += pythoncad SUBDIR += qcad - SUBDIR += qcad-partslib SUBDIR += qelectrotech SUBDIR += qfsm SUBDIR += qmls Modified: head/comms/Makefile ============================================================================== --- head/comms/Makefile Mon Jul 4 20:44:22 2016 (r418056) +++ head/comms/Makefile Mon Jul 4 20:48:23 2016 (r418057) @@ -31,7 +31,6 @@ SUBDIR += dfu-programmer SUBDIR += dfu-util SUBDIR += dump1090 - SUBDIR += dump1090_mr SUBDIR += ebook2cw SUBDIR += ebook2cwgui SUBDIR += echolinux Modified: head/databases/Makefile ============================================================================== --- head/databases/Makefile Mon Jul 4 20:44:22 2016 (r418056) +++ head/databases/Makefile Mon Jul 4 20:48:23 2016 (r418057) @@ -212,8 +212,6 @@ SUBDIR += mysql-proxy SUBDIR += mysql-q4m SUBDIR += mysql-udf - SUBDIR += mysql-udf-sys - SUBDIR += mysql-xql SUBDIR += mysql2odbc SUBDIR += mysql2pgsql SUBDIR += mysql55-client @@ -245,7 +243,6 @@ SUBDIR += opentsdb SUBDIR += oracle7-client SUBDIR += oracle8-client - SUBDIR += oracle_odbc_driver SUBDIR += p5-Amazon-SimpleDB SUBDIR += p5-Amon2-DBI SUBDIR += p5-AnyEvent-BDB @@ -697,7 +694,6 @@ SUBDIR += postgresql95-plpython SUBDIR += postgresql95-pltcl SUBDIR += postgresql95-server - SUBDIR += postgresql_autodoc SUBDIR += powerarchitect SUBDIR += proftpd-mod_sql_mysql SUBDIR += proftpd-mod_sql_odbc Modified: head/deskutils/Makefile ============================================================================== --- head/deskutils/Makefile Mon Jul 4 20:44:22 2016 (r418056) +++ head/deskutils/Makefile Mon Jul 4 20:48:23 2016 (r418057) @@ -33,7 +33,6 @@ SUBDIR += dailystrips SUBDIR += deforaos-todo SUBDIR += devd-notifier - SUBDIR += displaycalibrator SUBDIR += dlume SUBDIR += docear SUBDIR += dosage Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Mon Jul 4 20:44:22 2016 (r418056) +++ head/devel/Makefile Mon Jul 4 20:48:23 2016 (r418057) @@ -53,7 +53,6 @@ SUBDIR += abi-compliance-checker SUBDIR += ace SUBDIR += ace+tao-doc - SUBDIR += acme SUBDIR += acsccid SUBDIR += activitymail SUBDIR += ada-util @@ -83,7 +82,6 @@ SUBDIR += antlr SUBDIR += antlr3 SUBDIR += antlr4 - SUBDIR += antlrworks SUBDIR += apache-ant SUBDIR += api-sanity-autotest SUBDIR += apiextractor @@ -132,7 +130,6 @@ SUBDIR += avalon-framework SUBDIR += avarice SUBDIR += avce00 - SUBDIR += avltree SUBDIR += avr-binutils SUBDIR += avr-gcc SUBDIR += avr-gcc-devel @@ -179,7 +176,6 @@ SUBDIR += bsdbuild SUBDIR += bsdcflow SUBDIR += bsdowl - SUBDIR += bufferpool SUBDIR += bugzilla44 SUBDIR += bugzilla50 SUBDIR += build @@ -210,14 +206,12 @@ SUBDIR += bzrtools SUBDIR += c-unit SUBDIR += c2mdoc - SUBDIR += c4 SUBDIR += caf SUBDIR += calibrator SUBDIR += capstone SUBDIR += cargo SUBDIR += cask SUBDIR += catch - SUBDIR += cbind SUBDIR += cbrowser SUBDIR += cc65 SUBDIR += ccache @@ -260,8 +254,6 @@ SUBDIR += cl-trivial-features-sbcl SUBDIR += cl-trivial-gray-streams SUBDIR += cl-trivial-gray-streams-sbcl - SUBDIR += cl-uffi - SUBDIR += cl-uffi-sbcl SUBDIR += clanlib SUBDIR += clanlib1 SUBDIR += clanlib22 @@ -335,7 +327,6 @@ SUBDIR += cvs2cl SUBDIR += cvs2darcs SUBDIR += cvs2html - SUBDIR += cvs2p4 SUBDIR += cvs2svn SUBDIR += cvsadmin SUBDIR += cvsbook @@ -366,7 +357,6 @@ SUBDIR += d-feet SUBDIR += darts SUBDIR += dash.el - SUBDIR += dasm SUBDIR += datadraw SUBDIR += dbus SUBDIR += dbus-c++ @@ -398,7 +388,6 @@ SUBDIR += distel SUBDIR += distorm SUBDIR += ditrack - SUBDIR += dits SUBDIR += djgpp-binutils SUBDIR += djgpp-crx SUBDIR += dmake @@ -474,7 +463,6 @@ SUBDIR += epl.el SUBDIR += epm SUBDIR += epydoc - SUBDIR += eric4 SUBDIR += eric6 SUBDIR += eris SUBDIR += erlang-backoff @@ -1050,7 +1038,6 @@ SUBDIR += icmake SUBDIR += icu SUBDIR += idutils - SUBDIR += ifd-test SUBDIR += imake SUBDIR += include-what-you-use SUBDIR += inilib @@ -1141,7 +1128,6 @@ SUBDIR += libbegemot SUBDIR += libbfd SUBDIR += libbinio - SUBDIR += libbnr SUBDIR += libbobcat SUBDIR += libbonobo SUBDIR += libbonobo-reference @@ -1254,7 +1240,6 @@ SUBDIR += liblangtag SUBDIR += liblas SUBDIR += liblas12 - SUBDIR += liblcfg SUBDIR += libleaftag SUBDIR += liblnk SUBDIR += liblogging @@ -1287,9 +1272,7 @@ SUBDIR += liboobs SUBDIR += liboop SUBDIR += libopencm3 - SUBDIR += libopendaap SUBDIR += libopensync - SUBDIR += libopensync022 SUBDIR += libopkele SUBDIR += liborcus SUBDIR += liborcus07 @@ -1318,7 +1301,6 @@ SUBDIR += libpthread-stubs SUBDIR += libqb SUBDIR += libqcow - SUBDIR += libqxt SUBDIR += libr3 SUBDIR += librcc SUBDIR += librcd @@ -1492,7 +1474,6 @@ SUBDIR += mcpp SUBDIR += mdds SUBDIR += mdds0 - SUBDIR += memcheck SUBDIR += menhir SUBDIR += mercator SUBDIR += mercurial @@ -1516,7 +1497,6 @@ SUBDIR += mips64-binutils SUBDIR += mips64-gcc SUBDIR += mips64-xtoolchain-gcc - SUBDIR += mk SUBDIR += mk-configure SUBDIR += mkcmd SUBDIR += mm @@ -1566,7 +1546,6 @@ SUBDIR += nuitka SUBDIR += nxt-python SUBDIR += obby - SUBDIR += obfuscatejs SUBDIR += objecthash SUBDIR += ocaml-annexlib SUBDIR += ocaml-calendar @@ -1603,16 +1582,13 @@ SUBDIR += ocaml-uutf SUBDIR += ocaml-xstr SUBDIR += ocaml-xstrp4 - SUBDIR += ocfpcsc SUBDIR += ocl-icd SUBDIR += ode SUBDIR += ois SUBDIR += okteta - SUBDIR += omake SUBDIR += omniNotify SUBDIR += omniORB SUBDIR += omniORB-4.1 - SUBDIR += oniguruma SUBDIR += oniguruma4 SUBDIR += oniguruma5 SUBDIR += onscripter @@ -3529,7 +3505,6 @@ SUBDIR += p8-platform SUBDIR += paexec SUBDIR += papi - SUBDIR += papp SUBDIR += pas2dox SUBDIR += pasm SUBDIR += patch @@ -3895,7 +3870,6 @@ SUBDIR += py-BytecodeAssembler SUBDIR += py-DateTime SUBDIR += py-DocumentTemplate - SUBDIR += py-EnthoughtBase SUBDIR += py-ExtensionClass SUBDIR += py-InlineEgg SUBDIR += py-Jinja @@ -4727,7 +4701,6 @@ SUBDIR += ragel SUBDIR += raknet SUBDIR += rapidjson - SUBDIR += rapidsvn SUBDIR += rbenv SUBDIR += rbtools SUBDIR += rclint @@ -4760,11 +4733,9 @@ SUBDIR += ruby-bsearch SUBDIR += ruby-build SUBDIR += ruby-byaccr - SUBDIR += ruby-cache SUBDIR += ruby-calendar SUBDIR += ruby-date2 SUBDIR += ruby-dialogs - SUBDIR += ruby-event-loop SUBDIR += ruby-gems SUBDIR += ruby-intl SUBDIR += ruby-korundum @@ -5346,8 +5317,6 @@ SUBDIR += svk SUBDIR += svn2git SUBDIR += svn_load_dirs - SUBDIR += svndelta - SUBDIR += svnkit SUBDIR += svntrac SUBDIR += swank-clojure SUBDIR += swig13 @@ -5369,7 +5338,6 @@ SUBDIR += tclap SUBDIR += tclbsd SUBDIR += tclcheck - SUBDIR += tclgetopts SUBDIR += tcllauncher SUBDIR += tcllib SUBDIR += tcllibc @@ -5419,7 +5387,6 @@ SUBDIR += uatraits SUBDIR += uboot-mkimage SUBDIR += uclcmd - SUBDIR += uclmmbase SUBDIR += ucommon SUBDIR += ucpp SUBDIR += udis86 Modified: head/dns/Makefile ============================================================================== --- head/dns/Makefile Mon Jul 4 20:44:22 2016 (r418056) +++ head/dns/Makefile Mon Jul 4 20:48:23 2016 (r418057) @@ -82,7 +82,6 @@ SUBDIR += knot2 SUBDIR += ldapdns SUBDIR += ldns - SUBDIR += ldnsm SUBDIR += libasr SUBDIR += libasr-devel SUBDIR += libbind Modified: head/editors/Makefile ============================================================================== --- head/editors/Makefile Mon Jul 4 20:44:22 2016 (r418056) +++ head/editors/Makefile Mon Jul 4 20:48:23 2016 (r418057) @@ -51,7 +51,6 @@ SUBDIR += emacs SUBDIR += emacs-devel SUBDIR += emacs-nox11 - SUBDIR += fb SUBDIR += fileobj SUBDIR += flim SUBDIR += fpc-ide @@ -229,7 +228,6 @@ SUBDIR += semi SUBDIR += shed SUBDIR += slime - SUBDIR += ssam SUBDIR += ssed SUBDIR += sted SUBDIR += tamago Modified: head/emulators/Makefile ============================================================================== --- head/emulators/Makefile Mon Jul 4 20:44:22 2016 (r418056) +++ head/emulators/Makefile Mon Jul 4 20:48:23 2016 (r418057) @@ -29,9 +29,7 @@ SUBDIR += dtcyber SUBDIR += dynagen SUBDIR += dynagui - SUBDIR += dynamips SUBDIR += dynamips-community - SUBDIR += dynamips-devel SUBDIR += e-uae SUBDIR += fceux SUBDIR += fmsx @@ -82,7 +80,6 @@ SUBDIR += mastergear SUBDIR += mednafen SUBDIR += mess - SUBDIR += minivmac SUBDIR += mtools SUBDIR += mupen64plus SUBDIR += mupen64plus-audio-sdl @@ -129,7 +126,6 @@ SUBDIR += raine SUBDIR += rtc SUBDIR += rubygem-fission - SUBDIR += sim6811 SUBDIR += simh SUBDIR += skyeye SUBDIR += snes9express Modified: head/french/Makefile ============================================================================== --- head/french/Makefile Mon Jul 4 20:44:22 2016 (r418056) +++ head/french/Makefile Mon Jul 4 20:48:23 2016 (r418057) @@ -7,7 +7,6 @@ SUBDIR += aster SUBDIR += calligra-l10n SUBDIR += eficas - SUBDIR += eric4 SUBDIR += eric6 SUBDIR += fortune-mod-zarathoustra SUBDIR += geonext Modified: head/ftp/Makefile ============================================================================== --- head/ftp/Makefile Mon Jul 4 20:44:22 2016 (r418056) +++ head/ftp/Makefile Mon Jul 4 20:48:23 2016 (r418057) @@ -17,7 +17,6 @@ SUBDIR += curl-hiphop SUBDIR += curlpp SUBDIR += dmachine - SUBDIR += fget SUBDIR += filezilla SUBDIR += fmirror SUBDIR += fpc-libcurl Modified: head/games/Makefile ============================================================================== --- head/games/Makefile Mon Jul 4 20:44:22 2016 (r418056) +++ head/games/Makefile Mon Jul 4 20:48:23 2016 (r418057) @@ -183,8 +183,6 @@ SUBDIR += cuyo SUBDIR += d2x SUBDIR += d2x-xl - SUBDIR += daimonin - SUBDIR += daimonin-music SUBDIR += dangen SUBDIR += dangerdeep SUBDIR += dangerdeep-data @@ -255,7 +253,6 @@ SUBDIR += farblazer SUBDIR += fargoal SUBDIR += fbg2 - SUBDIR += fgkicker SUBDIR += fgrun SUBDIR += fightorperish SUBDIR += fillets-ng @@ -306,9 +303,7 @@ SUBDIR += frotz SUBDIR += frozen-bubble SUBDIR += fteqw - SUBDIR += ftjava SUBDIR += funnyboat - SUBDIR += fxsudoku SUBDIR += galaxis SUBDIR += galaxyhack SUBDIR += garith @@ -337,12 +332,10 @@ SUBDIR += glob2 SUBDIR += glsfcave SUBDIR += gltron - SUBDIR += gma SUBDIR += gmastermind SUBDIR += gmines SUBDIR += gnake SUBDIR += gnarr - SUBDIR += gno3dtet SUBDIR += gnome-2048 SUBDIR += gnome-chess SUBDIR += gnome-games @@ -407,7 +400,6 @@ SUBDIR += hinversi SUBDIR += hitori SUBDIR += hllib - SUBDIR += hlstatsx SUBDIR += hohlin SUBDIR += hoichess SUBDIR += holotz-castle @@ -479,7 +471,6 @@ SUBDIR += klines SUBDIR += klondike SUBDIR += kmahjongg - SUBDIR += kmancala SUBDIR += kmines SUBDIR += knavalbattle SUBDIR += knetwalk @@ -504,7 +495,6 @@ SUBDIR += ladder SUBDIR += lander SUBDIR += lapispuzzle - SUBDIR += latrine SUBDIR += lbreakout SUBDIR += lbreakout2 SUBDIR += ldmud @@ -543,7 +533,6 @@ SUBDIR += linux-etqw-server SUBDIR += linux-nerogame SUBDIR += linux-nwnclient - SUBDIR += linux-nwserver SUBDIR += linux-quake3 SUBDIR += linux-quake3-demo SUBDIR += linux-quake4 @@ -561,7 +550,6 @@ SUBDIR += linux-worldofgoo-demo SUBDIR += linwarrior SUBDIR += liquidwar - SUBDIR += live-f1 SUBDIR += lm-solve SUBDIR += lmarbles SUBDIR += lmpc @@ -571,7 +559,6 @@ SUBDIR += lpairs SUBDIR += lskat SUBDIR += ltris - SUBDIR += lucidlife SUBDIR += lugaru SUBDIR += luola SUBDIR += lwjgl @@ -640,7 +627,6 @@ SUBDIR += netradiant SUBDIR += netrek-BRMH-bin SUBDIR += netrek-client-cow - SUBDIR += netris SUBDIR += netspades SUBDIR += nettoe SUBDIR += netwalk @@ -648,18 +634,12 @@ SUBDIR += newvox SUBDIR += nextgo SUBDIR += nexuiz - SUBDIR += nibbles SUBDIR += nighthawk SUBDIR += nimuh SUBDIR += ninix-aya SUBDIR += njam SUBDIR += nlarn - SUBDIR += noegnud-addons SUBDIR += noegnud-data - SUBDIR += noegnud-littlehack - SUBDIR += noegnud-nethack - SUBDIR += noegnud-nethack-deet - SUBDIR += noegnud-slashem SUBDIR += nonsense SUBDIR += npush SUBDIR += nsnake @@ -746,7 +726,6 @@ SUBDIR += pipepanic SUBDIR += pipewalker SUBDIR += plee-the-bear - SUBDIR += plonx SUBDIR += plutocracy SUBDIR += pmars SUBDIR += pmars-sdl @@ -777,7 +756,6 @@ SUBDIR += py-sgfsummary SUBDIR += pyawale SUBDIR += pycadia - SUBDIR += pyching SUBDIR += pydance SUBDIR += pyfa SUBDIR += pykawari @@ -785,7 +763,6 @@ SUBDIR += pyspacewar SUBDIR += pysycache SUBDIR += pysycache-lang - SUBDIR += pysycache-themes SUBDIR += pythonchess SUBDIR += pythonsudoku SUBDIR += pytowerdefense @@ -801,7 +778,6 @@ SUBDIR += qqwing SUBDIR += qstat SUBDIR += qtads - SUBDIR += qtv SUBDIR += quackle SUBDIR += quadra SUBDIR += quadrapassel @@ -820,7 +796,6 @@ SUBDIR += quake2-rogue SUBDIR += quake2-source SUBDIR += quake2-xatrix - SUBDIR += quake2-zaero SUBDIR += quake2lnx SUBDIR += quake2max SUBDIR += quake3 @@ -857,7 +832,6 @@ SUBDIR += rocksndiamonds SUBDIR += rocksndiamonds-data SUBDIR += rottdc - SUBDIR += rt2-demo SUBDIR += rtb SUBDIR += rubix SUBDIR += rubygem-fortune_gem @@ -880,7 +854,6 @@ SUBDIR += sdl_jewels SUBDIR += sdl_lopan SUBDIR += sdl_scavenger - SUBDIR += sdlquake2 SUBDIR += sdlroids SUBDIR += sdlsand SUBDIR += sea-defender @@ -906,7 +879,6 @@ SUBDIR += slump SUBDIR += slune SUBDIR += smashbattle - SUBDIR += smiley SUBDIR += sokoban SUBDIR += sol SUBDIR += solarconquest @@ -935,7 +907,6 @@ SUBDIR += stormbaancoureur SUBDIR += stransball2 SUBDIR += stratagus - SUBDIR += sudoku SUBDIR += sudoku-sensei SUBDIR += sudoku_solver SUBDIR += sudsol @@ -951,7 +922,6 @@ SUBDIR += taipan SUBDIR += tali SUBDIR += tanglet - SUBDIR += tank SUBDIR += tanks-of-freedom SUBDIR += tbclock SUBDIR += tbe @@ -967,7 +937,6 @@ SUBDIR += tetzle SUBDIR += textmaze SUBDIR += thegrind - SUBDIR += thevalley SUBDIR += thudboard SUBDIR += tileworld SUBDIR += timeseal @@ -1052,7 +1021,6 @@ SUBDIR += widelands SUBDIR += wizznic SUBDIR += wmeyes - SUBDIR += wmminichess SUBDIR += wmpuzzle SUBDIR += wmqstat SUBDIR += wmquake @@ -1080,7 +1048,6 @@ SUBDIR += xboard-devel SUBDIR += xboing SUBDIR += xbomb - SUBDIR += xbomber SUBDIR += xbubble SUBDIR += xchadance SUBDIR += xcheckers @@ -1135,7 +1102,6 @@ SUBDIR += xoct SUBDIR += xoids SUBDIR += xoj - SUBDIR += xonix SUBDIR += xonotic SUBDIR += xorgramana SUBDIR += xosmulti @@ -1156,7 +1122,6 @@ SUBDIR += xrick SUBDIR += xrisk SUBDIR += xroach - SUBDIR += xroads SUBDIR += xrobots SUBDIR += xrot SUBDIR += xrubik @@ -1185,8 +1150,6 @@ SUBDIR += xvier SUBDIR += xvmahjongg SUBDIR += xvmines - SUBDIR += xwelltris - SUBDIR += xwordpy SUBDIR += xworm SUBDIR += xye SUBDIR += xzip Modified: head/german/Makefile ============================================================================== --- head/german/Makefile Mon Jul 4 20:44:22 2016 (r418056) +++ head/german/Makefile Mon Jul 4 20:48:23 2016 (r418057) @@ -11,7 +11,6 @@ SUBDIR += dict SUBDIR += ding SUBDIR += dtaus - SUBDIR += eric4 SUBDIR += eric6 SUBDIR += geonext SUBDIR += gimp-help Modified: head/graphics/Makefile ============================================================================== --- head/graphics/Makefile Mon Jul 4 20:44:22 2016 (r418056) +++ head/graphics/Makefile Mon Jul 4 20:48:23 2016 (r418057) @@ -290,7 +290,6 @@ SUBDIR += gpaint SUBDIR += gphoto2 SUBDIR += gpicview - SUBDIR += gplot SUBDIR += gpsmanshp SUBDIR += gracula SUBDIR += grads @@ -365,7 +364,6 @@ SUBDIR += imgv SUBDIR += imlib2 SUBDIR += imlib2_loaders - SUBDIR += import-pictures SUBDIR += impressive SUBDIR += inkscape SUBDIR += intel-backlight @@ -470,7 +468,6 @@ SUBDIR += libGLw SUBDIR += libafterimage SUBDIR += libart_lgpl - SUBDIR += libaux SUBDIR += libboard SUBDIR += libbpg SUBDIR += libcaca @@ -1045,8 +1042,6 @@ SUBDIR += waffle SUBDIR += waifu2x-converter-cpp SUBDIR += webp - SUBDIR += whirlgif - SUBDIR += white_dune SUBDIR += wings SUBDIR += wmicons SUBDIR += wxsvg Modified: head/irc/Makefile ============================================================================== --- head/irc/Makefile Mon Jul 4 20:44:22 2016 (r418056) +++ head/irc/Makefile Mon Jul 4 20:48:23 2016 (r418057) @@ -63,7 +63,6 @@ SUBDIR += miau SUBDIR += minbif SUBDIR += muh - SUBDIR += nefarious SUBDIR += nethirc SUBDIR += netwalker-ircc SUBDIR += ngircd @@ -101,8 +100,6 @@ SUBDIR += py-supybot-plugins SUBDIR += quassel SUBDIR += quirc - SUBDIR += qwebirc - SUBDIR += ratbox-respond SUBDIR += ratbox-services SUBDIR += rbot SUBDIR += riece @@ -118,7 +115,6 @@ SUBDIR += sic SUBDIR += simpleirc SUBDIR += sirc - SUBDIR += slirc SUBDIR += smartirc4net SUBDIR += srvx SUBDIR += thales Modified: head/japanese/Makefile ============================================================================== --- head/japanese/Makefile Mon Jul 4 20:44:22 2016 (r418056) +++ head/japanese/Makefile Mon Jul 4 20:48:23 2016 (r418057) @@ -107,7 +107,6 @@ SUBDIR += groff SUBDIR += gskk SUBDIR += gsuica - SUBDIR += guesswork-classic SUBDIR += hns SUBDIR += ibus-anthy SUBDIR += ibus-mozc @@ -129,7 +128,6 @@ SUBDIR += jpilot SUBDIR += jstrings SUBDIR += jvim3 - SUBDIR += jyuroku SUBDIR += kakasi SUBDIR += kana-no-quiz SUBDIR += kanjipad @@ -175,7 +173,6 @@ SUBDIR += mozc-el *** DIFF OUTPUT TRUNCATED AT 1000 LINES *** From owner-svn-ports-all@freebsd.org Mon Jul 4 20:53:57 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 985ACB9114A; Mon, 4 Jul 2016 20:53:57 +0000 (UTC) (envelope-from lars@e-new.0x20.net) Received: from mail.0x20.net (mail.0x20.net [IPv6:2001:aa8:fffb:1::3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mail.0x20.net", Issuer "mail.0x20.net" (not verified)) by mx1.freebsd.org (Postfix) with ESMTPS id 514D12E62; Mon, 4 Jul 2016 20:53:57 +0000 (UTC) (envelope-from lars@e-new.0x20.net) Received: from e-new.0x20.net (mail.0x20.net [IPv6:2001:aa8:fffb:1::3]) (using TLSv1 with cipher DHE-RSA-AES128-SHA (128/128 bits)) (No client certificate requested) by mail.0x20.net (Postfix) with ESMTPS id B2A096E0081; Mon, 4 Jul 2016 22:53:53 +0200 (CEST) Received: from e-new.0x20.net (localhost [127.0.0.1]) by e-new.0x20.net (8.14.7/8.14.7) with ESMTP id u64Krrfp049253; Mon, 4 Jul 2016 22:53:53 +0200 (CEST) (envelope-from lars@e-new.0x20.net) Received: (from lars@localhost) by e-new.0x20.net (8.14.7/8.14.7/Submit) id u64Krpur049027; Mon, 4 Jul 2016 22:53:51 +0200 (CEST) (envelope-from lars) Date: Mon, 4 Jul 2016 22:53:51 +0200 From: Lars Engels To: Cy Schubert Cc: v@fatpipi.com, "ports-committers@freebsd.org" , "svn-ports-all@freebsd.org" , "svn-ports-head@freebsd.org" Subject: Re: svn commit: r417974 - head/sysutils/iohyve Message-ID: <20160704205351.GT15808@e-new.0x20.net> References: <201607041339.u64Dd7xL048099@slippy.cwsent.com> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha512; protocol="application/pgp-signature"; boundary="DlZzg8bQUnALte39" Content-Disposition: inline In-Reply-To: <201607041339.u64Dd7xL048099@slippy.cwsent.com> X-Editor: VIM - Vi IMproved 7.4 X-Operation-System: FreeBSD 8.4-RELEASE-p23 User-Agent: Mutt/1.5.23 (2014-03-12) X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Jul 2016 20:53:57 -0000 --DlZzg8bQUnALte39 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Mon, Jul 04, 2016 at 06:39:07AM -0700, Cy Schubert wrote: > slippy# make check-orphans > =3D=3D=3D=3D> Checking for pkg-plist issues (check-plist) > =3D=3D=3D> Parsing plist > =3D=3D=3D> Checking for items in STAGEDIR missing from pkg-plist > Error: Orphaned: etc/rc.d/iohyve > Error: Orphaned: lib/iohyve/ioh-cmd > Error: Orphaned: lib/iohyve/ioh-console > Error: Orphaned: lib/iohyve/ioh-disk > Error: Orphaned: lib/iohyve/ioh-firmware > Error: Orphaned: lib/iohyve/ioh-guest > Error: Orphaned: lib/iohyve/ioh-iso > Error: Orphaned: lib/iohyve/ioh-setup > Error: Orphaned: lib/iohyve/ioh-tap > Error: Orphaned: lib/iohyve/ioh-zfs > Error: Orphaned: man/man8/iohyve.8.gz > Error: Orphaned: sbin/iohyve > =3D=3D=3D> Checking for items in pkg-plist which are not in STAGEDIR > =3D=3D=3D> Error: Plist issues found. > *** Error code 1 >=20 > Stop. > make: stopped in /usr/ports/sysutils/iohyve > slippy#=20 >=20 > It's always a good idea to run make check-orphans prior to commit. Not=20 > related to this but, DEVELOPER=3Dyes in make.conf is also advisable. Ouch! I ran "make check-plist" and have DEVELOPER=3Dyes in make.conf. But I forgot to "svn add pkg-plist". Mat, the fix you committed needs MFH. --DlZzg8bQUnALte39 Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v1 iQF8BAEBCgBmBQJXeszfXxSAAAAAAC4AKGlzc3Vlci1mcHJAbm90YXRpb25zLm9w ZW5wZ3AuZmlmdGhob3JzZW1hbi5uZXQ4RjQwMDE3RTRERjUzMTI1N0FGRTUxNDlF NTRDQjM3RDNBMDg5RDZEAAoJEOVMs306CJ1tBWUIALP00b4WhHasvq4eMI2N865u rDvq0bXuWOHg4YSzDwIxA2Uv71kCHgMUy/W+0fdcziLJkDajn17kM9CPjOYGd0Qo tOzSXUhHhLLpkoXr2hRyk+b6jKxFHZSRo+HG6pULRXRxvhmSgwQH8EKwDSzqto4h tWj6eBx05ItuFuzKucMD4BWkDjnlxwF5d/TO4eAtNDVGvkiMH3X/DDNAhs4wH6bC 4Oo1LxFjDB5DY1b279ekxRqEouReCNKtRKDtyayoxhusts+TwODmU9Z9HlFadUbG WtgZBCS6Km75rDGdxL1rdECHC+ipX+etiz+X6xGejbvnERVjXHpfe5UeQY9/z6U= =VEmA -----END PGP SIGNATURE----- --DlZzg8bQUnALte39-- From owner-svn-ports-all@freebsd.org Mon Jul 4 21:06:07 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id D193AB913C7; Mon, 4 Jul 2016 21:06:07 +0000 (UTC) (envelope-from rene@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 9ED902489; Mon, 4 Jul 2016 21:06:07 +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 u64L66uL082626; Mon, 4 Jul 2016 21:06:06 GMT (envelope-from rene@FreeBSD.org) Received: (from rene@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u64L66o1082624; Mon, 4 Jul 2016 21:06:06 GMT (envelope-from rene@FreeBSD.org) Message-Id: <201607042106.u64L66o1082624@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: rene set sender to rene@FreeBSD.org using -f From: Rene Ladan Date: Mon, 4 Jul 2016 21:06:06 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418058 - in head: . devel devel/omake X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Jul 2016 21:06:07 -0000 Author: rene Date: Mon Jul 4 21:06:06 2016 New Revision: 418058 URL: https://svnweb.freebsd.org/changeset/ports/418058 Log: Fix INDEX by restoring expired(!) devel/omake Submitted by: portsnap INDEX buildbot Added: head/devel/omake/ - copied from r418056, head/devel/omake/ Modified: head/MOVED head/devel/Makefile Modified: head/MOVED ============================================================================== --- head/MOVED Mon Jul 4 20:48:23 2016 (r418057) +++ head/MOVED Mon Jul 4 21:06:06 2016 (r418058) @@ -8422,7 +8422,6 @@ devel/libbnr||2016-07-04|Has expired: Br devel/c4||2016-07-04|Has expired: Broken for more than 6 months devel/memcheck||2016-07-04|Has expired: Broken for more than 6 months devel/liblcfg||2016-07-04|Has expired: Broken for more than 6 months -devel/omake||2016-07-04|Has expired: Broken for more than 6 months devel/svndelta||2016-07-04|Has expired: Broken for more than 6 months devel/papp||2016-07-04|Has expired: Broken for more than 6 months devel/mk||2016-07-04|Has expired: Broken for more than 6 months Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Mon Jul 4 20:48:23 2016 (r418057) +++ head/devel/Makefile Mon Jul 4 21:06:06 2016 (r418058) @@ -1586,6 +1586,7 @@ SUBDIR += ode SUBDIR += ois SUBDIR += okteta + SUBDIR += omake SUBDIR += omniNotify SUBDIR += omniORB SUBDIR += omniORB-4.1 From owner-svn-ports-all@freebsd.org Tue Jul 5 00:31:50 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 6BF26B91E98; Tue, 5 Jul 2016 00:31:50 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 3DC712E32; Tue, 5 Jul 2016 00:31:50 +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 u650Vn2a074518; Tue, 5 Jul 2016 00:31:49 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u650VnqZ074513; Tue, 5 Jul 2016 00:31:49 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201607050031.u650VnqZ074513@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Tue, 5 Jul 2016 00:31:49 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418059 - in head/devel: . git-cinnabar X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Jul 2016 00:31:50 -0000 Author: jbeich Date: Tue Jul 5 00:31:48 2016 New Revision: 418059 URL: https://svnweb.freebsd.org/changeset/ports/418059 Log: devel/git-cinnabar: add new port git-cinnabar is a git remote helper to interact with mercurial repositories. Contrary to other such helpers*, it doesn't use a local mercurial clone under the hood, although it currently does require mercurial to be installed for some of its libraries. https://github.com/glandium/git-cinnabar Added: head/devel/git-cinnabar/ head/devel/git-cinnabar/Makefile (contents, props changed) head/devel/git-cinnabar/distinfo (contents, props changed) head/devel/git-cinnabar/pkg-descr (contents, props changed) Modified: head/devel/Makefile (contents, props changed) Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Mon Jul 4 21:06:06 2016 (r418058) +++ head/devel/Makefile Tue Jul 5 00:31:48 2016 (r418059) @@ -657,6 +657,7 @@ SUBDIR += gio-sharp SUBDIR += git SUBDIR += git-bzr-ng + SUBDIR += git-cinnabar SUBDIR += git-codereview SUBDIR += git-cola SUBDIR += git-cvs Added: head/devel/git-cinnabar/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/git-cinnabar/Makefile Tue Jul 5 00:31:48 2016 (r418059) @@ -0,0 +1,47 @@ +# $FreeBSD$ + +PORTNAME= git-cinnabar +DISTVERSION= 0.4.0b1 +CATEGORIES= devel + +MAINTAINER= jbeich@FreeBSD.org +COMMENT= Git remote helper to interact with Mercurial repositories + +LICENSE= GPLv2 + +BUILD_DEPENDS= ${NONEXISTENT}:devel/git:configure +RUN_DEPENDS= git:devel/git \ + hg:devel/mercurial + +USE_GITHUB= yes +GH_ACCOUNT= glandium + +USES= gmake python:2.7,run shebangfix +SHEBANG_LANG= python2.7 +SHEBANG_FILES= ${PORTNAME} git-remote-hg +.ifnmake describe +MAKE_ENV!= ${MAKE} -V MAKE_ENV -C ${PORTSDIR}/devel/git +MAKE_ARGS!= ${MAKE} -V MAKE_ARGS -C ${PORTSDIR}/devel/git +.endif +MAKE_ENV+= PYTHON_PATH="${PYTHON_CMD}" +DATADIR= ${PREFIX}/libexec/git-core +PORTDATA= * +PORTDOCS= README.md + +post-configure: + @${RMDIR} ${WRKSRC}/git-core + @${MV} $$(${MAKE} -V WRKSRC -C ${PORTSDIR}/devel/git) \ + ${WRKSRC}/git-core + +do-install: + ${MKDIR} ${STAGEDIR}${DATADIR} + ${INSTALL_SCRIPT} ${WRKSRC}/${PORTNAME} ${WRKSRC}/git-remote-hg \ + ${STAGEDIR}${DATADIR} + ${INSTALL_PROGRAM} ${WRKSRC}/git-core/${PORTNAME}-helper \ + ${STAGEDIR}${DATADIR} + (cd ${WRKSRC} && ${COPYTREE_SHARE} "${PORTNAME:S/git-//}" \ + ${STAGEDIR}${DATADIR}/pythonlib) + (cd ${WRKSRC} && ${COPYTREE_SHARE} \ + "${PORTDOCS}" ${STAGEDIR}${DOCSDIR}) + +.include Added: head/devel/git-cinnabar/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/git-cinnabar/distinfo Tue Jul 5 00:31:48 2016 (r418059) @@ -0,0 +1,2 @@ +SHA256 (glandium-git-cinnabar-0.4.0b1_GH0.tar.gz) = bc07ed66b88d87452d00e2abf85cfe07d55898eb593c27181ebe2efb769822e0 +SIZE (glandium-git-cinnabar-0.4.0b1_GH0.tar.gz) = 81685 Added: head/devel/git-cinnabar/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/git-cinnabar/pkg-descr Tue Jul 5 00:31:48 2016 (r418059) @@ -0,0 +1,6 @@ +git-cinnabar is a git remote helper to interact with mercurial +repositories. Contrary to other such helpers, it doesn't use a local +mercurial clone under the hood, although it currently does require +mercurial to be installed for some of its libraries. + +WWW: https://github.com/glandium/git-cinnabar From owner-svn-ports-all@freebsd.org Tue Jul 5 02:18:08 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id C0FBFB92163; Tue, 5 Jul 2016 02:18:08 +0000 (UTC) (envelope-from kuriyama@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 7E40F247A; Tue, 5 Jul 2016 02:18:08 +0000 (UTC) (envelope-from kuriyama@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u652I73d013364; Tue, 5 Jul 2016 02:18:07 GMT (envelope-from kuriyama@FreeBSD.org) Received: (from kuriyama@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u652I7LZ013362; Tue, 5 Jul 2016 02:18:07 GMT (envelope-from kuriyama@FreeBSD.org) Message-Id: <201607050218.u652I7LZ013362@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: kuriyama set sender to kuriyama@FreeBSD.org using -f From: Jun Kuriyama Date: Tue, 5 Jul 2016 02:18:07 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418060 - head/japanese/zipcodes X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Jul 2016 02:18:08 -0000 Author: kuriyama Date: Tue Jul 5 02:18:07 2016 New Revision: 418060 URL: https://svnweb.freebsd.org/changeset/ports/418060 Log: - Update to 20160630. Modified: head/japanese/zipcodes/Makefile head/japanese/zipcodes/distinfo Modified: head/japanese/zipcodes/Makefile ============================================================================== --- head/japanese/zipcodes/Makefile Tue Jul 5 00:31:48 2016 (r418059) +++ head/japanese/zipcodes/Makefile Tue Jul 5 02:18:07 2016 (r418060) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= zipcodes -PORTVERSION= 20160428 +PORTVERSION= 20160630 CATEGORIES= japanese MASTER_SITES= LOCAL/kuriyama DISTFILES= ken_all-${PORTVERSION_K}.zip jigyosyo-${PORTVERSION_J}.zip Modified: head/japanese/zipcodes/distinfo ============================================================================== --- head/japanese/zipcodes/distinfo Tue Jul 5 00:31:48 2016 (r418059) +++ head/japanese/zipcodes/distinfo Tue Jul 5 02:18:07 2016 (r418060) @@ -1,4 +1,5 @@ -SHA256 (ken_all-20160428.zip) = dd732957ca98dcad8c68aaa89447d77bd9201f26a19241f2531cb3f4ba2296f0 -SIZE (ken_all-20160428.zip) = 1684351 -SHA256 (jigyosyo-20160428.zip) = b95ed393343ed85363e8e7e14725af5e0b0586e60289a386fdba288e0e36f040 -SIZE (jigyosyo-20160428.zip) = 752471 +TIMESTAMP = 1467684287 +SHA256 (ken_all-20160630.zip) = 637056234b551d6521afff6889a0fb0b42375851b0f86529f2238a03ff10bdd6 +SIZE (ken_all-20160630.zip) = 1684377 +SHA256 (jigyosyo-20160630.zip) = 1d42251d51c5760fb5bb0c3a0f57cbc42df322e6266dd03c6837310a62c44a3d +SIZE (jigyosyo-20160630.zip) = 753484 From owner-svn-ports-all@freebsd.org Tue Jul 5 02:19:47 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id B287FB921AF; Tue, 5 Jul 2016 02:19:47 +0000 (UTC) (envelope-from kuriyama@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 853572579; Tue, 5 Jul 2016 02:19:47 +0000 (UTC) (envelope-from kuriyama@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u652JkK1013529; Tue, 5 Jul 2016 02:19:46 GMT (envelope-from kuriyama@FreeBSD.org) Received: (from kuriyama@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u652JkgH013527; Tue, 5 Jul 2016 02:19:46 GMT (envelope-from kuriyama@FreeBSD.org) Message-Id: <201607050219.u652JkgH013527@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: kuriyama set sender to kuriyama@FreeBSD.org using -f From: Jun Kuriyama Date: Tue, 5 Jul 2016 02:19:46 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418061 - head/japanese/ajaxzip2-data X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Jul 2016 02:19:47 -0000 Author: kuriyama Date: Tue Jul 5 02:19:46 2016 New Revision: 418061 URL: https://svnweb.freebsd.org/changeset/ports/418061 Log: - Update to 20160630. Modified: head/japanese/ajaxzip2-data/Makefile head/japanese/ajaxzip2-data/distinfo Modified: head/japanese/ajaxzip2-data/Makefile ============================================================================== --- head/japanese/ajaxzip2-data/Makefile Tue Jul 5 02:18:07 2016 (r418060) +++ head/japanese/ajaxzip2-data/Makefile Tue Jul 5 02:19:46 2016 (r418061) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= ajaxzip2 -PORTVERSION= 20160428 +PORTVERSION= 20160630 CATEGORIES= japanese MASTER_SITES= LOCAL/kuriyama PKGNAMESUFFIX= -data Modified: head/japanese/ajaxzip2-data/distinfo ============================================================================== --- head/japanese/ajaxzip2-data/distinfo Tue Jul 5 02:18:07 2016 (r418060) +++ head/japanese/ajaxzip2-data/distinfo Tue Jul 5 02:19:46 2016 (r418061) @@ -1,4 +1,5 @@ -SHA256 (ken_all-20160428.zip) = dd732957ca98dcad8c68aaa89447d77bd9201f26a19241f2531cb3f4ba2296f0 -SIZE (ken_all-20160428.zip) = 1684351 -SHA256 (jigyosyo-20160428.zip) = b95ed393343ed85363e8e7e14725af5e0b0586e60289a386fdba288e0e36f040 -SIZE (jigyosyo-20160428.zip) = 752471 +TIMESTAMP = 1467685102 +SHA256 (ken_all-20160630.zip) = 637056234b551d6521afff6889a0fb0b42375851b0f86529f2238a03ff10bdd6 +SIZE (ken_all-20160630.zip) = 1684377 +SHA256 (jigyosyo-20160630.zip) = 1d42251d51c5760fb5bb0c3a0f57cbc42df322e6266dd03c6837310a62c44a3d +SIZE (jigyosyo-20160630.zip) = 753484 From owner-svn-ports-all@freebsd.org Tue Jul 5 05:25:07 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id BA0B5B85542; Tue, 5 Jul 2016 05:25:07 +0000 (UTC) (envelope-from pi@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 9219516ED; Tue, 5 Jul 2016 05:25:07 +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 u655P6eu083871; Tue, 5 Jul 2016 05:25:06 GMT (envelope-from pi@FreeBSD.org) Received: (from pi@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u655P6dM083866; Tue, 5 Jul 2016 05:25:06 GMT (envelope-from pi@FreeBSD.org) Message-Id: <201607050525.u655P6dM083866@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pi set sender to pi@FreeBSD.org using -f From: Kurt Jaeger Date: Tue, 5 Jul 2016 05:25:06 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418062 - in head/databases/adodb5: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Jul 2016 05:25:07 -0000 Author: pi Date: Tue Jul 5 05:25:06 2016 New Revision: 418062 URL: https://svnweb.freebsd.org/changeset/ports/418062 Log: databases/adodb5: 5.18 -> 5.20.4 https://github.com/ADOdb/ADOdb/blob/v5.20.4/docs/changelog.md https://github.com/ADOdb/ADOdb/blob/v5.20.3/docs/changelog.md https://github.com/ADOdb/ADOdb/blob/v5.20.2/docs/changelog.md https://github.com/ADOdb/ADOdb/blob/v5.20.1/docs/changelog.md Requested by: Peter Beckman Modified: head/databases/adodb5/Makefile head/databases/adodb5/distinfo head/databases/adodb5/files/pkg-message.in head/databases/adodb5/pkg-plist Modified: head/databases/adodb5/Makefile ============================================================================== --- head/databases/adodb5/Makefile Tue Jul 5 02:19:46 2016 (r418061) +++ head/databases/adodb5/Makefile Tue Jul 5 05:25:06 2016 (r418062) @@ -2,10 +2,9 @@ # $FreeBSD$ PORTNAME= adodb -DISTVERSION= 5.18 +DISTVERSION= 5.20.4 CATEGORIES= databases www -MASTER_SITES= SF/${PORTNAME}/${PORTNAME}-php5-only/${PORTNAME}-${DISTVERSION:S/.//g}-for-php5 -DISTNAME= ${PORTNAME:S/5//}${DISTVERSION:S/.//g}a +MASTER_SITES= SF/${PORTNAME}/${PORTNAME}-php5-only/${PORTNAME}-520-for-php5 PKGNAMESUFFIX= 5 MAINTAINER= ports@FreeBSD.org @@ -16,7 +15,7 @@ LICENSE_COMB= dual CONFLICTS= adodb-4.* -USES= zip +USES= php USE_PHP= pcre WRKSRC= ${WRKDIR}/${PORTNAME}5 @@ -32,26 +31,26 @@ OPTIONS_SUB= yes TESTS_DESC= Install tests do-install: - @${MKDIR} ${STAGEDIR}${DATADIR} - @cd ${WRKSRC}; ${FIND} ${ADODB_SUBDIRS} -type d \ + ${MKDIR} ${STAGEDIR}${DATADIR} + cd ${WRKSRC}; ${FIND} ${ADODB_SUBDIRS} -type d \ -exec ${MKDIR} ${STAGEDIR}${DATADIR}/{} \; - @cd ${WRKSRC}; ${FIND} . ! -path './*/*' -type f \( -name '*.php' -or -name '*.dtd' -or -name '*.zip' \) \ + cd ${WRKSRC}; ${FIND} . ! -path './*/*' -type f \( -name '*.php' -or -name '*.dtd' -or -name '*.zip' \) \ -exec ${INSTALL_DATA} ${WRKSRC}/{} ${STAGEDIR}${DATADIR}/{} \; - @cd ${WRKSRC}; ${FIND} ${ADODB_SUBDIRS} -type f \ + cd ${WRKSRC}; ${FIND} ${ADODB_SUBDIRS} -type f \ -exec ${INSTALL_DATA} ${WRKSRC}/{} ${STAGEDIR}${DATADIR}/{} \; do-install-TESTS-on: - @${MKDIR} ${STAGEDIR}${DATADIR}/tests - @cd ${WRKSRC}; ${FIND} tests -type f \ + ${MKDIR} ${STAGEDIR}${DATADIR}/tests + cd ${WRKSRC}; ${FIND} tests -type f \ -exec ${INSTALL_DATA} ${WRKSRC}/{} ${STAGEDIR}${DATADIR}/{} \; do-install-DOCS-on: - @${MKDIR} ${STAGEDIR}${DOCSDIR} ${STAGEDIR}${DOCSDIR}/cute_icons_for_site - @cd ${WRKSRC}; ${FIND} . ! -path './*/*' -type f -name '*.txt' \ + ${MKDIR} ${STAGEDIR}${DOCSDIR} ${STAGEDIR}${DOCSDIR}/cute_icons_for_site + cd ${WRKSRC}; ${FIND} . ! -path './*/*' -type f -name '*.txt' \ -exec ${INSTALL_DATA} ${WRKSRC}/{} ${STAGEDIR}${DOCSDIR}/{} \; - @cd ${WRKSRC}/docs; ${FIND} . -type f \ + cd ${WRKSRC}/docs; ${FIND} . -type f \ -exec ${INSTALL_DATA} ${WRKSRC}/docs/{} ${STAGEDIR}${DOCSDIR}/{} \; - @cd ${WRKSRC}; ${FIND} cute_icons_for_site -type f \ + cd ${WRKSRC}; ${FIND} cute_icons_for_site -type f \ -exec ${INSTALL_DATA} ${WRKSRC}/{} ${STAGEDIR}${DOCSDIR}/{} \; .include Modified: head/databases/adodb5/distinfo ============================================================================== --- head/databases/adodb5/distinfo Tue Jul 5 02:19:46 2016 (r418061) +++ head/databases/adodb5/distinfo Tue Jul 5 05:25:06 2016 (r418062) @@ -1,2 +1,3 @@ -SHA256 (adodb518a.zip) = 0f5411be4675c2161a489ac1091d8e30d66e3f8f9bfc98a518e541db93b2733b -SIZE (adodb518a.zip) = 738496 +TIMESTAMP = 1467609825 +SHA256 (adodb-5.20.4.tar.gz) = 980738c1da3a04fb840876ac37f75bb8714af6f1f0975ca6fb16c59a758ada50 +SIZE (adodb-5.20.4.tar.gz) = 461404 Modified: head/databases/adodb5/files/pkg-message.in ============================================================================== --- head/databases/adodb5/files/pkg-message.in Tue Jul 5 02:19:46 2016 (r418061) +++ head/databases/adodb5/files/pkg-message.in Tue Jul 5 05:25:06 2016 (r418062) @@ -1,6 +1,4 @@ - This version supports only PHP version 5 and higher. You can add the ADOdb path (%%DATADIR%%) into the "include_path=" directive in your php.ini - Modified: head/databases/adodb5/pkg-plist ============================================================================== --- head/databases/adodb5/pkg-plist Tue Jul 5 02:19:46 2016 (r418061) +++ head/databases/adodb5/pkg-plist Tue Jul 5 05:25:06 2016 (r418062) @@ -54,6 +54,8 @@ %%DATADIR%%/drivers/adodb-firebird.inc.php %%DATADIR%%/drivers/adodb-ibase.inc.php %%DATADIR%%/drivers/adodb-informix.inc.php +%%DATADIR%%/drivers/adodb-oci8quercus.inc.php +%%DATADIR%%/drivers/adodb-pdo_sqlsrv.inc.php %%DATADIR%%/drivers/adodb-informix72.inc.php %%DATADIR%%/drivers/adodb-ldap.inc.php %%DATADIR%%/drivers/adodb-mssql.inc.php @@ -97,7 +99,6 @@ %%DATADIR%%/drivers/adodb-vfp.inc.php %%DATADIR%%/lang/adodb-ar.inc.php %%DATADIR%%/lang/adodb-bg.inc.php -%%DATADIR%%/lang/adodb-bgutf8.inc.php %%DATADIR%%/lang/adodb-ca.inc.php %%DATADIR%%/lang/adodb-cn.inc.php %%DATADIR%%/lang/adodb-cz.inc.php @@ -105,21 +106,22 @@ %%DATADIR%%/lang/adodb-de.inc.php %%DATADIR%%/lang/adodb-en.inc.php %%DATADIR%%/lang/adodb-es.inc.php -%%DATADIR%%/lang/adodb-esperanto.inc.php %%DATADIR%%/lang/adodb-fa.inc.php %%DATADIR%%/lang/adodb-fr.inc.php %%DATADIR%%/lang/adodb-hu.inc.php %%DATADIR%%/lang/adodb-it.inc.php %%DATADIR%%/lang/adodb-nl.inc.php %%DATADIR%%/lang/adodb-pl.inc.php +%%DATADIR%%/lang/adodb-eo.inc.php +%%DATADIR%%/lang/adodb-ru.inc.php +%%DATADIR%%/lang/adodb-th.inc.php +%%DATADIR%%/lang/adodb-uk.inc.php %%DATADIR%%/lang/adodb-pt-br.inc.php %%DATADIR%%/lang/adodb-ro.inc.php -%%DATADIR%%/lang/adodb-ru1251.inc.php %%DATADIR%%/lang/adodb-sv.inc.php -%%DATADIR%%/lang/adodb_th.inc.php -%%DATADIR%%/lang/adodb-uk1251.inc.php %%DATADIR%%/pear/readme.Auth.txt %%DATADIR%%/pear/Auth/Container/ADOdb.php +%%DATADIR%%/pear/auth_adodb_example.php %%DATADIR%%/perf/perf-db2.inc.php %%DATADIR%%/perf/perf-informix.inc.php %%DATADIR%%/perf/perf-mssql.inc.php @@ -156,6 +158,7 @@ %%DATADIR%%/xsl/convert-0.2-0.3.xsl %%DATADIR%%/xsl/remove-0.2.xsl %%DATADIR%%/xsl/remove-0.3.xsl +%%DATADIR%%/x.php %%TESTS%%%%DATADIR%%/tests/benchmark.php %%TESTS%%%%DATADIR%%/tests/client.php %%TESTS%%%%DATADIR%%/tests/pdo.php @@ -187,18 +190,13 @@ %%TESTS%%%%DATADIR%%/tests/tmssql.php %%TESTS%%%%DATADIR%%/tests/xmlschema.xml %%TESTS%%%%DATADIR%%/tests/xmlschema-mssql.xml -%%PORTDOCS%%%%DOCSDIR%%/docs-active-record.htm -%%PORTDOCS%%%%DOCSDIR%%/docs-adodb.htm -%%PORTDOCS%%%%DOCSDIR%%/docs-datadict.htm -%%PORTDOCS%%%%DOCSDIR%%/docs-oracle.htm -%%PORTDOCS%%%%DOCSDIR%%/docs-perf.htm -%%PORTDOCS%%%%DOCSDIR%%/docs-session.old.htm -%%PORTDOCS%%%%DOCSDIR%%/docs-session.htm -%%PORTDOCS%%%%DOCSDIR%%/license.txt -%%PORTDOCS%%%%DOCSDIR%%/old-changelog.htm -%%PORTDOCS%%%%DOCSDIR%%/readme.htm -%%PORTDOCS%%%%DOCSDIR%%/readme.txt -%%PORTDOCS%%%%DOCSDIR%%/tips_portable_sql.htm -%%PORTDOCS%%%%DOCSDIR%%/tute.htm %%PORTDOCS%%%%DOCSDIR%%/cute_icons_for_site/adodb.gif %%PORTDOCS%%%%DOCSDIR%%/cute_icons_for_site/adodb2.gif +%%PORTDOCS%%%%DOCSDIR%%/README.md +%%PORTDOCS%%%%DOCSDIR%%/adodb.gif +%%PORTDOCS%%%%DOCSDIR%%/adodb2.gif +%%PORTDOCS%%%%DOCSDIR%%/changelog.md +%%PORTDOCS%%%%DOCSDIR%%/changelog_v2.x.md +%%PORTDOCS%%%%DOCSDIR%%/changelog_v3.x.md +%%PORTDOCS%%%%DOCSDIR%%/changelog_v4+5.md +%%PORTDOCS%%%%DOCSDIR%%/changelog_v4.x.md From owner-svn-ports-all@freebsd.org Tue Jul 5 05:25:40 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 9EEDBB85582; Tue, 5 Jul 2016 05:25:40 +0000 (UTC) (envelope-from pi@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 6CAB017DE; Tue, 5 Jul 2016 05:25:40 +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 u655Pdth083978; Tue, 5 Jul 2016 05:25:39 GMT (envelope-from pi@FreeBSD.org) Received: (from pi@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u655PdNx083977; Tue, 5 Jul 2016 05:25:39 GMT (envelope-from pi@FreeBSD.org) Message-Id: <201607050525.u655PdNx083977@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pi set sender to pi@FreeBSD.org using -f From: Kurt Jaeger Date: Tue, 5 Jul 2016 05:25:39 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418063 - head/databases/adodb5 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Jul 2016 05:25:40 -0000 Author: pi Date: Tue Jul 5 05:25:39 2016 New Revision: 418063 URL: https://svnweb.freebsd.org/changeset/ports/418063 Log: databases/adodb5: 5.18 -> 5.20.4 - changed WWW in pkg-descr Modified: head/databases/adodb5/pkg-descr Modified: head/databases/adodb5/pkg-descr ============================================================================== --- head/databases/adodb5/pkg-descr Tue Jul 5 05:25:06 2016 (r418062) +++ head/databases/adodb5/pkg-descr Tue Jul 5 05:25:39 2016 (r418063) @@ -11,4 +11,4 @@ ODBC, ODBTP. The Sybase, Informix, FrontBase and PostgreSQL, Netezza, LDAP, ODBTP drivers are community contributions. -WWW: http://adodb.sourceforge.net/ +WWW: http://adodb.org/ From owner-svn-ports-all@freebsd.org Tue Jul 5 05:58:18 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id E9CDEB85C8B; Tue, 5 Jul 2016 05:58:18 +0000 (UTC) (envelope-from antoine@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 936A627B4; Tue, 5 Jul 2016 05:58:18 +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 u655wHD2095047; Tue, 5 Jul 2016 05:58:17 GMT (envelope-from antoine@FreeBSD.org) Received: (from antoine@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u655wHhu095044; Tue, 5 Jul 2016 05:58:17 GMT (envelope-from antoine@FreeBSD.org) Message-Id: <201607050558.u655wHhu095044@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: antoine set sender to antoine@FreeBSD.org using -f From: Antoine Brodin Date: Tue, 5 Jul 2016 05:58:17 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418064 - in head: . textproc textproc/py-csvkit textproc/py-dbf X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Jul 2016 05:58:19 -0000 Author: antoine Date: Tue Jul 5 05:58:17 2016 New Revision: 418064 URL: https://svnweb.freebsd.org/changeset/ports/418064 Log: Remove duplicate port py-dbf Reported by: pkg-fallout Deleted: head/textproc/py-dbf/ Modified: head/MOVED head/textproc/Makefile head/textproc/py-csvkit/Makefile Modified: head/MOVED ============================================================================== --- head/MOVED Tue Jul 5 05:25:39 2016 (r418063) +++ head/MOVED Tue Jul 5 05:58:17 2016 (r418064) @@ -8595,3 +8595,4 @@ x11-wm/e-module-penguins||2016-07-04|Has ftp/fget||2016-07-04|Has expired: Broken for more than 6 months net-mgmt/netmond||2016-07-04|Has expired: Broken for more than 6 months net-mgmt/ipfm||2016-07-04|Has expired: Broken for more than 6 months +textproc/py-dbf|databases/py-dbf|2016-07-05|Duplicate port deleted Modified: head/textproc/Makefile ============================================================================== --- head/textproc/Makefile Tue Jul 5 05:25:39 2016 (r418063) +++ head/textproc/Makefile Tue Jul 5 05:58:17 2016 (r418064) @@ -1221,7 +1221,6 @@ SUBDIR += py-cloud_sptheme SUBDIR += py-creole SUBDIR += py-csvkit - SUBDIR += py-dbf SUBDIR += py-dbfread SUBDIR += py-diff-match-patch SUBDIR += py-docutils Modified: head/textproc/py-csvkit/Makefile ============================================================================== --- head/textproc/py-csvkit/Makefile Tue Jul 5 05:25:39 2016 (r418063) +++ head/textproc/py-csvkit/Makefile Tue Jul 5 05:58:17 2016 (r418064) @@ -15,7 +15,7 @@ RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}agat ${PYTHON_PKGNAMEPREFIX}agate-excel>=0.1.0:textproc/py-agate-excel \ ${PYTHON_PKGNAMEPREFIX}agate>=1.2.2:textproc/py-agate \ ${PYTHON_PKGNAMEPREFIX}dateutil>=2.2:devel/py-dateutil \ - ${PYTHON_PKGNAMEPREFIX}dbf>0.94.003:textproc/py-dbf \ + ${PYTHON_PKGNAMEPREFIX}dbf>0.94.003:databases/py-dbf \ ${PYTHON_PKGNAMEPREFIX}six>=1.6.1:devel/py-six \ ${PYTHON_PKGNAMEPREFIX}sqlalchemy09>=0.9.3:databases/py-sqlalchemy09 From owner-svn-ports-all@freebsd.org Tue Jul 5 06:44:22 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 763DBB91BCE; Tue, 5 Jul 2016 06:44:22 +0000 (UTC) (envelope-from brnrd@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 2DABA210A; Tue, 5 Jul 2016 06:44:22 +0000 (UTC) (envelope-from brnrd@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u656iLug013457; Tue, 5 Jul 2016 06:44:21 GMT (envelope-from brnrd@FreeBSD.org) Received: (from brnrd@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u656iLT0013454; Tue, 5 Jul 2016 06:44:21 GMT (envelope-from brnrd@FreeBSD.org) Message-Id: <201607050644.u656iLT0013454@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: brnrd set sender to brnrd@FreeBSD.org using -f From: Bernard Spil Date: Tue, 5 Jul 2016 06:44:21 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418065 - in head/devel/jsoncpp: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Jul 2016 06:44:22 -0000 Author: brnrd Date: Tue Jul 5 06:44:20 2016 New Revision: 418065 URL: https://svnweb.freebsd.org/changeset/ports/418065 Log: devel/jsoncpp: Update to 1.7.3 - Update to version 1.7.3 [2] - Fix compiler issues [1] PR: 209945 Submitted by: Mathieu Simon [1] Reviewed by: yuri@rawbw.com (maintainer) [2] Deleted: head/devel/jsoncpp/files/patch-include_json_config.h Modified: head/devel/jsoncpp/Makefile head/devel/jsoncpp/distinfo head/devel/jsoncpp/pkg-plist Modified: head/devel/jsoncpp/Makefile ============================================================================== --- head/devel/jsoncpp/Makefile Tue Jul 5 05:58:17 2016 (r418064) +++ head/devel/jsoncpp/Makefile Tue Jul 5 06:44:20 2016 (r418065) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= jsoncpp -DISTVERSION= 1.7.2 -PORTREVISION= 1 +DISTVERSION= 1.7.3 CATEGORIES= devel MAINTAINER= yuri@rawbw.com Modified: head/devel/jsoncpp/distinfo ============================================================================== --- head/devel/jsoncpp/distinfo Tue Jul 5 05:58:17 2016 (r418064) +++ head/devel/jsoncpp/distinfo Tue Jul 5 06:44:20 2016 (r418065) @@ -1,2 +1,3 @@ -SHA256 (open-source-parsers-jsoncpp-1.7.2_GH0.tar.gz) = 2179a7df19c1c6dc87e02c65b847efc914625a9b87df3e443d9610fc70c0f557 -SIZE (open-source-parsers-jsoncpp-1.7.2_GH0.tar.gz) = 205391 +TIMESTAMP = 1467669507 +SHA256 (open-source-parsers-jsoncpp-1.7.3_GH0.tar.gz) = 1cfcad14054039ba97c22531888796cb9369e6353f257aacaad34fda956ada53 +SIZE (open-source-parsers-jsoncpp-1.7.3_GH0.tar.gz) = 205738 Modified: head/devel/jsoncpp/pkg-plist ============================================================================== --- head/devel/jsoncpp/pkg-plist Tue Jul 5 05:58:17 2016 (r418064) +++ head/devel/jsoncpp/pkg-plist Tue Jul 5 06:44:20 2016 (r418065) @@ -12,5 +12,5 @@ include/jsoncpp/json/writer.h lib/libjsoncpp.a lib/libjsoncpp.so lib/libjsoncpp.so.1 -lib/libjsoncpp.so.1.7.2 +lib/libjsoncpp.so.1.7.3 libdata/pkgconfig/jsoncpp.pc From owner-svn-ports-all@freebsd.org Tue Jul 5 07:16:04 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 3D00999A05B; Tue, 5 Jul 2016 07:16:04 +0000 (UTC) (envelope-from gordon@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 06D4F2BAC; Tue, 5 Jul 2016 07:16:03 +0000 (UTC) (envelope-from gordon@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u656u1dM017664; Tue, 5 Jul 2016 06:56:01 GMT (envelope-from gordon@FreeBSD.org) Received: (from gordon@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u656txVw017645; Tue, 5 Jul 2016 06:55:59 GMT (envelope-from gordon@FreeBSD.org) Message-Id: <201607050655.u656txVw017645@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: gordon set sender to gordon@FreeBSD.org using -f From: Gordon Tetlow Date: Tue, 5 Jul 2016 06:55:59 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418066 - in head/devel: p4 p4api p4d p4ftpd p4p X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Jul 2016 07:16:04 -0000 Author: gordon Date: Tue Jul 5 06:55:59 2016 New Revision: 418066 URL: https://svnweb.freebsd.org/changeset/ports/418066 Log: Update Perforce related ports to 2016.1. PR: 210358 Reported by: brd Approved by: mat (mentor, previous version) Differential Revision: https://reviews.freebsd.org/D6905 Deleted: head/devel/p4/distinfo.freebsd70x86 head/devel/p4/distinfo.freebsd70x86_64 head/devel/p4api/distinfo.freebsd70x86 head/devel/p4api/distinfo.freebsd70x86_64 head/devel/p4d/distinfo.freebsd70x86 head/devel/p4d/distinfo.freebsd70x86_64 head/devel/p4ftpd/distinfo.freebsd70x86 head/devel/p4ftpd/distinfo.freebsd70x86_64 head/devel/p4p/distinfo.freebsd70x86 head/devel/p4p/distinfo.freebsd70x86_64 Modified: head/devel/p4/Makefile head/devel/p4/Makefile.inc head/devel/p4/distinfo.freebsd100x86 head/devel/p4/distinfo.freebsd100x86_64 head/devel/p4api/Makefile head/devel/p4api/distinfo.freebsd100x86_64 head/devel/p4api/pkg-plist head/devel/p4d/Makefile head/devel/p4d/distinfo.freebsd100x86 head/devel/p4d/distinfo.freebsd100x86_64 head/devel/p4ftpd/Makefile head/devel/p4ftpd/distinfo.freebsd100x86_64 head/devel/p4p/Makefile head/devel/p4p/distinfo.freebsd100x86 head/devel/p4p/distinfo.freebsd100x86_64 Modified: head/devel/p4/Makefile ============================================================================== --- head/devel/p4/Makefile Tue Jul 5 06:44:20 2016 (r418065) +++ head/devel/p4/Makefile Tue Jul 5 06:55:59 2016 (r418066) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= p4 -PORTVERSION= 2015.1.1384697 +PORTVERSION= 2016.1.1404799 CATEGORIES= devel MASTER_SITES= ftp://ftp.perforce.com/perforce/${P4VERSION}/bin.${PLATFORM}/ \ http://filehost.perforce.com/perforce/${P4VERSION}/bin.${PLATFORM}/ Modified: head/devel/p4/Makefile.inc ============================================================================== --- head/devel/p4/Makefile.inc Tue Jul 5 06:44:20 2016 (r418065) +++ head/devel/p4/Makefile.inc Tue Jul 5 06:55:59 2016 (r418066) @@ -7,14 +7,14 @@ ONLY_FOR_ARCHS?= amd64 i386 . if ${OSVERSION} >= 1000100 PLATFORM= freebsd100x86_64 . else -PLATFORM= freebsd70x86_64 +IGNORE= unsupported OS release, sorry . endif .elif ${ARCH} == i386 . if ${OSVERSION} >= 1000100 PLATFORM= freebsd100x86 . else -PLATFORM= freebsd70x86 +IGNORE= unsupported OS release, sorry . endif .else Modified: head/devel/p4/distinfo.freebsd100x86 ============================================================================== --- head/devel/p4/distinfo.freebsd100x86 Tue Jul 5 06:44:20 2016 (r418065) +++ head/devel/p4/distinfo.freebsd100x86 Tue Jul 5 06:55:59 2016 (r418066) @@ -1,2 +1,3 @@ -SHA256 (perforce/2015.1.1384697/bin.freebsd100x86/p4) = 4a6c85571f06b4ff9477dcb5258b3ba652e4e167566f04932ea54e53df23d9c9 -SIZE (perforce/2015.1.1384697/bin.freebsd100x86/p4) = 2537872 +TIMESTAMP = 1467701064 +SHA256 (perforce/2016.1.1404799/bin.freebsd100x86/p4) = 3ac42f55534b6189da74f1f7dac5341c7f13fe492889eb938def999822e242cd +SIZE (perforce/2016.1.1404799/bin.freebsd100x86/p4) = 3071520 Modified: head/devel/p4/distinfo.freebsd100x86_64 ============================================================================== --- head/devel/p4/distinfo.freebsd100x86_64 Tue Jul 5 06:44:20 2016 (r418065) +++ head/devel/p4/distinfo.freebsd100x86_64 Tue Jul 5 06:55:59 2016 (r418066) @@ -1,2 +1,3 @@ -SHA256 (perforce/2015.1.1384697/bin.freebsd100x86_64/p4) = 9dedcaf430156679fc6d76c766f6db61434f3bad1ebce274a0397c8cc4c646e0 -SIZE (perforce/2015.1.1384697/bin.freebsd100x86_64/p4) = 2795184 +TIMESTAMP = 1467701061 +SHA256 (perforce/2016.1.1404799/bin.freebsd100x86_64/p4) = 1f1117435541f98aec9edb68b15eb85730a6d743b7a548ca56ba3a3d588aeee9 +SIZE (perforce/2016.1.1404799/bin.freebsd100x86_64/p4) = 3331976 Modified: head/devel/p4api/Makefile ============================================================================== --- head/devel/p4api/Makefile Tue Jul 5 06:44:20 2016 (r418065) +++ head/devel/p4api/Makefile Tue Jul 5 06:55:59 2016 (r418066) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= p4api -PORTVERSION= 2015.1.1384697 +PORTVERSION= 2016.1.1404799 CATEGORIES= devel MASTER_SITES= ftp://ftp.perforce.com/perforce/${P4VERSION}/bin.${PLATFORM}/:tar \ ftp://ftp.perforce.com/perforce/${P4VERSION}/doc/manuals/p4api/:pdf Modified: head/devel/p4api/distinfo.freebsd100x86_64 ============================================================================== --- head/devel/p4api/distinfo.freebsd100x86_64 Tue Jul 5 06:44:20 2016 (r418065) +++ head/devel/p4api/distinfo.freebsd100x86_64 Tue Jul 5 06:55:59 2016 (r418066) @@ -1,4 +1,5 @@ -SHA256 (perforce/2015.1.1384697/bin.freebsd100x86_64/p4api.tgz) = dcacdee2067848406e9a985ee7bce40910b91e285db5123ad1f1d45bf784fe4c -SIZE (perforce/2015.1.1384697/bin.freebsd100x86_64/p4api.tgz) = 1470120 -SHA256 (perforce/2015.1.1384697/bin.freebsd100x86_64/p4api.pdf) = 16e6e6548fe4e51210239cc643b08f07ed97159f004a7ef513cfd6f16403e1bd -SIZE (perforce/2015.1.1384697/bin.freebsd100x86_64/p4api.pdf) = 1623596 +TIMESTAMP = 1467701207 +SHA256 (perforce/2016.1.1396108/bin.freebsd100x86_64/p4api.tgz) = 61be48a1809a5fea6d7069721abb5762dc57b2557e55dd4726ae961c21a44d22 +SIZE (perforce/2016.1.1396108/bin.freebsd100x86_64/p4api.tgz) = 4164647 +SHA256 (perforce/2016.1.1396108/bin.freebsd100x86_64/p4api.pdf) = 601bc053b9b5316b71981449df76b32b9ca318a99752d3d5f46b46327bdc67b8 +SIZE (perforce/2016.1.1396108/bin.freebsd100x86_64/p4api.pdf) = 1908708 Modified: head/devel/p4api/pkg-plist ============================================================================== --- head/devel/p4api/pkg-plist Tue Jul 5 06:44:20 2016 (r418065) +++ head/devel/p4api/pkg-plist Tue Jul 5 06:55:59 2016 (r418066) @@ -9,6 +9,7 @@ include/perforce/clientuser.h include/perforce/datetime.h include/perforce/debug.h include/perforce/diff.h +include/perforce/diffmerge.h include/perforce/echoctl.h include/perforce/enviro.h include/perforce/error.h @@ -22,6 +23,8 @@ include/perforce/ident.h include/perforce/ignore.h include/perforce/keepalive.h include/perforce/macfile.h +include/perforce/macutil.h +include/perforce/mangle.h include/perforce/mapapi.h include/perforce/md5.h include/perforce/msgclient.h @@ -40,6 +43,7 @@ include/perforce/options.h include/perforce/p4tags.h include/perforce/pathsys.h include/perforce/runcmd.h +include/perforce/serverhelperapi.h include/perforce/signaler.h include/perforce/spec.h include/perforce/stdhdrs.h @@ -64,3 +68,4 @@ lib/perforce/libsupp.a %%PORTEXAMPLES%%%%EXAMPLESDIR%%/Version %%PORTEXAMPLES%%%%EXAMPLESDIR%%/clientuser.cc %%PORTEXAMPLES%%%%EXAMPLESDIR%%/p4api.cc +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/p4dvcsapi.cc Modified: head/devel/p4d/Makefile ============================================================================== --- head/devel/p4d/Makefile Tue Jul 5 06:44:20 2016 (r418065) +++ head/devel/p4d/Makefile Tue Jul 5 06:55:59 2016 (r418066) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= p4d -PORTVERSION= 2015.1.1384697 +PORTVERSION= 2016.1.1405859 CATEGORIES= devel MASTER_SITES= ftp://ftp.perforce.com/perforce/${P4VERSION}/bin.${PLATFORM}/ \ http://filehost.perforce.com/perforce/${P4VERSION}/bin.${PLATFORM}/ Modified: head/devel/p4d/distinfo.freebsd100x86 ============================================================================== --- head/devel/p4d/distinfo.freebsd100x86 Tue Jul 5 06:44:20 2016 (r418065) +++ head/devel/p4d/distinfo.freebsd100x86 Tue Jul 5 06:55:59 2016 (r418066) @@ -1,2 +1,3 @@ -SHA256 (perforce/2015.1.1384697/bin.freebsd100x86/p4d) = db23a2c1ac3514a61a362aa08dc632695080a91d324504cd4f27fb662e3af1fe -SIZE (perforce/2015.1.1384697/bin.freebsd100x86/p4d) = 5208536 +TIMESTAMP = 1467701144 +SHA256 (perforce/2016.1.1405859/bin.freebsd100x86/p4d) = 17bc8861117389ed9a4f36f6136620d95c11804b14fa46a76b8164886bc39e2b +SIZE (perforce/2016.1.1405859/bin.freebsd100x86/p4d) = 5757904 Modified: head/devel/p4d/distinfo.freebsd100x86_64 ============================================================================== --- head/devel/p4d/distinfo.freebsd100x86_64 Tue Jul 5 06:44:20 2016 (r418065) +++ head/devel/p4d/distinfo.freebsd100x86_64 Tue Jul 5 06:55:59 2016 (r418066) @@ -1,2 +1,3 @@ -SHA256 (perforce/2015.1.1384697/bin.freebsd100x86_64/p4d) = 04b96019640a0934fe92ea0e3e699a8dd724278486168d3bda18051e06411e3d -SIZE (perforce/2015.1.1384697/bin.freebsd100x86_64/p4d) = 5361008 +TIMESTAMP = 1467701139 +SHA256 (perforce/2016.1.1405859/bin.freebsd100x86_64/p4d) = 39addb2d365f9fe08e49c552811aea31a680cae9601dc93baf2c2a57f9e9597e +SIZE (perforce/2016.1.1405859/bin.freebsd100x86_64/p4d) = 5892264 Modified: head/devel/p4ftpd/Makefile ============================================================================== --- head/devel/p4ftpd/Makefile Tue Jul 5 06:44:20 2016 (r418065) +++ head/devel/p4ftpd/Makefile Tue Jul 5 06:55:59 2016 (r418066) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= p4ftpd -PORTVERSION= 2015.1.1384697 +PORTVERSION= 2016.1.1387479 CATEGORIES= devel MASTER_SITES= ftp://ftp.perforce.com/perforce/${P4VERSION}/bin.${PLATFORM}/ \ http://filehost.perforce.com/perforce/${P4VERSION}/bin.${PLATFORM}/ Modified: head/devel/p4ftpd/distinfo.freebsd100x86_64 ============================================================================== --- head/devel/p4ftpd/distinfo.freebsd100x86_64 Tue Jul 5 06:44:20 2016 (r418065) +++ head/devel/p4ftpd/distinfo.freebsd100x86_64 Tue Jul 5 06:55:59 2016 (r418066) @@ -1,2 +1,3 @@ -SHA256 (perforce/2015.1.1384697/bin.freebsd100x86_64/p4ftpd) = 4fef3546a731e7f7b1c74bf8bb9c6c7c5afa7d3d74136af16c4151fc7237dbc5 -SIZE (perforce/2015.1.1384697/bin.freebsd100x86_64/p4ftpd) = 2840992 +TIMESTAMP = 1467701312 +SHA256 (perforce/2016.1.1387479/bin.freebsd100x86_64/p4ftpd) = d87a021072099e368d5266ac196216dd5c61be66dae4d7b0551be5190d6f6c0a +SIZE (perforce/2016.1.1387479/bin.freebsd100x86_64/p4ftpd) = 2890456 Modified: head/devel/p4p/Makefile ============================================================================== --- head/devel/p4p/Makefile Tue Jul 5 06:44:20 2016 (r418065) +++ head/devel/p4p/Makefile Tue Jul 5 06:55:59 2016 (r418066) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= p4p -PORTVERSION= 2015.1.1384697 +PORTVERSION= 2016.1.1404799 CATEGORIES= devel MASTER_SITES= ftp://ftp.perforce.com/perforce/${P4VERSION}/bin.${PLATFORM}/ \ http://filehost.perforce.com/perforce/${P4VERSION}/bin.${PLATFORM}/ Modified: head/devel/p4p/distinfo.freebsd100x86 ============================================================================== --- head/devel/p4p/distinfo.freebsd100x86 Tue Jul 5 06:44:20 2016 (r418065) +++ head/devel/p4p/distinfo.freebsd100x86 Tue Jul 5 06:55:59 2016 (r418066) @@ -1,2 +1,3 @@ -SHA256 (perforce/2015.1.1384697/bin.freebsd100x86/p4p) = 08ad15fcb958705c0f6c849971337732204ed0883151c93a5110be6074d9f2eb -SIZE (perforce/2015.1.1384697/bin.freebsd100x86/p4p) = 2338644 +TIMESTAMP = 1467701344 +SHA256 (perforce/2016.1.1404799/bin.freebsd100x86/p4p) = 3f36f51e9aab3209f9660efb1d917300e831a831bdaa63936b0618d936b8976a +SIZE (perforce/2016.1.1404799/bin.freebsd100x86/p4p) = 2438480 Modified: head/devel/p4p/distinfo.freebsd100x86_64 ============================================================================== --- head/devel/p4p/distinfo.freebsd100x86_64 Tue Jul 5 06:44:20 2016 (r418065) +++ head/devel/p4p/distinfo.freebsd100x86_64 Tue Jul 5 06:55:59 2016 (r418066) @@ -1,2 +1,3 @@ -SHA256 (perforce/2015.1.1384697/bin.freebsd100x86_64/p4p) = b80ec1ec6de65e62a3e0aec0805a8bba88e4c6203feac0bd938f2ae41e59f5f7 -SIZE (perforce/2015.1.1384697/bin.freebsd100x86_64/p4p) = 2607536 +TIMESTAMP = 1467701341 +SHA256 (perforce/2016.1.1404799/bin.freebsd100x86_64/p4p) = 73132d3092ac0f835d4d57f2f5014487692eafff75afe7ae5df2102a53abc540 +SIZE (perforce/2016.1.1404799/bin.freebsd100x86_64/p4p) = 2706664 From owner-svn-ports-all@freebsd.org Tue Jul 5 08:06:12 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 7E61D99AFB0; Tue, 5 Jul 2016 08:06:12 +0000 (UTC) (envelope-from alfred@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 3479A1324; Tue, 5 Jul 2016 08:06:12 +0000 (UTC) (envelope-from alfred@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u6586BYH059321; Tue, 5 Jul 2016 08:06:11 GMT (envelope-from alfred@FreeBSD.org) Received: (from alfred@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u6586BMc059318; Tue, 5 Jul 2016 08:06:11 GMT (envelope-from alfred@FreeBSD.org) Message-Id: <201607050806.u6586BMc059318@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: alfred set sender to alfred@FreeBSD.org using -f From: Alfred Perlstein Date: Tue, 5 Jul 2016 08:06:11 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418067 - in head/emulators: . virtualbox-ose virtualbox-ose-lite X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Jul 2016 08:06:12 -0000 Author: alfred (src committer) Date: Tue Jul 5 08:06:10 2016 New Revision: 418067 URL: https://svnweb.freebsd.org/changeset/ports/418067 Log: virtualbox-ose-lite minimal deps for packaging This package has minimal deps, only udp server and vncserver are required. This works really nicely for someone who just wants to run headless vms or the VBoxManage tools without bloat. Added: head/emulators/virtualbox-ose-lite/ head/emulators/virtualbox-ose-lite/Makefile (contents, props changed) Modified: head/emulators/Makefile (contents, props changed) head/emulators/virtualbox-ose/Makefile (contents, props changed) Modified: head/emulators/Makefile ============================================================================== --- head/emulators/Makefile Tue Jul 5 06:55:59 2016 (r418066) +++ head/emulators/Makefile Tue Jul 5 08:06:10 2016 (r418067) @@ -151,6 +151,7 @@ SUBDIR += virtualbox-ose SUBDIR += virtualbox-ose-additions SUBDIR += virtualbox-ose-kmod + SUBDIR += virtualbox-ose-lite SUBDIR += visualboyadvance-m SUBDIR += vmips SUBDIR += vmsbackup Added: head/emulators/virtualbox-ose-lite/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/emulators/virtualbox-ose-lite/Makefile Tue Jul 5 08:06:10 2016 (r418067) @@ -0,0 +1,14 @@ +# Created by: Alfred Perlstein +# $FreeBSD$ + +PORTREVISION= 0 + +MAINTAINER= alfred@FreeBSD.org +COMMENT= Small install of virtualbox without graphics + +LITE= yes + +MASTERDIR= ${.CURDIR}/../virtualbox-ose + +.include "${MASTERDIR}/Makefile" + Modified: head/emulators/virtualbox-ose/Makefile ============================================================================== --- head/emulators/virtualbox-ose/Makefile Tue Jul 5 06:55:59 2016 (r418066) +++ head/emulators/virtualbox-ose/Makefile Tue Jul 5 08:06:10 2016 (r418067) @@ -48,6 +48,14 @@ CONFLICTS_INSTALL= virtualbox-ose-additi virtualbox-ose-devel-4* \ virtualbox-ose-legacy-4* +.if defined(LITE) +PKGNAMESUFFIX+= -lite +CONFLICTS_INSTALL+= ${PORTNAME}-[0-9]* +WITHOUT+= NLS +.else +CONFLICTS_INSTALL+= ${PORTNAME}-lite-[0-9]* +.endif + VBOXUSER?= vboxusers VBOXWSUSER?= vboxusers VBOXGROUP?= vboxusers @@ -63,7 +71,11 @@ VBOX_GUEST_VER= ${PORTVERSION} OPTIONS_DEFINE= DBUS DEBUG GUESTADDITIONS MANUAL NLS PULSEAUDIO PYTHON \ QT4 R0LOGGING UDPTUNNEL VDE VNC VPX WEBSERVICE X11 +.if defined(LITE) +OPTIONS_DEFAULT= UDPTUNNEL VNC +.else OPTIONS_DEFAULT= DBUS PYTHON QT4 UDPTUNNEL VNC WEBSERVICE X11 +.endif OPTIONS_SUB= yes DEBUG_DESC= Debug symbols, additional logs and assertions From owner-svn-ports-all@freebsd.org Tue Jul 5 09:00:09 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 6BA4BB2013E; Tue, 5 Jul 2016 09:00:09 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 3E0291EF7; Tue, 5 Jul 2016 09:00:09 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u65908mH077755; Tue, 5 Jul 2016 09:00:08 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u65908kx077754; Tue, 5 Jul 2016 09:00:08 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201607050900.u65908kx077754@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Tue, 5 Jul 2016 09:00:08 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418068 - head/mail/fdm X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Jul 2016 09:00:09 -0000 Author: amdmi3 Date: Tue Jul 5 09:00:08 2016 New Revision: 418068 URL: https://svnweb.freebsd.org/changeset/ports/418068 Log: - Switch to options helpers Modified: head/mail/fdm/Makefile Modified: head/mail/fdm/Makefile ============================================================================== --- head/mail/fdm/Makefile Tue Jul 5 08:06:10 2016 (r418067) +++ head/mail/fdm/Makefile Tue Jul 5 09:00:08 2016 (r418068) @@ -14,12 +14,15 @@ LICENSE= ISCL LIB_DEPENDS= libpcre.so:devel/pcre \ libtdb.so:databases/tdb +USES= ssl +HAS_CONFIGURE= yes +MAKE_ARGS= -DPCRE -DDB INSTALLBIN="${INSTALL_PROGRAM}" + PLIST_FILES= bin/fdm man/man1/fdm.1.gz man/man5/fdm.conf.5.gz PORTDOCS= CHANGES README MANUAL PORTEXAMPLES= n-marriott.conf f-terbeck.conf t-ulmer.conf w-maier.conf g-lando.conf -MAKE_ARGS= -DPCRE -DDB INSTALLBIN="${INSTALL_PROGRAM}" -USE_OPENSSL= yes -HAS_CONFIGURE= yes + +OPTIONS_DEFINE= DOCS EXAMPLES post-patch: @${REINPLACE_CMD} -e 's|/etc|${PREFIX}/etc|g' ${WRKSRC}/*.[ch15] @@ -27,10 +30,12 @@ post-patch: s|-I-||g; s|-g bin -o root||g; s|^FDEBUG|#&|;\ s|/usr/local|${LOCALBASE}|g' ${WRKSRC}/${MAKEFILE} -post-install: +post-install-EXAMPLES-on: @${MKDIR} ${STAGEDIR}${EXAMPLESDIR} ${INSTALL_DATA} ${PORTEXAMPLES:S|^|${WRKSRC}/examples/|} \ ${STAGEDIR}${EXAMPLESDIR} + +post-install-DOCS-on: @${MKDIR} ${STAGEDIR}${DOCSDIR} ${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/|} ${STAGEDIR}${DOCSDIR} From owner-svn-ports-all@freebsd.org Tue Jul 5 09:02:08 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 04AA2B2025F; Tue, 5 Jul 2016 09:02: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 mx1.freebsd.org (Postfix) with ESMTPS id B9160124B; Tue, 5 Jul 2016 09:02: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 u65926cY080549; Tue, 5 Jul 2016 09:02:06 GMT (envelope-from wen@FreeBSD.org) Received: (from wen@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u65926aE080544; Tue, 5 Jul 2016 09:02:06 GMT (envelope-from wen@FreeBSD.org) Message-Id: <201607050902.u65926aE080544@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: wen set sender to wen@FreeBSD.org using -f From: Wen Heping Date: Tue, 5 Jul 2016 09:02:06 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418069 - in head/math/cgal: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Jul 2016 09:02:08 -0000 Author: wen Date: Tue Jul 5 09:02:06 2016 New Revision: 418069 URL: https://svnweb.freebsd.org/changeset/ports/418069 Log: - Update to 4.8.1 Deleted: head/math/cgal/files/patch-include_CGAL_Straight__skeleton_2_Straight_skeleton_builder_2_impl.h head/math/cgal/files/patch-src_CMakeLists.txt Modified: head/math/cgal/Makefile head/math/cgal/distinfo head/math/cgal/files/patch-CMakeLists.txt head/math/cgal/files/patch-include_CGAL_config.h head/math/cgal/pkg-plist Modified: head/math/cgal/Makefile ============================================================================== --- head/math/cgal/Makefile Tue Jul 5 09:00:08 2016 (r418068) +++ head/math/cgal/Makefile Tue Jul 5 09:02:06 2016 (r418069) @@ -2,10 +2,9 @@ # $FreeBSD$ PORTNAME= cgal -PORTVERSION= 4.6 -PORTREVISION= 1 +PORTVERSION= 4.8.1 CATEGORIES= math -MASTER_SITES= http://gforge.inria.fr/frs/download.php/34703/ +MASTER_SITES= https://github.com/CGAL/cgal/releases/download/releases%2FCGAL-4.8.1/ DISTNAME= CGAL-${PORTVERSION} MAINTAINER= wen@FreeBSD.org @@ -20,22 +19,24 @@ LIB_DEPENDS= libmpfr.so:math/mpfr \ libgmp.so:math/gmp USE_LDCONFIG= yes -USES= cmake tar:bzip2 shebangfix -USE_QT4= corelib qmake_build moc_build rcc_build uic_build svg -CMAKE_ARGS= -DWITH_CGAL_Qt3=OFF -SHEBANG_FILES= scripts/cgal_create_CMakeLists +USES= cmake shebangfix tar:xz +USE_QT5= buildtools_build core qmake_build widgets +SHEBANG_FILES= scripts/cgal_create_CMakeLists \ + scripts/cgal_create_cmake_script HAS_CONFIGURE= yes -LDFLAGS+= -L${LOCALBASE}/lib OPTIONS_DEFINE= GUI OPTIONS_DEFAULT= GUI OPTIONS_SUB= yes GUI_DESC= Build libCGAL_ImageIO and libCGAL_Qt4 -GUI_USE= GL=glu QT4=gui,opengl +GUI_USE= GL=glu,gl QT5=gui,opengl GUI_CMAKE_OFF= -DWITH_CGAL_Qt4=OFF -DWITH_CGAL_ImageIO=OFF -post-install: - ${INSTALL_MAN} ${WRKSRC}/auxiliary/cgal_create_cmake_script.1 ${STAGEDIR}${PREFIX}/man/man1/ +.include + +.if ${ARCH} == i386 && ${OSVERSION} >= 1100000 +USE_GCC= yes +.endif .include Modified: head/math/cgal/distinfo ============================================================================== --- head/math/cgal/distinfo Tue Jul 5 09:00:08 2016 (r418068) +++ head/math/cgal/distinfo Tue Jul 5 09:02:06 2016 (r418069) @@ -1,2 +1,3 @@ -SHA256 (CGAL-4.6.tar.bz2) = 9f267f30a827b28a14f2a3642ac2d0479df360d3995e02d1bc5b15c7b6cf9daf -SIZE (CGAL-4.6.tar.bz2) = 15726365 +TIMESTAMP = 1467676126 +SHA256 (CGAL-4.8.1.tar.xz) = fa2036e0a53cc54eee3dffe4763028e9aec831672c8259fa376d3c29e8f781b0 +SIZE (CGAL-4.8.1.tar.xz) = 13492048 Modified: head/math/cgal/files/patch-CMakeLists.txt ============================================================================== --- head/math/cgal/files/patch-CMakeLists.txt Tue Jul 5 09:00:08 2016 (r418068) +++ head/math/cgal/files/patch-CMakeLists.txt Tue Jul 5 09:02:06 2016 (r418069) @@ -1,28 +1,20 @@ ---- CMakeLists.txt.orig 2012-10-17 14:00:39.000000000 -0500 -+++ CMakeLists.txt 2013-03-17 15:51:01.000000000 -0500 -@@ -801,9 +801,9 @@ +--- CMakeLists.txt.orig 2016-06-13 12:37:16 UTC ++++ CMakeLists.txt +@@ -729,7 +729,7 @@ set ( CGAL_INSTALL_DOC_DIR "share/doc/${ + CACHE STRING "The folder where CGAL documentation and license files will be installed, relative to CMAKE_INSTALL_PREFIX" + ) + +-set ( CGAL_INSTALL_MAN_DIR "share/man/man1" ++set ( CGAL_INSTALL_MAN_DIR "man/man1" + CACHE STRING "The folder where manual pages for CGAL scripts will be installed, relative to CMAKE_INSTALL_PREFIX" + ) +@@ -816,7 +816,7 @@ create_CGALconfig_files() # DESTINATION option is mandatory; skipping it breaks CPack! --if(CGAL_INSTALL_DOC_DIR) + if(CGAL_INSTALL_DOC_DIR) - install(FILES AUTHORS CHANGES LICENSE LICENSE.FREE_USE LICENSE.GPL LICENSE.LGPL DESTINATION ${CGAL_INSTALL_DOC_DIR} ) --endif() -+#if(CGAL_INSTALL_DOC_DIR) +# install(FILES AUTHORS CHANGES LICENSE LICENSE.FREE_USE LICENSE.GPL LICENSE.LGPL DESTINATION ${CGAL_INSTALL_DOC_DIR} ) -+#endif() + endif() #install all includes collected in trunk et cetera - -@@ -843,9 +843,9 @@ - - install(FILES ${CMAKE_BINARY_DIR}/config/CGALConfig.cmake DESTINATION ${CGAL_INSTALL_CMAKE_DIR} ) - --if(CGAL_INSTALL_MAN_DIR) -- install(FILES auxiliary/cgal_create_cmake_script.1 DESTINATION ${CGAL_INSTALL_MAN_DIR} ) --endif() -+#if(CGAL_INSTALL_MAN_DIR) -+# install(FILES auxiliary/cgal_create_cmake_script.1 DESTINATION ${CGAL_INSTALL_MAN_DIR} ) -+#endif() - - #-------------------------------------------------------------------------------------------------- - # Modified: head/math/cgal/files/patch-include_CGAL_config.h ============================================================================== --- head/math/cgal/files/patch-include_CGAL_config.h Tue Jul 5 09:00:08 2016 (r418068) +++ head/math/cgal/files/patch-include_CGAL_config.h Tue Jul 5 09:02:06 2016 (r418069) @@ -1,6 +1,6 @@ ---- include/CGAL/config.h.orig 2015-05-14 09:38:12 UTC +--- include/CGAL/config.h.orig 2016-07-05 08:44:07 UTC +++ include/CGAL/config.h -@@ -255,7 +255,8 @@ +@@ -296,7 +296,8 @@ || defined(__x86_64) || defined(__x86_64__) \ || defined(__ia64) || defined(__ia64__) \ || defined(_M_IX86) || defined(_M_IA64) \ Modified: head/math/cgal/pkg-plist ============================================================================== --- head/math/cgal/pkg-plist Tue Jul 5 09:00:08 2016 (r418068) +++ head/math/cgal/pkg-plist Tue Jul 5 09:02:06 2016 (r418069) @@ -1,6 +1,7 @@ bin/cgal_create_CMakeLists bin/cgal_create_cmake_script bin/cgal_make_macosx_app +include/CGAL/AABB_C3T3_triangle_primitive.h include/CGAL/AABB_face_graph_triangle_primitive.h include/CGAL/AABB_halfedge_graph_segment_primitive.h include/CGAL/AABB_intersections.h @@ -12,6 +13,9 @@ include/CGAL/AABB_segment_primitive.h include/CGAL/AABB_traits.h include/CGAL/AABB_tree.h include/CGAL/AABB_triangle_primitive.h +include/CGAL/Advancing_front_surface_reconstruction.h +include/CGAL/Advancing_front_surface_reconstruction_cell_base_3.h +include/CGAL/Advancing_front_surface_reconstruction_vertex_base_3.h include/CGAL/Aff_transformation_2.h include/CGAL/Aff_transformation_3.h include/CGAL/Algebraic_extension_traits.h @@ -145,6 +149,7 @@ include/CGAL/Arr_curve_data_traits_2.h include/CGAL/Arr_dcel_base.h include/CGAL/Arr_default_dcel.h include/CGAL/Arr_default_overlay_traits.h +include/CGAL/Arr_directional_non_caching_segment_basic_traits_2.h include/CGAL/Arr_enums.h include/CGAL/Arr_extended_dcel.h include/CGAL/Arr_face_index_map.h @@ -165,6 +170,8 @@ include/CGAL/Arr_geometry_traits/Conic_x include/CGAL/Arr_geometry_traits/Consolidated_curve_data_aux.h include/CGAL/Arr_geometry_traits/Curve_data_aux.h include/CGAL/Arr_geometry_traits/Hyperbolic_arc_2.h +include/CGAL/Arr_geometry_traits/IO/Polycurve_2_iostream.h +include/CGAL/Arr_geometry_traits/Polycurve_2.h include/CGAL/Arr_geometry_traits/Polyline_2.h include/CGAL/Arr_geometry_traits/Rational_arc_2.h include/CGAL/Arr_geometry_traits/Segment_assertions.h @@ -214,6 +221,8 @@ include/CGAL/Arr_point_location/Trapezoi include/CGAL/Arr_point_location/Trapezoidal_decomposition_2_iostream.h include/CGAL/Arr_point_location/Trapezoidal_decomposition_2_misc.h include/CGAL/Arr_point_location_result.h +include/CGAL/Arr_polycurve_basic_traits_2.h +include/CGAL/Arr_polycurve_traits_2.h include/CGAL/Arr_polyline_traits_2.h include/CGAL/Arr_rat_arc/Algebraic_point_2.h include/CGAL/Arr_rat_arc/Base_rational_arc_ds_1.h @@ -297,6 +306,7 @@ include/CGAL/Barycentric_mapping_paramet include/CGAL/Basic_sweep_line_2.h include/CGAL/Bbox_2.h include/CGAL/Bbox_2_Line_2_intersection.h +include/CGAL/Bbox_2_Line_2_intersection_impl.h include/CGAL/Bbox_2_Ray_2_intersection.h include/CGAL/Bbox_2_intersection.h include/CGAL/Bbox_3.h @@ -346,24 +356,32 @@ include/CGAL/CGAL_Ipelet_base_v6.h include/CGAL/CGAL_Ipelet_base_v7.h include/CGAL/CORE/BigFloat.h include/CGAL/CORE/BigFloatRep.h +include/CGAL/CORE/BigFloat_impl.h include/CGAL/CORE/BigInt.h include/CGAL/CORE/BigRat.h include/CGAL/CORE/CORE.h include/CGAL/CORE/Config.h include/CGAL/CORE/CoreAux.h +include/CGAL/CORE/CoreAux_impl.h include/CGAL/CORE/CoreDefs.h +include/CGAL/CORE/CoreDefs_impl.h +include/CGAL/CORE/CoreIO_impl.h include/CGAL/CORE/Expr.h include/CGAL/CORE/ExprRep.h +include/CGAL/CORE/Expr_impl.h include/CGAL/CORE/Filter.h include/CGAL/CORE/Gmp.h +include/CGAL/CORE/Gmp_impl.h include/CGAL/CORE/Impl.h include/CGAL/CORE/MemoryPool.h include/CGAL/CORE/Promote.h include/CGAL/CORE/Real.h include/CGAL/CORE/RealRep.h +include/CGAL/CORE/Real_impl.h include/CGAL/CORE/RefCount.h include/CGAL/CORE/Timer.h include/CGAL/CORE/extLong.h +include/CGAL/CORE/extLong_impl.h include/CGAL/CORE/geom2d/circle2d.h include/CGAL/CORE/geom2d/line2d.h include/CGAL/CORE/geom2d/point2d.h @@ -507,6 +525,7 @@ include/CGAL/Combinatorial_map_insertion include/CGAL/Combinatorial_map_iterators_base.h include/CGAL/Combinatorial_map_min_items.h include/CGAL/Combinatorial_map_operations.h +include/CGAL/Combinatorial_map_save_load.h include/CGAL/Combinatorial_map_storages.h include/CGAL/Compact_container.h include/CGAL/Compact_mesh_cell_base_3.h @@ -522,9 +541,11 @@ include/CGAL/ConicHPA2.h include/CGAL/Conic_2.h include/CGAL/Conic_misc.h include/CGAL/Constrained_Delaunay_triangulation_2.h +include/CGAL/Constrained_Delaunay_triangulation_face_base_2.h include/CGAL/Constrained_triangulation_2.h include/CGAL/Constrained_triangulation_face_base_2.h include/CGAL/Constrained_triangulation_plus_2.h +include/CGAL/Constrained_voronoi_diagram_2.h include/CGAL/Constraint_hierarchy_2.h include/CGAL/Convertible_circulator_project.h include/CGAL/Convertible_filter_iterator.h @@ -580,7 +601,6 @@ include/CGAL/Curved_kernel_via_analysis_ include/CGAL/Curved_kernel_via_analysis_2/Make_x_monotone_2.h include/CGAL/Curved_kernel_via_analysis_2/Non_x_monotone_arc_2.h include/CGAL/Curved_kernel_via_analysis_2/Point_2.h -include/CGAL/Curved_kernel_via_analysis_2/Qt_widget_Curve_renderer_2.h include/CGAL/Curved_kernel_via_analysis_2/Sweep_curves_adapter_2.h include/CGAL/Curved_kernel_via_analysis_2/gfx/Curve_renderer_2.h include/CGAL/Curved_kernel_via_analysis_2/gfx/Curve_renderer_internals.h @@ -592,7 +612,7 @@ include/CGAL/Dart.h include/CGAL/Dart_const_iterators.h include/CGAL/Dart_iterators.h include/CGAL/Default.h -include/CGAL/Deform_mesh.h +include/CGAL/Default_diagonalize_traits.h include/CGAL/Deformation_Eigen_closest_rotation_traits_3.h include/CGAL/Deformation_Eigen_polar_closest_rotation_traits_3.h include/CGAL/Delaunay_d.h @@ -601,6 +621,7 @@ include/CGAL/Delaunay_mesh_criteria_2.h include/CGAL/Delaunay_mesh_face_base_2.h include/CGAL/Delaunay_mesh_local_size_criteria_2.h include/CGAL/Delaunay_mesh_size_criteria_2.h +include/CGAL/Delaunay_mesh_vertex_base_2.h include/CGAL/Delaunay_mesher_2.h include/CGAL/Delaunay_mesher_no_edge_refinement_2.h include/CGAL/Delaunay_triangulation.h @@ -610,6 +631,7 @@ include/CGAL/Delaunay_triangulation_adap include/CGAL/Delaunay_triangulation_adaptation_traits_2.h include/CGAL/Delaunay_triangulation_cell_base_3.h include/CGAL/Delaunay_triangulation_cell_base_with_circumcenter_3.h +include/CGAL/Diagonalize_traits.h include/CGAL/Dimension.h include/CGAL/Direction_2.h include/CGAL/Direction_3.h @@ -620,6 +642,7 @@ include/CGAL/Double_map.h include/CGAL/Dummy_tds_2.h include/CGAL/Dynamic_matrix.h include/CGAL/Edge_hash_function.h +include/CGAL/Eigen_diagonalize_traits.h include/CGAL/Eigen_matrix.h include/CGAL/Eigen_solver_traits.h include/CGAL/Eigen_svd.h @@ -650,6 +673,8 @@ include/CGAL/Euler_integrator_2.h include/CGAL/Exact_circular_kernel_2.h include/CGAL/Exact_integer.h include/CGAL/Exact_predicates_exact_constructions_kernel.h +include/CGAL/Exact_predicates_exact_constructions_kernel_with_kth_root.h +include/CGAL/Exact_predicates_exact_constructions_kernel_with_root_of.h include/CGAL/Exact_predicates_exact_constructions_kernel_with_sqrt.h include/CGAL/Exact_predicates_inexact_constructions_kernel.h include/CGAL/Exact_rational.h @@ -663,6 +688,7 @@ include/CGAL/FPU_extension.h include/CGAL/FPU_gcc_i386.h include/CGAL/FPU_gcc_i386_sse2.h include/CGAL/FPU_msvc.h +include/CGAL/FaceGraph_to_Polyhedron_3.h include/CGAL/Filter_circulator.h include/CGAL/Filtered_bbox_circular_kernel_2.h include/CGAL/Filtered_bbox_circular_kernel_2/bbox_filtered_predicates.h @@ -706,6 +732,7 @@ include/CGAL/Gmpzf.h include/CGAL/Gps_circle_segment_traits_2.h include/CGAL/Gps_segment_traits_2.h include/CGAL/Gps_traits_2.h +include/CGAL/Gray_image_mesh_domain_3.h include/CGAL/Gray_level_image_3.h include/CGAL/HalfedgeDS_const_decorator.h include/CGAL/HalfedgeDS_decorator.h @@ -744,6 +771,7 @@ include/CGAL/Hilbert_sort_middle_2.h include/CGAL/Hilbert_sort_middle_3.h include/CGAL/Hilbert_sort_middle_base.h include/CGAL/Hilbert_sort_middle_d.h +include/CGAL/Hilbert_sort_on_sphere_3.h include/CGAL/Homogeneous.h include/CGAL/Homogeneous/Aff_transformationH2.h include/CGAL/Homogeneous/Aff_transformationH3.h @@ -776,7 +804,6 @@ include/CGAL/Hyperbola_2.h include/CGAL/Hyperbola_ray_2.h include/CGAL/Hyperbola_segment_2.h include/CGAL/IEEE_754_unions.h -include/CGAL/IO/binary_file_io.h include/CGAL/IO/Alpha_shape_3_VRML_2_ostream.h include/CGAL/IO/Arr_iostream.h include/CGAL/IO/Arr_text_formatter.h @@ -787,11 +814,11 @@ include/CGAL/IO/Arr_with_history_text_fo include/CGAL/IO/Arrangement_2_reader.h include/CGAL/IO/Arrangement_2_writer.h include/CGAL/IO/Color.h +include/CGAL/IO/Color_impl.h include/CGAL/IO/Complex_2_in_triangulation_3_file_writer.h include/CGAL/IO/Complex_2_in_triangulation_3_polyhedron_builder.h include/CGAL/IO/Complex_2_in_triangulation_3_to_vtk.h include/CGAL/IO/Complex_3_in_triangulation_3_to_vtk.h -include/CGAL/IO/Custom_zoom_layer.h include/CGAL/IO/Dxf_bsop_reader.h include/CGAL/IO/Dxf_reader.h include/CGAL/IO/Dxf_reader_doubles.h @@ -800,24 +827,32 @@ include/CGAL/IO/Dxf_variant_reader.h include/CGAL/IO/Dxf_writer.h include/CGAL/IO/Fig_stream.h include/CGAL/IO/Fig_stream_Conic_arc_2.h +include/CGAL/IO/File_avizo.h include/CGAL/IO/File_binary_mesh_3.h include/CGAL/IO/File_header_OFF.h +include/CGAL/IO/File_header_OFF_impl.h include/CGAL/IO/File_header_extended_OFF.h +include/CGAL/IO/File_header_extended_OFF_impl.h include/CGAL/IO/File_maya.h include/CGAL/IO/File_medit.h include/CGAL/IO/File_poly.h include/CGAL/IO/File_scanner_OFF.h +include/CGAL/IO/File_scanner_OFF_impl.h include/CGAL/IO/File_tetgen.h include/CGAL/IO/File_writer_OFF.h +include/CGAL/IO/File_writer_OFF_impl.h include/CGAL/IO/File_writer_VRML_2.h +include/CGAL/IO/File_writer_VRML_2_impl.h include/CGAL/IO/File_writer_inventor.h +include/CGAL/IO/File_writer_inventor_impl.h include/CGAL/IO/File_writer_wavefront.h +include/CGAL/IO/File_writer_wavefront_impl.h include/CGAL/IO/Generic_writer.h include/CGAL/IO/Geomview_stream.h +include/CGAL/IO/Geomview_stream_impl.h include/CGAL/IO/Gps_iostream.h include/CGAL/IO/Inventor_ostream.h include/CGAL/IO/Istream_iterator.h -include/CGAL/IO/Navigation_layer.h include/CGAL/IO/Nef_polyhedron_2_PS_stream.h include/CGAL/IO/Nef_polyhedron_S2_OGLUT_stream.h include/CGAL/IO/Nef_polyhedron_iostream_3.h @@ -831,44 +866,6 @@ include/CGAL/IO/Polyhedron_geomview_ostr include/CGAL/IO/Polyhedron_inventor_ostream.h include/CGAL/IO/Polyhedron_iostream.h include/CGAL/IO/Polyhedron_scan_OFF.h -include/CGAL/IO/Qt_help_window.h -include/CGAL/IO/Qt_widget.h -include/CGAL/IO/Qt_widget_Alpha_shape_2.h -include/CGAL/IO/Qt_widget_Apollonius_site_2.h -include/CGAL/IO/Qt_widget_Conic_2.h -include/CGAL/IO/Qt_widget_Conic_arc_2.h -include/CGAL/IO/Qt_widget_Constrained_triangulation_2.h -include/CGAL/IO/Qt_widget_Delaunay_triangulation_2.h -include/CGAL/IO/Qt_widget_Hyperbola_2.h -include/CGAL/IO/Qt_widget_Linear_object_2.h -include/CGAL/IO/Qt_widget_Min_ellipse_2.h -include/CGAL/IO/Qt_widget_Nef_2.h -include/CGAL/IO/Qt_widget_Nef_3.h -include/CGAL/IO/Qt_widget_Nef_S2.h -include/CGAL/IO/Qt_widget_OpenGL.h -include/CGAL/IO/Qt_widget_Optimisation_circle_2.h -include/CGAL/IO/Qt_widget_Optimisation_ellipse_2.h -include/CGAL/IO/Qt_widget_Polygon_2.h -include/CGAL/IO/Qt_widget_Polyline_2.h -include/CGAL/IO/Qt_widget_Regular_triangulation_2.h -include/CGAL/IO/Qt_widget_Triangulation_2.h -include/CGAL/IO/Qt_widget_circular_arc_2.h -include/CGAL/IO/Qt_widget_circular_arc_endpoint_2.h -include/CGAL/IO/Qt_widget_focus.h -include/CGAL/IO/Qt_widget_get_circle.h -include/CGAL/IO/Qt_widget_get_iso_rectangle.h -include/CGAL/IO/Qt_widget_get_line.h -include/CGAL/IO/Qt_widget_get_point.h -include/CGAL/IO/Qt_widget_get_polygon.h -include/CGAL/IO/Qt_widget_get_segment.h -include/CGAL/IO/Qt_widget_get_simple_polygon.h -include/CGAL/IO/Qt_widget_handtool.h -include/CGAL/IO/Qt_widget_history.h -include/CGAL/IO/Qt_widget_layer.h -include/CGAL/IO/Qt_widget_rotation_layer.h -include/CGAL/IO/Qt_widget_show_mouse_coordinates.h -include/CGAL/IO/Qt_widget_standard_toolbar.h -include/CGAL/IO/Qt_widget_zoomrect.h include/CGAL/IO/STL_reader.h include/CGAL/IO/Scanner_OFF.h include/CGAL/IO/Tee_for_output_iterator.h @@ -880,63 +877,31 @@ include/CGAL/IO/VRML_2_ostream.h include/CGAL/IO/Verbose_ostream.h include/CGAL/IO/Writer_OFF.h include/CGAL/IO/alpha_shape_geomview_ostream_3.h +include/CGAL/IO/binary_file_io.h include/CGAL/IO/generic_copy_OFF.h include/CGAL/IO/generic_print_polyhedron.h include/CGAL/IO/io.h +include/CGAL/IO/io_impl.h include/CGAL/IO/io_tags.h include/CGAL/IO/output_surface_facets_to_polyhedron.h include/CGAL/IO/output_surface_facets_to_triangle_soup.h -include/CGAL/IO/pixmaps/alpha_shape.xpm -include/CGAL/IO/pixmaps/arrow.xpm -include/CGAL/IO/pixmaps/back.xpm -include/CGAL/IO/pixmaps/circle.xpm -include/CGAL/IO/pixmaps/constrained.xpm -include/CGAL/IO/pixmaps/demoicon.xpm -include/CGAL/IO/pixmaps/focus.xpm -include/CGAL/IO/pixmaps/focus1.xpm -include/CGAL/IO/pixmaps/focus1_mask.xpm -include/CGAL/IO/pixmaps/focus2.xpm -include/CGAL/IO/pixmaps/focus2_mask.xpm -include/CGAL/IO/pixmaps/focus3.xpm -include/CGAL/IO/pixmaps/focus3_mask.xpm -include/CGAL/IO/pixmaps/forward.xpm -include/CGAL/IO/pixmaps/greene_approx.xpm -include/CGAL/IO/pixmaps/hand.xpm -include/CGAL/IO/pixmaps/handtool.xpm -include/CGAL/IO/pixmaps/holddown.xpm -include/CGAL/IO/pixmaps/iso_rectangle.xpm -include/CGAL/IO/pixmaps/line.xpm -include/CGAL/IO/pixmaps/min_parallelogram.xpm -include/CGAL/IO/pixmaps/min_rectangle.xpm -include/CGAL/IO/pixmaps/mouse_coord.xpm -include/CGAL/IO/pixmaps/movepoint.xpm -include/CGAL/IO/pixmaps/nearest_vertex.xpm -include/CGAL/IO/pixmaps/notool.xpm -include/CGAL/IO/pixmaps/optimal_convex.xpm -include/CGAL/IO/pixmaps/point.xpm -include/CGAL/IO/pixmaps/points.xpm -include/CGAL/IO/pixmaps/polygon.xpm -include/CGAL/IO/pixmaps/rotation.xpm -include/CGAL/IO/pixmaps/show_polygon.xpm -include/CGAL/IO/pixmaps/triangulation.xpm -include/CGAL/IO/pixmaps/voronoi.xpm -include/CGAL/IO/pixmaps/ymonotone.xpm -include/CGAL/IO/pixmaps/zoom_in.xpm -include/CGAL/IO/pixmaps/zoom_in_rect.xpm -include/CGAL/IO/pixmaps/zoom_out.xpm include/CGAL/IO/print_OFF.h include/CGAL/IO/print_VRML_1.h include/CGAL/IO/print_VRML_2.h include/CGAL/IO/print_inventor.h include/CGAL/IO/print_wavefront.h include/CGAL/IO/read_off_points.h +include/CGAL/IO/read_ply_points.h include/CGAL/IO/read_xyz_points.h include/CGAL/IO/scan_OFF.h include/CGAL/IO/write_off_points.h +include/CGAL/IO/write_ply_points.h include/CGAL/IO/write_xyz_points.h include/CGAL/Identity_policy_2.h include/CGAL/ImageIO.h +include/CGAL/ImageIO_impl.h include/CGAL/Image_3.h +include/CGAL/Image_3_impl.h include/CGAL/Image_3_vtk_interface.h include/CGAL/Implicit_mesh_domain_3.h include/CGAL/Implicit_surface_3.h @@ -952,6 +917,7 @@ include/CGAL/Intersection_traits_3.h include/CGAL/Intersections_2/Triangle_2_Triangle_2_intersection_impl.h include/CGAL/Intersections_3/intersection_3_1_impl.h include/CGAL/Interval_arithmetic.h +include/CGAL/Interval_arithmetic_impl.h include/CGAL/Interval_nt.h include/CGAL/Interval_skip_list.h include/CGAL/Interval_skip_list_interval.h @@ -1071,15 +1037,6 @@ include/CGAL/Kinetic/Exact_simulation_tr include/CGAL/Kinetic/Free_event_base.h include/CGAL/Kinetic/Handle_degeneracy_function_kernel.h include/CGAL/Kinetic/Heap_pointer_event_queue.h -include/CGAL/Kinetic/IO/Qt_moving_points_2.h -include/CGAL/Kinetic/IO/Qt_triangulation_2.h -include/CGAL/Kinetic/IO/Qt_widget_2.h -include/CGAL/Kinetic/IO/internal/GUI_base.h -include/CGAL/Kinetic/IO/internal/Qt_core.h -include/CGAL/Kinetic/IO/internal/Qt_timer.h -include/CGAL/Kinetic/IO/internal/Qt_widget_2_core.h -include/CGAL/Kinetic/IO/internal/Qt_window_2.h -include/CGAL/Kinetic/IO/internal/pixmaps.h include/CGAL/Kinetic/Inexact_simulation_traits.h include/CGAL/Kinetic/Insert_event.h include/CGAL/Kinetic/Listener.h @@ -1121,6 +1078,7 @@ include/CGAL/Kinetic/internal/To_static. include/CGAL/Kinetic/internal/Triangulation_helper_3.h include/CGAL/Kinetic/internal/config.h include/CGAL/Kinetic/internal/debug_counters.h +include/CGAL/Kinetic/internal/debug_counters_impl.h include/CGAL/Kinetic/internal/infinity_or_max.h include/CGAL/Kinetic/internal/tds_2_helpers.h include/CGAL/Kinetic/internal/triangulation_helpers_3.h @@ -1130,7 +1088,7 @@ include/CGAL/LEDA_basic.h include/CGAL/LSCM_parameterizer_3.h include/CGAL/Labeled_image_mesh_domain_3.h include/CGAL/Labeled_mesh_domain_3.h -include/CGAL/Lapack/Linear_algebra_lapack.h +include/CGAL/Lapack_svd.h include/CGAL/Largest_empty_iso_rectangle_2.h include/CGAL/Lazy.h include/CGAL/Lazy_exact_nt.h @@ -1164,16 +1122,24 @@ include/CGAL/MP_Float_impl.h include/CGAL/Manhattan_distance_iso_box_point.h include/CGAL/Marching_tetrahedra_observer_default_3.h include/CGAL/Marching_tetrahedra_traits_skin_surface_3.h +include/CGAL/Mean_curvature_flow_skeletonization.h include/CGAL/Mean_value_coordinates_parameterizer_3.h include/CGAL/Memory_sizer.h include/CGAL/Mesh_2/Clusters.h include/CGAL/Mesh_2/Do_not_refine_edges.h include/CGAL/Mesh_2/Face_badness.h +include/CGAL/Mesh_2/Lipschitz_sizing_field_2.h +include/CGAL/Mesh_2/Lloyd_move_2.h +include/CGAL/Mesh_2/Mesh_global_optimizer_2.h +include/CGAL/Mesh_2/Mesh_sizing_field.h include/CGAL/Mesh_2/Output_stream.h +include/CGAL/Mesh_2/README include/CGAL/Mesh_2/Refine_edges.h include/CGAL/Mesh_2/Refine_edges_visitor.h include/CGAL/Mesh_2/Refine_edges_with_clusters.h include/CGAL/Mesh_2/Refine_faces.h +include/CGAL/Mesh_2/Sizing_field_2.h +include/CGAL/Mesh_2/Uniform_sizing_field_2.h include/CGAL/Mesh_3/C3T3_helpers.h include/CGAL/Mesh_3/Cell_criteria_visitor_with_balls.h include/CGAL/Mesh_3/Concurrent_mesher_config.h @@ -1209,6 +1175,7 @@ include/CGAL/Mesh_3/Profiling_tools.h include/CGAL/Mesh_3/Protect_edges_sizing_field.h include/CGAL/Mesh_3/Refine_cells_3.h include/CGAL/Mesh_3/Refine_facets_3.h +include/CGAL/Mesh_3/Refine_facets_manifold_base.h include/CGAL/Mesh_3/Refine_tets_visitor.h include/CGAL/Mesh_3/Robust_intersection_kernel.h include/CGAL/Mesh_3/Robust_intersection_traits_3.h @@ -1232,6 +1199,7 @@ include/CGAL/Mesh_3/mesh_standard_facet_ include/CGAL/Mesh_3/min_dihedral_angle.h include/CGAL/Mesh_3/parameters_defaults.h include/CGAL/Mesh_3/polyhedral_to_labeled_function_wrapper.h +include/CGAL/Mesh_3/polylines_to_protect.h include/CGAL/Mesh_3/radius_ratio.h include/CGAL/Mesh_3/sliver_criteria.h include/CGAL/Mesh_3/squared_distance_Point_3_Triangle_3.h @@ -1298,11 +1266,19 @@ include/CGAL/Min_sphere_of_spheres_d_tra include/CGAL/Min_sphere_of_spheres_d_traits_3.h include/CGAL/Min_sphere_of_spheres_d_traits_d.h include/CGAL/Minimum_enclosing_quadrilateral_traits_2.h +include/CGAL/Minkowski_sum_2/AABB_collision_detector_2.h +include/CGAL/Minkowski_sum_2/AABB_node_with_join.h +include/CGAL/Minkowski_sum_2/AABB_segment_2_primitive.h +include/CGAL/Minkowski_sum_2/AABB_traits_2.h +include/CGAL/Minkowski_sum_2/AABB_traversal_traits_with_join.h +include/CGAL/Minkowski_sum_2/AABB_tree_with_join.h include/CGAL/Minkowski_sum_2/Approx_offset_base_2.h include/CGAL/Minkowski_sum_2/Arr_labeled_traits_2.h include/CGAL/Minkowski_sum_2/Decomposition_strategy_adapter.h include/CGAL/Minkowski_sum_2/Exact_offset_base_2.h +include/CGAL/Minkowski_sum_2/Hole_filter_2.h include/CGAL/Minkowski_sum_2/Labels.h +include/CGAL/Minkowski_sum_2/Minkowski_sum_by_reduced_convolution_2.h include/CGAL/Minkowski_sum_2/Minkowski_sum_conv_2.h include/CGAL/Minkowski_sum_2/Minkowski_sum_decomp_2.h include/CGAL/Minkowski_sum_2/Offset_conv_2.h @@ -1343,12 +1319,12 @@ include/CGAL/Nef_2/PM_overlayer.h include/CGAL/Nef_2/PM_persistent_PL.h include/CGAL/Nef_2/PM_point_locator.h include/CGAL/Nef_2/Polynomial.h +include/CGAL/Nef_2/Polynomial_impl.h include/CGAL/Nef_2/Segment_overlay_traits.h include/CGAL/Nef_2/debug.h include/CGAL/Nef_2/gen_point_location.h include/CGAL/Nef_2/geninfo.h include/CGAL/Nef_2/iterator_tools.h -include/CGAL/Nef_3/binop_intersection_tests.h include/CGAL/Nef_3/Binary_operation.h include/CGAL/Nef_3/Bounding_box_3.h include/CGAL/Nef_3/Combine_with_halfspace.h @@ -1387,12 +1363,12 @@ include/CGAL/Nef_3/SNC_iteration.h include/CGAL/Nef_3/SNC_k3_tree_traits.h include/CGAL/Nef_3/SNC_list.h include/CGAL/Nef_3/SNC_point_locator.h -include/CGAL/Nef_3/SNC_ray_shooter.h include/CGAL/Nef_3/SNC_simplify.h include/CGAL/Nef_3/SNC_sphere_map.h include/CGAL/Nef_3/SNC_structure.h include/CGAL/Nef_3/Vertex.h include/CGAL/Nef_3/Volume.h +include/CGAL/Nef_3/binop_intersection_tests.h include/CGAL/Nef_3/bounded_side_3.h include/CGAL/Nef_3/polyhedron_3_to_nef_3.h include/CGAL/Nef_3/quotient_coordinates_to_homogeneous_point.h @@ -1489,6 +1465,12 @@ include/CGAL/Null_matrix.h include/CGAL/Number_type_checker.h include/CGAL/Number_types/internal_functions_comparison_root_of_2.h include/CGAL/OFF_to_nef_3.h +include/CGAL/OTR_2/Cost.h +include/CGAL/OTR_2/Reconstruction_edge_2.h +include/CGAL/OTR_2/Reconstruction_face_base_2.h +include/CGAL/OTR_2/Reconstruction_triangulation_2.h +include/CGAL/OTR_2/Reconstruction_vertex_base_2.h +include/CGAL/OTR_2/Sample.h include/CGAL/Object.h include/CGAL/OpenNL/bicgstab.h include/CGAL/OpenNL/blas.h @@ -1497,6 +1479,7 @@ include/CGAL/OpenNL/full_vector.h include/CGAL/OpenNL/linear_solver.h include/CGAL/OpenNL/preconditioner.h include/CGAL/OpenNL/sparse_matrix.h +include/CGAL/Optimal_transportation_reconstruction_2.h include/CGAL/Optimisation/Access_coordinates_begin_2.h include/CGAL/Optimisation/Access_coordinates_begin_3.h include/CGAL/Optimisation/Access_coordinates_begin_d.h @@ -1512,7 +1495,9 @@ include/CGAL/Optimisation/debug.h include/CGAL/Optimisation_d_traits_2.h include/CGAL/Optimisation_d_traits_3.h include/CGAL/Optimisation_d_traits_d.h +include/CGAL/Orientation_Linf_2.h include/CGAL/Origin.h +include/CGAL/Origin_impl.h include/CGAL/Orthogonal_incremental_neighbor_search.h include/CGAL/Orthogonal_k_neighbor_search.h include/CGAL/PCA_util.h @@ -1568,6 +1553,10 @@ include/CGAL/Periodic_2_triangulation_st include/CGAL/Periodic_2_triangulation_traits_2.h include/CGAL/Periodic_2_triangulation_vertex_base_2.h include/CGAL/Periodic_3_Delaunay_triangulation_3.h +include/CGAL/Periodic_3_Delaunay_triangulation_filtered_traits_3.h +include/CGAL/Periodic_3_Delaunay_triangulation_statically_filtered_traits_3.h +include/CGAL/Periodic_3_Delaunay_triangulation_traits_3.h +include/CGAL/Periodic_3_construct_point_3.h include/CGAL/Periodic_3_offset_3.h include/CGAL/Periodic_3_triangulation_3.h include/CGAL/Periodic_3_triangulation_ds_cell_base_3.h @@ -1590,7 +1579,6 @@ include/CGAL/Point_2_Segment_2_intersect include/CGAL/Point_2_Triangle_2_intersection.h include/CGAL/Point_3.h include/CGAL/Point_container.h -include/CGAL/Point_inside_polyhedron_3.h include/CGAL/Point_set_2.h include/CGAL/Point_traits.h include/CGAL/Point_with_normal_3.h @@ -1600,6 +1588,7 @@ include/CGAL/Point_with_surface_index_ge include/CGAL/Poisson_implicit_surface_3.h include/CGAL/Poisson_mesh_cell_criteria_3.h include/CGAL/Poisson_reconstruction_function.h +include/CGAL/Polychain_2.h include/CGAL/Polygon_2.h include/CGAL/Polygon_2/Polygon_2_algorithms_impl.h include/CGAL/Polygon_2/Polygon_2_edge_circulator.h @@ -1610,10 +1599,46 @@ include/CGAL/Polygon_2/Polygon_2_vertex_ include/CGAL/Polygon_2/polygon_assertions.h include/CGAL/Polygon_2_algorithms.h include/CGAL/Polygon_convex_decomposition_2.h +include/CGAL/Polygon_mesh_processing/Weights.h +include/CGAL/Polygon_mesh_processing/bbox.h +include/CGAL/Polygon_mesh_processing/border.h +include/CGAL/Polygon_mesh_processing/compute_normal.h +include/CGAL/Polygon_mesh_processing/connected_components.h +include/CGAL/Polygon_mesh_processing/distance.h +include/CGAL/Polygon_mesh_processing/fair.h +include/CGAL/Polygon_mesh_processing/internal/Hole_filling/Triangulate_hole_polygon_mesh.h +include/CGAL/Polygon_mesh_processing/internal/Hole_filling/Triangulate_hole_polyline.h +include/CGAL/Polygon_mesh_processing/internal/Hole_filling/do_not_use_DT3.h +include/CGAL/Polygon_mesh_processing/internal/Hole_filling/experimental/experimental_code.h +include/CGAL/Polygon_mesh_processing/internal/Isotropic_remeshing/AABB_filtered_projection_traits.h +include/CGAL/Polygon_mesh_processing/internal/Isotropic_remeshing/remesh_impl.h +include/CGAL/Polygon_mesh_processing/internal/Polygon_mesh_slicer/Axis_parallel_plane_traits.h +include/CGAL/Polygon_mesh_processing/internal/Polygon_mesh_slicer/Traversal_traits.h +include/CGAL/Polygon_mesh_processing/internal/Side_of_triangle_mesh/AABB_triangle_accessor_3_primitive.h +include/CGAL/Polygon_mesh_processing/internal/Side_of_triangle_mesh/Point_inside_vertical_ray_cast.h +include/CGAL/Polygon_mesh_processing/internal/Side_of_triangle_mesh/Ray_3_Triangle_3_traversal_traits.h +include/CGAL/Polygon_mesh_processing/internal/fair_impl.h +include/CGAL/Polygon_mesh_processing/internal/named_function_params.h +include/CGAL/Polygon_mesh_processing/internal/named_params_helper.h +include/CGAL/Polygon_mesh_processing/internal/refine_impl.h +include/CGAL/Polygon_mesh_processing/measure.h +include/CGAL/Polygon_mesh_processing/orient_polygon_soup.h +include/CGAL/Polygon_mesh_processing/orientation.h +include/CGAL/Polygon_mesh_processing/polygon_soup_to_polygon_mesh.h +include/CGAL/Polygon_mesh_processing/refine.h +include/CGAL/Polygon_mesh_processing/remesh.h +include/CGAL/Polygon_mesh_processing/repair.h +include/CGAL/Polygon_mesh_processing/self_intersections.h +include/CGAL/Polygon_mesh_processing/stitch_borders.h +include/CGAL/Polygon_mesh_processing/triangulate_faces.h +include/CGAL/Polygon_mesh_processing/triangulate_hole.h +include/CGAL/Polygon_mesh_slicer.h include/CGAL/Polygon_offset_builder_2.h include/CGAL/Polygon_offset_builder_traits_2.h include/CGAL/Polygon_set_2.h include/CGAL/Polygon_traits_2.h +include/CGAL/Polygon_triangulation_decomposition_2.h +include/CGAL/Polygon_vertical_decomposition_2.h include/CGAL/Polygon_with_holes_2.h include/CGAL/PolyhedralSurf_neighbors.h include/CGAL/Polyhedral_mesh_domain_3.h @@ -1625,8 +1650,6 @@ include/CGAL/Polyhedron_incremental_buil include/CGAL/Polyhedron_items_3.h include/CGAL/Polyhedron_items_with_id_3.h include/CGAL/Polyhedron_min_items_3.h -include/CGAL/Polyhedron_slicer_3.h -include/CGAL/Polyhedron_stitching.h include/CGAL/Polyhedron_traits_3.h include/CGAL/Polyhedron_traits_with_normals_3.h include/CGAL/Polyline_constraint_hierarchy_2.h @@ -1696,6 +1719,7 @@ include/CGAL/Polynomial/internal/Filtere include/CGAL/Polynomial/internal/Fixed_polynomial_impl.h include/CGAL/Polynomial/internal/GSL_numeric_solver.h include/CGAL/Polynomial/internal/Isolating_interval.h +include/CGAL/Polynomial/internal/JAMA_numeric_solvers_impl.h include/CGAL/Polynomial/internal/Kernel/Is_even_multiplicity.h include/CGAL/Polynomial/internal/Kernel/Is_rational.h include/CGAL/Polynomial/internal/Kernel/Isolating_interval.h @@ -1750,6 +1774,7 @@ include/CGAL/Polynomial/internal/Simple_ include/CGAL/Polynomial/internal/Statistics.h include/CGAL/Polynomial/internal/Sturm_isolating_interval.h include/CGAL/Polynomial/internal/Sturm_root_rep.h +include/CGAL/Polynomial/internal/Turkowski_numeric_solvers_impl.h include/CGAL/Polynomial/internal/config.h include/CGAL/Polynomial/internal/filtered_function_leaf_nodes.h include/CGAL/Polynomial/internal/filtered_function_node_bases.h @@ -1758,7 +1783,9 @@ include/CGAL/Polynomial/internal/interva include/CGAL/Polynomial/internal/macros.h include/CGAL/Polynomial/internal/nt_converters.h include/CGAL/Polynomial/internal/numeric_solvers.h +include/CGAL/Polynomial/internal/numeric_solvers_impl.h include/CGAL/Polynomial/internal/numeric_solvers_support.h +include/CGAL/Polynomial/internal/numeric_solvers_support_impl.h include/CGAL/Polynomial/internal/polynomial_generators.h include/CGAL/Polynomial/misc.h include/CGAL/Polynomial/modular_filter.h @@ -1821,12 +1848,14 @@ include/CGAL/QP_solver/debug.h include/CGAL/QP_solver/functors.h include/CGAL/Qt/AlphaShapeGraphicsItem.h include/CGAL/Qt/ApolloniusGraphGraphicsItem.h -include/CGAL/Qt/CGAL_Qt4_config.h +include/CGAL/Qt/CGAL_Qt_config.h include/CGAL/Qt/CircularArcGraphicsItem.h include/CGAL/Qt/ConstrainedTriangulationGraphicsItem.h include/CGAL/Qt/Converter.h +include/CGAL/Qt/CreateOpenGLContext.h include/CGAL/Qt/DelaunayMeshTriangulationGraphicsItem.h include/CGAL/Qt/DemosMainWindow.h +include/CGAL/Qt/DemosMainWindow_impl.h include/CGAL/Qt/GraphicsItem.h include/CGAL/Qt/GraphicsViewCircleInput.h include/CGAL/Qt/GraphicsViewCircularArcInput.h @@ -1834,9 +1863,11 @@ include/CGAL/Qt/GraphicsViewInput.h include/CGAL/Qt/GraphicsViewIsoRectangleInput.h include/CGAL/Qt/GraphicsViewLineInput.h include/CGAL/Qt/GraphicsViewNavigation.h +include/CGAL/Qt/GraphicsViewNavigation_impl.h include/CGAL/Qt/GraphicsViewPointInput.h include/CGAL/Qt/GraphicsViewPolygonWithHolesInput.h include/CGAL/Qt/GraphicsViewPolylineInput.h +include/CGAL/Qt/GraphicsViewPolylineInput_impl.h include/CGAL/Qt/LineGraphicsItem.h include/CGAL/Qt/PainterOstream.h include/CGAL/Qt/PointsGraphicsItem.h @@ -1849,13 +1880,17 @@ include/CGAL/Qt/RegularGridGraphicsItem. include/CGAL/Qt/RegularGridVectorFieldGraphicsItem.h include/CGAL/Qt/RegularTriangulationGraphicsItem.h include/CGAL/Qt/SegmentDelaunayGraphGraphicsItem.h +include/CGAL/Qt/SegmentDelaunayGraphLinfGraphicsItem.h include/CGAL/Qt/SegmentsGraphicsItem.h include/CGAL/Qt/StreamLinesGraphicsItem.h include/CGAL/Qt/TriangulationGraphicsItem.h include/CGAL/Qt/VoronoiGraphicsItem.h include/CGAL/Qt/debug.h +include/CGAL/Qt/debug_impl.h include/CGAL/Qt/resources.h +include/CGAL/Qt/resources_impl.h include/CGAL/Qt/utility.h +include/CGAL/Qt/utility_impl.h include/CGAL/Quotient.h include/CGAL/Quotient_fwd.h include/CGAL/RS/Gmpfr_make_unique.h @@ -1881,6 +1916,7 @@ include/CGAL/Random_access_adaptor.h include/CGAL/Random_access_value_adaptor.h include/CGAL/Random_convex_hull_traits_2.h include/CGAL/Random_convex_set_traits_2.h +include/CGAL/Random_impl.h include/CGAL/Random_polygon_2_sweep.h include/CGAL/Random_polygon_traits_2.h include/CGAL/Range_segment_tree_traits.h @@ -1889,6 +1925,7 @@ include/CGAL/Range_tree_k.h include/CGAL/Rational_traits.h include/CGAL/Ray_2.h include/CGAL/Ray_2_Bbox_2_intersection.h +include/CGAL/Ray_2_Bbox_2_intersection_impl.h include/CGAL/Ray_2_Iso_rectangle_2_intersection.h include/CGAL/Ray_2_Line_2_intersection.h include/CGAL/Ray_2_Point_2_intersection.h @@ -1898,6 +1935,7 @@ include/CGAL/Ray_2_Triangle_2_intersecti include/CGAL/Ray_3.h include/CGAL/Real_embeddable_traits.h include/CGAL/Real_timer.h +include/CGAL/Real_timer_impl.h include/CGAL/Reconstruction_triangulation_3.h include/CGAL/Rectangular_p_center_traits_2.h include/CGAL/Referenced_argument.h @@ -1913,7 +1951,6 @@ include/CGAL/Regular_triangulation_eucli include/CGAL/Regular_triangulation_euclidean_traits_3.h include/CGAL/Regular_triangulation_face_base_2.h include/CGAL/Regular_triangulation_filtered_traits_2.h -include/CGAL/Regular_triangulation_filtered_traits_3.h include/CGAL/Regular_triangulation_vertex_base_2.h include/CGAL/Residue.h include/CGAL/Ridges.h @@ -1924,11 +1961,11 @@ include/CGAL/Root_for_circles_2_2.h include/CGAL/Root_for_spheres_2_3.h include/CGAL/Root_of_traits.h include/CGAL/Root_of_traits_specializations.h +include/CGAL/Rotational_sweep_visibility_2.h include/CGAL/Runge_kutta_integrator_2.h include/CGAL/Scalar_factor_traits.h include/CGAL/Scale_space_reconstruction_3/Scale_space_surface_reconstruction_3_impl.h include/CGAL/Scale_space_reconstruction_3/Shape_construction_3.h -include/CGAL/Scale_space_reconstruction_3/Weighted_PCA_approximation_3.h include/CGAL/Scale_space_reconstruction_3/internal/Auto_count.h include/CGAL/Scale_space_surface_reconstruction_3.h include/CGAL/Search_traits.h @@ -1983,6 +2020,28 @@ include/CGAL/Segment_Delaunay_graph_2/Vo include/CGAL/Segment_Delaunay_graph_2/basic.h include/CGAL/Segment_Delaunay_graph_2/edge_list.h include/CGAL/Segment_Delaunay_graph_2/in_place_edge_list.h +include/CGAL/Segment_Delaunay_graph_Linf_2.h +include/CGAL/Segment_Delaunay_graph_Linf_2/Basic_predicates_C2.h +include/CGAL/Segment_Delaunay_graph_Linf_2/Bisector_Linf.h +include/CGAL/Segment_Delaunay_graph_Linf_2/Constructions_C2.h +include/CGAL/Segment_Delaunay_graph_Linf_2/Filtered_traits_base_2.h +include/CGAL/Segment_Delaunay_graph_Linf_2/Finite_edge_interior_conflict_C2.h +include/CGAL/Segment_Delaunay_graph_Linf_2/Infinite_edge_interior_conflict_C2.h +include/CGAL/Segment_Delaunay_graph_Linf_2/Orientation_Linf_C2.h +include/CGAL/Segment_Delaunay_graph_Linf_2/Oriented_side_C2.h +include/CGAL/Segment_Delaunay_graph_Linf_2/Oriented_side_of_bisector_C2.h +include/CGAL/Segment_Delaunay_graph_Linf_2/Predicates_C2.h +include/CGAL/Segment_Delaunay_graph_Linf_2/Segment_Delaunay_graph_Linf_2_impl.h +include/CGAL/Segment_Delaunay_graph_Linf_2/Segment_Delaunay_graph_Linf_hierarchy_2_impl.h +include/CGAL/Segment_Delaunay_graph_Linf_2/Traits_base_2.h +include/CGAL/Segment_Delaunay_graph_Linf_2/Vertex_conflict_C2.h +include/CGAL/Segment_Delaunay_graph_Linf_2/Voronoi_vertex_C2.h +include/CGAL/Segment_Delaunay_graph_Linf_2/Voronoi_vertex_ring_C2.h +include/CGAL/Segment_Delaunay_graph_Linf_2/Voronoi_vertex_sqrt_field_new_C2.h +include/CGAL/Segment_Delaunay_graph_Linf_2/basic.h +include/CGAL/Segment_Delaunay_graph_Linf_filtered_traits_2.h +include/CGAL/Segment_Delaunay_graph_Linf_hierarchy_2.h +include/CGAL/Segment_Delaunay_graph_Linf_traits_2.h include/CGAL/Segment_Delaunay_graph_adaptation_policies_2.h include/CGAL/Segment_Delaunay_graph_adaptation_traits_2.h include/CGAL/Segment_Delaunay_graph_face_base_2.h @@ -2000,10 +2059,23 @@ include/CGAL/Segment_Delaunay_graph_trai include/CGAL/Segment_Delaunay_graph_vertex_base_2.h include/CGAL/Segment_tree_d.h include/CGAL/Segment_tree_k.h -include/CGAL/Self_intersection_polyhedron_3.h +include/CGAL/Shape_detection_3.h +include/CGAL/Shape_detection_3/Cone.h +include/CGAL/Shape_detection_3/Cylinder.h +include/CGAL/Shape_detection_3/Efficient_RANSAC.h +include/CGAL/Shape_detection_3/Efficient_RANSAC_traits.h +include/CGAL/Shape_detection_3/Octree.h +include/CGAL/Shape_detection_3/Plane.h +include/CGAL/Shape_detection_3/Shape_base.h +include/CGAL/Shape_detection_3/Sphere.h +include/CGAL/Shape_detection_3/Torus.h +include/CGAL/Side_of_bounded_square_2.h +include/CGAL/Side_of_oriented_square_2.h +include/CGAL/Side_of_triangle_mesh.h include/CGAL/Simple_cartesian.h include/CGAL/Simple_circular_kernel_2.h include/CGAL/Simple_homogeneous.h +include/CGAL/Simple_polygon_visibility_2.h include/CGAL/Simple_spherical_kernel_3.h include/CGAL/Sixtuple.h include/CGAL/Skin_surface_3.h @@ -2079,6 +2151,14 @@ include/CGAL/Surface_mesh_default_criter include/CGAL/Surface_mesh_default_edges_criteria_3.h include/CGAL/Surface_mesh_default_triangulation_3.h include/CGAL/Surface_mesh_deformation.h +include/CGAL/Surface_mesh_shortest_path.h +include/CGAL/Surface_mesh_shortest_path/Surface_mesh_shortest_path.h +include/CGAL/Surface_mesh_shortest_path/Surface_mesh_shortest_path_traits.h +include/CGAL/Surface_mesh_shortest_path/barycentric.h +include/CGAL/Surface_mesh_shortest_path/function_objects.h +include/CGAL/Surface_mesh_shortest_path/internal/Cone_expansion_event.h +include/CGAL/Surface_mesh_shortest_path/internal/Cone_tree.h +include/CGAL/Surface_mesh_shortest_path/internal/misc_functions.h include/CGAL/Surface_mesh_simplification/Detail/Common.h include/CGAL/Surface_mesh_simplification/Detail/Edge_collapse.h include/CGAL/Surface_mesh_simplification/Detail/Edge_collapse_impl.h @@ -2157,14 +2237,27 @@ include/CGAL/Taucs_matrix.h include/CGAL/Taucs_solver_traits.h include/CGAL/Taucs_vector.h include/CGAL/Tetrahedron_3.h +include/CGAL/Three/Polyhedron_demo_io_plugin_interface.h +include/CGAL/Three/Polyhedron_demo_plugin_helper.h +include/CGAL/Three/Polyhedron_demo_plugin_interface.h +include/CGAL/Three/Scene_draw_interface.h +include/CGAL/Three/Scene_group_item.h +include/CGAL/Three/Scene_interface.h +include/CGAL/Three/Scene_item.h +include/CGAL/Three/Scene_item_config.h +include/CGAL/Three/Viewer_config.h +include/CGAL/Three/Viewer_interface.h include/CGAL/Threetuple.h include/CGAL/Time_stamper.h include/CGAL/Timer.h +include/CGAL/Timer_impl.h include/CGAL/Tools/Counter.h include/CGAL/Tools/Label.h include/CGAL/Tools/Log.h +include/CGAL/Tools/Log_impl.h include/CGAL/Tools/chained_map.h include/CGAL/Tools/utility_macros.h +include/CGAL/Traits_with_offsets_adaptor.h include/CGAL/Transform_iterator.h include/CGAL/Tree_assertions.h include/CGAL/Tree_base.h @@ -2187,6 +2280,7 @@ include/CGAL/Triangle_3_Tetrahedron_3_do include/CGAL/Triangle_3_Triangle_3_do_intersect.h include/CGAL/Triangle_3_Triangle_3_intersection.h include/CGAL/Triangle_accessor_3.h +include/CGAL/Triangular_expansion_visibility_2.h include/CGAL/Triangular_field_2.h include/CGAL/Triangulated_mixed_complex_observer_3.h include/CGAL/Triangulation.h @@ -2252,6 +2346,8 @@ include/CGAL/Union_of_balls_3.h include/CGAL/Unique_hash_map.h include/CGAL/Vector_2.h include/CGAL/Vector_3.h +include/CGAL/Vertex2Data_Property_Map_with_std_map.h +include/CGAL/Visibility_2/visibility_utils.h include/CGAL/Voronoi_diagram_2.h include/CGAL/Voronoi_diagram_2/Accessor.h include/CGAL/Voronoi_diagram_2/Adaptation_traits_base_2.h @@ -2299,6 +2395,7 @@ include/CGAL/Width_default_traits_3.h include/CGAL/Width_polyhedron_3.h include/CGAL/Win32_exception.h include/CGAL/aff_transformation_tags.h +include/CGAL/aff_transformation_tags_impl.h include/CGAL/algorithm.h include/CGAL/all_furthest_neighbors_2.h include/CGAL/apply_to_range.h @@ -2308,12 +2405,13 @@ include/CGAL/arrange_offset_polygons_2.h include/CGAL/array.h include/CGAL/assertions.h include/CGAL/assertions_behaviour.h +include/CGAL/assertions_impl.h +include/CGAL/atomic.h include/CGAL/auto_link/CGAL.h -include/CGAL/auto_link/CGALQt3.h include/CGAL/auto_link/CORE.h include/CGAL/auto_link/ImageIO.h include/CGAL/auto_link/LAPACK.h -include/CGAL/auto_link/Qt4.h +include/CGAL/auto_link/Qt.h include/CGAL/auto_link/TAUCS.h include/CGAL/auto_link/auto_link.h include/CGAL/barycenter.h @@ -2323,9 +2421,11 @@ include/CGAL/basic_constructions_2.h include/CGAL/basic_constructions_3.h include/CGAL/bbox_intersection_3.h include/CGAL/bilateral_smooth_point_set.h +include/CGAL/boost/graph/Dual.h include/CGAL/boost/graph/Euler_operations.h include/CGAL/boost/graph/Graph_geometry.h include/CGAL/boost/graph/backward_compatibility_functions.h +include/CGAL/boost/graph/convert_surface_mesh.h include/CGAL/boost/graph/dijkstra_shortest_paths.h include/CGAL/boost/graph/dijkstra_shortest_paths.hpp include/CGAL/boost/graph/graph_concepts.h @@ -2337,11 +2437,13 @@ include/CGAL/boost/graph/graph_traits_Ha include/CGAL/boost/graph/graph_traits_PolyMesh_ArrayKernelT.h include/CGAL/boost/graph/graph_traits_Polyhedron_3.h include/CGAL/boost/graph/graph_traits_Surface_mesh.h +include/CGAL/boost/graph/graph_traits_TriMesh_ArrayKernelT.h include/CGAL/boost/graph/graph_traits_Triangulation_2.h include/CGAL/boost/graph/halfedge_graph_traits.h include/CGAL/boost/graph/halfedge_graph_traits_HalfedgeDS.h include/CGAL/boost/graph/halfedge_graph_traits_Polyhedron_3.h include/CGAL/boost/graph/helpers.h +include/CGAL/boost/graph/internal/Has_member_clear.h include/CGAL/boost/graph/internal/OM_iterator_from_circulator.h include/CGAL/boost/graph/internal/helpers.h include/CGAL/boost/graph/iterator.h @@ -2351,8 +2453,10 @@ include/CGAL/boost/graph/properties_Comb include/CGAL/boost/graph/properties_PolyMesh_ArrayKernelT.h include/CGAL/boost/graph/properties_Polyhedron_3.h include/CGAL/boost/graph/properties_Surface_mesh.h +include/CGAL/boost/graph/properties_TriMesh_ArrayKernelT.h include/CGAL/boost/graph/selection.h include/CGAL/boost/graph/split_graph_into_polylines.h +include/CGAL/boost/graph/visitor.h include/CGAL/boost/iterator/counting_iterator.hpp include/CGAL/boost/iterator/transform_iterator.hpp include/CGAL/bounding_box.h @@ -2410,8 +2514,6 @@ include/CGAL/distance_predicates_2.h include/CGAL/distance_predicates_3.h *** DIFF OUTPUT TRUNCATED AT 1000 LINES *** From owner-svn-ports-all@freebsd.org Tue Jul 5 09:08:35 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 8DB92B204D3; Tue, 5 Jul 2016 09:08: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 mx1.freebsd.org (Postfix) with ESMTPS id 5D81F17DB; Tue, 5 Jul 2016 09:08:35 +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 u6598YMs081515; Tue, 5 Jul 2016 09:08:34 GMT (envelope-from mat@FreeBSD.org) Received: (from mat@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u6598YuD081513; Tue, 5 Jul 2016 09:08:34 GMT (envelope-from mat@FreeBSD.org) Message-Id: <201607050908.u6598YuD081513@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: mat set sender to mat@FreeBSD.org using -f From: Mathieu Arnold Date: Tue, 5 Jul 2016 09:08:34 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418070 - head/textproc/p5-XML-MyXML X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Jul 2016 09:08:35 -0000 Author: mat Date: Tue Jul 5 09:08:34 2016 New Revision: 418070 URL: https://svnweb.freebsd.org/changeset/ports/418070 Log: Update to 0.9010. Sponsored by: Absolight Modified: head/textproc/p5-XML-MyXML/Makefile (contents, props changed) head/textproc/p5-XML-MyXML/distinfo (contents, props changed) Modified: head/textproc/p5-XML-MyXML/Makefile ============================================================================== --- head/textproc/p5-XML-MyXML/Makefile Tue Jul 5 09:02:06 2016 (r418069) +++ head/textproc/p5-XML-MyXML/Makefile Tue Jul 5 09:08:34 2016 (r418070) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= XML-MyXML -PORTVERSION= 0.9008 +PORTVERSION= 0.9010 PORTEPOCH= 1 CATEGORIES= textproc perl5 MASTER_SITES= CPAN Modified: head/textproc/p5-XML-MyXML/distinfo ============================================================================== --- head/textproc/p5-XML-MyXML/distinfo Tue Jul 5 09:02:06 2016 (r418069) +++ head/textproc/p5-XML-MyXML/distinfo Tue Jul 5 09:08:34 2016 (r418070) @@ -1,2 +1,3 @@ -SHA256 (XML-MyXML-0.9008.tar.gz) = f83ee86c94ba344bca3ec523077419d800f31fda58f5b498bdca32499285c847 -SIZE (XML-MyXML-0.9008.tar.gz) = 21015 +TIMESTAMP = 1467708780 +SHA256 (XML-MyXML-0.9010.tar.gz) = 8e1a70e91358d4ab2c5f2dae7fd4b3ac0837f1e88ff2f01717a0a5619d8eb493 +SIZE (XML-MyXML-0.9010.tar.gz) = 21333 From owner-svn-ports-all@freebsd.org Tue Jul 5 09:08:39 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 0473CB20501; Tue, 5 Jul 2016 09:08:39 +0000 (UTC) (envelope-from mat@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id C57C717FD; Tue, 5 Jul 2016 09:08:38 +0000 (UTC) (envelope-from mat@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u6598bXT081627; Tue, 5 Jul 2016 09:08:37 GMT (envelope-from mat@FreeBSD.org) Received: (from mat@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u6598b2v081625; Tue, 5 Jul 2016 09:08:37 GMT (envelope-from mat@FreeBSD.org) Message-Id: <201607050908.u6598b2v081625@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: mat set sender to mat@FreeBSD.org using -f From: Mathieu Arnold Date: Tue, 5 Jul 2016 09:08:37 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418071 - head/textproc/p5-Text-BibTeX X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Jul 2016 09:08:39 -0000 Author: mat Date: Tue Jul 5 09:08:37 2016 New Revision: 418071 URL: https://svnweb.freebsd.org/changeset/ports/418071 Log: Update to 0.75. Sponsored by: Absolight Modified: head/textproc/p5-Text-BibTeX/Makefile (contents, props changed) head/textproc/p5-Text-BibTeX/distinfo (contents, props changed) Modified: head/textproc/p5-Text-BibTeX/Makefile ============================================================================== --- head/textproc/p5-Text-BibTeX/Makefile Tue Jul 5 09:08:34 2016 (r418070) +++ head/textproc/p5-Text-BibTeX/Makefile Tue Jul 5 09:08:37 2016 (r418071) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= Text-BibTeX -PORTVERSION= 0.74 +PORTVERSION= 0.75 CATEGORIES= textproc perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- @@ -27,6 +27,11 @@ STRIP_FILES= bin/dumpnames bin/biblex bi .include +.if ${PERL_LEVEL} < 502300 +BUILD_DEPENDS+= p5-Scalar-List-Utils>=0.42:lang/p5-Scalar-List-Utils +RUN_DEPENDS+= p5-Scalar-List-Utils>=0.42:lang/p5-Scalar-List-Utils +.endif + .if ${ARCH} == "amd64" || ${ARCH} == "ia64" CFLAGS+= -fPIC .endif Modified: head/textproc/p5-Text-BibTeX/distinfo ============================================================================== --- head/textproc/p5-Text-BibTeX/distinfo Tue Jul 5 09:08:34 2016 (r418070) +++ head/textproc/p5-Text-BibTeX/distinfo Tue Jul 5 09:08:37 2016 (r418071) @@ -1,3 +1,3 @@ -TIMESTAMP = 1466520087 -SHA256 (Text-BibTeX-0.74.tar.gz) = d3788e6459c8e90d80770e103012627f8a95439a8324ba8db2611b0eb8fdf6ae -SIZE (Text-BibTeX-0.74.tar.gz) = 286958 +TIMESTAMP = 1467708776 +SHA256 (Text-BibTeX-0.75.tar.gz) = f386d1ef113f7938be21535395f005a7c5a0ce25afab61c49a2227c2d209063c +SIZE (Text-BibTeX-0.75.tar.gz) = 293981 From owner-svn-ports-all@freebsd.org Tue Jul 5 09:08:42 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 9824BB20524; Tue, 5 Jul 2016 09:08:42 +0000 (UTC) (envelope-from mat@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 53A1118BD; Tue, 5 Jul 2016 09:08:42 +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 u6598fEm081742; Tue, 5 Jul 2016 09:08:41 GMT (envelope-from mat@FreeBSD.org) Received: (from mat@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u6598frG081740; Tue, 5 Jul 2016 09:08:41 GMT (envelope-from mat@FreeBSD.org) Message-Id: <201607050908.u6598frG081740@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: mat set sender to mat@FreeBSD.org using -f From: Mathieu Arnold Date: Tue, 5 Jul 2016 09:08:41 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418072 - head/net/p5-Net-LDAP-Server-Test X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Jul 2016 09:08:42 -0000 Author: mat Date: Tue Jul 5 09:08:41 2016 New Revision: 418072 URL: https://svnweb.freebsd.org/changeset/ports/418072 Log: Update to 0.20. Sponsored by: Absolight Modified: head/net/p5-Net-LDAP-Server-Test/Makefile (contents, props changed) head/net/p5-Net-LDAP-Server-Test/distinfo (contents, props changed) Modified: head/net/p5-Net-LDAP-Server-Test/Makefile ============================================================================== --- head/net/p5-Net-LDAP-Server-Test/Makefile Tue Jul 5 09:08:37 2016 (r418071) +++ head/net/p5-Net-LDAP-Server-Test/Makefile Tue Jul 5 09:08:41 2016 (r418072) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= Net-LDAP-Server-Test -PORTVERSION= 0.19 -PORTREVISION= 1 +PORTVERSION= 0.20 CATEGORIES= net perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- Modified: head/net/p5-Net-LDAP-Server-Test/distinfo ============================================================================== --- head/net/p5-Net-LDAP-Server-Test/distinfo Tue Jul 5 09:08:37 2016 (r418071) +++ head/net/p5-Net-LDAP-Server-Test/distinfo Tue Jul 5 09:08:41 2016 (r418072) @@ -1,2 +1,3 @@ -SHA256 (Net-LDAP-Server-Test-0.19.tar.gz) = 760de0735a2173f75492904da1ee9f7e22c15e80c544ffb4c9fe04a6d894a317 -SIZE (Net-LDAP-Server-Test-0.19.tar.gz) = 15608 +TIMESTAMP = 1467708737 +SHA256 (Net-LDAP-Server-Test-0.20.tar.gz) = 4cd4704accd6afa69c4624bad3bd6ca6e9a72436a12a666280ccea820efaed55 +SIZE (Net-LDAP-Server-Test-0.20.tar.gz) = 15341 From owner-svn-ports-all@freebsd.org Tue Jul 5 09:08:46 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 4CCADB20551; Tue, 5 Jul 2016 09:08:46 +0000 (UTC) (envelope-from mat@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id CEE7B197B; Tue, 5 Jul 2016 09:08:45 +0000 (UTC) (envelope-from mat@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u6598iZw081870; Tue, 5 Jul 2016 09:08:44 GMT (envelope-from mat@FreeBSD.org) Received: (from mat@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u6598iK2081867; Tue, 5 Jul 2016 09:08:44 GMT (envelope-from mat@FreeBSD.org) Message-Id: <201607050908.u6598iK2081867@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: mat set sender to mat@FreeBSD.org using -f From: Mathieu Arnold Date: Tue, 5 Jul 2016 09:08:44 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418073 - head/math/p5-Math-Currency X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Jul 2016 09:08:46 -0000 Author: mat Date: Tue Jul 5 09:08:44 2016 New Revision: 418073 URL: https://svnweb.freebsd.org/changeset/ports/418073 Log: Update to 0.50. Sponsored by: Absolight Modified: head/math/p5-Math-Currency/Makefile (contents, props changed) head/math/p5-Math-Currency/distinfo (contents, props changed) head/math/p5-Math-Currency/pkg-plist (contents, props changed) Modified: head/math/p5-Math-Currency/Makefile ============================================================================== --- head/math/p5-Math-Currency/Makefile Tue Jul 5 09:08:41 2016 (r418072) +++ head/math/p5-Math-Currency/Makefile Tue Jul 5 09:08:44 2016 (r418073) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= Math-Currency -PORTVERSION= 0.49 +PORTVERSION= 0.50 CATEGORIES= math perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- @@ -15,7 +15,7 @@ RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-More-UTF8>=0:devel/p5-Test-More-UTF8 USES= perl5 -USE_PERL5= modbuild +USE_PERL5= configure OPTIONS_DEFINE= DOCS Modified: head/math/p5-Math-Currency/distinfo ============================================================================== --- head/math/p5-Math-Currency/distinfo Tue Jul 5 09:08:41 2016 (r418072) +++ head/math/p5-Math-Currency/distinfo Tue Jul 5 09:08:44 2016 (r418073) @@ -1,3 +1,3 @@ -TIMESTAMP = 1466602205 -SHA256 (Math-Currency-0.49.tar.gz) = f7fce09b9fc1fc49de4a54730f72875a2aaf1aff654420c979df775c5600f9c5 -SIZE (Math-Currency-0.49.tar.gz) = 35585 +TIMESTAMP = 1467708725 +SHA256 (Math-Currency-0.50.tar.gz) = 388b268a700c04813cd06f3be0d657879991dcfdfb4afda79acbe097f8d57e35 +SIZE (Math-Currency-0.50.tar.gz) = 33123 Modified: head/math/p5-Math-Currency/pkg-plist ============================================================================== --- head/math/p5-Math-Currency/pkg-plist Tue Jul 5 09:08:41 2016 (r418072) +++ head/math/p5-Math-Currency/pkg-plist Tue Jul 5 09:08:44 2016 (r418073) @@ -1,5 +1,18 @@ -%%PERL5_MAN3%%/Math::Currency.3.gz %%SITE_PERL%%/Math/Currency.pm +%%SITE_PERL%%/Math/Currency/EUR.pm +%%SITE_PERL%%/Math/Currency/GBP.pm +%%SITE_PERL%%/Math/Currency/JPY.pm +%%SITE_PERL%%/Math/Currency/USD.pm %%SITE_PERL%%/Math/Currency/de_DE.pm %%SITE_PERL%%/Math/Currency/en_GB.pm +%%SITE_PERL%%/Math/Currency/en_US.pm %%SITE_PERL%%/Math/Currency/ja_JP.pm +%%PERL5_MAN3%%/Math::Currency.3.gz +%%PERL5_MAN3%%/Math::Currency::EUR.3.gz +%%PERL5_MAN3%%/Math::Currency::GBP.3.gz +%%PERL5_MAN3%%/Math::Currency::JPY.3.gz +%%PERL5_MAN3%%/Math::Currency::USD.3.gz +%%PERL5_MAN3%%/Math::Currency::de_DE.3.gz +%%PERL5_MAN3%%/Math::Currency::en_GB.3.gz +%%PERL5_MAN3%%/Math::Currency::en_US.3.gz +%%PERL5_MAN3%%/Math::Currency::ja_JP.3.gz From owner-svn-ports-all@freebsd.org Tue Jul 5 09:08:53 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 0BB50B205AD; Tue, 5 Jul 2016 09:08:53 +0000 (UTC) (envelope-from mat@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id C83B81B84; Tue, 5 Jul 2016 09:08:52 +0000 (UTC) (envelope-from mat@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u6598pu1082097; Tue, 5 Jul 2016 09:08:51 GMT (envelope-from mat@FreeBSD.org) Received: (from mat@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u6598pVw082095; Tue, 5 Jul 2016 09:08:51 GMT (envelope-from mat@FreeBSD.org) Message-Id: <201607050908.u6598pVw082095@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: mat set sender to mat@FreeBSD.org using -f From: Mathieu Arnold Date: Tue, 5 Jul 2016 09:08:51 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418075 - head/devel/p5-MCE X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Jul 2016 09:08:53 -0000 Author: mat Date: Tue Jul 5 09:08:51 2016 New Revision: 418075 URL: https://svnweb.freebsd.org/changeset/ports/418075 Log: Update to 1.802. Sponsored by: Absolight Modified: head/devel/p5-MCE/Makefile (contents, props changed) head/devel/p5-MCE/distinfo (contents, props changed) Modified: head/devel/p5-MCE/Makefile ============================================================================== --- head/devel/p5-MCE/Makefile Tue Jul 5 09:08:48 2016 (r418074) +++ head/devel/p5-MCE/Makefile Tue Jul 5 09:08:51 2016 (r418075) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= MCE -PORTVERSION= 1.800 +PORTVERSION= 1.802 CATEGORIES= devel perl5 MASTER_SITES= CPAN MASTER_SITE_SUBDIR= CPAN:MARIOROY Modified: head/devel/p5-MCE/distinfo ============================================================================== --- head/devel/p5-MCE/distinfo Tue Jul 5 09:08:48 2016 (r418074) +++ head/devel/p5-MCE/distinfo Tue Jul 5 09:08:51 2016 (r418075) @@ -1,3 +1,3 @@ -TIMESTAMP = 1466512826 -SHA256 (MCE-1.800.tar.gz) = 615612ce170be7abc27e592dfc2a4e25498cfd3e4fac15f4fba8bc66098fcc69 -SIZE (MCE-1.800.tar.gz) = 165132 +TIMESTAMP = 1467708687 +SHA256 (MCE-1.802.tar.gz) = 0d9376aead2fff4d73af6bddd5436a9763d59ae33dc440bdf215a63fc3bc027e +SIZE (MCE-1.802.tar.gz) = 165709 From owner-svn-ports-all@freebsd.org Tue Jul 5 09:08:49 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 6B200B2058B; Tue, 5 Jul 2016 09:08:49 +0000 (UTC) (envelope-from mat@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 3A63A1AAB; Tue, 5 Jul 2016 09:08:49 +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 u6598m8n081985; Tue, 5 Jul 2016 09:08:48 GMT (envelope-from mat@FreeBSD.org) Received: (from mat@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u6598mKG081983; Tue, 5 Jul 2016 09:08:48 GMT (envelope-from mat@FreeBSD.org) Message-Id: <201607050908.u6598mKG081983@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: mat set sender to mat@FreeBSD.org using -f From: Mathieu Arnold Date: Tue, 5 Jul 2016 09:08:48 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418074 - head/devel/p5-Test-Simple X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Jul 2016 09:08:49 -0000 Author: mat Date: Tue Jul 5 09:08:48 2016 New Revision: 418074 URL: https://svnweb.freebsd.org/changeset/ports/418074 Log: Update to 1.302037. Sponsored by: Absolight Modified: head/devel/p5-Test-Simple/Makefile (contents, props changed) head/devel/p5-Test-Simple/distinfo (contents, props changed) Modified: head/devel/p5-Test-Simple/Makefile ============================================================================== --- head/devel/p5-Test-Simple/Makefile Tue Jul 5 09:08:44 2016 (r418073) +++ head/devel/p5-Test-Simple/Makefile Tue Jul 5 09:08:48 2016 (r418074) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= Test-Simple -PORTVERSION= 1.302035 +PORTVERSION= 1.302037 CATEGORIES= devel perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- Modified: head/devel/p5-Test-Simple/distinfo ============================================================================== --- head/devel/p5-Test-Simple/distinfo Tue Jul 5 09:08:44 2016 (r418073) +++ head/devel/p5-Test-Simple/distinfo Tue Jul 5 09:08:48 2016 (r418074) @@ -1,3 +1,3 @@ -TIMESTAMP = 1467124517 -SHA256 (Test-Simple-1.302035.tar.gz) = a1897e2710c9ebfeb5f9e6fc739a73595c6ab16fe2670f96619fc948757df4d8 -SIZE (Test-Simple-1.302035.tar.gz) = 237970 +TIMESTAMP = 1467708707 +SHA256 (Test-Simple-1.302037.tar.gz) = fbeba16906ef534e2334acad2020941b6705ab98543536900e588e93409f23b8 +SIZE (Test-Simple-1.302037.tar.gz) = 237971 From owner-svn-ports-all@freebsd.org Tue Jul 5 09:08:56 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 899E1B205E8; Tue, 5 Jul 2016 09:08:56 +0000 (UTC) (envelope-from mat@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 5A6AF1C7F; Tue, 5 Jul 2016 09:08:56 +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 u6598t6m082210; Tue, 5 Jul 2016 09:08:55 GMT (envelope-from mat@FreeBSD.org) Received: (from mat@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u6598tYG082208; Tue, 5 Jul 2016 09:08:55 GMT (envelope-from mat@FreeBSD.org) Message-Id: <201607050908.u6598tYG082208@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: mat set sender to mat@FreeBSD.org using -f From: Mathieu Arnold Date: Tue, 5 Jul 2016 09:08:55 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418076 - head/devel/p5-DateTime-Functions X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Jul 2016 09:08:56 -0000 Author: mat Date: Tue Jul 5 09:08:55 2016 New Revision: 418076 URL: https://svnweb.freebsd.org/changeset/ports/418076 Log: Update to 0.13. Sponsored by: Absolight Modified: head/devel/p5-DateTime-Functions/Makefile (contents, props changed) head/devel/p5-DateTime-Functions/distinfo (contents, props changed) Modified: head/devel/p5-DateTime-Functions/Makefile ============================================================================== --- head/devel/p5-DateTime-Functions/Makefile Tue Jul 5 09:08:51 2016 (r418075) +++ head/devel/p5-DateTime-Functions/Makefile Tue Jul 5 09:08:55 2016 (r418076) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= DateTime-Functions -PORTVERSION= 0.12 +PORTVERSION= 0.13 CATEGORIES= devel perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- Modified: head/devel/p5-DateTime-Functions/distinfo ============================================================================== --- head/devel/p5-DateTime-Functions/distinfo Tue Jul 5 09:08:51 2016 (r418075) +++ head/devel/p5-DateTime-Functions/distinfo Tue Jul 5 09:08:55 2016 (r418076) @@ -1,2 +1,3 @@ -SHA256 (DateTime-Functions-0.12.tar.gz) = 5a1adc5bb78d7f137588156d0ca39dbe38f5fd09c9de3bee161e6b060f3c1d21 -SIZE (DateTime-Functions-0.12.tar.gz) = 6473 +TIMESTAMP = 1467708666 +SHA256 (DateTime-Functions-0.13.tar.gz) = 4157432c8c905889cd63298caa8ed26a67cdfbebde65cea4221f54e81067d3e4 +SIZE (DateTime-Functions-0.13.tar.gz) = 6535 From owner-svn-ports-all@freebsd.org Tue Jul 5 09:09:00 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 359B4B2063B; Tue, 5 Jul 2016 09:09: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 mx1.freebsd.org (Postfix) with ESMTPS id 014F41D5C; Tue, 5 Jul 2016 09:08:59 +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 u6598xUq082324; Tue, 5 Jul 2016 09:08:59 GMT (envelope-from mat@FreeBSD.org) Received: (from mat@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u6598x42082322; Tue, 5 Jul 2016 09:08:59 GMT (envelope-from mat@FreeBSD.org) Message-Id: <201607050908.u6598x42082322@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: mat set sender to mat@FreeBSD.org using -f From: Mathieu Arnold Date: Tue, 5 Jul 2016 09:08:59 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418077 - head/devel/p5-Data-Dumper X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Jul 2016 09:09:00 -0000 Author: mat Date: Tue Jul 5 09:08:58 2016 New Revision: 418077 URL: https://svnweb.freebsd.org/changeset/ports/418077 Log: Update to 2.160. Sponsored by: Absolight Modified: head/devel/p5-Data-Dumper/Makefile (contents, props changed) head/devel/p5-Data-Dumper/distinfo (contents, props changed) Modified: head/devel/p5-Data-Dumper/Makefile ============================================================================== --- head/devel/p5-Data-Dumper/Makefile Tue Jul 5 09:08:55 2016 (r418076) +++ head/devel/p5-Data-Dumper/Makefile Tue Jul 5 09:08:58 2016 (r418077) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= Data-Dumper -PORTVERSION= 2.154 -PORTREVISION= 1 +PORTVERSION= 2.160 CATEGORIES= devel perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- Modified: head/devel/p5-Data-Dumper/distinfo ============================================================================== --- head/devel/p5-Data-Dumper/distinfo Tue Jul 5 09:08:55 2016 (r418076) +++ head/devel/p5-Data-Dumper/distinfo Tue Jul 5 09:08:58 2016 (r418077) @@ -1,2 +1,3 @@ -SHA256 (Data-Dumper-2.154.tar.gz) = e30fcb6dea290cda85b67fc46d227a2ea890a8bd36c213557adec9c99ebd212f -SIZE (Data-Dumper-2.154.tar.gz) = 100369 +TIMESTAMP = 1467708647 +SHA256 (Data-Dumper-2.160.tar.gz) = 0389d9d2a41a5ed3e21871d60248d15018c87e54c80362020b69247304fa84fa +SIZE (Data-Dumper-2.160.tar.gz) = 104581 From owner-svn-ports-all@freebsd.org Tue Jul 5 09:09:03 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id CF93FB2068B; Tue, 5 Jul 2016 09:09:03 +0000 (UTC) (envelope-from mat@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 9CE8B1E46; Tue, 5 Jul 2016 09:09:03 +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 u659928R082440; Tue, 5 Jul 2016 09:09:02 GMT (envelope-from mat@FreeBSD.org) Received: (from mat@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u65992DR082438; Tue, 5 Jul 2016 09:09:02 GMT (envelope-from mat@FreeBSD.org) Message-Id: <201607050909.u65992DR082438@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: mat set sender to mat@FreeBSD.org using -f From: Mathieu Arnold Date: Tue, 5 Jul 2016 09:09:02 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418078 - head/devel/p5-B-OPCheck X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Jul 2016 09:09:03 -0000 Author: mat Date: Tue Jul 5 09:09:02 2016 New Revision: 418078 URL: https://svnweb.freebsd.org/changeset/ports/418078 Log: Update to 0.32. Sponsored by: Absolight Modified: head/devel/p5-B-OPCheck/Makefile (contents, props changed) head/devel/p5-B-OPCheck/distinfo (contents, props changed) Modified: head/devel/p5-B-OPCheck/Makefile ============================================================================== --- head/devel/p5-B-OPCheck/Makefile Tue Jul 5 09:08:58 2016 (r418077) +++ head/devel/p5-B-OPCheck/Makefile Tue Jul 5 09:09:02 2016 (r418078) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= B-OPCheck -PORTVERSION= 0.31 +PORTVERSION= 0.32 CATEGORIES= devel perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- Modified: head/devel/p5-B-OPCheck/distinfo ============================================================================== --- head/devel/p5-B-OPCheck/distinfo Tue Jul 5 09:08:58 2016 (r418077) +++ head/devel/p5-B-OPCheck/distinfo Tue Jul 5 09:09:02 2016 (r418078) @@ -1,3 +1,3 @@ -TIMESTAMP = 1466509546 -SHA256 (B-OPCheck-0.31.tar.gz) = d589fbfbaef8e4c0a6caf515647b7522a92c7a59e73d6cc1d3bd00a67c46d65d -SIZE (B-OPCheck-0.31.tar.gz) = 76059 +TIMESTAMP = 1467708631 +SHA256 (B-OPCheck-0.32.tar.gz) = 2ec23da87f1d10758f75113448d9fb718a4be0b9ed634cffc5fc09b36a1f1a82 +SIZE (B-OPCheck-0.32.tar.gz) = 76109 From owner-svn-ports-all@freebsd.org Tue Jul 5 09:09:07 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 1CDD5B206C9; Tue, 5 Jul 2016 09:09:07 +0000 (UTC) (envelope-from mat@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id D69D21F12; Tue, 5 Jul 2016 09:09:06 +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 u65996sm082555; Tue, 5 Jul 2016 09:09:06 GMT (envelope-from mat@FreeBSD.org) Received: (from mat@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u65995Ew082553; Tue, 5 Jul 2016 09:09:05 GMT (envelope-from mat@FreeBSD.org) Message-Id: <201607050909.u65995Ew082553@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: mat set sender to mat@FreeBSD.org using -f From: Mathieu Arnold Date: Tue, 5 Jul 2016 09:09:05 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418079 - head/audio/p5-Ogg-Vorbis-Header X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Jul 2016 09:09:07 -0000 Author: mat Date: Tue Jul 5 09:09:05 2016 New Revision: 418079 URL: https://svnweb.freebsd.org/changeset/ports/418079 Log: Update to 0.05. Sponsored by: Absolight Modified: head/audio/p5-Ogg-Vorbis-Header/Makefile (contents, props changed) head/audio/p5-Ogg-Vorbis-Header/distinfo (contents, props changed) Modified: head/audio/p5-Ogg-Vorbis-Header/Makefile ============================================================================== --- head/audio/p5-Ogg-Vorbis-Header/Makefile Tue Jul 5 09:09:02 2016 (r418078) +++ head/audio/p5-Ogg-Vorbis-Header/Makefile Tue Jul 5 09:09:05 2016 (r418079) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= Ogg-Vorbis-Header -PORTVERSION= 0.04 +PORTVERSION= 0.05 CATEGORIES= audio perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- Modified: head/audio/p5-Ogg-Vorbis-Header/distinfo ============================================================================== --- head/audio/p5-Ogg-Vorbis-Header/distinfo Tue Jul 5 09:09:02 2016 (r418078) +++ head/audio/p5-Ogg-Vorbis-Header/distinfo Tue Jul 5 09:09:05 2016 (r418079) @@ -1,3 +1,3 @@ -TIMESTAMP = 1467505881 -SHA256 (Ogg-Vorbis-Header-0.04.tar.gz) = fd76109ca5a09c37a049a857d37d6fcd2b0cbde796ed98ce9a36c6e35c4f1df7 -SIZE (Ogg-Vorbis-Header-0.04.tar.gz) = 28890 +TIMESTAMP = 1467708593 +SHA256 (Ogg-Vorbis-Header-0.05.tar.gz) = 9fefd203170c65ae3627254974554be542fd397dcfca73c5dc5d54f7fc79f761 +SIZE (Ogg-Vorbis-Header-0.05.tar.gz) = 39332 From owner-svn-ports-all@freebsd.org Tue Jul 5 10:37:22 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id C56BEB21CB3; Tue, 5 Jul 2016 10:37:22 +0000 (UTC) (envelope-from kwm@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 966141BD2; Tue, 5 Jul 2016 10:37:22 +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 u65AbLBv015617; Tue, 5 Jul 2016 10:37:21 GMT (envelope-from kwm@FreeBSD.org) Received: (from kwm@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u65AbL0g015616; Tue, 5 Jul 2016 10:37:21 GMT (envelope-from kwm@FreeBSD.org) Message-Id: <201607051037.u65AbL0g015616@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: kwm set sender to kwm@FreeBSD.org using -f From: Koop Mast Date: Tue, 5 Jul 2016 10:37:21 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418080 - head/mail/evolution X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Jul 2016 10:37:22 -0000 Author: kwm Date: Tue Jul 5 10:37:21 2016 New Revision: 418080 URL: https://svnweb.freebsd.org/changeset/ports/418080 Log: * Teach evolution where to find spamassassin and bogofilter. So junk filtering work. * Add LICENSE blob. PR: 202376 (based on) Submitted by: cpm@ Modified: head/mail/evolution/Makefile Modified: head/mail/evolution/Makefile ============================================================================== --- head/mail/evolution/Makefile Tue Jul 5 09:09:05 2016 (r418079) +++ head/mail/evolution/Makefile Tue Jul 5 10:37:21 2016 (r418080) @@ -3,6 +3,7 @@ PORTNAME= evolution PORTVERSION= 3.18.5.1 +PORTREVISION= 1 CATEGORIES= mail gnome MASTER_SITES= GNOME DIST_SUBDIR= gnome3 @@ -10,6 +11,12 @@ DIST_SUBDIR= gnome3 MAINTAINER= gnome@FreeBSD.org COMMENT= Integrated mail, calendar and address book distributed suite +LICENSE= GFDL GPLv2+ LGPL21+ MPL OPENLDAP +LICENSE_COMB= multi +LICENSE_NAME_OPENLDAP= OpenLDAP Public License +LICENSE_FILE_OPENLDAP= ${WRKSRC}/COPYING.OPENLDAP +LICENSE_PERMS_OPENLDAP= dist-mirror dist-sell pkg-mirror pkg-sell auto-accept + BUILD_DEPENDS= itstool:textproc/itstool \ highlight:textproc/highlight LIB_DEPENDS= libnss3.so:security/nss \ @@ -83,11 +90,12 @@ LDAP_USE= OPENLDAP=yes WEATHER_LIB_DEPENDS= libgweather-3.so:net/libgweather WEATHER_CONFIGURE_ENABLE= weather -SPAMASSASSIN_CONFIGURE_WITH= spamassassin +SPAMASSASSIN_CONFIGURE_WITH= spamassassin=${PREFIX}/bin/spamassassin \ + sa-learn=${PREFIX}/bin/sa-learn SPAMASSASSIN_BUILD_DEPENDS= spamassassin:mail/spamassassin SPAMASSASSIN_RUN_DEPENDS= spamassassin:mail/spamassassin -BOGOFILTER_CONFIGURE_WITH= bogofilter +BOGOFILTER_CONFIGURE_WITH= bogofilter=${LOCALBASE}/bin/bogofilter BOGOFILTER_BUILD_DEPENDS= bogofilter:mail/bogofilter BOGOFILTER_RUN_DEPENDS= bogofilter:mail/bogofilter From owner-svn-ports-all@freebsd.org Tue Jul 5 10:44:29 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 8D115B21F9A; Tue, 5 Jul 2016 10:44:29 +0000 (UTC) (envelope-from baptiste.daroussin@gmail.com) Received: from mail-wm0-x244.google.com (mail-wm0-x244.google.com [IPv6:2a00:1450:400c:c09::244]) (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 32968118D; Tue, 5 Jul 2016 10:44:29 +0000 (UTC) (envelope-from baptiste.daroussin@gmail.com) Received: by mail-wm0-x244.google.com with SMTP id 187so27766730wmz.1; Tue, 05 Jul 2016 03:44:29 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=sender:date:from:to:cc:subject:message-id:references:mime-version :content-disposition:in-reply-to:user-agent; bh=a6BQijQIpvf96OkMP0TH+kajg5/uAG8kLseYgxH9Fdc=; b=l5GtMotBB9Me3qGSqL78LAJHbNyQWT7n5uA2HYfAQN+Vp5lc7d0/TVVEZpZ4/GzK1O JDqEDd3s6Y9TLLiReO6V3TKJtFRYoY/CQnkIkIRlymhSE/s38m5Z5kmGZgytEpK3Zv9E 1SAgI2Rb3RSUKBIihsKAl9JLx0rEycUVWSPhUHFPiYn5W1LDeC2qMcfQ7AcvvrKIbNIw LZ2SBs5N8wlhCshkqhgyvBftvmmTnCva3qaLWd4EZKQRurWCh5j9tufhaQKQewg4Jns/ rv0UbS6eN2CncgZwK3ZHp24DNNnwjv2nkvtAYdexi1EDEuw6R2ubL4uC/QtPOLUVEPNF jq2w== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:sender:date:from:to:cc:subject:message-id :references:mime-version:content-disposition:in-reply-to:user-agent; bh=a6BQijQIpvf96OkMP0TH+kajg5/uAG8kLseYgxH9Fdc=; b=OGqoCiISTP6vXHugdPSeIV34Qz6MGTA1a9boX+1U1v2H1F81i375ZLUNpHkqDtMbQi 7yaCuoje9K8e456xuQuhDIgtmuJd6jlTPrptderMzWtD+Z6JlpCpe3vZfl0/arZFjyLD gkOEwZZUk1objYyXekEISt+hMQpDmGOVSgrJ7nX/YJUVKvhSpPtwgd3qcKRpQEHBzQuW zkYZGYorHgvYAYxUAPPVnjXG6O3CIQjSAnPesBAQHNFwClgmTKvV7gIfNjWZVL3s6i/n uZHbnxK/NOGiJ+44tROaZ0YZKvATRy3xyId3AvOsmmHBdT/VS8KsW4QEGe7xD8/+HRwn BaoA== X-Gm-Message-State: ALyK8tJoLa9tXM8yDIipQbBEc0z/RDtazFvPQHM49+Bj2R3RmNGZku7UMsf5fZzBEmcDAg== X-Received: by 10.28.94.18 with SMTP id s18mr15810283wmb.42.1467715467523; Tue, 05 Jul 2016 03:44:27 -0700 (PDT) Received: from ivaldir.etoilebsd.net ([2001:41d0:8:db4c::1]) by smtp.gmail.com with ESMTPSA id k6sm2560148wjz.28.2016.07.05.03.44.26 (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Tue, 05 Jul 2016 03:44:26 -0700 (PDT) Sender: Baptiste Daroussin Date: Tue, 5 Jul 2016 12:44:26 +0200 From: Baptiste Daroussin To: Cy Schubert Cc: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: Re: svn commit: r418053 - head/net/vnc Message-ID: <20160705104425.ask2fb73yu7w5sgl@ivaldir.etoilebsd.net> References: <201607041947.u64JlBvn049407@repo.freebsd.org> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha256; protocol="application/pgp-signature"; boundary="tbyjoq77kf6avtva" Content-Disposition: inline In-Reply-To: <201607041947.u64JlBvn049407@repo.freebsd.org> User-Agent: Mutt/1.6.1-neo (2016-06-11) X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Jul 2016 10:44:29 -0000 --tbyjoq77kf6avtva Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Mon, Jul 04, 2016 at 07:47:11PM +0000, Cy Schubert wrote: > Author: cy > Date: Mon Jul 4 19:47:11 2016 > New Revision: 418053 > URL: https://svnweb.freebsd.org/changeset/ports/418053 >=20 > Log: > Fix build. This port needs gcc 4.6 or earlier. >=20 > Modified: > head/net/vnc/Makefile >=20 > Modified: head/net/vnc/Makefile > =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D > --- head/net/vnc/Makefile Mon Jul 4 19:23:44 2016 (r418052) > +++ head/net/vnc/Makefile Mon Jul 4 19:47:11 2016 (r418053) > @@ -48,7 +48,7 @@ DISTFILES+=3D X430src-1.tgz:x \ > X430src-3.tgz:x > =20 > .if ${OSVERSION} > 1000054 > -USE_GCC=3D yes > +USE_GCC=3D 4.6 I just tried with gcc 4.8 and it works perfectly fine, why limiting it to 4= =2E6? Second none of the provided mirror seems to work for me (to fetch X 4.3.0) Newer version of vnc (as realvnc) seems to not be available in opensource anymore. It is probably time to deprecate that port and recommand people us= ing alternative VNC implemetations? Best regards, Bapt --tbyjoq77kf6avtva Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- Version: GnuPG v2 iQIcBAEBCAAGBQJXe4+AAAoJEGOJi9zxtz5a0sUP/jcZGF8uOsYBIyxt5JYPnAot Uh/1PGBtkGo+RnQvrO4DpiUbhZtaLt7cjTMZK2Sd0K7Sg37NEtCsDR2epUjgBcZy ZZETFelpEdczFnpsFRWP4rkdH9QWCylq/1IXvbkMBWz+bR06ewQeDTqq+4tNxA2e q8TLCL6YXDLvCNHJsA3y1wRg0YUNhvJ3O1hYt3V2btztbXZCnQ0OB5PKRt3tCmmC J09anRCSuL2qJ0WmmyqXiwFVYAZcYPgml8DMEQ+vKEG9BlrXLH+QeBxy0LQj4Pmy 2fqETZ4YyR4XbNcpbOyUb8zBBkEjxz6k33rjx2LNX2kpG5Cx0LJdKqDrD+n8T5ch +YZcRJclFU40EvZErPu6vxlSqE0ejSyp/R6+mbwDN0CSYFUpJEKFES8DXkLj9TiR BAxOwf2CblRfe6wTgVeA66JuXXUWsOzM/EI4TsWpLOEEBDgEH0SyDxLxaT/z4+Ba LOPqpAzmLAB+pbm0+R4HJ2Msv9uqpN0Ix/k/YV6FVKgYHiNFH1S7hMCUhN1MljhP 1GQeMzLsobanM4rZh7BAJE+zPVg26kSOSPnx8pHCoFcOX0j7ugKBmwgkw0jk9/vz uMKEQaU58EhF4+FZPUMF1sPQdzIPMqSS4/hHopYw+1EfolMuaiZzuJ35I5XYJJFr Rzr07bGVArc32ZZRYK0E =ulXY -----END PGP SIGNATURE----- --tbyjoq77kf6avtva-- From owner-svn-ports-all@freebsd.org Tue Jul 5 10:48:34 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 5A1FAB21002; Tue, 5 Jul 2016 10:48:34 +0000 (UTC) (envelope-from madpilot@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 26C9612D8; Tue, 5 Jul 2016 10:48:34 +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 u65AmXW7019538; Tue, 5 Jul 2016 10:48:33 GMT (envelope-from madpilot@FreeBSD.org) Received: (from madpilot@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u65AmXc5019535; Tue, 5 Jul 2016 10:48:33 GMT (envelope-from madpilot@FreeBSD.org) Message-Id: <201607051048.u65AmXc5019535@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: madpilot set sender to madpilot@FreeBSD.org using -f From: Guido Falsi Date: Tue, 5 Jul 2016 10:48:33 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418081 - in head/net: asterisk asterisk11 asterisk13 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Jul 2016 10:48:34 -0000 Author: madpilot Date: Tue Jul 5 10:48:32 2016 New Revision: 418081 URL: https://svnweb.freebsd.org/changeset/ports/418081 Log: - Convert to USES=ssl, reflow USES line - Add missing USES libedit (asterisk13 only) - Fix DAHDI dependencies - Fix permissions for /var/spool/asterisk/voicemail files [1] Reported by: Tony Power [1] (via email) MFH: 2016Q3 Modified: head/net/asterisk/Makefile head/net/asterisk11/Makefile head/net/asterisk13/Makefile Modified: head/net/asterisk/Makefile ============================================================================== --- head/net/asterisk/Makefile Tue Jul 5 10:37:21 2016 (r418080) +++ head/net/asterisk/Makefile Tue Jul 5 10:48:32 2016 (r418081) @@ -3,7 +3,7 @@ PORTNAME= asterisk PORTVERSION= 1.8.32.3 -PORTREVISION= 7 +PORTREVISION= 8 CATEGORIES= net MASTER_SITES= http://downloads.asterisk.org/pub/telephony/%SUBDIR%/:DEFAULT,g729 MASTER_SITE_SUBDIR= asterisk/ \ @@ -25,11 +25,10 @@ EXPIRATION_DATE= 2016-04-30 ONLY_FOR_ARCHS= i386 amd64 powerpc sparc64 -USES= alias bison cpe gmake shebangfix +USES= alias bison cpe gmake shebangfix ssl USE_CSTD= gnu89 USE_GCC= yes USE_GNOME= libxml2 -USE_OPENSSL= yes USE_RC_SUBR= asterisk GNU_CONFIGURE= yes @@ -112,10 +111,9 @@ CURL_LIB_DEPENDS= libcurl.so:ftp/curl DAHDI_CONFIGURE_ON= --with-dahdi --with-openr2 DAHDI_CONFIGURE_OFF= --without-dahdi --without-openr2 -DAHDI_BUILD_DEPENDS= libpri>=1.4.10:misc/libpri \ - ${LOCALBASE}/include/dahdi/user.h:misc/dahdi DAHDI_LIB_DEPENDS= libpri.so:misc/libpri \ - libopenr2.so:misc/openr2 + libopenr2.so:misc/openr2 \ + libtonezone.so:misc/dahdi EXCHANGE_CONFIGURE_OFF= --without-neon --without-neon29 EXCHANGE_LIB_DEPENDS= libneon.so:www/neon @@ -255,7 +253,11 @@ post-install: ${FIND} ${STAGEDIR}${DATADIR}/moh -type f | ${SED} "s,^${STAGEDIR}${DATADIR},${DATADIR}," >> ${TMPPLIST} (cd ${STAGEDIR} && \ + ${ECHO} "@owner ${ASTERISK_USER}" >> ${TMPPLIST} && \ + ${ECHO} "@group ${ASTERISK_GROUP}" >> ${TMPPLIST} && \ ${FIND} var/spool/${PORTNAME}/voicemail/default -type f | ${SED} "s,^,/," >> ${TMPPLIST} && \ - ${FIND} var/spool/${PORTNAME}/voicemail/ -type d | ${SED} "s,^,@dir /," >> ${TMPPLIST}); + ${FIND} var/spool/${PORTNAME}/voicemail/ -type d | ${SED} "s,^,@dir /," >> ${TMPPLIST} && \ + ${ECHO} "@owner" >> ${TMPPLIST} && \ + ${ECHO} "@group" >> ${TMPPLIST}); .include Modified: head/net/asterisk11/Makefile ============================================================================== --- head/net/asterisk11/Makefile Tue Jul 5 10:37:21 2016 (r418080) +++ head/net/asterisk11/Makefile Tue Jul 5 10:48:32 2016 (r418081) @@ -2,7 +2,7 @@ PORTNAME= asterisk PORTVERSION= 11.22.0 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= net MASTER_SITES= http://downloads.asterisk.org/pub/telephony/%SUBDIR%/:DEFAULT,g729 MASTER_SITE_SUBDIR= asterisk/ \ @@ -21,11 +21,11 @@ EXTRACT_ONLY:= ${DISTNAME}${EXTRACT_SUFX ONLY_FOR_ARCHS= i386 amd64 powerpc sparc64 armv6 -USES= bison cpe gmake iconv localbase ncurses shebangfix sqlite +USES= bison cpe gmake iconv localbase ncurses shebangfix \ + sqlite ssl USE_CSTD= gnu89 USE_GNOME= libxml2 USE_LDCONFIG= yes -USE_OPENSSL= yes USE_RC_SUBR= asterisk GNU_CONFIGURE= yes @@ -118,10 +118,9 @@ CURL_LIB_DEPENDS= libcurl.so:ftp/curl DAHDI_CONFIGURE_ON= --with-dahdi --with-openr2 DAHDI_CONFIGURE_OFF= --without-dahdi --without-openr2 -DAHDI_BUILD_DEPENDS= libpri>=1.4.10:misc/libpri \ - ${LOCALBASE}/include/dahdi/user.h:misc/dahdi DAHDI_LIB_DEPENDS= libpri.so:misc/libpri \ - libopenr2.so:misc/openr2 + libopenr2.so:misc/openr2 \ + libtonezone.so:misc/dahdi EXCHANGE_CONFIGURE_OFF= --without-neon --without-neon29 EXCHANGE_LIB_DEPENDS= libneon.so:www/neon @@ -266,7 +265,11 @@ post-install: ${FIND} ${STAGEDIR}${DATADIR}/moh -type f | ${SED} "s,^${STAGEDIR}${DATADIR},${DATADIR}," >> ${TMPPLIST} (cd ${STAGEDIR} && \ + ${ECHO} "@owner ${ASTERISK_USER}" >> ${TMPPLIST} && \ + ${ECHO} "@group ${ASTERISK_GROUP}" >> ${TMPPLIST} && \ ${FIND} var/spool/${PORTNAME}/voicemail/default -type f | ${SED} "s,^,/," >> ${TMPPLIST} && \ - ${FIND} var/spool/${PORTNAME}/voicemail/ -type d | ${SED} "s,^,@dir /," >> ${TMPPLIST}); + ${FIND} var/spool/${PORTNAME}/voicemail/ -type d | ${SED} "s,^,@dir /," >> ${TMPPLIST} && \ + ${ECHO} "@owner" >> ${TMPPLIST} && \ + ${ECHO} "@group" >> ${TMPPLIST}); .include Modified: head/net/asterisk13/Makefile ============================================================================== --- head/net/asterisk13/Makefile Tue Jul 5 10:37:21 2016 (r418080) +++ head/net/asterisk13/Makefile Tue Jul 5 10:48:32 2016 (r418081) @@ -2,6 +2,7 @@ PORTNAME= asterisk PORTVERSION= 13.9.1 +PORTREVISION= 1 CATEGORIES= net MASTER_SITES= http://downloads.asterisk.org/pub/telephony/%SUBDIR%/:DEFAULT,g729 MASTER_SITE_SUBDIR= asterisk/ \ @@ -23,11 +24,11 @@ EXTRACT_ONLY:= ${DISTNAME}${EXTRACT_SUFX ONLY_FOR_ARCHS= i386 amd64 powerpc sparc64 armv6 -USES= bison cpe gmake iconv localbase ncurses shebangfix sqlite +USES= bison cpe gmake iconv libedit localbase ncurses \ + shebangfix sqlite ssl USE_CSTD= gnu89 USE_GNOME= libxml2 USE_LDCONFIG= yes -USE_OPENSSL= yes USE_RC_SUBR= asterisk GNU_CONFIGURE= yes @@ -124,10 +125,9 @@ CURL_LIB_DEPENDS= libcurl.so:ftp/curl DAHDI_CONFIGURE_ON= --with-dahdi --with-openr2 DAHDI_CONFIGURE_OFF= --without-dahdi --without-openr2 -DAHDI_BUILD_DEPENDS= libpri>=1.4.10:misc/libpri \ - ${LOCALBASE}/include/dahdi/user.h:misc/dahdi DAHDI_LIB_DEPENDS= libpri.so:misc/libpri \ - libopenr2.so:misc/openr2 + libopenr2.so:misc/openr2 \ + libtonezone.so:misc/dahdi EXCHANGE_CONFIGURE_OFF= --without-neon --without-neon29 EXCHANGE_LIB_DEPENDS= libneon.so:www/neon @@ -285,7 +285,11 @@ post-install: ${FIND} ${STAGEDIR}${DATADIR}/moh -type f | ${SED} "s,^${STAGEDIR}${DATADIR},${DATADIR}," >> ${TMPPLIST} (cd ${STAGEDIR} && \ + ${ECHO} "@owner ${ASTERISK_USER}" >> ${TMPPLIST} && \ + ${ECHO} "@group ${ASTERISK_GROUP}" >> ${TMPPLIST} && \ ${FIND} var/spool/${PORTNAME}/voicemail/default -type f | ${SED} "s,^,/," >> ${TMPPLIST} && \ - ${FIND} var/spool/${PORTNAME}/voicemail/ -type d | ${SED} "s,^,@dir /," >> ${TMPPLIST}); + ${FIND} var/spool/${PORTNAME}/voicemail/ -type d | ${SED} "s,^,@dir /," >> ${TMPPLIST} && \ + ${ECHO} "@owner" >> ${TMPPLIST} && \ + ${ECHO} "@group" >> ${TMPPLIST}); .include From owner-svn-ports-all@freebsd.org Tue Jul 5 10:59:02 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 4F6EBB21298; Tue, 5 Jul 2016 10:59:02 +0000 (UTC) (envelope-from junovitch@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 0D281170D; Tue, 5 Jul 2016 10:59:01 +0000 (UTC) (envelope-from junovitch@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u65Ax1ZR023246; Tue, 5 Jul 2016 10:59:01 GMT (envelope-from junovitch@FreeBSD.org) Received: (from junovitch@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u65Ax1gp023243; Tue, 5 Jul 2016 10:59:01 GMT (envelope-from junovitch@FreeBSD.org) Message-Id: <201607051059.u65Ax1gp023243@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: junovitch set sender to junovitch@FreeBSD.org using -f From: Jason Unovitch Date: Tue, 5 Jul 2016 10:59:01 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418082 - head/www/tomee X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Jul 2016 10:59:02 -0000 Author: junovitch Date: Tue Jul 5 10:59:00 2016 New Revision: 418082 URL: https://svnweb.freebsd.org/changeset/ports/418082 Log: www/tomee: update 1.7.2 -> 1.7.4 - While here, add NO_ARCH Changes: https://openejb.apache.org/tomee-1.7.4-release-notes.html PR: 210176 Submitted by: Cecile Neu (maintainer) Modified: head/www/tomee/Makefile head/www/tomee/distinfo head/www/tomee/pkg-plist Modified: head/www/tomee/Makefile ============================================================================== --- head/www/tomee/Makefile Tue Jul 5 10:48:32 2016 (r418081) +++ head/www/tomee/Makefile Tue Jul 5 10:59:00 2016 (r418082) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= tomee -PORTVERSION= 1.7.2 +PORTVERSION= 1.7.4 CATEGORIES= www java MASTER_SITES= APACHE/tomee/tomee-${PORTVERSION} DISTNAME= apache-${PORTNAME}-${PORTVERSION}-webprofile @@ -19,6 +19,7 @@ CPE_VENDOR= apache USE_JAVA= yes JAVA_VERSION= 1.6+ +NO_ARCH= yes NO_BUILD= yes USE_RC_SUBR= ${PKGBASE} Modified: head/www/tomee/distinfo ============================================================================== --- head/www/tomee/distinfo Tue Jul 5 10:48:32 2016 (r418081) +++ head/www/tomee/distinfo Tue Jul 5 10:59:00 2016 (r418082) @@ -1,2 +1,3 @@ -SHA256 (apache-tomee-1.7.2-webprofile.tar.gz) = 9802fef834a3d2944fc325440e1aadbd3b00956e5ef43f5ef9eea8b91a12d230 -SIZE (apache-tomee-1.7.2-webprofile.tar.gz) = 30787317 +TIMESTAMP = 1467580250 +SHA256 (apache-tomee-1.7.4-webprofile.tar.gz) = 4a1c13e60fcf1289980b0c14f8e67daf31b1c91f4e208fbc7aeec0a252655897 +SIZE (apache-tomee-1.7.4-webprofile.tar.gz) = 31185154 Modified: head/www/tomee/pkg-plist ============================================================================== --- head/www/tomee/pkg-plist Tue Jul 5 10:48:32 2016 (r418081) +++ head/www/tomee/pkg-plist Tue Jul 5 10:59:00 2016 (r418082) @@ -43,16 +43,17 @@ %%T%%/lib/commons-beanutils-core-1.8.3.jar %%T%%/lib/commons-cli-1.2.jar %%T%%/lib/commons-codec-1.9.jar -%%T%%/lib/commons-collections-3.2.1.jar +%%T%%/lib/commons-collections-3.2.2.jar %%T%%/lib/commons-dbcp-1.4.jar %%T%%/lib/commons-digester-1.8.jar +%%T%%/lib/commons-io-2.4.jar %%T%%/lib/commons-lang-2.6.jar %%T%%/lib/commons-lang3-3.3.2.jar %%T%%/lib/commons-logging-1.1.1.jar %%T%%/lib/commons-pool-1.5.7.jar %%T%%/lib/ecj-4.4.2.jar %%T%%/lib/el-api.jar -%%T%%/lib/geronimo-javamail_1.4_mail-1.8.3.jar +%%T%%/lib/geronimo-javamail_1.4_mail-1.9.0-alpha-2.jar %%T%%/lib/geronimo-transaction-3.1.1.jar %%T%%/lib/howl-1.0.1-1.jar %%T%%/lib/hsqldb-2.3.2.jar @@ -64,22 +65,22 @@ %%T%%/lib/jaxb-core-2.2.7.jar %%T%%/lib/jaxb-impl.jar %%T%%/lib/jsp-api.jar -%%T%%/lib/mbean-annotation-api-4.7.2.jar +%%T%%/lib/mbean-annotation-api-4.7.4.jar %%T%%/lib/myfaces-api-2.1.17.jar %%T%%/lib/myfaces-impl-2.1.17.jar -%%T%%/lib/openejb-api-4.7.2.jar -%%T%%/lib/openejb-client-4.7.2.jar -%%T%%/lib/openejb-core-4.7.2.jar -%%T%%/lib/openejb-ejbd-4.7.2.jar -%%T%%/lib/openejb-hsql-4.7.2.jar -%%T%%/lib/openejb-http-4.7.2.jar +%%T%%/lib/openejb-api-4.7.4.jar +%%T%%/lib/openejb-client-4.7.4.jar +%%T%%/lib/openejb-core-4.7.4.jar +%%T%%/lib/openejb-ejbd-4.7.4.jar +%%T%%/lib/openejb-hsql-4.7.4.jar +%%T%%/lib/openejb-http-4.7.4.jar %%T%%/lib/openejb-javaagent.jar -%%T%%/lib/openejb-jee-4.7.2.jar -%%T%%/lib/openejb-jee-accessors-4.7.2.jar -%%T%%/lib/openejb-jpa-integration-4.7.2.jar +%%T%%/lib/openejb-jee-4.7.4.jar +%%T%%/lib/openejb-jee-accessors-4.7.4.jar +%%T%%/lib/openejb-jpa-integration-4.7.4.jar %%T%%/lib/openejb-jstl-1.2.jar -%%T%%/lib/openejb-loader-4.7.2.jar -%%T%%/lib/openejb-server-4.7.2.jar +%%T%%/lib/openejb-loader-4.7.4.jar +%%T%%/lib/openejb-server-4.7.4.jar %%T%%/lib/openjpa-2.4.0.jar %%T%%/lib/openwebbeans-ee-1.2.7.jar %%T%%/lib/openwebbeans-ee-common-1.2.7.jar @@ -92,8 +93,8 @@ %%T%%/lib/quartz-openejb-shade-2.2.1.jar %%T%%/lib/serp-1.14.1.jar %%T%%/lib/servlet-api.jar -%%T%%/lib/slf4j-api-1.7.7.jar -%%T%%/lib/slf4j-jdk14-1.7.7.jar +%%T%%/lib/slf4j-api-1.7.14.jar +%%T%%/lib/slf4j-jdk14-1.7.14.jar %%T%%/lib/swizzle-stream-1.6.2.jar %%T%%/lib/sxc-jaxb-core-0.8.jar %%T%%/lib/sxc-runtime-0.8.jar @@ -106,13 +107,13 @@ %%T%%/lib/tomcat-jdbc.jar %%T%%/lib/tomcat-util.jar %%T%%/lib/tomcat7-websocket.jar -%%T%%/lib/tomee-catalina-1.7.2.jar -%%T%%/lib/tomee-common-1.7.2.jar -%%T%%/lib/tomee-jdbc-1.7.2.jar -%%T%%/lib/tomee-loader-1.7.2.jar -%%T%%/lib/tomee-mojarra-1.7.2.jar -%%T%%/lib/tomee-myfaces-1.7.2.jar -%%T%%/lib/tomee-webapp-1.7.2.jar +%%T%%/lib/tomee-catalina-1.7.4.jar +%%T%%/lib/tomee-common-1.7.4.jar +%%T%%/lib/tomee-jdbc-1.7.4.jar +%%T%%/lib/tomee-loader-1.7.4.jar +%%T%%/lib/tomee-mojarra-1.7.4.jar +%%T%%/lib/tomee-myfaces-1.7.4.jar +%%T%%/lib/tomee-webapp-1.7.4.jar %%T%%/lib/websocket-api.jar %%T%%/lib/xbean-asm5-shaded-4.2.jar %%T%%/lib/xbean-bundleutils-4.2.jar @@ -164,8 +165,8 @@ %%T%%/webapps/docs/architecture/index.html %%T%%/webapps/docs/architecture/overview.html %%T%%/webapps/docs/architecture/requestProcess.html -%%T%%/webapps/docs/architecture/requestProcess/requestProcess.pdf -%%T%%/webapps/docs/architecture/requestProcess/roseModel.mdl +%%T%%/webapps/docs/architecture/requestProcess/authentication-process.png +%%T%%/webapps/docs/architecture/requestProcess/request-process.png %%T%%/webapps/docs/architecture/startup.html %%T%%/webapps/docs/architecture/startup/serverStartup.pdf %%T%%/webapps/docs/architecture/startup/serverStartup.txt From owner-svn-ports-all@freebsd.org Tue Jul 5 12:57:04 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id E688AB71C4C; Tue, 5 Jul 2016 12:57:04 +0000 (UTC) (envelope-from mat@FreeBSD.org) Received: from prod2.absolight.net (mx3.absolight.net [IPv6:2a01:678:2:100::25]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "plouf.absolight.net", Issuer "CAcert Class 3 Root" (not verified)) by mx1.freebsd.org (Postfix) with ESMTPS id B0DCC15B1; Tue, 5 Jul 2016 12:57:04 +0000 (UTC) (envelope-from mat@FreeBSD.org) Received: from prod2.absolight.net (localhost [127.0.0.1]) by prod2.absolight.net (Postfix) with ESMTP id E59C1BDC86; Tue, 5 Jul 2016 14:57:01 +0200 (CEST) Received: from gw.in.absolight.net (gw-ecl.in.absolight.net [79.143.241.69]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "gw.in.absolight.net", Issuer "CA Cert Signing Authority" (not verified)) by prod2.absolight.net (Postfix) with ESMTPSA id DFD68BDC85; Tue, 5 Jul 2016 14:57:01 +0200 (CEST) Received: from ogg.in.absolight.net (ogg.in.absolight.net [79.143.241.239]) by gw.in.absolight.net (Postfix) with ESMTP id 4F53B611A; Tue, 5 Jul 2016 14:57:01 +0200 (CEST) Received: from localhost (localhost [127.0.0.1]) by ogg.in.absolight.net (Postfix) with ESMTP id D38522BCEDF1; Tue, 5 Jul 2016 14:57:00 +0200 (CEST) Date: Tue, 05 Jul 2016 14:56:59 +0200 From: Mathieu Arnold To: Koop Mast , ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: Re: svn commit: r418080 - head/mail/evolution Message-ID: <1137F5F74F2489268BD53A97@ogg.in.absolight.net> In-Reply-To: <201607051037.u65AbL0g015616@repo.freebsd.org> References: <201607051037.u65AbL0g015616@repo.freebsd.org> X-Mailer: Mulberry/4.0.8 (Mac OS X) MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="==========74E4A8705EBA609A756B==========" X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Jul 2016 12:57:05 -0000 --==========74E4A8705EBA609A756B========== Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Content-Disposition: inline +--On 5 juillet 2016 10:37:21 +0000 Koop Mast wrote: | +SPAMASSASSIN_CONFIGURE_WITH= spamassassin=${PREFIX}/bin/spamassassin \ | + sa-learn=${PREFIX}/bin/sa-learn This should be LOCALBASE, not PREFIX. | +BOGOFILTER_CONFIGURE_WITH= bogofilter=${LOCALBASE}/bin/bogofilter You got it right here. -- Mathieu Arnold --==========74E4A8705EBA609A756B========== Content-Type: application/pgp-signature Content-Transfer-Encoding: 7bit -----BEGIN PGP SIGNATURE----- Version: GnuPG v1 iQJ8BAEBCgBmBQJXe66cXxSAAAAAAC4AKGlzc3Vlci1mcHJAbm90YXRpb25zLm9w ZW5wZ3AuZmlmdGhob3JzZW1hbi5uZXQzQUI2OTc4OUQyRUQxMjEwNjQ0MEJBNUIz QTQ1MTZGMzUxODNDRTQ4AAoJEDpFFvNRg85IeQ8P/RBpblg6ElbXeCcv3TlqxaDF elWyOo275OXUtgT5mUErsnhaMIey4CW1T+sK8HqC1foX1gm2GAZKOIo9mBrIBo47 upOgSjUO8bHqyC4rFm82D0FjSab9GqjRGIN7VWNQ4dMfKRaNJsBpcB/HZfGBCWEj kimrzP4AL3T1SlWgyrTS/IO5tN61/y43G8V8+96qMqdbvJBdzLfeQPqA4t5CQyRB U23TUsnJL9cxbAbY9cVSQSEurNL6Y93dLElM/XImDjfBJCSZF+AUrJ9KkEP3UMJP kOrBmpeyRasJh4Sqz1CSEp51tqn27O6uN3zsrb6p19canemRm8Rt+takYADgP9Mo mvWSupx4IZVwa3cMzgze364R46UPsJOdrXIQ2te4OCfV/tMPu+HWZOQeYooBJeOo /Y91F7UkHlQmYE7roBcCizhHgCW8e4U31we5Zh6pNPpYmjwJoT5ecc8HIih8SVO1 7QOzRaJUgWepyywYx9SrNMzdC/2ou8RtefWRAkyAp0Rcg+vatcRuN0mSGb+m0jmC tWsVd0jnpMNTjIdHzef4j1ykIqpWt6b6yC/+xLG42A/pC+VkGVxOrpZE4/E5efUO +wVDmoq1isXqjmlEISw382uDX84zu2YLvG+9E8iAHGR7AQNne55JYiThNIx6TS2r U1Dh7WpFHDtFs8joqSA5 =aavz -----END PGP SIGNATURE----- --==========74E4A8705EBA609A756B==========-- From owner-svn-ports-all@freebsd.org Tue Jul 5 13:07:03 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id E247DB71EA3; Tue, 5 Jul 2016 13:07:03 +0000 (UTC) (envelope-from kwm@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id AFC331BDD; Tue, 5 Jul 2016 13:07:03 +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 u65D72gL070950; Tue, 5 Jul 2016 13:07:02 GMT (envelope-from kwm@FreeBSD.org) Received: (from kwm@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u65D72P2070949; Tue, 5 Jul 2016 13:07:02 GMT (envelope-from kwm@FreeBSD.org) Message-Id: <201607051307.u65D72P2070949@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: kwm set sender to kwm@FreeBSD.org using -f From: Koop Mast Date: Tue, 5 Jul 2016 13:07:02 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418083 - head/mail/evolution X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Jul 2016 13:07:04 -0000 Author: kwm Date: Tue Jul 5 13:07:02 2016 New Revision: 418083 URL: https://svnweb.freebsd.org/changeset/ports/418083 Log: Use LOCALBASE instead of PREFIX for spamassasin detection. Reported by: mat@ Pointyhat to: kwm@ Modified: head/mail/evolution/Makefile Modified: head/mail/evolution/Makefile ============================================================================== --- head/mail/evolution/Makefile Tue Jul 5 10:59:00 2016 (r418082) +++ head/mail/evolution/Makefile Tue Jul 5 13:07:02 2016 (r418083) @@ -90,8 +90,8 @@ LDAP_USE= OPENLDAP=yes WEATHER_LIB_DEPENDS= libgweather-3.so:net/libgweather WEATHER_CONFIGURE_ENABLE= weather -SPAMASSASSIN_CONFIGURE_WITH= spamassassin=${PREFIX}/bin/spamassassin \ - sa-learn=${PREFIX}/bin/sa-learn +SPAMASSASSIN_CONFIGURE_WITH= spamassassin=${LOCALBASE}/bin/spamassassin \ + sa-learn=${LOCALBASE}/bin/sa-learn SPAMASSASSIN_BUILD_DEPENDS= spamassassin:mail/spamassassin SPAMASSASSIN_RUN_DEPENDS= spamassassin:mail/spamassassin From owner-svn-ports-all@freebsd.org Tue Jul 5 13:12:45 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 28322B720A0; Tue, 5 Jul 2016 13:12:45 +0000 (UTC) (envelope-from cy.schubert@komquats.com) Received: from smtp-out-no.shaw.ca (smtp-out-no.shaw.ca [64.59.134.12]) (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 69B351F41; Tue, 5 Jul 2016 13:12:44 +0000 (UTC) (envelope-from cy.schubert@komquats.com) Received: from spqr.komquats.com ([96.50.22.10]) by shaw.ca with SMTP id KQ9Wbi1lBEWlrKQ9Xboy8d; Tue, 05 Jul 2016 07:12:41 -0600 X-Authority-Analysis: v=2.2 cv=P7p4vWIu c=1 sm=1 tr=0 a=jvE2nwUzI0ECrNeyr98KWA==:117 a=jvE2nwUzI0ECrNeyr98KWA==:17 a=L9H7d07YOLsA:10 a=9cW_t1CCXrUA:10 a=s5jvgZ67dGcA:10 a=cAmyUtKerLwA:10 a=sol3VE4AAAAA:8 a=6I5d2MoRAAAA:8 a=IAQblRmBAAAA:8 a=YxBL1-UpAAAA:8 a=AaPDo0nnnqwlwaat5W8A:9 a=OpeU2goXl_1Y2kLAtfwV:22 a=IjZwj45LgO3ly-622nXo:22 a=UgkE-RytNwISRLiJd4vI:22 a=Ia-lj3WSrqcvXOmTRaiG:22 Received: from slippy.cwsent.com (slippy [10.1.1.91]) by spqr.komquats.com (Postfix) with ESMTPS id 48D3013752; Tue, 5 Jul 2016 06:12:38 -0700 (PDT) Received: from slippy (localhost [127.0.0.1]) by slippy.cwsent.com (8.15.2/8.15.2) with ESMTP id u65DCbZT053365; Tue, 5 Jul 2016 06:12:37 -0700 (PDT) (envelope-from Cy.Schubert@cschubert.com) Message-Id: <201607051312.u65DCbZT053365@slippy.cwsent.com> X-Mailer: exmh version 2.8.0 04/21/2012 with nmh-1.6 Reply-to: Cy Schubert From: Cy Schubert X-os: FreeBSD X-Sender: cy@cwsent.com X-URL: http://www.cschubert.com/ To: Baptiste Daroussin cc: Cy Schubert , ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: Re: svn commit: r418053 - head/net/vnc In-Reply-To: Message from Baptiste Daroussin of "Tue, 05 Jul 2016 12:44:26 +0200." <20160705104425.ask2fb73yu7w5sgl@ivaldir.etoilebsd.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Tue, 05 Jul 2016 06:12:37 -0700 X-CMAE-Envelope: MS4wfPr35SzNmR9fi53YfACFXATgZeKg9SBEyD5fy6YWMuzcr2nbFMbFjJcODTT2w2O6hcOS0suOjxg4VgooRj7VgtEjYdzsO/7mH/eYh3TRyGmmlgZ62Hvr cCMZEUaBMBarTKVGF201TLXrjqHuGP715BY0NasskNf8R2+5bXv3igkKytkUJ2St71OUfwFg6hFRtG3k034Q0qfIuS5f/nxk1NOBAbErvaCHNHqh8NNMPYjG Uq1MhCZrn7w9MlNjgeZEnMACg0FSHKRrW2i4plg9OmjtJYvKqVWPO+eGdljakUZY5+o1QOCGyqIuiVdA3MnIEA== X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Jul 2016 13:12:45 -0000 In message <20160705104425.ask2fb73yu7w5sgl@ivaldir.etoilebsd.net>, Baptiste Da roussin writes: > > > --tbyjoq77kf6avtva > Content-Type: text/plain; charset=us-ascii > Content-Disposition: inline > Content-Transfer-Encoding: quoted-printable > > On Mon, Jul 04, 2016 at 07:47:11PM +0000, Cy Schubert wrote: > > Author: cy > > Date: Mon Jul 4 19:47:11 2016 > > New Revision: 418053 > > URL: https://svnweb.freebsd.org/changeset/ports/418053 > >=20 > > Log: > > Fix build. This port needs gcc 4.6 or earlier. > >=20 > > Modified: > > head/net/vnc/Makefile > >=20 > > Modified: head/net/vnc/Makefile > > =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= > =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= > =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= > =3D=3D=3D=3D > > --- head/net/vnc/Makefile Mon Jul 4 19:23:44 2016 (r418052) > > +++ head/net/vnc/Makefile Mon Jul 4 19:47:11 2016 (r418053) > > @@ -48,7 +48,7 @@ DISTFILES+=3D X430src-1.tgz:x \ > > X430src-3.tgz:x > > =20 > > .if ${OSVERSION} > 1000054 > > -USE_GCC=3D yes > > +USE_GCC=3D 4.6 > > I just tried with gcc 4.8 and it works perfectly fine, why limiting it to 4= > =2E6? It didn't work for me. I'll need to find out why it didn't work for me. > > Second none of the provided mirror seems to work for me (to fetch X 4.3.0) I'll need to check that out. I recall at one time a person had to go to realvnc.com, register and download the opensource version. Seems that's still possible: https://archive.realvnc.com/download/open/ > > Newer version of vnc (as realvnc) seems to not be available in opensource > anymore. It is probably time to deprecate that port and recommand people us= > ing > alternative VNC implemetations? I'd prefer not to. The different versions of VNC are not 100% compatible with each other. -- 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-all@freebsd.org Tue Jul 5 13:22:23 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 5ACA6B724C2; Tue, 5 Jul 2016 13:22:23 +0000 (UTC) (envelope-from kwm@rainbow-runner.nl) Received: from smtpq2.tb.mail.iss.as9143.net (smtpq2.tb.mail.iss.as9143.net [212.54.42.165]) (using TLSv1.2 with cipher DHE-RSA-AES128-SHA (128/128 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 163C315B2; Tue, 5 Jul 2016 13:22:22 +0000 (UTC) (envelope-from kwm@rainbow-runner.nl) Received: from [212.54.42.116] (helo=lsmtp2.tb.mail.iss.as9143.net) by smtpq2.tb.mail.iss.as9143.net with esmtp (Exim 4.82) (envelope-from ) id 1bKQ49-0002Wi-4S; Tue, 05 Jul 2016 15:07:05 +0200 Received: from 178-84-134-112.dynamic.upc.nl ([178.84.134.112] helo=[192.168.0.24]) by lsmtp2.tb.mail.iss.as9143.net with esmtp (Exim 4.82) (envelope-from ) id 1bKQ49-00043W-1G; Tue, 05 Jul 2016 15:07:05 +0200 User-Agent: K-9 Mail for Android In-Reply-To: <1137F5F74F2489268BD53A97@ogg.in.absolight.net> References: <201607051037.u65AbL0g015616@repo.freebsd.org> <1137F5F74F2489268BD53A97@ogg.in.absolight.net> MIME-Version: 1.0 Subject: Re: svn commit: r418080 - head/mail/evolution From: Koop Mast Date: Tue, 05 Jul 2016 15:07:04 +0200 To: Mathieu Arnold , Koop Mast , ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Message-ID: X-Ziggo-spambar: / X-Ziggo-spamscore: 0.0 X-Ziggo-spamreport: CMAE Analysis: v=2.1 cv=fpMhHwMf c=1 sm=0 tr=0 a=cAmyUtKerLwA:10 a=6I5d2MoRAAAA:8 a=bYNqmPmkkj7ZiboBBcgA:9 a=QEXdDO2ut3YA:10 a=dF9suY73fvs7QKdDwRwA:9 a=lYewS_BISaFalym8:21 a=_W_S_7VecoQA:10 a=IjZwj45LgO3ly-622nXo:22 xcat=Undefined/Undefined none X-Ziggo-Spam-Status: No X-Spam-Status: No X-Spam-Flag: No Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Content-Filtered-By: Mailman/MimeDel 2.1.22 X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Jul 2016 13:22:23 -0000 Doh. I remember me thinking that I needed to change all lines... Fixed now. Thanks for reporting, -Koop Mathieu Arnold schreef op 5 juli 2016 14:56:59 CEST: >+--On 5 juillet 2016 10:37:21 +0000 Koop Mast wrote: >| +SPAMASSASSIN_CONFIGURE_WITH= spamassassin=${PREFIX}/bin/spamassassin >\ >| + sa-learn=${PREFIX}/bin/sa-learn > >This should be LOCALBASE, not PREFIX. > >| +BOGOFILTER_CONFIGURE_WITH= bogofilter=${LOCALBASE}/bin/bogofilter > >You got it right here. > >-- >Mathieu Arnold -- Sent from my Android device with K-9 Mail. Please excuse my brevity. From owner-svn-ports-all@freebsd.org Tue Jul 5 14:04:13 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 7740EB72EB1; Tue, 5 Jul 2016 14:04:13 +0000 (UTC) (envelope-from adamw@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 41C891A9D; Tue, 5 Jul 2016 14:04:13 +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 u65E4CGP093059; Tue, 5 Jul 2016 14:04:12 GMT (envelope-from adamw@FreeBSD.org) Received: (from adamw@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u65E4CkP093054; Tue, 5 Jul 2016 14:04:12 GMT (envelope-from adamw@FreeBSD.org) Message-Id: <201607051404.u65E4CkP093054@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: adamw set sender to adamw@FreeBSD.org using -f From: Adam Weinberger Date: Tue, 5 Jul 2016 14:04:12 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418084 - in head/mail: rainloop rainloop-community X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Jul 2016 14:04:13 -0000 Author: adamw Date: Tue Jul 5 14:04:11 2016 New Revision: 418084 URL: https://svnweb.freebsd.org/changeset/ports/418084 Log: Update to 1.10.2-141. PR: 210580 Approved by: maintainer Modified: head/mail/rainloop-community/distinfo head/mail/rainloop-community/pkg-plist head/mail/rainloop/Makefile head/mail/rainloop/distinfo head/mail/rainloop/pkg-plist Modified: head/mail/rainloop-community/distinfo ============================================================================== --- head/mail/rainloop-community/distinfo Tue Jul 5 13:07:02 2016 (r418083) +++ head/mail/rainloop-community/distinfo Tue Jul 5 14:04:11 2016 (r418084) @@ -1,3 +1,3 @@ -TIMESTAMP = 1463435452 -SHA256 (rainloop-community-1.10.0.107-40d27141a175903a3853fe6ccf4ec753.zip) = 01061e5660ab3037a0b9aaec371a9e0754a9eddbcb2ae9fa53d44909c40d8ca9 -SIZE (rainloop-community-1.10.0.107-40d27141a175903a3853fe6ccf4ec753.zip) = 5198394 +TIMESTAMP = 1467727204 +SHA256 (rainloop-community-1.10.2.141-df00be1a3ed3b171ed1dd0806b2aa5b7.zip) = b904bca42cf44fec9029c2355e217d82a7610f46685fe9597e4a098f764a52c8 +SIZE (rainloop-community-1.10.2.141-df00be1a3ed3b171ed1dd0806b2aa5b7.zip) = 5496791 Modified: head/mail/rainloop-community/pkg-plist ============================================================================== --- head/mail/rainloop-community/pkg-plist Tue Jul 5 13:07:02 2016 (r418083) +++ head/mail/rainloop-community/pkg-plist Tue Jul 5 14:04:11 2016 (r418084) @@ -225,6 +225,7 @@ %%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/MailSo/Cache/Drivers/APC.php %%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/MailSo/Cache/Drivers/File.php %%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/MailSo/Cache/Drivers/Memcache.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/MailSo/Cache/Drivers/Redis.php %%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/MailSo/Config.php %%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/MailSo/Hooks.php %%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/MailSo/Imap/BodyStructure.php @@ -256,6 +257,7 @@ %%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/MailSo/Log/Drivers/Callback.php %%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/MailSo/Log/Drivers/File.php %%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/MailSo/Log/Drivers/Inline.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/MailSo/Log/Drivers/Syslog.php %%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/MailSo/Log/Enumerations/Type.php %%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/MailSo/Log/Logger.php %%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/MailSo/Mail/Attachment.php @@ -353,6 +355,266 @@ %%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/PHPThumb/PHPThumb.php %%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/PHPThumb/PluginInterface.php %%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/PHPThumb/Plugins/Reflection.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Autoloader.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Client.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/ClientContextInterface.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/ClientException.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/ClientInterface.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Cluster/ClusterStrategy.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Cluster/Distributor/DistributorInterface.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Cluster/Distributor/EmptyRingException.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Cluster/Distributor/HashRing.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Cluster/Distributor/KetamaRing.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Cluster/Hash/CRC16.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Cluster/Hash/HashGeneratorInterface.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Cluster/PredisStrategy.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Cluster/RedisStrategy.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Cluster/StrategyInterface.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Collection/Iterator/CursorBasedIterator.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Collection/Iterator/HashKey.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Collection/Iterator/Keyspace.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Collection/Iterator/ListKey.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Collection/Iterator/SetKey.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Collection/Iterator/SortedSetKey.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/Command.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/CommandInterface.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/ConnectionAuth.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/ConnectionEcho.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/ConnectionPing.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/ConnectionQuit.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/ConnectionSelect.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/HashDelete.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/HashExists.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/HashGet.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/HashGetAll.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/HashGetMultiple.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/HashIncrementBy.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/HashIncrementByFloat.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/HashKeys.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/HashLength.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/HashScan.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/HashSet.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/HashSetMultiple.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/HashSetPreserve.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/HashStringLength.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/HashValues.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/HyperLogLogAdd.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/HyperLogLogCount.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/HyperLogLogMerge.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/KeyDelete.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/KeyDump.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/KeyExists.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/KeyExpire.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/KeyExpireAt.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/KeyKeys.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/KeyMigrate.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/KeyMove.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/KeyPersist.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/KeyPreciseExpire.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/KeyPreciseExpireAt.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/KeyPreciseTimeToLive.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/KeyRandom.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/KeyRename.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/KeyRenamePreserve.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/KeyRestore.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/KeyScan.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/KeySort.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/KeyTimeToLive.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/KeyType.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/ListIndex.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/ListInsert.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/ListLength.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/ListPopFirst.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/ListPopFirstBlocking.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/ListPopLast.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/ListPopLastBlocking.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/ListPopLastPushHead.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/ListPopLastPushHeadBlocking.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/ListPushHead.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/ListPushHeadX.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/ListPushTail.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/ListPushTailX.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/ListRange.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/ListRemove.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/ListSet.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/ListTrim.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/PrefixableCommandInterface.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/Processor/KeyPrefixProcessor.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/Processor/ProcessorChain.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/Processor/ProcessorInterface.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/PubSubPublish.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/PubSubPubsub.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/PubSubSubscribe.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/PubSubSubscribeByPattern.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/PubSubUnsubscribe.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/PubSubUnsubscribeByPattern.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/RawCommand.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/ScriptCommand.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/ServerBackgroundRewriteAOF.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/ServerBackgroundSave.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/ServerClient.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/ServerCommand.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/ServerConfig.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/ServerDatabaseSize.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/ServerEval.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/ServerEvalSHA.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/ServerFlushAll.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/ServerFlushDatabase.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/ServerInfo.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/ServerInfoV26x.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/ServerLastSave.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/ServerMonitor.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/ServerObject.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/ServerSave.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/ServerScript.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/ServerSentinel.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/ServerShutdown.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/ServerSlaveOf.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/ServerSlowlog.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/ServerTime.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/SetAdd.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/SetCardinality.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/SetDifference.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/SetDifferenceStore.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/SetIntersection.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/SetIntersectionStore.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/SetIsMember.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/SetMembers.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/SetMove.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/SetPop.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/SetRandomMember.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/SetRemove.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/SetScan.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/SetUnion.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/SetUnionStore.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/StringAppend.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/StringBitCount.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/StringBitOp.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/StringBitPos.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/StringDecrement.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/StringDecrementBy.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/StringGet.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/StringGetBit.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/StringGetMultiple.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/StringGetRange.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/StringGetSet.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/StringIncrement.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/StringIncrementBy.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/StringIncrementByFloat.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/StringPreciseSetExpire.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/StringSet.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/StringSetBit.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/StringSetExpire.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/StringSetMultiple.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/StringSetMultiplePreserve.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/StringSetPreserve.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/StringSetRange.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/StringStrlen.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/StringSubstr.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/TransactionDiscard.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/TransactionExec.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/TransactionMulti.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/TransactionUnwatch.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/TransactionWatch.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/ZSetAdd.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/ZSetCardinality.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/ZSetCount.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/ZSetIncrementBy.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/ZSetIntersectionStore.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/ZSetLexCount.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/ZSetRange.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/ZSetRangeByLex.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/ZSetRangeByScore.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/ZSetRank.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/ZSetRemove.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/ZSetRemoveRangeByLex.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/ZSetRemoveRangeByRank.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/ZSetRemoveRangeByScore.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/ZSetReverseRange.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/ZSetReverseRangeByLex.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/ZSetReverseRangeByScore.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/ZSetReverseRank.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/ZSetScan.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/ZSetScore.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/ZSetUnionStore.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/CommunicationException.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Configuration/ClusterOption.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Configuration/ConnectionFactoryOption.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Configuration/ExceptionsOption.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Configuration/OptionInterface.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Configuration/Options.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Configuration/OptionsInterface.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Configuration/PrefixOption.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Configuration/ProfileOption.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Configuration/ReplicationOption.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Connection/AbstractConnection.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Connection/Aggregate/ClusterInterface.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Connection/Aggregate/MasterSlaveReplication.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Connection/Aggregate/PredisCluster.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Connection/Aggregate/RedisCluster.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Connection/Aggregate/ReplicationInterface.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Connection/AggregateConnectionInterface.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Connection/CompositeConnectionInterface.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Connection/CompositeStreamConnection.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Connection/ConnectionException.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Connection/ConnectionInterface.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Connection/Factory.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Connection/FactoryInterface.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Connection/NodeConnectionInterface.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Connection/Parameters.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Connection/ParametersInterface.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Connection/PhpiredisSocketConnection.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Connection/PhpiredisStreamConnection.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Connection/StreamConnection.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Connection/WebdisConnection.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Monitor/Consumer.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/NotSupportedException.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Pipeline/Atomic.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Pipeline/ConnectionErrorProof.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Pipeline/FireAndForget.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Pipeline/Pipeline.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/PredisException.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Profile/Factory.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Profile/ProfileInterface.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Profile/RedisProfile.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Profile/RedisUnstable.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Profile/RedisVersion200.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Profile/RedisVersion220.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Profile/RedisVersion240.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Profile/RedisVersion260.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Profile/RedisVersion280.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Profile/RedisVersion300.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Protocol/ProtocolException.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Protocol/ProtocolProcessorInterface.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Protocol/RequestSerializerInterface.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Protocol/ResponseReaderInterface.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Protocol/Text/CompositeProtocolProcessor.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Protocol/Text/Handler/BulkResponse.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Protocol/Text/Handler/ErrorResponse.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Protocol/Text/Handler/IntegerResponse.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Protocol/Text/Handler/MultiBulkResponse.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Protocol/Text/Handler/ResponseHandlerInterface.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Protocol/Text/Handler/StatusResponse.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Protocol/Text/Handler/StreamableMultiBulkResponse.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Protocol/Text/ProtocolProcessor.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Protocol/Text/RequestSerializer.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Protocol/Text/ResponseReader.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/PubSub/AbstractConsumer.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/PubSub/Consumer.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/PubSub/DispatcherLoop.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Replication/ReplicationStrategy.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Response/Error.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Response/ErrorInterface.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Response/Iterator/MultiBulk.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Response/Iterator/MultiBulkIterator.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Response/Iterator/MultiBulkTuple.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Response/ResponseInterface.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Response/ServerException.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Response/Status.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Session/Handler.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Transaction/AbortedMultiExecException.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Transaction/MultiExec.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Transaction/MultiExecState.php %%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/RainLoop/Actions.php %%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/RainLoop/Api.php %%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/RainLoop/Common/BackwardCapability/Account.php @@ -708,12 +970,15 @@ %%WWWDIR%%/rainloop/v/%%VER%%/app/localization/README %%WWWDIR%%/rainloop/v/%%VER%%/app/localization/admin/README %%WWWDIR%%/rainloop/v/%%VER%%/app/localization/admin/_source.en.yml +%%WWWDIR%%/rainloop/v/%%VER%%/app/localization/admin/cs_CZ.yml %%WWWDIR%%/rainloop/v/%%VER%%/app/localization/admin/de_DE.yml %%WWWDIR%%/rainloop/v/%%VER%%/app/localization/admin/en_US.yml %%WWWDIR%%/rainloop/v/%%VER%%/app/localization/admin/es_ES.yml %%WWWDIR%%/rainloop/v/%%VER%%/app/localization/admin/fr_FR.yml %%WWWDIR%%/rainloop/v/%%VER%%/app/localization/admin/hu_HU.yml %%WWWDIR%%/rainloop/v/%%VER%%/app/localization/admin/it_IT.yml +%%WWWDIR%%/rainloop/v/%%VER%%/app/localization/admin/ja_JP.yml +%%WWWDIR%%/rainloop/v/%%VER%%/app/localization/admin/lt_LT.yml %%WWWDIR%%/rainloop/v/%%VER%%/app/localization/admin/nb_NO.yml %%WWWDIR%%/rainloop/v/%%VER%%/app/localization/admin/nl_NL.yml %%WWWDIR%%/rainloop/v/%%VER%%/app/localization/admin/pl_PL.yml @@ -803,6 +1068,7 @@ %%WWWDIR%%/rainloop/v/%%VER%%/app/localization/webmail/en_GB.yml %%WWWDIR%%/rainloop/v/%%VER%%/app/localization/webmail/en_US.yml %%WWWDIR%%/rainloop/v/%%VER%%/app/localization/webmail/es_ES.yml +%%WWWDIR%%/rainloop/v/%%VER%%/app/localization/webmail/et_EE.yml %%WWWDIR%%/rainloop/v/%%VER%%/app/localization/webmail/fr_FR.yml %%WWWDIR%%/rainloop/v/%%VER%%/app/localization/webmail/hu_HU.yml %%WWWDIR%%/rainloop/v/%%VER%%/app/localization/webmail/is_IS.yml @@ -891,6 +1157,7 @@ %%WWWDIR%%/rainloop/v/%%VER%%/app/templates/Views/Admin/AdminSettingsSocial.html %%WWWDIR%%/rainloop/v/%%VER%%/app/templates/Views/Admin/PopupsActivate.html %%WWWDIR%%/rainloop/v/%%VER%%/app/templates/Views/Admin/PopupsDomain.html +%%WWWDIR%%/rainloop/v/%%VER%%/app/templates/Views/Admin/PopupsDomainAlias.html %%WWWDIR%%/rainloop/v/%%VER%%/app/templates/Views/Admin/PopupsPlugin.html %%WWWDIR%%/rainloop/v/%%VER%%/app/templates/Views/Common/Pagenator.html %%WWWDIR%%/rainloop/v/%%VER%%/app/templates/Views/Common/PopupsAsk.html @@ -900,6 +1167,7 @@ %%WWWDIR%%/rainloop/v/%%VER%%/app/templates/Views/Components/Checkbox.html %%WWWDIR%%/rainloop/v/%%VER%%/app/templates/Views/Components/CheckboxClassic.html %%WWWDIR%%/rainloop/v/%%VER%%/app/templates/Views/Components/CheckboxMaterialDesign.html +%%WWWDIR%%/rainloop/v/%%VER%%/app/templates/Views/Components/Date.html %%WWWDIR%%/rainloop/v/%%VER%%/app/templates/Views/Components/Input.html %%WWWDIR%%/rainloop/v/%%VER%%/app/templates/Views/Components/Radio.html %%WWWDIR%%/rainloop/v/%%VER%%/app/templates/Views/Components/SaveTrigger.html Modified: head/mail/rainloop/Makefile ============================================================================== --- head/mail/rainloop/Makefile Tue Jul 5 13:07:02 2016 (r418083) +++ head/mail/rainloop/Makefile Tue Jul 5 14:04:11 2016 (r418084) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= rainloop -PORTVERSION= 1.10.0 +PORTVERSION= 1.10.2 CATEGORIES?= mail www MASTER_SITES= http://repository.rainloop.net/v2/webmail/${PORTVERSION}/ DISTNAME= ${PORTNAME}${PKGNAMESUFFIX}-${PORTVERSION}.${RBUILD}-${RHASH} @@ -18,25 +18,24 @@ LICENSE_PERMS= auto-accept .if !defined(PKGNAMESUFFIX) # Refresh using info from http://repository.rainloop.net/v2/core.stable.json -RHASH= 612fd7ad99051ba0b8bf465f21998678 +RHASH= d0fd048a2d32f3838cf32a72d97959ee .endif .if defined(PKGNAMESUFFIX) # Refresh using info from http://repository.rainloop.net/v2/core.open.json -RHASH= 40d27141a175903a3853fe6ccf4ec753 +RHASH= df00be1a3ed3b171ed1dd0806b2aa5b7 .endif # Refresh using info from http://repository.rainloop.net/v2/core.(stable|open).json -RBUILD= 107 +RBUILD= 141 .if !defined(PKGNAMESUFFIX) RESTRICTED= Redistribution in any form is prohibited .endif -USES= zip +USES= php:web zip NO_BUILD= yes NO_ARCH= yes NO_WRKSUBDIR= yes -WANT_PHP_WEB= yes USE_PHP= curl iconv json xml dom openssl pcre spl zlib RVER= ${PORTVERSION}.${RBUILD} PLIST_SUB= VER="${RVER}" WWWOWN="${WWWOWN}" WWWGRP="${WWWGRP}" Modified: head/mail/rainloop/distinfo ============================================================================== --- head/mail/rainloop/distinfo Tue Jul 5 13:07:02 2016 (r418083) +++ head/mail/rainloop/distinfo Tue Jul 5 14:04:11 2016 (r418084) @@ -1,3 +1,3 @@ -TIMESTAMP = 1463435443 -SHA256 (rainloop-1.10.0.107-612fd7ad99051ba0b8bf465f21998678.zip) = f6ba843ce47c29fea53ee52ccd6695068a24c0ae9d5023a0568c12c97d27b3a5 -SIZE (rainloop-1.10.0.107-612fd7ad99051ba0b8bf465f21998678.zip) = 5203959 +TIMESTAMP = 1467727192 +SHA256 (rainloop-1.10.2.141-d0fd048a2d32f3838cf32a72d97959ee.zip) = 9a51771453f3d53e94b86dffff06c4820c2277f8a8b10e5e623f760bb0422cff +SIZE (rainloop-1.10.2.141-d0fd048a2d32f3838cf32a72d97959ee.zip) = 5502533 Modified: head/mail/rainloop/pkg-plist ============================================================================== --- head/mail/rainloop/pkg-plist Tue Jul 5 13:07:02 2016 (r418083) +++ head/mail/rainloop/pkg-plist Tue Jul 5 14:04:11 2016 (r418084) @@ -224,6 +224,7 @@ %%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/MailSo/Cache/Drivers/APC.php %%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/MailSo/Cache/Drivers/File.php %%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/MailSo/Cache/Drivers/Memcache.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/MailSo/Cache/Drivers/Redis.php %%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/MailSo/Config.php %%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/MailSo/Hooks.php %%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/MailSo/Imap/BodyStructure.php @@ -255,6 +256,7 @@ %%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/MailSo/Log/Drivers/Callback.php %%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/MailSo/Log/Drivers/File.php %%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/MailSo/Log/Drivers/Inline.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/MailSo/Log/Drivers/Syslog.php %%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/MailSo/Log/Enumerations/Type.php %%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/MailSo/Log/Logger.php %%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/MailSo/Mail/Attachment.php @@ -352,6 +354,266 @@ %%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/PHPThumb/PHPThumb.php %%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/PHPThumb/PluginInterface.php %%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/PHPThumb/Plugins/Reflection.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Autoloader.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Client.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/ClientContextInterface.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/ClientException.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/ClientInterface.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Cluster/ClusterStrategy.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Cluster/Distributor/DistributorInterface.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Cluster/Distributor/EmptyRingException.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Cluster/Distributor/HashRing.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Cluster/Distributor/KetamaRing.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Cluster/Hash/CRC16.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Cluster/Hash/HashGeneratorInterface.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Cluster/PredisStrategy.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Cluster/RedisStrategy.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Cluster/StrategyInterface.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Collection/Iterator/CursorBasedIterator.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Collection/Iterator/HashKey.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Collection/Iterator/Keyspace.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Collection/Iterator/ListKey.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Collection/Iterator/SetKey.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Collection/Iterator/SortedSetKey.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/Command.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/CommandInterface.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/ConnectionAuth.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/ConnectionEcho.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/ConnectionPing.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/ConnectionQuit.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/ConnectionSelect.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/HashDelete.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/HashExists.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/HashGet.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/HashGetAll.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/HashGetMultiple.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/HashIncrementBy.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/HashIncrementByFloat.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/HashKeys.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/HashLength.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/HashScan.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/HashSet.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/HashSetMultiple.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/HashSetPreserve.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/HashStringLength.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/HashValues.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/HyperLogLogAdd.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/HyperLogLogCount.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/HyperLogLogMerge.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/KeyDelete.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/KeyDump.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/KeyExists.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/KeyExpire.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/KeyExpireAt.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/KeyKeys.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/KeyMigrate.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/KeyMove.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/KeyPersist.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/KeyPreciseExpire.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/KeyPreciseExpireAt.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/KeyPreciseTimeToLive.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/KeyRandom.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/KeyRename.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/KeyRenamePreserve.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/KeyRestore.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/KeyScan.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/KeySort.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/KeyTimeToLive.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/KeyType.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/ListIndex.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/ListInsert.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/ListLength.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/ListPopFirst.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/ListPopFirstBlocking.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/ListPopLast.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/ListPopLastBlocking.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/ListPopLastPushHead.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/ListPopLastPushHeadBlocking.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/ListPushHead.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/ListPushHeadX.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/ListPushTail.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/ListPushTailX.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/ListRange.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/ListRemove.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/ListSet.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/ListTrim.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/PrefixableCommandInterface.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/Processor/KeyPrefixProcessor.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/Processor/ProcessorChain.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/Processor/ProcessorInterface.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/PubSubPublish.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/PubSubPubsub.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/PubSubSubscribe.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/PubSubSubscribeByPattern.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/PubSubUnsubscribe.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/PubSubUnsubscribeByPattern.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/RawCommand.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/ScriptCommand.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/ServerBackgroundRewriteAOF.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/ServerBackgroundSave.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/ServerClient.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/ServerCommand.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/ServerConfig.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/ServerDatabaseSize.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/ServerEval.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/ServerEvalSHA.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/ServerFlushAll.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/ServerFlushDatabase.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/ServerInfo.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/ServerInfoV26x.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/ServerLastSave.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/ServerMonitor.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/ServerObject.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/ServerSave.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/ServerScript.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/ServerSentinel.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/ServerShutdown.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/ServerSlaveOf.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/ServerSlowlog.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/ServerTime.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/SetAdd.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/SetCardinality.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/SetDifference.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/SetDifferenceStore.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/SetIntersection.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/SetIntersectionStore.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/SetIsMember.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/SetMembers.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/SetMove.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/SetPop.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/SetRandomMember.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/SetRemove.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/SetScan.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/SetUnion.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/SetUnionStore.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/StringAppend.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/StringBitCount.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/StringBitOp.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/StringBitPos.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/StringDecrement.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/StringDecrementBy.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/StringGet.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/StringGetBit.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/StringGetMultiple.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/StringGetRange.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/StringGetSet.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/StringIncrement.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/StringIncrementBy.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/StringIncrementByFloat.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/StringPreciseSetExpire.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/StringSet.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/StringSetBit.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/StringSetExpire.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/StringSetMultiple.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/StringSetMultiplePreserve.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/StringSetPreserve.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/StringSetRange.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/StringStrlen.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/StringSubstr.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/TransactionDiscard.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/TransactionExec.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/TransactionMulti.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/TransactionUnwatch.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/TransactionWatch.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/ZSetAdd.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/ZSetCardinality.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/ZSetCount.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/ZSetIncrementBy.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/ZSetIntersectionStore.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/ZSetLexCount.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/ZSetRange.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/ZSetRangeByLex.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/ZSetRangeByScore.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/ZSetRank.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/ZSetRemove.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/ZSetRemoveRangeByLex.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/ZSetRemoveRangeByRank.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/ZSetRemoveRangeByScore.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/ZSetReverseRange.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/ZSetReverseRangeByLex.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/ZSetReverseRangeByScore.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/ZSetReverseRank.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/ZSetScan.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/ZSetScore.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Command/ZSetUnionStore.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/CommunicationException.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Configuration/ClusterOption.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Configuration/ConnectionFactoryOption.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Configuration/ExceptionsOption.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Configuration/OptionInterface.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Configuration/Options.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Configuration/OptionsInterface.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Configuration/PrefixOption.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Configuration/ProfileOption.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Configuration/ReplicationOption.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Connection/AbstractConnection.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Connection/Aggregate/ClusterInterface.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Connection/Aggregate/MasterSlaveReplication.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Connection/Aggregate/PredisCluster.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Connection/Aggregate/RedisCluster.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Connection/Aggregate/ReplicationInterface.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Connection/AggregateConnectionInterface.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Connection/CompositeConnectionInterface.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Connection/CompositeStreamConnection.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Connection/ConnectionException.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Connection/ConnectionInterface.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Connection/Factory.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Connection/FactoryInterface.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Connection/NodeConnectionInterface.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Connection/Parameters.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Connection/ParametersInterface.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Connection/PhpiredisSocketConnection.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Connection/PhpiredisStreamConnection.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Connection/StreamConnection.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Connection/WebdisConnection.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Monitor/Consumer.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/NotSupportedException.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Pipeline/Atomic.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Pipeline/ConnectionErrorProof.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Pipeline/FireAndForget.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Pipeline/Pipeline.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/PredisException.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Profile/Factory.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Profile/ProfileInterface.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Profile/RedisProfile.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Profile/RedisUnstable.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Profile/RedisVersion200.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Profile/RedisVersion220.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Profile/RedisVersion240.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Profile/RedisVersion260.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Profile/RedisVersion280.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Profile/RedisVersion300.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Protocol/ProtocolException.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Protocol/ProtocolProcessorInterface.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Protocol/RequestSerializerInterface.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Protocol/ResponseReaderInterface.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Protocol/Text/CompositeProtocolProcessor.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Protocol/Text/Handler/BulkResponse.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Protocol/Text/Handler/ErrorResponse.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Protocol/Text/Handler/IntegerResponse.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Protocol/Text/Handler/MultiBulkResponse.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Protocol/Text/Handler/ResponseHandlerInterface.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Protocol/Text/Handler/StatusResponse.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Protocol/Text/Handler/StreamableMultiBulkResponse.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Protocol/Text/ProtocolProcessor.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Protocol/Text/RequestSerializer.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Protocol/Text/ResponseReader.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/PubSub/AbstractConsumer.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/PubSub/Consumer.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/PubSub/DispatcherLoop.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Replication/ReplicationStrategy.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Response/Error.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Response/ErrorInterface.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Response/Iterator/MultiBulk.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Response/Iterator/MultiBulkIterator.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Response/Iterator/MultiBulkTuple.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Response/ResponseInterface.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Response/ServerException.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Response/Status.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Session/Handler.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Transaction/AbortedMultiExecException.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Transaction/MultiExec.php +%%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/Predis/Transaction/MultiExecState.php %%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/RainLoop/Actions.php %%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/RainLoop/Api.php %%WWWDIR%%/rainloop/v/%%VER%%/app/libraries/RainLoop/Common/BackwardCapability/Account.php @@ -708,12 +970,15 @@ %%WWWDIR%%/rainloop/v/%%VER%%/app/localization/README %%WWWDIR%%/rainloop/v/%%VER%%/app/localization/admin/README %%WWWDIR%%/rainloop/v/%%VER%%/app/localization/admin/_source.en.yml +%%WWWDIR%%/rainloop/v/%%VER%%/app/localization/admin/cs_CZ.yml %%WWWDIR%%/rainloop/v/%%VER%%/app/localization/admin/de_DE.yml %%WWWDIR%%/rainloop/v/%%VER%%/app/localization/admin/en_US.yml %%WWWDIR%%/rainloop/v/%%VER%%/app/localization/admin/es_ES.yml %%WWWDIR%%/rainloop/v/%%VER%%/app/localization/admin/fr_FR.yml %%WWWDIR%%/rainloop/v/%%VER%%/app/localization/admin/hu_HU.yml %%WWWDIR%%/rainloop/v/%%VER%%/app/localization/admin/it_IT.yml +%%WWWDIR%%/rainloop/v/%%VER%%/app/localization/admin/ja_JP.yml +%%WWWDIR%%/rainloop/v/%%VER%%/app/localization/admin/lt_LT.yml %%WWWDIR%%/rainloop/v/%%VER%%/app/localization/admin/nb_NO.yml %%WWWDIR%%/rainloop/v/%%VER%%/app/localization/admin/nl_NL.yml %%WWWDIR%%/rainloop/v/%%VER%%/app/localization/admin/pl_PL.yml @@ -802,6 +1067,7 @@ %%WWWDIR%%/rainloop/v/%%VER%%/app/localization/webmail/en_GB.yml %%WWWDIR%%/rainloop/v/%%VER%%/app/localization/webmail/en_US.yml %%WWWDIR%%/rainloop/v/%%VER%%/app/localization/webmail/es_ES.yml +%%WWWDIR%%/rainloop/v/%%VER%%/app/localization/webmail/et_EE.yml %%WWWDIR%%/rainloop/v/%%VER%%/app/localization/webmail/fr_FR.yml %%WWWDIR%%/rainloop/v/%%VER%%/app/localization/webmail/hu_HU.yml %%WWWDIR%%/rainloop/v/%%VER%%/app/localization/webmail/is_IS.yml @@ -891,6 +1157,7 @@ %%WWWDIR%%/rainloop/v/%%VER%%/app/templates/Views/Admin/AdminSettingsSocial.html %%WWWDIR%%/rainloop/v/%%VER%%/app/templates/Views/Admin/PopupsActivate.html %%WWWDIR%%/rainloop/v/%%VER%%/app/templates/Views/Admin/PopupsDomain.html +%%WWWDIR%%/rainloop/v/%%VER%%/app/templates/Views/Admin/PopupsDomainAlias.html %%WWWDIR%%/rainloop/v/%%VER%%/app/templates/Views/Admin/PopupsPlugin.html %%WWWDIR%%/rainloop/v/%%VER%%/app/templates/Views/Common/Pagenator.html %%WWWDIR%%/rainloop/v/%%VER%%/app/templates/Views/Common/PopupsAsk.html @@ -900,6 +1167,7 @@ %%WWWDIR%%/rainloop/v/%%VER%%/app/templates/Views/Components/Checkbox.html %%WWWDIR%%/rainloop/v/%%VER%%/app/templates/Views/Components/CheckboxClassic.html %%WWWDIR%%/rainloop/v/%%VER%%/app/templates/Views/Components/CheckboxMaterialDesign.html +%%WWWDIR%%/rainloop/v/%%VER%%/app/templates/Views/Components/Date.html %%WWWDIR%%/rainloop/v/%%VER%%/app/templates/Views/Components/Input.html %%WWWDIR%%/rainloop/v/%%VER%%/app/templates/Views/Components/Radio.html %%WWWDIR%%/rainloop/v/%%VER%%/app/templates/Views/Components/SaveTrigger.html From owner-svn-ports-all@freebsd.org Tue Jul 5 14:32:17 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 2C79AB738D0; Tue, 5 Jul 2016 14:32:17 +0000 (UTC) (envelope-from cpm@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) by mx1.freebsd.org (Postfix) with ESMTP id 1D9FC1C84; Tue, 5 Jul 2016 14:32:17 +0000 (UTC) (envelope-from cpm@FreeBSD.org) Received: from localhost (localhost [IPv6:::1]) by freefall.freebsd.org (Postfix) with ESMTP id 9A7971792; Tue, 5 Jul 2016 14:32:15 +0000 (UTC) (envelope-from cpm@FreeBSD.org) Message-ID: <1467729128.81021.2.camel@FreeBSD.org> Subject: Re: svn commit: r418080 - head/mail/evolution From: Carlos J Puga Medina To: Koop Mast , Mathieu Arnold , Koop Mast , ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Date: Tue, 05 Jul 2016 16:32:08 +0200 In-Reply-To: References: <201607051037.u65AbL0g015616@repo.freebsd.org> <1137F5F74F2489268BD53A97@ogg.in.absolight.net> Content-Type: multipart/signed; micalg="pgp-sha512"; protocol="application/pgp-signature"; boundary="=-QR8jI9tLucveUUpyHMq5" X-Mailer: Evolution 3.18.5.1 FreeBSD GNOME Team Port Mime-Version: 1.0 X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Jul 2016 14:32:17 -0000 --=-QR8jI9tLucveUUpyHMq5 Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable On Tue, 2016-07-05 at 15:07 +0200, Koop Mast wrote: > Doh. I remember me thinking that I needed to change all lines... >=20 > Fixed now. Thanks for reporting, >=20 > -Koop >=20 >=20 > > +--On 5 juillet 2016 10:37:21 +0000 Koop Mast > > wrote: > > | +SPAMASSASSIN_CONFIGURE_WITH=3D > > spamassassin=3D${PREFIX}/bin/spamassassin \ > > | +=C2=A0=C2=A0=C2=A0=C2=A0sa-learn=3D${PREFIX}/bin/sa-learn > >=20 > > This should be LOCALBASE, not PREFIX. > >=20 > > | +BOGOFILTER_CONFIGURE_WITH=3D > > bogofilter=3D${LOCALBASE}/bin/bogofilter > >=20 > > You got it right here. > >=20 It works properly with your modified patch :) Thanks, Koop! --=20 Carlos Jacobo Puga Medina PGP fingerprint =3D C60E 9497 5302 793B CC2D BB89 A1F3 5D66 E6D0 5453 --=-QR8jI9tLucveUUpyHMq5 Content-Type: application/pgp-signature; name="signature.asc" Content-Description: This is a digitally signed message part Content-Transfer-Encoding: 7bit -----BEGIN PGP SIGNATURE----- Version: GnuPG v2 iQF8BAABCgBmBQJXe8TpXxSAAAAAAC4AKGlzc3Vlci1mcHJAbm90YXRpb25zLm9w ZW5wZ3AuZmlmdGhob3JzZW1hbi5uZXRDNjBFOTQ5NzUzMDI3OTNCQ0MyREJCODlB MUYzNUQ2NkU2RDA1NDUzAAoJEKHzXWbm0FRT2eAIAJkQ4GerJk2xAeULukHsH3bk pCQJyy/SNnMY0EhTgNqsjqApw1iYJb3W1LFFqBDHOvU7oDdTy6qlD7ZhGbowtoi+ 4kIfbjZ+lZgCLv7+CER0wYPqGvQOAIdE5q9rIngkol+Hi3MbMoQGJEGqHkHYsuPQ ChCTeC9mv/dIqHNugGfdjWbY7azfLRS6Y5eMiFVnjXnLdPinUsWG+sYTLdq04kng bXuJ8fnbF4Hz0o/yWR2OxC6E3i8dKUdobWaNSbkkevx4bGpIv9nzZhTrzG+NkZpO dVSbebguL0w4g8wdZGs3KQgymgDMt1ltAVL2SfLJv8MLm16FxmGgs3yJi/EwgU0= =vv6E -----END PGP SIGNATURE----- --=-QR8jI9tLucveUUpyHMq5-- From owner-svn-ports-all@freebsd.org Tue Jul 5 15:02:09 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id CC2E4B21706; Tue, 5 Jul 2016 15:02:09 +0000 (UTC) (envelope-from bapt@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 9B68A146A; Tue, 5 Jul 2016 15:02:09 +0000 (UTC) (envelope-from bapt@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u65F28J9015146; Tue, 5 Jul 2016 15:02:08 GMT (envelope-from bapt@FreeBSD.org) Received: (from bapt@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u65F28rk015144; Tue, 5 Jul 2016 15:02:08 GMT (envelope-from bapt@FreeBSD.org) Message-Id: <201607051502.u65F28rk015144@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: bapt set sender to bapt@FreeBSD.org using -f From: Baptiste Daroussin Date: Tue, 5 Jul 2016 15:02:08 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418085 - head/ports-mgmt/pkg-devel X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Jul 2016 15:02:09 -0000 Author: bapt Date: Tue Jul 5 15:02:08 2016 New Revision: 418085 URL: https://svnweb.freebsd.org/changeset/ports/418085 Log: Update to 1.8.99.9: - Update internal expat to 2.2.0 - Fix using an external solver - Fix build on FreeBSD prior to 9.2 - Fix issues on armv6 - Add a mini summary of the operations (removal, installation, upgrades) that that will be done - Fix solver issues that could trigger issues with conflicts or reinstall too many things Modified: head/ports-mgmt/pkg-devel/Makefile head/ports-mgmt/pkg-devel/distinfo Modified: head/ports-mgmt/pkg-devel/Makefile ============================================================================== --- head/ports-mgmt/pkg-devel/Makefile Tue Jul 5 14:04:11 2016 (r418084) +++ head/ports-mgmt/pkg-devel/Makefile Tue Jul 5 15:02:08 2016 (r418085) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= pkg -DISTVERSION= 1.8.99.8 +DISTVERSION= 1.8.99.9 _PKG_VERSION= ${DISTVERSION} CATEGORIES= ports-mgmt MASTER_SITES= \ Modified: head/ports-mgmt/pkg-devel/distinfo ============================================================================== --- head/ports-mgmt/pkg-devel/distinfo Tue Jul 5 14:04:11 2016 (r418084) +++ head/ports-mgmt/pkg-devel/distinfo Tue Jul 5 15:02:08 2016 (r418085) @@ -1,3 +1,3 @@ -TIMESTAMP = 1466854093 -SHA256 (pkg-1.8.99.8.tar.xz) = d862fa85e429dd1af5d81a9830b48ee6ad35d62842bbc5fa19eed7b18f5dc1ab -SIZE (pkg-1.8.99.8.tar.xz) = 1912256 +TIMESTAMP = 1467730676 +SHA256 (pkg-1.8.99.9.tar.xz) = 2ec500e9203ff9205e7b5e61aa8f50b455f6834cc5ce58f05158dbf03af4f919 +SIZE (pkg-1.8.99.9.tar.xz) = 1917796 From owner-svn-ports-all@freebsd.org Tue Jul 5 15:02:57 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id C72F7B2176C; Tue, 5 Jul 2016 15:02:57 +0000 (UTC) (envelope-from cpm@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 7A24915D8; Tue, 5 Jul 2016 15:02:57 +0000 (UTC) (envelope-from cpm@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u65F2uMN015324; Tue, 5 Jul 2016 15:02:56 GMT (envelope-from cpm@FreeBSD.org) Received: (from cpm@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u65F2uQ2015320; Tue, 5 Jul 2016 15:02:56 GMT (envelope-from cpm@FreeBSD.org) Message-Id: <201607051502.u65F2uQ2015320@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: cpm set sender to cpm@FreeBSD.org using -f From: "Carlos J. Puga Medina" Date: Tue, 5 Jul 2016 15:02:56 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418086 - in head/net: . py-uritemplate.py X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Jul 2016 15:02:57 -0000 Author: cpm Date: Tue Jul 5 15:02:56 2016 New Revision: 418086 URL: https://svnweb.freebsd.org/changeset/ports/418086 Log: New port: net/py-uritemplate.py Simple python library to deal with URI Templates. WWW: https://uritemplate.readthedocs.org/ Reviewed by: amdmi3, junovitch, feld (mentors) Approved by: amdmi3, junovitch, feld (mentors) Differential Revision: D6730 Added: head/net/py-uritemplate.py/ head/net/py-uritemplate.py/Makefile (contents, props changed) head/net/py-uritemplate.py/distinfo (contents, props changed) head/net/py-uritemplate.py/pkg-descr (contents, props changed) Modified: head/net/Makefile Modified: head/net/Makefile ============================================================================== --- head/net/Makefile Tue Jul 5 15:02:08 2016 (r418085) +++ head/net/Makefile Tue Jul 5 15:02:56 2016 (r418086) @@ -1022,6 +1022,7 @@ SUBDIR += py-txamqp SUBDIR += py-txrestapi SUBDIR += py-uritemplate + SUBDIR += py-uritemplate.py SUBDIR += py-urllib3 SUBDIR += py-wolframalpha SUBDIR += py-xmlrpc Added: head/net/py-uritemplate.py/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/py-uritemplate.py/Makefile Tue Jul 5 15:02:56 2016 (r418086) @@ -0,0 +1,23 @@ +# Created by: Carlos J. Puga Medina +# $FreeBSD$ + +PORTNAME= uritemplate.py +PORTVERSION= 0.3.0 +CATEGORIES= net python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= cpm@FreeBSD.org +COMMENT= Simple python library to deal with URI Templates + +LICENSE= BSD3CLAUSE +LICENSE_FILE= ${WRKSRC}/LICENSE + +CONFLICTS_INSTALL= py*-uritemplate-[0-9]* + +USES= python +USE_PYTHON= autoplist distutils + +NO_ARCH= yes + +.include Added: head/net/py-uritemplate.py/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/py-uritemplate.py/distinfo Tue Jul 5 15:02:56 2016 (r418086) @@ -0,0 +1,3 @@ +TIMESTAMP = 1465077405 +SHA256 (uritemplate.py-0.3.0.tar.gz) = fd79aa529a7968c62d96ac6731a94349c5a615dac74968526c573c65796c7b77 +SIZE (uritemplate.py-0.3.0.tar.gz) = 6916 Added: head/net/py-uritemplate.py/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/py-uritemplate.py/pkg-descr Tue Jul 5 15:02:56 2016 (r418086) @@ -0,0 +1,3 @@ +Simple python library to deal with URI Templates. + +WWW: https://uritemplate.readthedocs.org/ From owner-svn-ports-all@freebsd.org Tue Jul 5 15:10:21 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id DE0C7B2184B; Tue, 5 Jul 2016 15:10:21 +0000 (UTC) (envelope-from cpm@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id AD96A179F; Tue, 5 Jul 2016 15:10:21 +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 u65FAKLg015694; Tue, 5 Jul 2016 15:10:20 GMT (envelope-from cpm@FreeBSD.org) Received: (from cpm@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u65FAKeE015693; Tue, 5 Jul 2016 15:10:20 GMT (envelope-from cpm@FreeBSD.org) Message-Id: <201607051510.u65FAKeE015693@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: cpm set sender to cpm@FreeBSD.org using -f From: "Carlos J. Puga Medina" Date: Tue, 5 Jul 2016 15:10:20 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418087 - head/net/py-uritemplate X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Jul 2016 15:10:22 -0000 Author: cpm Date: Tue Jul 5 15:10:20 2016 New Revision: 418087 URL: https://svnweb.freebsd.org/changeset/ports/418087 Log: - Register CONFLICTS between py-uritemplate and py-uritemplate.py Submitted by: me Reviewed by: amdmi3, junovitch, feld (mentors) Approved by: maintainer timeout (3 weeks) Differential Revision: D6730 Modified: head/net/py-uritemplate/Makefile Modified: head/net/py-uritemplate/Makefile ============================================================================== --- head/net/py-uritemplate/Makefile Tue Jul 5 15:02:56 2016 (r418086) +++ head/net/py-uritemplate/Makefile Tue Jul 5 15:10:20 2016 (r418087) @@ -13,6 +13,8 @@ COMMENT= Python implementation of URI Te LICENSE= APACHE20 +CONFLICTS_INSTALL= py*-uritemplate.py-[0-9]* + USE_PYTHON= autoplist distutils USES= python From owner-svn-ports-all@freebsd.org Tue Jul 5 15:15:53 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id C6649B21A14; Tue, 5 Jul 2016 15:15:53 +0000 (UTC) (envelope-from bapt@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 972B01B45; Tue, 5 Jul 2016 15:15:53 +0000 (UTC) (envelope-from bapt@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u65FFqi4019238; Tue, 5 Jul 2016 15:15:52 GMT (envelope-from bapt@FreeBSD.org) Received: (from bapt@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u65FFqgt019236; Tue, 5 Jul 2016 15:15:52 GMT (envelope-from bapt@FreeBSD.org) Message-Id: <201607051515.u65FFqgt019236@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: bapt set sender to bapt@FreeBSD.org using -f From: Baptiste Daroussin Date: Tue, 5 Jul 2016 15:15:52 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418088 - head/ports-mgmt/pkg X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Jul 2016 15:15:53 -0000 Author: bapt Date: Tue Jul 5 15:15:52 2016 New Revision: 418088 URL: https://svnweb.freebsd.org/changeset/ports/418088 Log: Update to 1.8.7 - update internal expat to 2.2.0 - fix external solver - fix build on freebsd pre 9.2 - fix warnings on armv6 - fix solver issue resulting in missing conflicts or reinstalling unneeded packages - add a mini summary at the end of the output Modified: head/ports-mgmt/pkg/Makefile head/ports-mgmt/pkg/distinfo Modified: head/ports-mgmt/pkg/Makefile ============================================================================== --- head/ports-mgmt/pkg/Makefile Tue Jul 5 15:10:20 2016 (r418087) +++ head/ports-mgmt/pkg/Makefile Tue Jul 5 15:15:52 2016 (r418088) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= pkg -DISTVERSION= 1.8.6 +DISTVERSION= 1.8.7 _PKG_VERSION= ${DISTVERSION} CATEGORIES= ports-mgmt MASTER_SITES= \ Modified: head/ports-mgmt/pkg/distinfo ============================================================================== --- head/ports-mgmt/pkg/distinfo Tue Jul 5 15:10:20 2016 (r418087) +++ head/ports-mgmt/pkg/distinfo Tue Jul 5 15:15:52 2016 (r418088) @@ -1,3 +1,3 @@ -TIMESTAMP = 1466854928 -SHA256 (pkg-1.8.6.tar.xz) = e00b66da2670d52c06d69d58362c281a18a02a3f956e3c313a009deb3a07c056 -SIZE (pkg-1.8.6.tar.xz) = 1917592 +TIMESTAMP = 1467731442 +SHA256 (pkg-1.8.7.tar.xz) = 7ce81f3af63e875bf4e05ab69a00bae788df79ae22beccbf1764dda76a7ccd4f +SIZE (pkg-1.8.7.tar.xz) = 1950148 From owner-svn-ports-all@freebsd.org Tue Jul 5 15:17:26 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 4C567B21A60; Tue, 5 Jul 2016 15:17:26 +0000 (UTC) (envelope-from bapt@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 1D7B41C6B; Tue, 5 Jul 2016 15:17:26 +0000 (UTC) (envelope-from bapt@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u65FHPsE019447; Tue, 5 Jul 2016 15:17:25 GMT (envelope-from bapt@FreeBSD.org) Received: (from bapt@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u65FHPAF019445; Tue, 5 Jul 2016 15:17:25 GMT (envelope-from bapt@FreeBSD.org) Message-Id: <201607051517.u65FHPAF019445@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: bapt set sender to bapt@FreeBSD.org using -f From: Baptiste Daroussin Date: Tue, 5 Jul 2016 15:17:25 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r418089 - branches/2016Q3/ports-mgmt/pkg X-SVN-Group: ports-branches MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Jul 2016 15:17:26 -0000 Author: bapt Date: Tue Jul 5 15:17:25 2016 New Revision: 418089 URL: https://svnweb.freebsd.org/changeset/ports/418089 Log: MFH: r418088 Update to 1.8.7 - update internal expat to 2.2.0 - fix external solver - fix build on freebsd pre 9.2 - fix warnings on armv6 - fix solver issue resulting in missing conflicts or reinstalling unneeded packages - add a mini summary at the end of the output Modified: branches/2016Q3/ports-mgmt/pkg/Makefile branches/2016Q3/ports-mgmt/pkg/distinfo Directory Properties: branches/2016Q3/ (props changed) Modified: branches/2016Q3/ports-mgmt/pkg/Makefile ============================================================================== --- branches/2016Q3/ports-mgmt/pkg/Makefile Tue Jul 5 15:15:52 2016 (r418088) +++ branches/2016Q3/ports-mgmt/pkg/Makefile Tue Jul 5 15:17:25 2016 (r418089) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= pkg -DISTVERSION= 1.8.6 +DISTVERSION= 1.8.7 _PKG_VERSION= ${DISTVERSION} CATEGORIES= ports-mgmt MASTER_SITES= \ Modified: branches/2016Q3/ports-mgmt/pkg/distinfo ============================================================================== --- branches/2016Q3/ports-mgmt/pkg/distinfo Tue Jul 5 15:15:52 2016 (r418088) +++ branches/2016Q3/ports-mgmt/pkg/distinfo Tue Jul 5 15:17:25 2016 (r418089) @@ -1,3 +1,3 @@ -TIMESTAMP = 1466854928 -SHA256 (pkg-1.8.6.tar.xz) = e00b66da2670d52c06d69d58362c281a18a02a3f956e3c313a009deb3a07c056 -SIZE (pkg-1.8.6.tar.xz) = 1917592 +TIMESTAMP = 1467731442 +SHA256 (pkg-1.8.7.tar.xz) = 7ce81f3af63e875bf4e05ab69a00bae788df79ae22beccbf1764dda76a7ccd4f +SIZE (pkg-1.8.7.tar.xz) = 1950148 From owner-svn-ports-all@freebsd.org Tue Jul 5 15:32:52 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id B12F5B21E2E; Tue, 5 Jul 2016 15:32:52 +0000 (UTC) (envelope-from ohauer@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 81A5415B6; Tue, 5 Jul 2016 15:32:52 +0000 (UTC) (envelope-from ohauer@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u65FWpmZ026786; Tue, 5 Jul 2016 15:32:51 GMT (envelope-from ohauer@FreeBSD.org) Received: (from ohauer@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u65FWpUk026784; Tue, 5 Jul 2016 15:32:51 GMT (envelope-from ohauer@FreeBSD.org) Message-Id: <201607051532.u65FWpUk026784@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: ohauer set sender to ohauer@FreeBSD.org using -f From: Olli Hauer Date: Tue, 5 Jul 2016 15:32:51 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418090 - in head/devel: apr1 apr2 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Jul 2016 15:32:52 -0000 Author: ohauer Date: Tue Jul 5 15:32:51 2016 New Revision: 418090 URL: https://svnweb.freebsd.org/changeset/ports/418090 Log: - replace USE_XXX with new USES=xxx notation Modified: head/devel/apr1/Makefile head/devel/apr2/Makefile Modified: head/devel/apr1/Makefile ============================================================================== --- head/devel/apr1/Makefile Tue Jul 5 15:17:25 2016 (r418089) +++ head/devel/apr1/Makefile Tue Jul 5 15:32:51 2016 (r418090) @@ -40,7 +40,7 @@ NSS_DESC= NSS crypto driver SSL_DESC= OpenSSL crypto driver # APR-Util Options -BDB_USE= BDB=5+ +BDB_USES= bdb:5+ FREETDS_LIB_DEPENDS= libsybdb.so:databases/freetds GDBM_LIB_DEPENDS= libgdbm.so:databases/gdbm LDAP_USE= OPENLDAP=yes @@ -48,7 +48,7 @@ MYSQL_USE= MYSQL=yes NSS_LIB_DEPENDS= libnss3.so:security/nss PGSQL_USES= pgsql SQLITE_USES= sqlite -SSL_USE= OPENSSL=yes +SSL_USES= ssl APR_WRKDIR= ${WRKDIR}/apr-${APR_VERSION} APU_WRKDIR= ${WRKDIR}/apr-util-${APU_VERSION} Modified: head/devel/apr2/Makefile ============================================================================== --- head/devel/apr2/Makefile Tue Jul 5 15:17:25 2016 (r418089) +++ head/devel/apr2/Makefile Tue Jul 5 15:32:51 2016 (r418090) @@ -49,7 +49,7 @@ WRKSRC= ${WRKDIR}/apr DEVRANDOM_CONFIGURE_WITH= devrandom # APR-Util Options -BDB_USE= BDB=48+ +BDB_USES= bdb:5+ GDBM_CONFIGURE_WITH= gdbm=${LOCALBASE} GDBM_LIB_DEPENDS= libgdbm.so:databases/gdbm IPV6_CONFIGURE_ENABLE= ipv6 @@ -65,7 +65,7 @@ SQLITE_CONFIGURE_WITH= sqlite3=${LOCALBA SQLITE_USES= sqlite # crypto -SSL_USE= OPENSSL=yes +SSL_USES= ssl SSL_CONFIGURE_WITH= openssl=${OPENSSLBASE} SSL_CPPFLAGS= -I${OPENSSLINC} SSL_LDFLAGS= -L${OPENSSLLIB} From owner-svn-ports-all@freebsd.org Tue Jul 5 15:35:40 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id A67DBB21E99; Tue, 5 Jul 2016 15:35:40 +0000 (UTC) (envelope-from ohauer@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 7147016D1; Tue, 5 Jul 2016 15:35:40 +0000 (UTC) (envelope-from ohauer@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u65FZdxl027101; Tue, 5 Jul 2016 15:35:39 GMT (envelope-from ohauer@FreeBSD.org) Received: (from ohauer@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u65FZdRs027094; Tue, 5 Jul 2016 15:35:39 GMT (envelope-from ohauer@FreeBSD.org) Message-Id: <201607051535.u65FZdRs027094@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: ohauer set sender to ohauer@FreeBSD.org using -f From: Olli Hauer Date: Tue, 5 Jul 2016 15:35:39 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418091 - in head/www/apache24: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Jul 2016 15:35:40 -0000 Author: ohauer Date: Tue Jul 5 15:35:38 2016 New Revision: 418091 URL: https://svnweb.freebsd.org/changeset/ports/418091 Log: o update to 2.4.23 o disable build time stamp in favor of reproducible build o remove obsolate scoreboard/status patch o s/USE_OPENSSL=yes/USES=ssl/ o add OPTION for two new modules: mod_proxy_hcheck (default=on) mod_http2_proxy (experimental => default=off) Changelog: http://www.apache.org/dist/httpd/CHANGES_2.4.23 MFH: 2016Q3 Added: head/www/apache24/files/extra-patch-server_buildmark.c (contents, props changed) Deleted: head/www/apache24/files/patch-server__scoreboard.c Modified: head/www/apache24/Makefile head/www/apache24/Makefile.options head/www/apache24/Makefile.options.desc head/www/apache24/distinfo head/www/apache24/pkg-plist Modified: head/www/apache24/Makefile ============================================================================== --- head/www/apache24/Makefile Tue Jul 5 15:32:51 2016 (r418090) +++ head/www/apache24/Makefile Tue Jul 5 15:35:38 2016 (r418091) @@ -1,8 +1,7 @@ # $FreeBSD$ PORTNAME= apache24 -PORTVERSION= 2.4.20 -PORTREVISION= 1 +PORTVERSION= 2.4.23 CATEGORIES= www ipv6 MASTER_SITES= APACHE_HTTPD DISTNAME= httpd-${PORTVERSION} @@ -50,6 +49,10 @@ APACHEDIR= ${MASTERDIR} WITH_HTTP_PORT?= 80 WITH_SSL_PORT?= 443 +.if !defined(WITH_DEBUG) +EXTRA_PATCHES+= ${FILESDIR}/extra-patch-server_buildmark.c +.endif + .include "${APACHEDIR}/Makefile.options" .include "${APACHEDIR}/Makefile.options.desc" @@ -58,6 +61,7 @@ AUTHN_DBD_IMPLIES= DBD HEARTBEAT_IMPLIES= WATCHDOG STATUS HEARTMONITOR_IMPLIES= WATCHDOG STATUS LBMETHOD_HEARTBEAT_IMPLIES= WATCHDOG STATUS HEARTMONITOR +PROXY_HCHECK_IMPLIES= WATCHDOG # MPM MPM_PREFORK_CONFIGURE_ON= --with-mpm=prefork @@ -76,6 +80,8 @@ HTTP2_LIB_DEPENDS= libnghttp2.so:www/ng LUAJIT_LIB_DEPENDS= libluajit-5.1.so:lang/luajit LUA_CONFIGURE_WITH= lua LUA_USES= lua +PROXY_HTTP2_CONFIGURE_ON= --with-nghttp2=${LOCALBASE} +PROXY_HTTP2_LIB_DEPENDS= libnghttp2.so:www/nghttp2 SOCACHE_DC_CONFIGURE_ON= --with-distcache=${LOCALBASE} SOCACHE_DC_LIB_DEPENDS= libdistcache.so:security/distcache @@ -86,7 +92,7 @@ SOCACHE_DC_LIB_DEPENDS= libdistcache.so SSL_CFLAGS= -I${OPENSSLINC} SSL_CONFIGURE_ON= --with-ssl=${OPENSSLBASE} SSL_LDFLAGS= -L${OPENSSLLIB} -SSL_USE= OPENSSL=yes +SSL_USES= ssl .include Modified: head/www/apache24/Makefile.options ============================================================================== --- head/www/apache24/Makefile.options Tue Jul 5 15:32:51 2016 (r418090) +++ head/www/apache24/Makefile.options Tue Jul 5 15:35:38 2016 (r418091) @@ -12,9 +12,10 @@ # mod_proxy_html and xml2enc depending on libxml2 PROXY_ENABLED_MODULES= \ PROXY_AJP PROXY_BALANCER PROXY_CONNECT PROXY_EXPRESS PROXY_FCGI \ - PROXY_FDPASS PROXY_FTP PROXY_HTTP PROXY_HTML PROXY_SCGI PROXY_WSTUNNEL + PROXY_FDPASS PROXY_FTP PROXY_HCHECK PROXY_HTML PROXY_HTTP PROXY_SCGI PROXY_WSTUNNEL -PROXY_DISABLED_MODULES= +PROXY_DISABLED_MODULES= \ + PROXY_HTTP2 # SESSION_CRYPTO need APR build with crypto (EVP support in APR) SESSION_ENABLED_MODULES= \ Modified: head/www/apache24/Makefile.options.desc ============================================================================== --- head/www/apache24/Makefile.options.desc Tue Jul 5 15:32:51 2016 (r418090) +++ head/www/apache24/Makefile.options.desc Tue Jul 5 15:35:38 2016 (r418091) @@ -136,8 +136,10 @@ PROXY_EXPRESS_DESC= Dynamic mass revers PROXY_FCGI_DESC= FastCGI support module for mod_proxy PROXY_FDPASS_DESC= fdpass external process support module for mod_proxy PROXY_FTP_DESC= FTP support module for mod_proxy +PROXY_HCHECK_DESC= Dynamic health check of Balancer members (workers) for mod_proxy PROXY_HTML_DESC= Fix HTML Links in a Reverse Proxy PROXY_HTTP_DESC= HTTP support module for mod_proxy +PROXY_HTTP2_DESC= Experimental http2 proxy module for h2 and h2c PROXY_SCGI_DESC= SCGI gateway module for mod_proxy PROXY_WSTUNNEL_DESC= Websockets Tunnel module for mod_proxy Modified: head/www/apache24/distinfo ============================================================================== --- head/www/apache24/distinfo Tue Jul 5 15:32:51 2016 (r418090) +++ head/www/apache24/distinfo Tue Jul 5 15:35:38 2016 (r418091) @@ -1,2 +1,3 @@ -SHA256 (apache24/httpd-2.4.20.tar.bz2) = 0e76a375ed3dbac636f50ac39de966ece443751fe4d62392f9a360a19d94d0da -SIZE (apache24/httpd-2.4.20.tar.bz2) = 6331344 +TIMESTAMP = 1467307196 +SHA256 (apache24/httpd-2.4.23.tar.bz2) = 0c1694b2aad7765896faf92843452ee2555b9591ae10d4f19b245f2adfe85e58 +SIZE (apache24/httpd-2.4.23.tar.bz2) = 6351875 Added: head/www/apache24/files/extra-patch-server_buildmark.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/apache24/files/extra-patch-server_buildmark.c Tue Jul 5 15:35:38 2016 (r418091) @@ -0,0 +1,15 @@ +# disable build time stamp in favor of reproducible build +# except building with DEBUG +============================================================== +--- server/buildmark.c.orig 2016-07-03 16:09:18 UTC ++++ server/buildmark.c +@@ -17,6 +17,9 @@ + #include "ap_config.h" + #include "httpd.h" + ++/* Allow Reproducible build, do not include build time information */ ++#undef __DATE__ ++ + #if defined(__DATE__) && defined(__TIME__) + static const char server_built[] = __DATE__ " " __TIME__; + #else Modified: head/www/apache24/pkg-plist ============================================================================== --- head/www/apache24/pkg-plist Tue Jul 5 15:32:51 2016 (r418090) +++ head/www/apache24/pkg-plist Tue Jul 5 15:35:38 2016 (r418091) @@ -175,7 +175,9 @@ libexec/apache24/mod_log_config.so %%MOD_PROXY_FDPASS%%libexec/apache24/mod_proxy_fdpass.so %%MOD_PROXY_FTP%%libexec/apache24/mod_proxy_ftp.so %%MOD_PROXY_HTML%%libexec/apache24/mod_proxy_html.so +%%MOD_PROXY_HCHECK%%libexec/apache24/mod_proxy_hcheck.so %%MOD_PROXY_HTTP%%libexec/apache24/mod_proxy_http.so +%%MOD_PROXY_HTTP2%%libexec/apache24/mod_proxy_http2.so %%MOD_PROXY_SCGI%%libexec/apache24/mod_proxy_scgi.so %%MOD_PROXY_WSTUNNEL%%libexec/apache24/mod_proxy_wstunnel.so %%MOD_RATELIMIT%%libexec/apache24/mod_ratelimit.so From owner-svn-ports-all@freebsd.org Tue Jul 5 16:01:47 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id ADB92B7180B; Tue, 5 Jul 2016 16:01:47 +0000 (UTC) (envelope-from ohauer@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 7EE6C1450; Tue, 5 Jul 2016 16:01:47 +0000 (UTC) (envelope-from ohauer@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u65G1kVZ037930; Tue, 5 Jul 2016 16:01:46 GMT (envelope-from ohauer@FreeBSD.org) Received: (from ohauer@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u65G1k59037929; Tue, 5 Jul 2016 16:01:46 GMT (envelope-from ohauer@FreeBSD.org) Message-Id: <201607051601.u65G1k59037929@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: ohauer set sender to ohauer@FreeBSD.org using -f From: Olli Hauer Date: Tue, 5 Jul 2016 16:01:46 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418092 - head/www/apache22 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Jul 2016 16:01:47 -0000 Author: ohauer Date: Tue Jul 5 16:01:46 2016 New Revision: 418092 URL: https://svnweb.freebsd.org/changeset/ports/418092 Log: - s/USE_OPENSSL=yes/USES=ssl/ Modified: head/www/apache22/Makefile Modified: head/www/apache22/Makefile ============================================================================== --- head/www/apache22/Makefile Tue Jul 5 15:35:38 2016 (r418091) +++ head/www/apache22/Makefile Tue Jul 5 16:01:46 2016 (r418092) @@ -59,7 +59,7 @@ LDAP_CONFIGURE_ON= --enable-ldap=shared SSL_CFLAGS= -I${OPENSSLINC} SSL_CONFIGURE_ON= --with-ssl=${OPENSSLBASE} SSL_LDFLAGS= -L${OPENSSLLIB} -SSL_USE= OPENSSL=yes +SSL_USES= ssl SUEXEC_RSRCLIMIT_EXTRA_PATCHES= ${FILESDIR}/extra-patch-suexec_rsrclimit SUEXEC_USERDIR_EXTRA_PATCHES= ${FILESDIR}/extra-patch-suexec_userdir From owner-svn-ports-all@freebsd.org Tue Jul 5 16:25:05 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 3788FB71D64; Tue, 5 Jul 2016 16:25:05 +0000 (UTC) (envelope-from ohauer@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 0F6B31EE9; Tue, 5 Jul 2016 16:25:04 +0000 (UTC) (envelope-from ohauer@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u65GP40s045936; Tue, 5 Jul 2016 16:25:04 GMT (envelope-from ohauer@FreeBSD.org) Received: (from ohauer@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u65GP36s045930; Tue, 5 Jul 2016 16:25:03 GMT (envelope-from ohauer@FreeBSD.org) Message-Id: <201607051625.u65GP36s045930@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: ohauer set sender to ohauer@FreeBSD.org using -f From: Olli Hauer Date: Tue, 5 Jul 2016 16:25:03 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r418093 - in branches/2016Q3/www/apache24: . files X-SVN-Group: ports-branches MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Jul 2016 16:25:05 -0000 Author: ohauer Date: Tue Jul 5 16:25:03 2016 New Revision: 418093 URL: https://svnweb.freebsd.org/changeset/ports/418093 Log: MFH: r418091 o update to 2.4.23 o disable build time stamp in favor of reproducible build o remove obsolate scoreboard/status patch o s/USE_OPENSSL=yes/USES=ssl/ o add OPTION for two new modules: mod_proxy_hcheck (default=on) mod_http2_proxy (experimental => default=off) Changelog: http://www.apache.org/dist/httpd/CHANGES_2.4.23 Approved by: ports-secteam (feld@) Added: branches/2016Q3/www/apache24/files/extra-patch-server_buildmark.c - copied unchanged from r418091, head/www/apache24/files/extra-patch-server_buildmark.c Deleted: branches/2016Q3/www/apache24/files/patch-server__scoreboard.c Modified: branches/2016Q3/www/apache24/Makefile branches/2016Q3/www/apache24/Makefile.options branches/2016Q3/www/apache24/Makefile.options.desc branches/2016Q3/www/apache24/distinfo branches/2016Q3/www/apache24/pkg-plist Directory Properties: branches/2016Q3/ (props changed) Modified: branches/2016Q3/www/apache24/Makefile ============================================================================== --- branches/2016Q3/www/apache24/Makefile Tue Jul 5 16:01:46 2016 (r418092) +++ branches/2016Q3/www/apache24/Makefile Tue Jul 5 16:25:03 2016 (r418093) @@ -1,8 +1,7 @@ # $FreeBSD$ PORTNAME= apache24 -PORTVERSION= 2.4.20 -PORTREVISION= 1 +PORTVERSION= 2.4.23 CATEGORIES= www ipv6 MASTER_SITES= APACHE_HTTPD DISTNAME= httpd-${PORTVERSION} @@ -50,6 +49,10 @@ APACHEDIR= ${MASTERDIR} WITH_HTTP_PORT?= 80 WITH_SSL_PORT?= 443 +.if !defined(WITH_DEBUG) +EXTRA_PATCHES+= ${FILESDIR}/extra-patch-server_buildmark.c +.endif + .include "${APACHEDIR}/Makefile.options" .include "${APACHEDIR}/Makefile.options.desc" @@ -58,6 +61,7 @@ AUTHN_DBD_IMPLIES= DBD HEARTBEAT_IMPLIES= WATCHDOG STATUS HEARTMONITOR_IMPLIES= WATCHDOG STATUS LBMETHOD_HEARTBEAT_IMPLIES= WATCHDOG STATUS HEARTMONITOR +PROXY_HCHECK_IMPLIES= WATCHDOG # MPM MPM_PREFORK_CONFIGURE_ON= --with-mpm=prefork @@ -76,6 +80,8 @@ HTTP2_LIB_DEPENDS= libnghttp2.so:www/ng LUAJIT_LIB_DEPENDS= libluajit-5.1.so:lang/luajit LUA_CONFIGURE_WITH= lua LUA_USES= lua +PROXY_HTTP2_CONFIGURE_ON= --with-nghttp2=${LOCALBASE} +PROXY_HTTP2_LIB_DEPENDS= libnghttp2.so:www/nghttp2 SOCACHE_DC_CONFIGURE_ON= --with-distcache=${LOCALBASE} SOCACHE_DC_LIB_DEPENDS= libdistcache.so:security/distcache @@ -86,7 +92,7 @@ SOCACHE_DC_LIB_DEPENDS= libdistcache.so SSL_CFLAGS= -I${OPENSSLINC} SSL_CONFIGURE_ON= --with-ssl=${OPENSSLBASE} SSL_LDFLAGS= -L${OPENSSLLIB} -SSL_USE= OPENSSL=yes +SSL_USES= ssl .include Modified: branches/2016Q3/www/apache24/Makefile.options ============================================================================== --- branches/2016Q3/www/apache24/Makefile.options Tue Jul 5 16:01:46 2016 (r418092) +++ branches/2016Q3/www/apache24/Makefile.options Tue Jul 5 16:25:03 2016 (r418093) @@ -12,9 +12,10 @@ # mod_proxy_html and xml2enc depending on libxml2 PROXY_ENABLED_MODULES= \ PROXY_AJP PROXY_BALANCER PROXY_CONNECT PROXY_EXPRESS PROXY_FCGI \ - PROXY_FDPASS PROXY_FTP PROXY_HTTP PROXY_HTML PROXY_SCGI PROXY_WSTUNNEL + PROXY_FDPASS PROXY_FTP PROXY_HCHECK PROXY_HTML PROXY_HTTP PROXY_SCGI PROXY_WSTUNNEL -PROXY_DISABLED_MODULES= +PROXY_DISABLED_MODULES= \ + PROXY_HTTP2 # SESSION_CRYPTO need APR build with crypto (EVP support in APR) SESSION_ENABLED_MODULES= \ Modified: branches/2016Q3/www/apache24/Makefile.options.desc ============================================================================== --- branches/2016Q3/www/apache24/Makefile.options.desc Tue Jul 5 16:01:46 2016 (r418092) +++ branches/2016Q3/www/apache24/Makefile.options.desc Tue Jul 5 16:25:03 2016 (r418093) @@ -136,8 +136,10 @@ PROXY_EXPRESS_DESC= Dynamic mass revers PROXY_FCGI_DESC= FastCGI support module for mod_proxy PROXY_FDPASS_DESC= fdpass external process support module for mod_proxy PROXY_FTP_DESC= FTP support module for mod_proxy +PROXY_HCHECK_DESC= Dynamic health check of Balancer members (workers) for mod_proxy PROXY_HTML_DESC= Fix HTML Links in a Reverse Proxy PROXY_HTTP_DESC= HTTP support module for mod_proxy +PROXY_HTTP2_DESC= Experimental http2 proxy module for h2 and h2c PROXY_SCGI_DESC= SCGI gateway module for mod_proxy PROXY_WSTUNNEL_DESC= Websockets Tunnel module for mod_proxy Modified: branches/2016Q3/www/apache24/distinfo ============================================================================== --- branches/2016Q3/www/apache24/distinfo Tue Jul 5 16:01:46 2016 (r418092) +++ branches/2016Q3/www/apache24/distinfo Tue Jul 5 16:25:03 2016 (r418093) @@ -1,2 +1,3 @@ -SHA256 (apache24/httpd-2.4.20.tar.bz2) = 0e76a375ed3dbac636f50ac39de966ece443751fe4d62392f9a360a19d94d0da -SIZE (apache24/httpd-2.4.20.tar.bz2) = 6331344 +TIMESTAMP = 1467307196 +SHA256 (apache24/httpd-2.4.23.tar.bz2) = 0c1694b2aad7765896faf92843452ee2555b9591ae10d4f19b245f2adfe85e58 +SIZE (apache24/httpd-2.4.23.tar.bz2) = 6351875 Copied: branches/2016Q3/www/apache24/files/extra-patch-server_buildmark.c (from r418091, head/www/apache24/files/extra-patch-server_buildmark.c) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2016Q3/www/apache24/files/extra-patch-server_buildmark.c Tue Jul 5 16:25:03 2016 (r418093, copy of r418091, head/www/apache24/files/extra-patch-server_buildmark.c) @@ -0,0 +1,15 @@ +# disable build time stamp in favor of reproducible build +# except building with DEBUG +============================================================== +--- server/buildmark.c.orig 2016-07-03 16:09:18 UTC ++++ server/buildmark.c +@@ -17,6 +17,9 @@ + #include "ap_config.h" + #include "httpd.h" + ++/* Allow Reproducible build, do not include build time information */ ++#undef __DATE__ ++ + #if defined(__DATE__) && defined(__TIME__) + static const char server_built[] = __DATE__ " " __TIME__; + #else Modified: branches/2016Q3/www/apache24/pkg-plist ============================================================================== --- branches/2016Q3/www/apache24/pkg-plist Tue Jul 5 16:01:46 2016 (r418092) +++ branches/2016Q3/www/apache24/pkg-plist Tue Jul 5 16:25:03 2016 (r418093) @@ -175,7 +175,9 @@ libexec/apache24/mod_log_config.so %%MOD_PROXY_FDPASS%%libexec/apache24/mod_proxy_fdpass.so %%MOD_PROXY_FTP%%libexec/apache24/mod_proxy_ftp.so %%MOD_PROXY_HTML%%libexec/apache24/mod_proxy_html.so +%%MOD_PROXY_HCHECK%%libexec/apache24/mod_proxy_hcheck.so %%MOD_PROXY_HTTP%%libexec/apache24/mod_proxy_http.so +%%MOD_PROXY_HTTP2%%libexec/apache24/mod_proxy_http2.so %%MOD_PROXY_SCGI%%libexec/apache24/mod_proxy_scgi.so %%MOD_PROXY_WSTUNNEL%%libexec/apache24/mod_proxy_wstunnel.so %%MOD_RATELIMIT%%libexec/apache24/mod_ratelimit.so From owner-svn-ports-all@freebsd.org Tue Jul 5 16:38:55 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 9B524B72085; Tue, 5 Jul 2016 16:38:55 +0000 (UTC) (envelope-from feld@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 51E7C1721; Tue, 5 Jul 2016 16:38:55 +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 u65GcsU6049816; Tue, 5 Jul 2016 16:38:54 GMT (envelope-from feld@FreeBSD.org) Received: (from feld@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u65GcsbX049812; Tue, 5 Jul 2016 16:38:54 GMT (envelope-from feld@FreeBSD.org) Message-Id: <201607051638.u65GcsbX049812@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: feld set sender to feld@FreeBSD.org using -f From: Mark Felder Date: Tue, 5 Jul 2016 16:38:54 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418094 - in head/www: . redmine-ldap_sync X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Jul 2016 16:38:55 -0000 Author: feld Date: Tue Jul 5 16:38:53 2016 New Revision: 418094 URL: https://svnweb.freebsd.org/changeset/ports/418094 Log: This redmine plugin extends the ldap authentication with user/group synchronization. WWW: https://github.com/thorin/redmine_ldap_sync Added: head/www/redmine-ldap_sync/ head/www/redmine-ldap_sync/Makefile (contents, props changed) head/www/redmine-ldap_sync/distinfo (contents, props changed) head/www/redmine-ldap_sync/pkg-descr (contents, props changed) Modified: head/www/Makefile Modified: head/www/Makefile ============================================================================== --- head/www/Makefile Tue Jul 5 16:25:03 2016 (r418093) +++ head/www/Makefile Tue Jul 5 16:38:53 2016 (r418094) @@ -1814,6 +1814,7 @@ SUBDIR += redmine-http-auth SUBDIR += redmine-issue_templates SUBDIR += redmine-knowledgebase + SUBDIR += redmine-ldap_sync SUBDIR += redmine-qa_contact SUBDIR += redmine-redcarpet_formatter SUBDIR += redmine-sidebar_hide Added: head/www/redmine-ldap_sync/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/redmine-ldap_sync/Makefile Tue Jul 5 16:38:53 2016 (r418094) @@ -0,0 +1,27 @@ +# Created by: Mark Felder +# $FreeBSD$ + +PORTNAME= ldap_sync +PORTVERSION= 2.0.7 +CATEGORIES= www +PKGNAMEPREFIX= redmine- +DISTNAME= ${BB_COMMIT} +DIST_SUBDIR= ${PORTNAME}-${PORTVERSION} + +MAINTAINER= feld@FreeBSD.org +COMMENT= LDAP user/group synchronization for Redmine + +LICENSE= GPLv3+ + +NO_ARCH= yes + +USES= shebangfix +SHEBANG_FILES= test/fixtures/ldap/names.rb + +USE_GITHUB= yes +GH_ACCOUNT= thorin +GH_PROJECT= redmine_${PORTNAME} + +REDMINE_PLUGIN_NAME= redmine_${PORTNAME} + +.include "${.CURDIR}/../../www/redmine/bsd.redmine.mk" Added: head/www/redmine-ldap_sync/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/redmine-ldap_sync/distinfo Tue Jul 5 16:38:53 2016 (r418094) @@ -0,0 +1,3 @@ +TIMESTAMP = 1467732269 +SHA256 (ldap_sync-2.0.7/thorin-redmine_ldap_sync-2.0.7_GH0.tar.gz) = 8e495ce9ccb1734f7e0eb46183b3ae07a91c7bac3e90a7ef48f74f00313ad9ab +SIZE (ldap_sync-2.0.7/thorin-redmine_ldap_sync-2.0.7_GH0.tar.gz) = 76848 Added: head/www/redmine-ldap_sync/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/redmine-ldap_sync/pkg-descr Tue Jul 5 16:38:53 2016 (r418094) @@ -0,0 +1,4 @@ +This redmine plugin extends the ldap authentication with user/group +synchronization. + +WWW: https://github.com/thorin/redmine_ldap_sync From owner-svn-ports-all@freebsd.org Tue Jul 5 17:06:54 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 78B22B72819; Tue, 5 Jul 2016 17:06:54 +0000 (UTC) (envelope-from adamw@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 3A2B1155E; Tue, 5 Jul 2016 17:06:54 +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 u65H6ruF060636; Tue, 5 Jul 2016 17:06:53 GMT (envelope-from adamw@FreeBSD.org) Received: (from adamw@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u65H6qj2060630; Tue, 5 Jul 2016 17:06:52 GMT (envelope-from adamw@FreeBSD.org) Message-Id: <201607051706.u65H6qj2060630@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: adamw set sender to adamw@FreeBSD.org using -f From: Adam Weinberger Date: Tue, 5 Jul 2016 17:06:52 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418095 - in head/mail: dovecot2 dovecot2-antispam-plugin dovecot2-pigeonhole dovecot2/files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Jul 2016 17:06:54 -0000 Author: adamw Date: Tue Jul 5 17:06:52 2016 New Revision: 418095 URL: https://svnweb.freebsd.org/changeset/ports/418095 Log: Update dovecot2 to 2.2.25 again, this time with a patch from upstream to fix the kqueue crash. Bump PORTREVISION on pigeonhole and antispam-plugin again. Extra thanks to Larry Rosenman for being on top of the fix. Obtained from: https://github.com/dovecot/core/commit/ffd8dc932516bc55bf01d91355540daab365e5e9 Added: head/mail/dovecot2/files/patch-kqueue (contents, props changed) Modified: head/mail/dovecot2-antispam-plugin/Makefile head/mail/dovecot2-pigeonhole/Makefile head/mail/dovecot2/Makefile head/mail/dovecot2/distinfo head/mail/dovecot2/pkg-plist Modified: head/mail/dovecot2-antispam-plugin/Makefile ============================================================================== --- head/mail/dovecot2-antispam-plugin/Makefile Tue Jul 5 16:38:53 2016 (r418094) +++ head/mail/dovecot2-antispam-plugin/Makefile Tue Jul 5 17:06:52 2016 (r418095) @@ -3,7 +3,7 @@ PORTNAME= dovecot2-antispam-plugin PORTVERSION= 20130429 -PORTREVISION= 19 +PORTREVISION= 20 CATEGORIES= mail MASTER_SITES= http://olgeni.olgeni.com/~olgeni/distfiles/ \ LOCAL/olgeni Modified: head/mail/dovecot2-pigeonhole/Makefile ============================================================================== --- head/mail/dovecot2-pigeonhole/Makefile Tue Jul 5 16:38:53 2016 (r418094) +++ head/mail/dovecot2-pigeonhole/Makefile Tue Jul 5 17:06:52 2016 (r418095) @@ -3,7 +3,7 @@ PORTNAME= dovecot-pigeonhole PORTVERSION= 0.4.14 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= mail MASTER_SITES= http://pigeonhole.dovecot.org/releases/${DOVECOTVERSION}/ DISTNAME= ${PORTNAME:C/-/-${DOVECOTVERSION}-/}-${PORTVERSION} Modified: head/mail/dovecot2/Makefile ============================================================================== --- head/mail/dovecot2/Makefile Tue Jul 5 16:38:53 2016 (r418094) +++ head/mail/dovecot2/Makefile Tue Jul 5 17:06:52 2016 (r418095) @@ -13,7 +13,7 @@ ###################################################################### PORTNAME= dovecot -PORTVERSION= 2.2.24 +PORTVERSION= 2.2.25 CATEGORIES= mail ipv6 MASTER_SITES= http://www.dovecot.org/releases/${PORTVERSION:R}/ PKGNAMESUFFIX= 2 @@ -26,9 +26,8 @@ LICENSE_COMB= dual CONFLICTS= dovecot-1.[0-9]* -USES= cpe iconv libtool +USES= cpe iconv libtool ssl USE_RC_SUBR= dovecot -USE_OPENSSL= yes GNU_CONFIGURE= yes CONFIGURE_ARGS= --localstatedir=/var \ Modified: head/mail/dovecot2/distinfo ============================================================================== --- head/mail/dovecot2/distinfo Tue Jul 5 16:38:53 2016 (r418094) +++ head/mail/dovecot2/distinfo Tue Jul 5 17:06:52 2016 (r418095) @@ -1,2 +1,3 @@ -SHA256 (dovecot-2.2.24.tar.gz) = 71c86891ea8deb5703d3dbbc3ea31ce2cbf7638f1aa395d9e8794d3ff7aebeb7 -SIZE (dovecot-2.2.24.tar.gz) = 5345872 +TIMESTAMP = 1467385503 +SHA256 (dovecot-2.2.25.tar.gz) = d8d9f32c846397f7c22749a84c5cf6f59c55ff7ded3dc9f07749a255182f9667 +SIZE (dovecot-2.2.25.tar.gz) = 5576235 Added: head/mail/dovecot2/files/patch-kqueue ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/mail/dovecot2/files/patch-kqueue Tue Jul 5 17:06:52 2016 (r418095) @@ -0,0 +1,64 @@ +From ffd8dc932516bc55bf01d91355540daab365e5e9 Mon Sep 17 00:00:00 2001 +From: Timo Sirainen +Date: Mon, 4 Jul 2016 15:05:00 +0300 +Subject: [PATCH] master: Add master socket's io listener later. + +Most importantly this fixes startup failure with kqueue: + +Panic: kevent(EV_ADD, READ, 56) failed: Bad file descriptor + +kqueue doesn't survive a fork(), so this change delays its creation until +after fork(). +--- + src/master/service-listen.c | 5 ----- + src/master/service-monitor.c | 7 +++++++ + 2 files changed, 7 insertions(+), 5 deletions(-) + +diff --git a/src/master/service-listen.c b/src/master/service-listen.c +index 1d3e399..96b52e8 100644 +--- src/master/service-listen.c ++++ src/master/service-listen.c +@@ -6,7 +6,6 @@ + #include "fd-close-on-exec.h" + #include "ioloop.h" + #include "net.h" +-#include "master-client.h" + #ifdef HAVE_SYSTEMD + #include "sd-daemon.h" + #endif +@@ -357,10 +356,6 @@ static int services_listen_master(struct service_list *service_list) + + if (service_list->master_fd == -1) + return 0; +- +- service_list->io_master = +- io_add(service_list->master_fd, IO_READ, +- master_client_connected, service_list); + return 1; + } + +diff --git a/src/master/service-monitor.c b/src/master/service-monitor.c +index 44cdb26..408edf4 100644 +--- src/master/service-monitor.c ++++ src/master/service-monitor.c +@@ -7,6 +7,7 @@ + #include "hash.h" + #include "str.h" + #include "safe-mkstemp.h" ++#include "master-client.h" + #include "service.h" + #include "service-process.h" + #include "service-process-notify.h" +@@ -452,6 +453,12 @@ void services_monitor_start(struct service_list *service_list) + return; + service_anvil_monitor_start(service_list); + ++ if (service_list->io_master == NULL) { ++ service_list->io_master = ++ io_add(service_list->master_fd, IO_READ, ++ master_client_connected, service_list); ++ } ++ + array_foreach(&service_list->services, services) { + struct service *service = *services; + Modified: head/mail/dovecot2/pkg-plist ============================================================================== --- head/mail/dovecot2/pkg-plist Tue Jul 5 16:38:53 2016 (r418094) +++ head/mail/dovecot2/pkg-plist Tue Jul 5 17:06:52 2016 (r418095) @@ -56,6 +56,7 @@ include/dovecot/auth-fields.h include/dovecot/auth-master-connection.h include/dovecot/auth-master.h include/dovecot/auth-penalty.h +include/dovecot/auth-policy.h include/dovecot/auth-postfix-connection.h include/dovecot/auth-request-handler.h include/dovecot/auth-request-stats.h @@ -89,6 +90,9 @@ include/dovecot/crc32.h include/dovecot/cydir-storage.h include/dovecot/cydir-sync.h include/dovecot/data-stack.h +include/dovecot/dcrypt-iostream-private.h +include/dovecot/dcrypt-private.h +include/dovecot/dcrypt.h include/dovecot/db-checkpassword.h include/dovecot/db-dict.h include/dovecot/db-ldap.h @@ -243,6 +247,7 @@ include/dovecot/imem.h include/dovecot/index-attachment.h include/dovecot/index-mail.h include/dovecot/index-mailbox-size.h +include/dovecot/index-pop3-uidl.h include/dovecot/index-rebuild.h include/dovecot/index-search-private.h include/dovecot/index-search-result.h @@ -277,6 +282,7 @@ include/dovecot/istream-callback.h include/dovecot/istream-chain.h include/dovecot/istream-concat.h include/dovecot/istream-crlf.h +include/dovecot/istream-decrypt.h include/dovecot/istream-dot.h include/dovecot/istream-failure-at.h include/dovecot/istream-file-private.h @@ -435,6 +441,7 @@ include/dovecot/notify-plugin.h include/dovecot/numpack.h include/dovecot/ostream-cmp.h include/dovecot/ostream-dot.h +include/dovecot/ostream-encrypt.h include/dovecot/ostream-escaped.h include/dovecot/ostream-failure-at.h include/dovecot/ostream-hash.h @@ -449,6 +456,7 @@ include/dovecot/passdb-cache.h include/dovecot/passdb-template.h include/dovecot/passdb.h include/dovecot/password-scheme.h +include/dovecot/pkcs5.h include/dovecot/pop3-capability.h include/dovecot/pop3-client.h include/dovecot/pop3-commands.h @@ -610,6 +618,9 @@ lib/dovecot/lib90_stats_plugin.a lib/dovecot/lib90_stats_plugin.so lib/dovecot/lib95_imap_stats_plugin.a lib/dovecot/lib95_imap_stats_plugin.so +lib/dovecot/lib99_welcome_plugin.a +lib/dovecot/lib99_welcome_plugin.so +lib/dovecot/libdcrypt_openssl.so lib/dovecot/libdovecot-compression.a lib/dovecot/libdovecot-compression.so lib/dovecot/libdovecot-compression.so.0 @@ -699,6 +710,7 @@ man/man1/doveadm-expunge.1.gz man/man1/doveadm-fetch.1.gz man/man1/doveadm-flags.1.gz man/man1/doveadm-force-resync.1.gz +man/man1/doveadm-fs.1.gz man/man1/doveadm-fts.1.gz man/man1/doveadm-help.1.gz man/man1/doveadm-import.1.gz @@ -730,10 +742,18 @@ man/man1/dsync.1.gz man/man7/doveadm-search-query.7.gz sbin/dovecot share/aclocal/dovecot.m4 +%%DATADIR%%/stopwords/stopwords_da.txt +%%DATADIR%%/stopwords/stopwords_de.txt %%DATADIR%%/stopwords/stopwords_en.txt +%%DATADIR%%/stopwords/stopwords_es.txt %%DATADIR%%/stopwords/stopwords_fi.txt %%DATADIR%%/stopwords/stopwords_fr.txt +%%DATADIR%%/stopwords/stopwords_it.txt +%%DATADIR%%/stopwords/stopwords_nl.txt %%DATADIR%%/stopwords/stopwords_no.txt +%%DATADIR%%/stopwords/stopwords_pt.txt +%%DATADIR%%/stopwords/stopwords_ro.txt +%%DATADIR%%/stopwords/stopwords_ru.txt %%DATADIR%%/stopwords/stopwords_sv.txt %%LIBWRAP%%libexec/dovecot/tcpwrap %%LDAP%%include/dovecot/ldap-client.h From owner-svn-ports-all@freebsd.org Tue Jul 5 17:19:55 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 2C435B72D47; Tue, 5 Jul 2016 17:19:55 +0000 (UTC) (envelope-from feld@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id F22E51E83; Tue, 5 Jul 2016 17:19: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 u65HJs4U064380; Tue, 5 Jul 2016 17:19:54 GMT (envelope-from feld@FreeBSD.org) Received: (from feld@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u65HJsBU064379; Tue, 5 Jul 2016 17:19:54 GMT (envelope-from feld@FreeBSD.org) Message-Id: <201607051719.u65HJsBU064379@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: feld set sender to feld@FreeBSD.org using -f From: Mark Felder Date: Tue, 5 Jul 2016 17:19:54 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418096 - head/www/redmine-ldap_sync X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Jul 2016 17:19:55 -0000 Author: feld Date: Tue Jul 5 17:19:53 2016 New Revision: 418096 URL: https://svnweb.freebsd.org/changeset/ports/418096 Log: www/redmine-ldap_sync: Remove DISTNAME Leftover from a port this was cloned from. Modified: head/www/redmine-ldap_sync/Makefile Modified: head/www/redmine-ldap_sync/Makefile ============================================================================== --- head/www/redmine-ldap_sync/Makefile Tue Jul 5 17:06:52 2016 (r418095) +++ head/www/redmine-ldap_sync/Makefile Tue Jul 5 17:19:53 2016 (r418096) @@ -5,7 +5,6 @@ PORTNAME= ldap_sync PORTVERSION= 2.0.7 CATEGORIES= www PKGNAMEPREFIX= redmine- -DISTNAME= ${BB_COMMIT} DIST_SUBDIR= ${PORTNAME}-${PORTVERSION} MAINTAINER= feld@FreeBSD.org From owner-svn-ports-all@freebsd.org Tue Jul 5 17:57:44 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 02F5BB73721; Tue, 5 Jul 2016 17:57:44 +0000 (UTC) (envelope-from bapt@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id C7BED1445; Tue, 5 Jul 2016 17:57:43 +0000 (UTC) (envelope-from bapt@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u65Hvh7V079121; Tue, 5 Jul 2016 17:57:43 GMT (envelope-from bapt@FreeBSD.org) Received: (from bapt@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u65Hvhj7079120; Tue, 5 Jul 2016 17:57:43 GMT (envelope-from bapt@FreeBSD.org) Message-Id: <201607051757.u65Hvhj7079120@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: bapt set sender to bapt@FreeBSD.org using -f From: Baptiste Daroussin Date: Tue, 5 Jul 2016 17:57:42 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418097 - head/Mk X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Jul 2016 17:57:44 -0000 Author: bapt Date: Tue Jul 5 17:57:42 2016 New Revision: 418097 URL: https://svnweb.freebsd.org/changeset/ports/418097 Log: Do not try to register '/' as a directory when PREFIX is set to '/' Modified: head/Mk/bsd.port.mk Modified: head/Mk/bsd.port.mk ============================================================================== --- head/Mk/bsd.port.mk Tue Jul 5 17:19:53 2016 (r418096) +++ head/Mk/bsd.port.mk Tue Jul 5 17:57:42 2016 (r418097) @@ -4536,7 +4536,7 @@ add-plist-info: # deinstall-time .if !target(add-plist-post) .if (${PREFIX} != ${LOCALBASE} && ${PREFIX} != ${LINUXBASE} && \ - ${PREFIX} != "/usr" && !defined(NO_PREFIX_RMDIR)) + ${PREFIX} != "/usr" && ${PREFIX} != "/" && !defined(NO_PREFIX_RMDIR)) add-plist-post: @${ECHO_CMD} "@dir ${PREFIX}" >> ${TMPPLIST} .endif From owner-svn-ports-all@freebsd.org Tue Jul 5 17:58:39 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 52915B7379F; Tue, 5 Jul 2016 17:58:39 +0000 (UTC) (envelope-from cpm@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 0937C156E; Tue, 5 Jul 2016 17:58:38 +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 u65HwcNk079260; Tue, 5 Jul 2016 17:58:38 GMT (envelope-from cpm@FreeBSD.org) Received: (from cpm@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u65Hwctr079258; Tue, 5 Jul 2016 17:58:38 GMT (envelope-from cpm@FreeBSD.org) Message-Id: <201607051758.u65Hwctr079258@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: cpm set sender to cpm@FreeBSD.org using -f From: "Carlos J. Puga Medina" Date: Tue, 5 Jul 2016 17:58:38 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418098 - head/misc/py-socli X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Jul 2016 17:58:39 -0000 Author: cpm Date: Tue Jul 5 17:58:37 2016 New Revision: 418098 URL: https://svnweb.freebsd.org/changeset/ports/418098 Log: - Update to 1.8 release - Change USES=python:3 to USES=python because python2 support has been added - Remove ignore on package buiders Reviewed by: feld (mentor) Approved by: feld (mentor) Differential Revision: D7099 Modified: head/misc/py-socli/Makefile head/misc/py-socli/distinfo Modified: head/misc/py-socli/Makefile ============================================================================== --- head/misc/py-socli/Makefile Tue Jul 5 17:57:42 2016 (r418097) +++ head/misc/py-socli/Makefile Tue Jul 5 17:58:37 2016 (r418098) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= socli -PORTVERSION= 1.7 -PORTREVISION= 1 +PORTVERSION= 1.8 CATEGORIES= misc python PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -16,7 +15,7 @@ LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}beautifulsoup>=0:www/py-beautifulsoup \ ${PYTHON_PKGNAMEPREFIX}requests>=0:www/py-requests -USES= python:3 +USES= python USE_GITHUB= yes USE_PYTHON= autoplist distutils @@ -24,10 +23,4 @@ GH_ACCOUNT= gautamkrishnar NO_ARCH= yes -.include - -.if defined(PACKAGE_BUILDING) && ${PYTHON_VER} != ${PYTHON_DEFAULT} -IGNORE= you have python ${PYTHON_DEFAULT} set as the default, and this needs ${PYTHON_VER} -.endif - -.include +.include Modified: head/misc/py-socli/distinfo ============================================================================== --- head/misc/py-socli/distinfo Tue Jul 5 17:57:42 2016 (r418097) +++ head/misc/py-socli/distinfo Tue Jul 5 17:58:37 2016 (r418098) @@ -1,3 +1,3 @@ -TIMESTAMP = 1466859233 -SHA256 (gautamkrishnar-socli-1.7_GH0.tar.gz) = ce927f38a72468ed1f5a34b4d72ee1911475fa267cce82a2baeebd92f97c563f -SIZE (gautamkrishnar-socli-1.7_GH0.tar.gz) = 7151 +TIMESTAMP = 1467672057 +SHA256 (gautamkrishnar-socli-1.8_GH0.tar.gz) = f3e462a0b5a9ce2ccf945be3a0500e37dc8c8bad293bfc12841d097a637c62d2 +SIZE (gautamkrishnar-socli-1.8_GH0.tar.gz) = 7406 From owner-svn-ports-all@freebsd.org Tue Jul 5 17:59:19 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id E3604B7381D; Tue, 5 Jul 2016 17:59:19 +0000 (UTC) (envelope-from ohauer@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 99D0617BE; Tue, 5 Jul 2016 17:59:19 +0000 (UTC) (envelope-from ohauer@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u65HxIUF079423; Tue, 5 Jul 2016 17:59:18 GMT (envelope-from ohauer@FreeBSD.org) Received: (from ohauer@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u65HxIP6079422; Tue, 5 Jul 2016 17:59:18 GMT (envelope-from ohauer@FreeBSD.org) Message-Id: <201607051759.u65HxIP6079422@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: ohauer set sender to ohauer@FreeBSD.org using -f From: Olli Hauer Date: Tue, 5 Jul 2016 17:59:18 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418099 - head/security/vuxml X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Jul 2016 17:59:20 -0000 Author: ohauer Date: Tue Jul 5 17:59:18 2016 New Revision: 418099 URL: https://svnweb.freebsd.org/changeset/ports/418099 Log: - document apache24 H2/X509 sec. issue. The sec. issue is only present if the port was built with non default settings (experimental H2 feature) and used in combination with X509 client auth! Modified: head/security/vuxml/vuln.xml Modified: head/security/vuxml/vuln.xml ============================================================================== --- head/security/vuxml/vuln.xml Tue Jul 5 17:58:37 2016 (r418098) +++ head/security/vuxml/vuln.xml Tue Jul 5 17:59:18 2016 (r418099) @@ -58,6 +58,36 @@ Notes: * Do not forget port variants (linux-f10-libxml2, libxml2, etc.) --> + + apache24 -- X509 Client certificate based authentication can be bypassed when HTTP/2 is used + + + apache24 + 2.4.182.4.23 + + + + +

Apache Software Foundation reports:

+
+

The Apache HTTPD web server (from 2.4.18-2.4.20) did not validate a X509 + client certificate correctly when experimental module for the HTTP/2 + protocol is used to access a resource.

+

The net result is that a resource that should require a valid client + certificate in order to get access can be accessed without that credential.

+
+ +
+ + CVE-2016-4979 + http://mail-archives.apache.org/mod_mbox/httpd-announce/201607.mbox/CVE-2016-4979-68283 + + + 2016-07-01 + 2016-07-05 + +
+ xen-tools -- Unrestricted qemu logging From owner-svn-ports-all@freebsd.org Tue Jul 5 18:24:51 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 60FFBB20152; Tue, 5 Jul 2016 18:24:51 +0000 (UTC) (envelope-from madpilot@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 38B471968; Tue, 5 Jul 2016 18:24:51 +0000 (UTC) (envelope-from madpilot@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u65IOohu090777; Tue, 5 Jul 2016 18:24:50 GMT (envelope-from madpilot@FreeBSD.org) Received: (from madpilot@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u65IOoAg090773; Tue, 5 Jul 2016 18:24:50 GMT (envelope-from madpilot@FreeBSD.org) Message-Id: <201607051824.u65IOoAg090773@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: madpilot set sender to madpilot@FreeBSD.org using -f From: Guido Falsi Date: Tue, 5 Jul 2016 18:24:50 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r418100 - in branches/2016Q3/net: asterisk asterisk11 asterisk13 X-SVN-Group: ports-branches MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Jul 2016 18:24:51 -0000 Author: madpilot Date: Tue Jul 5 18:24:49 2016 New Revision: 418100 URL: https://svnweb.freebsd.org/changeset/ports/418100 Log: MFH: r418081 - Convert to USES=ssl, reflow USES line - Add missing USES libedit (asterisk13 only) - Fix DAHDI dependencies - Fix permissions for /var/spool/asterisk/voicemail files [1] Reported by: Tony Power [1] (via email) Approved by: ports-secteam (junovitch) Modified: branches/2016Q3/net/asterisk/Makefile branches/2016Q3/net/asterisk11/Makefile branches/2016Q3/net/asterisk13/Makefile Directory Properties: branches/2016Q3/ (props changed) Modified: branches/2016Q3/net/asterisk/Makefile ============================================================================== --- branches/2016Q3/net/asterisk/Makefile Tue Jul 5 17:59:18 2016 (r418099) +++ branches/2016Q3/net/asterisk/Makefile Tue Jul 5 18:24:49 2016 (r418100) @@ -3,7 +3,7 @@ PORTNAME= asterisk PORTVERSION= 1.8.32.3 -PORTREVISION= 7 +PORTREVISION= 8 CATEGORIES= net MASTER_SITES= http://downloads.asterisk.org/pub/telephony/%SUBDIR%/:DEFAULT,g729 MASTER_SITE_SUBDIR= asterisk/ \ @@ -25,11 +25,10 @@ EXPIRATION_DATE= 2016-04-30 ONLY_FOR_ARCHS= i386 amd64 powerpc sparc64 -USES= alias bison cpe gmake shebangfix +USES= alias bison cpe gmake shebangfix ssl USE_CSTD= gnu89 USE_GCC= yes USE_GNOME= libxml2 -USE_OPENSSL= yes USE_RC_SUBR= asterisk GNU_CONFIGURE= yes @@ -112,10 +111,9 @@ CURL_LIB_DEPENDS= libcurl.so:ftp/curl DAHDI_CONFIGURE_ON= --with-dahdi --with-openr2 DAHDI_CONFIGURE_OFF= --without-dahdi --without-openr2 -DAHDI_BUILD_DEPENDS= libpri>=1.4.10:misc/libpri \ - ${LOCALBASE}/include/dahdi/user.h:misc/dahdi DAHDI_LIB_DEPENDS= libpri.so:misc/libpri \ - libopenr2.so:misc/openr2 + libopenr2.so:misc/openr2 \ + libtonezone.so:misc/dahdi EXCHANGE_CONFIGURE_OFF= --without-neon --without-neon29 EXCHANGE_LIB_DEPENDS= libneon.so:www/neon @@ -255,7 +253,11 @@ post-install: ${FIND} ${STAGEDIR}${DATADIR}/moh -type f | ${SED} "s,^${STAGEDIR}${DATADIR},${DATADIR}," >> ${TMPPLIST} (cd ${STAGEDIR} && \ + ${ECHO} "@owner ${ASTERISK_USER}" >> ${TMPPLIST} && \ + ${ECHO} "@group ${ASTERISK_GROUP}" >> ${TMPPLIST} && \ ${FIND} var/spool/${PORTNAME}/voicemail/default -type f | ${SED} "s,^,/," >> ${TMPPLIST} && \ - ${FIND} var/spool/${PORTNAME}/voicemail/ -type d | ${SED} "s,^,@dir /," >> ${TMPPLIST}); + ${FIND} var/spool/${PORTNAME}/voicemail/ -type d | ${SED} "s,^,@dir /," >> ${TMPPLIST} && \ + ${ECHO} "@owner" >> ${TMPPLIST} && \ + ${ECHO} "@group" >> ${TMPPLIST}); .include Modified: branches/2016Q3/net/asterisk11/Makefile ============================================================================== --- branches/2016Q3/net/asterisk11/Makefile Tue Jul 5 17:59:18 2016 (r418099) +++ branches/2016Q3/net/asterisk11/Makefile Tue Jul 5 18:24:49 2016 (r418100) @@ -2,7 +2,7 @@ PORTNAME= asterisk PORTVERSION= 11.22.0 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= net MASTER_SITES= http://downloads.asterisk.org/pub/telephony/%SUBDIR%/:DEFAULT,g729 MASTER_SITE_SUBDIR= asterisk/ \ @@ -21,11 +21,11 @@ EXTRACT_ONLY:= ${DISTNAME}${EXTRACT_SUFX ONLY_FOR_ARCHS= i386 amd64 powerpc sparc64 armv6 -USES= bison cpe gmake iconv localbase ncurses shebangfix sqlite +USES= bison cpe gmake iconv localbase ncurses shebangfix \ + sqlite ssl USE_CSTD= gnu89 USE_GNOME= libxml2 USE_LDCONFIG= yes -USE_OPENSSL= yes USE_RC_SUBR= asterisk GNU_CONFIGURE= yes @@ -118,10 +118,9 @@ CURL_LIB_DEPENDS= libcurl.so:ftp/curl DAHDI_CONFIGURE_ON= --with-dahdi --with-openr2 DAHDI_CONFIGURE_OFF= --without-dahdi --without-openr2 -DAHDI_BUILD_DEPENDS= libpri>=1.4.10:misc/libpri \ - ${LOCALBASE}/include/dahdi/user.h:misc/dahdi DAHDI_LIB_DEPENDS= libpri.so:misc/libpri \ - libopenr2.so:misc/openr2 + libopenr2.so:misc/openr2 \ + libtonezone.so:misc/dahdi EXCHANGE_CONFIGURE_OFF= --without-neon --without-neon29 EXCHANGE_LIB_DEPENDS= libneon.so:www/neon @@ -266,7 +265,11 @@ post-install: ${FIND} ${STAGEDIR}${DATADIR}/moh -type f | ${SED} "s,^${STAGEDIR}${DATADIR},${DATADIR}," >> ${TMPPLIST} (cd ${STAGEDIR} && \ + ${ECHO} "@owner ${ASTERISK_USER}" >> ${TMPPLIST} && \ + ${ECHO} "@group ${ASTERISK_GROUP}" >> ${TMPPLIST} && \ ${FIND} var/spool/${PORTNAME}/voicemail/default -type f | ${SED} "s,^,/," >> ${TMPPLIST} && \ - ${FIND} var/spool/${PORTNAME}/voicemail/ -type d | ${SED} "s,^,@dir /," >> ${TMPPLIST}); + ${FIND} var/spool/${PORTNAME}/voicemail/ -type d | ${SED} "s,^,@dir /," >> ${TMPPLIST} && \ + ${ECHO} "@owner" >> ${TMPPLIST} && \ + ${ECHO} "@group" >> ${TMPPLIST}); .include Modified: branches/2016Q3/net/asterisk13/Makefile ============================================================================== --- branches/2016Q3/net/asterisk13/Makefile Tue Jul 5 17:59:18 2016 (r418099) +++ branches/2016Q3/net/asterisk13/Makefile Tue Jul 5 18:24:49 2016 (r418100) @@ -2,6 +2,7 @@ PORTNAME= asterisk PORTVERSION= 13.9.1 +PORTREVISION= 1 CATEGORIES= net MASTER_SITES= http://downloads.asterisk.org/pub/telephony/%SUBDIR%/:DEFAULT,g729 MASTER_SITE_SUBDIR= asterisk/ \ @@ -23,11 +24,11 @@ EXTRACT_ONLY:= ${DISTNAME}${EXTRACT_SUFX ONLY_FOR_ARCHS= i386 amd64 powerpc sparc64 armv6 -USES= bison cpe gmake iconv localbase ncurses shebangfix sqlite +USES= bison cpe gmake iconv libedit localbase ncurses \ + shebangfix sqlite ssl USE_CSTD= gnu89 USE_GNOME= libxml2 USE_LDCONFIG= yes -USE_OPENSSL= yes USE_RC_SUBR= asterisk GNU_CONFIGURE= yes @@ -124,10 +125,9 @@ CURL_LIB_DEPENDS= libcurl.so:ftp/curl DAHDI_CONFIGURE_ON= --with-dahdi --with-openr2 DAHDI_CONFIGURE_OFF= --without-dahdi --without-openr2 -DAHDI_BUILD_DEPENDS= libpri>=1.4.10:misc/libpri \ - ${LOCALBASE}/include/dahdi/user.h:misc/dahdi DAHDI_LIB_DEPENDS= libpri.so:misc/libpri \ - libopenr2.so:misc/openr2 + libopenr2.so:misc/openr2 \ + libtonezone.so:misc/dahdi EXCHANGE_CONFIGURE_OFF= --without-neon --without-neon29 EXCHANGE_LIB_DEPENDS= libneon.so:www/neon @@ -285,7 +285,11 @@ post-install: ${FIND} ${STAGEDIR}${DATADIR}/moh -type f | ${SED} "s,^${STAGEDIR}${DATADIR},${DATADIR}," >> ${TMPPLIST} (cd ${STAGEDIR} && \ + ${ECHO} "@owner ${ASTERISK_USER}" >> ${TMPPLIST} && \ + ${ECHO} "@group ${ASTERISK_GROUP}" >> ${TMPPLIST} && \ ${FIND} var/spool/${PORTNAME}/voicemail/default -type f | ${SED} "s,^,/," >> ${TMPPLIST} && \ - ${FIND} var/spool/${PORTNAME}/voicemail/ -type d | ${SED} "s,^,@dir /," >> ${TMPPLIST}); + ${FIND} var/spool/${PORTNAME}/voicemail/ -type d | ${SED} "s,^,@dir /," >> ${TMPPLIST} && \ + ${ECHO} "@owner" >> ${TMPPLIST} && \ + ${ECHO} "@group" >> ${TMPPLIST}); .include From owner-svn-ports-all@freebsd.org Tue Jul 5 18:46:47 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 271D7B2068B; Tue, 5 Jul 2016 18:46: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 mx1.freebsd.org (Postfix) with ESMTPS id D1D37167D; Tue, 5 Jul 2016 18:46: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 u65Ikkio000772; Tue, 5 Jul 2016 18:46:46 GMT (envelope-from rene@FreeBSD.org) Received: (from rene@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u65IkjT3000768; Tue, 5 Jul 2016 18:46:45 GMT (envelope-from rene@FreeBSD.org) Message-Id: <201607051846.u65IkjT3000768@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: rene set sender to rene@FreeBSD.org using -f From: Rene Ladan Date: Tue, 5 Jul 2016 18:46:45 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418101 - in head: . devel devel/omake games games/freetennis graphics graphics/ocaml-images X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Jul 2016 18:46:47 -0000 Author: rene Date: Tue Jul 5 18:46:45 2016 New Revision: 418101 URL: https://svnweb.freebsd.org/changeset/ports/418101 Log: Remove expired ports: games/freetennis: depends on expired graphics/ocaml-images 2016-07-04 graphics/ocaml-images: Depends on expiring devel/omake 2016-07-04 devel/omake: Broken for more than 6 months Deleted: head/devel/omake/ head/games/freetennis/ head/graphics/ocaml-images/ Modified: head/MOVED head/devel/Makefile head/games/Makefile head/graphics/Makefile Modified: head/MOVED ============================================================================== --- head/MOVED Tue Jul 5 18:24:49 2016 (r418100) +++ head/MOVED Tue Jul 5 18:46:45 2016 (r418101) @@ -8596,3 +8596,6 @@ ftp/fget||2016-07-04|Has expired: Broken net-mgmt/netmond||2016-07-04|Has expired: Broken for more than 6 months net-mgmt/ipfm||2016-07-04|Has expired: Broken for more than 6 months textproc/py-dbf|databases/py-dbf|2016-07-05|Duplicate port deleted +games/freetennis||2016-07-05|Depends on expired graphics/ocaml-images +graphics/ocaml-images||2016-07-05|Has expired: Depends on expiring devel/omake +devel/omake||2016-07-05|Has expired: Broken for more than 6 months Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Tue Jul 5 18:24:49 2016 (r418100) +++ head/devel/Makefile Tue Jul 5 18:46:45 2016 (r418101) @@ -1587,7 +1587,6 @@ SUBDIR += ode SUBDIR += ois SUBDIR += okteta - SUBDIR += omake SUBDIR += omniNotify SUBDIR += omniORB SUBDIR += omniORB-4.1 Modified: head/games/Makefile ============================================================================== --- head/games/Makefile Tue Jul 5 18:24:49 2016 (r418100) +++ head/games/Makefile Tue Jul 5 18:46:45 2016 (r418101) @@ -294,7 +294,6 @@ SUBDIR += freera SUBDIR += freesweep SUBDIR += freesynd - SUBDIR += freetennis SUBDIR += fretsonfire SUBDIR += fretsonfire-data SUBDIR += frikqcc Modified: head/graphics/Makefile ============================================================================== --- head/graphics/Makefile Tue Jul 5 18:24:49 2016 (r418100) +++ head/graphics/Makefile Tue Jul 5 18:46:45 2016 (r418101) @@ -601,7 +601,6 @@ SUBDIR += npretty SUBDIR += nurbs++ SUBDIR += nvidia-texture-tools - SUBDIR += ocaml-images SUBDIR += ocaml-lablgl SUBDIR += ocrad SUBDIR += ocre From owner-svn-ports-all@freebsd.org Tue Jul 5 18:52:18 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 81CCFB20913; Tue, 5 Jul 2016 18:52:18 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 472171D0A; Tue, 5 Jul 2016 18:52:18 +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 u65IqHuu005104; Tue, 5 Jul 2016 18:52:17 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u65IqHQs005103; Tue, 5 Jul 2016 18:52:17 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201607051852.u65IqHQs005103@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Tue, 5 Jul 2016 18:52:17 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418102 - head/games/robocode-naval X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Jul 2016 18:52:18 -0000 Author: amdmi3 Date: Tue Jul 5 18:52:17 2016 New Revision: 418102 URL: https://svnweb.freebsd.org/changeset/ports/418102 Log: - Fix PORTSCOUT To clarify previous commit, PORTSCOUT is needed here because robocode-naval is sharing the download page with robocode, and the version limit will ignore robocode versions with 4 digits and will only pick up 3 digit robocode-naval versions. PR: 210699 Submitted by: dbaio@bsd.com.br (maintainer) Modified: head/games/robocode-naval/Makefile Modified: head/games/robocode-naval/Makefile ============================================================================== --- head/games/robocode-naval/Makefile Tue Jul 5 18:46:45 2016 (r418101) +++ head/games/robocode-naval/Makefile Tue Jul 5 18:52:17 2016 (r418102) @@ -14,7 +14,7 @@ COMMENT= Game for learning Java[tm] prog LICENSE= EPL -PORTSCOUT= limit:^\d+\.\d+\.\d+$ +PORTSCOUT= limit:^\d+\.\d+\.\d+$$ USES= dos2unix zip DOS2UNIX_GLOB= *.css *.team *.properties package-list MANIFEST.MF From owner-svn-ports-all@freebsd.org Tue Jul 5 18:57:03 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 7F044B20A7C; Tue, 5 Jul 2016 18:57:03 +0000 (UTC) (envelope-from rene@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 4EC471212; Tue, 5 Jul 2016 18:57:03 +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 u65Iv21x005902; Tue, 5 Jul 2016 18:57:02 GMT (envelope-from rene@FreeBSD.org) Received: (from rene@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u65Iv2dv005901; Tue, 5 Jul 2016 18:57:02 GMT (envelope-from rene@FreeBSD.org) Message-Id: <201607051857.u65Iv2dv005901@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: rene set sender to rene@FreeBSD.org using -f From: Rene Ladan Date: Tue, 5 Jul 2016 18:57:02 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418103 - head/www/drupal7-wysiwyg X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Jul 2016 18:57:03 -0000 Author: rene Date: Tue Jul 5 18:57:02 2016 New Revision: 418103 URL: https://svnweb.freebsd.org/changeset/ports/418103 Log: www/drupal7-wysiwyg: remove non-default dependency on expired www/yahoo-ui Modified: head/www/drupal7-wysiwyg/Makefile Modified: head/www/drupal7-wysiwyg/Makefile ============================================================================== --- head/www/drupal7-wysiwyg/Makefile Tue Jul 5 18:52:17 2016 (r418102) +++ head/www/drupal7-wysiwyg/Makefile Tue Jul 5 18:57:02 2016 (r418103) @@ -3,6 +3,7 @@ PORTNAME= wysiwyg DISTVERSION= 7.x-2.0 +PORTREVISION= 1 CATEGORIES= www MAINTAINER= ports@FreeBSD.org @@ -12,11 +13,10 @@ COMMENT= Allows implementation of WYSIWY USES= drupal:7,module -OPTIONS_DEFINE= TINYMCE3 CKEDITOR YUI DOCS +OPTIONS_DEFINE= TINYMCE3 CKEDITOR DOCS TINYMCE3_DESC= Install TinyMCE3 Editor CKEDITOR_DESC= Install CKEditor -YUI_DESC= Install Yahoo UI Editor .include @@ -30,11 +30,6 @@ RUN_DEPENDS+= ${LOCALBASE}/www/ckeditor: PLIST_FILES+= ${DRUPAL_MODLIB}/ckeditor .endif -.if ${PORT_OPTIONS:MYUI} -RUN_DEPENDS+= ${LOCALBASE}/www/yui:www/yahoo-ui -PLIST_FILES+= ${DRUPAL_MODLIB}/yui -.endif - MODULE_FILES= editors/css/openwysiwyg.css \ editors/css/tinymce-2.css \ editors/css/tinymce-3.css \ @@ -105,8 +100,5 @@ post-install: .if ${PORT_OPTIONS:MCKEDITOR} ${LN} -fs ${PREFIX}/www/CKEditor ${STAGEDIR}${PREFIX}/${DRUPAL_MODLIB}/ckeditor .endif -.if ${PORT_OPTIONS:MYUI} - ${LN} -fs ${PREFIX}/www/yahoo ${STAGEDIR}${PREFIX}/${DRUPAL_MODLIB}/yui -.endif .include From owner-svn-ports-all@freebsd.org Tue Jul 5 18:57:40 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id F2E4CB20ABC; Tue, 5 Jul 2016 18:57: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 mx1.freebsd.org (Postfix) with ESMTPS id C020F12FD; Tue, 5 Jul 2016 18:57: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 u65IvdTu006109; Tue, 5 Jul 2016 18:57:39 GMT (envelope-from rene@FreeBSD.org) Received: (from rene@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u65Ivd6g006107; Tue, 5 Jul 2016 18:57:39 GMT (envelope-from rene@FreeBSD.org) Message-Id: <201607051857.u65Ivd6g006107@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: rene set sender to rene@FreeBSD.org using -f From: Rene Ladan Date: Tue, 5 Jul 2016 18:57:39 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418104 - in head: . www www/yahoo-ui X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Jul 2016 18:57:41 -0000 Author: rene Date: Tue Jul 5 18:57:39 2016 New Revision: 418104 URL: https://svnweb.freebsd.org/changeset/ports/418104 Log: Remove expired port: 2016-07-04 www/yahoo-ui: Broken for more than 6 months Deleted: head/www/yahoo-ui/ Modified: head/MOVED head/www/Makefile Modified: head/MOVED ============================================================================== --- head/MOVED Tue Jul 5 18:57:02 2016 (r418103) +++ head/MOVED Tue Jul 5 18:57:39 2016 (r418104) @@ -8599,3 +8599,4 @@ textproc/py-dbf|databases/py-dbf|2016-07 games/freetennis||2016-07-05|Depends on expired graphics/ocaml-images graphics/ocaml-images||2016-07-05|Has expired: Depends on expiring devel/omake devel/omake||2016-07-05|Has expired: Broken for more than 6 months +www/yahoo-ui||2016-07-05|Has expired: Broken for more than 6 months Modified: head/www/Makefile ============================================================================== --- head/www/Makefile Tue Jul 5 18:57:02 2016 (r418103) +++ head/www/Makefile Tue Jul 5 18:57:39 2016 (r418104) @@ -2379,7 +2379,6 @@ SUBDIR += xshttpd-devel SUBDIR += xsp SUBDIR += yabb - SUBDIR += yahoo-ui SUBDIR += yanopaste SUBDIR += yaws SUBDIR += yii From owner-svn-ports-all@freebsd.org Tue Jul 5 19:00:49 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 2572FB20B38; Tue, 5 Jul 2016 19:00:49 +0000 (UTC) (envelope-from danilo@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id EA1F614C4; Tue, 5 Jul 2016 19:00:48 +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 u65J0mVC007318; Tue, 5 Jul 2016 19:00:48 GMT (envelope-from danilo@FreeBSD.org) Received: (from danilo@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u65J0mN2007316; Tue, 5 Jul 2016 19:00:48 GMT (envelope-from danilo@FreeBSD.org) Message-Id: <201607051900.u65J0mN2007316@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: danilo set sender to danilo@FreeBSD.org using -f From: Danilo Egea Gondolfo Date: Tue, 5 Jul 2016 19:00:48 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418105 - head/devel/arm-elf-binutils X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Jul 2016 19:00:49 -0000 Author: danilo Date: Tue Jul 5 19:00:47 2016 New Revision: 418105 URL: https://svnweb.freebsd.org/changeset/ports/418105 Log: - Update to 2.26.1 Modified: head/devel/arm-elf-binutils/Makefile head/devel/arm-elf-binutils/distinfo Modified: head/devel/arm-elf-binutils/Makefile ============================================================================== --- head/devel/arm-elf-binutils/Makefile Tue Jul 5 18:57:39 2016 (r418104) +++ head/devel/arm-elf-binutils/Makefile Tue Jul 5 19:00:47 2016 (r418105) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= binutils -PORTVERSION= 2.26 +PORTVERSION= 2.26.1 CATEGORIES= devel MASTER_SITES= SOURCEWARE/binutils/releases PKGNAMEPREFIX= arm-elf- Modified: head/devel/arm-elf-binutils/distinfo ============================================================================== --- head/devel/arm-elf-binutils/distinfo Tue Jul 5 18:57:39 2016 (r418104) +++ head/devel/arm-elf-binutils/distinfo Tue Jul 5 19:00:47 2016 (r418105) @@ -1,2 +1,3 @@ -SHA256 (binutils-2.26.tar.bz2) = c2ace41809542f5237afc7e3b8f32bb92bc7bc53c6232a84463c423b0714ecd9 -SIZE (binutils-2.26.tar.bz2) = 25543552 +TIMESTAMP = 1467571700 +SHA256 (binutils-2.26.1.tar.bz2) = 39c346c87aa4fb14b2f786560aec1d29411b6ec34dce3fe7309fe3dd56949fd8 +SIZE (binutils-2.26.1.tar.bz2) = 25595243 From owner-svn-ports-all@freebsd.org Tue Jul 5 19:31:38 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 6A7EBB2170A; Tue, 5 Jul 2016 19:31:38 +0000 (UTC) (envelope-from adamw@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 376191ABC; Tue, 5 Jul 2016 19:31:38 +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 u65JVbZp021427; Tue, 5 Jul 2016 19:31:37 GMT (envelope-from adamw@FreeBSD.org) Received: (from adamw@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u65JVbGc021426; Tue, 5 Jul 2016 19:31:37 GMT (envelope-from adamw@FreeBSD.org) Message-Id: <201607051931.u65JVbGc021426@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: adamw set sender to adamw@FreeBSD.org using -f From: Adam Weinberger Date: Tue, 5 Jul 2016 19:31:37 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418106 - head/mail/dovecot2 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Jul 2016 19:31:38 -0000 Author: adamw Date: Tue Jul 5 19:31:37 2016 New Revision: 418106 URL: https://svnweb.freebsd.org/changeset/ports/418106 Log: Fix build on 9.x. Adds compiler:c11 for this error: sha1.h:80: error: static or type qualifiers in abstract declarator dovecot no longer builds againt the old OpenSSL in 9.x base, so require ssl from ports there. Despite the dependency change (only for 9.x), I'm not bumping PORTREVISION because build couldn't complete on 9.x regardless. Modified: head/mail/dovecot2/Makefile Modified: head/mail/dovecot2/Makefile ============================================================================== --- head/mail/dovecot2/Makefile Tue Jul 5 19:00:47 2016 (r418105) +++ head/mail/dovecot2/Makefile Tue Jul 5 19:31:37 2016 (r418106) @@ -135,6 +135,13 @@ PGSQL_VARS= _REQUIRE+=postgresql SUB_LIST+= REQUIRE="${_REQUIRE}" SUB_FILES+= pkg-message +.if ${OPSYS} == "FreeBSD" && ${OSVERSION} < 1000011 +USES+= compiler:c11 +WITH_OPENSSL_PORT= yes +.endif + +.include + CPPFLAGS+= -I${LOCALBASE}/include -I${OPENSSLINC} LDFLAGS+= -L${LOCALBASE}/lib -I${OPENSSLLIB} @@ -160,4 +167,4 @@ post-install-EXAMPLES-on: ${MV} ${STAGEDIR}${DOCSDIR}/dovecot-openssl.cnf ${STAGEDIR}${EXAMPLESDIR} ${MV} ${STAGEDIR}${DOCSDIR}/mkcert.sh ${STAGEDIR}${EXAMPLESDIR} -.include +.include From owner-svn-ports-all@freebsd.org Tue Jul 5 19:31:58 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 4BC52B21850; Tue, 5 Jul 2016 19:31:58 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 04B6F1BED; Tue, 5 Jul 2016 19:31:57 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u65JVvm4022141; Tue, 5 Jul 2016 19:31:57 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u65JVvId022138; Tue, 5 Jul 2016 19:31:57 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201607051931.u65JVvId022138@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Tue, 5 Jul 2016 19:31:57 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418107 - head/textproc/libsass X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Jul 2016 19:31:58 -0000 Author: amdmi3 Date: Tue Jul 5 19:31:56 2016 New Revision: 418107 URL: https://svnweb.freebsd.org/changeset/ports/418107 Log: - Update to 3.3.6 PR: 210402 Submitted by: max@kostikov.co Approved by: maintainer timeout (nivit, 2 weeks) Modified: head/textproc/libsass/Makefile head/textproc/libsass/distinfo head/textproc/libsass/pkg-plist Modified: head/textproc/libsass/Makefile ============================================================================== --- head/textproc/libsass/Makefile Tue Jul 5 19:31:37 2016 (r418106) +++ head/textproc/libsass/Makefile Tue Jul 5 19:31:56 2016 (r418107) @@ -2,26 +2,27 @@ # $FreeBSD$ PORTNAME= libsass -PORTVERSION= 1.0.1 -DISTVERSIONPREFIX= v -PORTREVISION= 2 +PORTVERSION= 3.3.6 CATEGORIES= textproc MAINTAINER= nivit@FreeBSD.org COMMENT= C/C++ implementation of a Sass compiler LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/COPYING +USE_GITHUB= yes GH_ACCOUNT= sass +USES= autoreconf compiler:c++11-lib gmake libtool pathfix GNU_CONFIGURE= yes - +MAKEFILE= GNUmakefile +PATHFIX_MAKEFILEIN= GNUmakefile.am INSTALL_TARGET= install-strip -PATHFIX_MAKEFILEIN= Makefile.am - -USES= autoreconf libtool pathfix -USE_GITHUB= yes USE_LDCONFIG= yes +post-patch: + @${ECHO_CMD} "${ECHO_CMD} \"${PORTVERSION}\"" > ${WRKSRC}/version.sh + .include Modified: head/textproc/libsass/distinfo ============================================================================== --- head/textproc/libsass/distinfo Tue Jul 5 19:31:37 2016 (r418106) +++ head/textproc/libsass/distinfo Tue Jul 5 19:31:56 2016 (r418107) @@ -1,2 +1,3 @@ -SHA256 (sass-libsass-v1.0.1_GH0.tar.gz) = 4bb83b730e312480204a654592d9a0db5c7cf1bb8efafd8f066b7e675be3da38 -SIZE (sass-libsass-v1.0.1_GH0.tar.gz) = 81700 +TIMESTAMP = 1466458056 +SHA256 (sass-libsass-3.3.6_GH0.tar.gz) = 4b004b0fcef55420dc916216b1961e0d86925e6bf4a6be37d0b6db42f7f25da5 +SIZE (sass-libsass-3.3.6_GH0.tar.gz) = 293752 Modified: head/textproc/libsass/pkg-plist ============================================================================== --- head/textproc/libsass/pkg-plist Tue Jul 5 19:31:37 2016 (r418106) +++ head/textproc/libsass/pkg-plist Tue Jul 5 19:31:56 2016 (r418107) @@ -1,7 +1,12 @@ include/sass.h -include/sass_interface.h +include/sass/base.h +include/sass/context.h +include/sass/functions.h +include/sass/values.h +include/sass/version.h +include/sass2scss.h lib/libsass.a lib/libsass.so lib/libsass.so.0 -lib/libsass.so.0.0.0 +lib/libsass.so.0.0.9 libdata/pkgconfig/libsass.pc From owner-svn-ports-all@freebsd.org Tue Jul 5 19:32:19 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 081B0B218A6; Tue, 5 Jul 2016 19:32:19 +0000 (UTC) (envelope-from naddy@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id CB51C1D3D; Tue, 5 Jul 2016 19:32:18 +0000 (UTC) (envelope-from naddy@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u65JWHaQ024240; Tue, 5 Jul 2016 19:32:17 GMT (envelope-from naddy@FreeBSD.org) Received: (from naddy@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u65JWH1S024239; Tue, 5 Jul 2016 19:32:17 GMT (envelope-from naddy@FreeBSD.org) Message-Id: <201607051932.u65JWH1S024239@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: naddy set sender to naddy@FreeBSD.org using -f From: Christian Weisgerber Date: Tue, 5 Jul 2016 19:32:17 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418108 - head/net/openntpd X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Jul 2016 19:32:19 -0000 Author: naddy Date: Tue Jul 5 19:32:17 2016 New Revision: 418108 URL: https://svnweb.freebsd.org/changeset/ports/418108 Log: Minor changes/improvements: * switch to USES=ssl * use the paths set by Mk/Uses/ssl.mk * move post-install to post-stage Submitted by: brnrd Modified: head/net/openntpd/Makefile Modified: head/net/openntpd/Makefile ============================================================================== --- head/net/openntpd/Makefile Tue Jul 5 19:31:56 2016 (r418107) +++ head/net/openntpd/Makefile Tue Jul 5 19:32:17 2016 (r418108) @@ -26,18 +26,17 @@ RESSL_DESC= SSL/TLS support via LibreSS OPTIONS_DEFAULT= RESSL # Requires libtls from LibreSSL -RESSL_USE= openssl=yes -RESSL_VARS= with_openssl_port=yes +RESSL_USES= ssl RESSL_CONFIGURE_WITH= cacert=${LOCALBASE}/etc/ssl/cert.pem -RESSL_CPPFLAGS= -I${LOCALBASE}/include -RESSL_LDFLAGS= -L${LOCALBASE}/lib +RESSL_CPPFLAGS= -I${OPENSSLINC} +RESSL_LDFLAGS= -L${OPENSSLLIB} RESSL_RUN_DEPENDS= ca_root_nss>=0:security/ca_root_nss pre-build: ${REINPLACE_CMD} -e 's,%%PREFIX%%,${PREFIX},g' \ ${WRKSRC}/src/ntpd.conf.5 ${WRKSRC}/src/ntpd.8 -post-install: +post-stage: cd ${STAGEDIR}${PREFIX}/etc && ${MV} ntpd.conf ntpd.conf.sample .include From owner-svn-ports-all@freebsd.org Tue Jul 5 19:33:04 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 1E0E6B21930; Tue, 5 Jul 2016 19:33:04 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id C801C1E61; Tue, 5 Jul 2016 19:33:03 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u65JX2tl024408; Tue, 5 Jul 2016 19:33:02 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u65JX2VI024405; Tue, 5 Jul 2016 19:33:02 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201607051933.u65JX2VI024405@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Tue, 5 Jul 2016 19:33:02 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418109 - head/textproc/sassc X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Jul 2016 19:33:04 -0000 Author: amdmi3 Date: Tue Jul 5 19:33:02 2016 New Revision: 418109 URL: https://svnweb.freebsd.org/changeset/ports/418109 Log: - Update to 3.3.6 PR: 210403 Submitted by: max@kostikov.co Approved by: maintainer timeout (nivit, 2 weeks) Modified: head/textproc/sassc/Makefile head/textproc/sassc/distinfo head/textproc/sassc/pkg-descr Modified: head/textproc/sassc/Makefile ============================================================================== --- head/textproc/sassc/Makefile Tue Jul 5 19:32:17 2016 (r418108) +++ head/textproc/sassc/Makefile Tue Jul 5 19:33:02 2016 (r418109) @@ -2,26 +2,26 @@ # $FreeBSD$ PORTNAME= sassc -PORTVERSION= 1.0.1 -DISTVERSIONPREFIX= v -PORTREVISION= 1 +PORTVERSION= 3.3.6 CATEGORIES= textproc MAINTAINER= nivit@FreeBSD.org COMMENT= Wrapper around libsass LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE LIB_DEPENDS= libsass.so:textproc/libsass USE_GITHUB= yes GH_ACCOUNT= sass +USES= autoreconf compiler:c++11-lib gmake libtool localbase GNU_CONFIGURE= yes -CPPFLAGS+= -I${LOCALBASE}/include -LDFLAGS+= -L${LOCALBASE}/lib -USES= autoreconf libtool PLIST_FILES= bin/sassc +post-patch: + @${ECHO_CMD} "${ECHO_CMD} \"${PORTVERSION}\"" > ${WRKSRC}/version.sh + .include Modified: head/textproc/sassc/distinfo ============================================================================== --- head/textproc/sassc/distinfo Tue Jul 5 19:32:17 2016 (r418108) +++ head/textproc/sassc/distinfo Tue Jul 5 19:33:02 2016 (r418109) @@ -1,2 +1,3 @@ -SHA256 (sass-sassc-v1.0.1_GH0.tar.gz) = 04e144cdc1ada30412c5930beac9004f235720efa0e5c26a2420a6acf3f68d37 -SIZE (sass-sassc-v1.0.1_GH0.tar.gz) = 5553 +TIMESTAMP = 1466459103 +SHA256 (sass-sassc-3.3.6_GH0.tar.gz) = 3d87edeacdd0f9a21cd0bdcf0e0e40c832b21f469af80eb5e11488c66bf53840 +SIZE (sass-sassc-3.3.6_GH0.tar.gz) = 22100 Modified: head/textproc/sassc/pkg-descr ============================================================================== --- head/textproc/sassc/pkg-descr Tue Jul 5 19:32:17 2016 (r418108) +++ head/textproc/sassc/pkg-descr Tue Jul 5 19:33:02 2016 (r418109) @@ -2,4 +2,4 @@ SassC is a wrapper around libsass (http: to generate a useful command-line application that can be installed and packaged for several operating systems. -WWW: http://libsass.org +WWW: http://libsass.org/ From owner-svn-ports-all@freebsd.org Tue Jul 5 19:34:02 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 467A6B2197E; Tue, 5 Jul 2016 19:34:02 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id F2E821F6C; Tue, 5 Jul 2016 19:34:01 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u65JY1Tn024573; Tue, 5 Jul 2016 19:34:01 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u65JY1r4024571; Tue, 5 Jul 2016 19:34:01 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201607051934.u65JY1r4024571@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Tue, 5 Jul 2016 19:34:01 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418110 - in head/graphics/lightzone: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Jul 2016 19:34:02 -0000 Author: amdmi3 Date: Tue Jul 5 19:34:00 2016 New Revision: 418110 URL: https://svnweb.freebsd.org/changeset/ports/418110 Log: - Update to 4.1.6 - While here, add LICENSE_FILE PR: 210677 Submitted by: yuri@rawbw.com (maintainer) Deleted: head/graphics/lightzone/files/ Modified: head/graphics/lightzone/Makefile head/graphics/lightzone/distinfo Modified: head/graphics/lightzone/Makefile ============================================================================== --- head/graphics/lightzone/Makefile Tue Jul 5 19:33:02 2016 (r418109) +++ head/graphics/lightzone/Makefile Tue Jul 5 19:34:00 2016 (r418110) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= lightzone -DISTVERSION= 4.1.5 -PORTREVISION= 1 +PORTVERSION= 4.1.6 CATEGORIES= graphics java DIST_SUBDIR= ${PORTNAME} @@ -11,6 +10,7 @@ MAINTAINER= yuri@rawbw.com COMMENT= Professional-level digital darkroom and photo editor LICENSE= BSD3CLAUSE +LICENSE_FILE= ${WRKSRC}/../COPYING BUILD_DEPENDS= jhindexer:java/javahelp \ git:devel/git \ @@ -39,7 +39,7 @@ INSTALLS_ICONS= yes LIBDIR= ${PREFIX}/lib/${PORTNAME} PLIST_SUB= LIBDIR="${LIBDIR}" -WRKSRC_SUBDIR= linux +WRKSRC_SUBDIR= linux post-patch: @${REINPLACE_CMD} -e 's|gcc|${CC}|' -e 's|g++|${CXX}|' ${WRKSRC}/../lightcrafts/mk/platform.mk Modified: head/graphics/lightzone/distinfo ============================================================================== --- head/graphics/lightzone/distinfo Tue Jul 5 19:33:02 2016 (r418109) +++ head/graphics/lightzone/distinfo Tue Jul 5 19:34:00 2016 (r418110) @@ -1,2 +1,3 @@ -SHA256 (lightzone/ktgw0316-LightZone-4.1.5_GH0.tar.gz) = 6f8203790070329c67eee89171349d48e332aaa3dfd8f87a55ccc4323bddc2d6 -SIZE (lightzone/ktgw0316-LightZone-4.1.5_GH0.tar.gz) = 24209725 +TIMESTAMP = 1467237053 +SHA256 (lightzone/ktgw0316-LightZone-4.1.6_GH0.tar.gz) = 729fad807d5ff06e341d6c677d542b26353934585fefb7d0b0bebc2669b6a1c6 +SIZE (lightzone/ktgw0316-LightZone-4.1.6_GH0.tar.gz) = 25255104 From owner-svn-ports-all@freebsd.org Tue Jul 5 19:37:10 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 11703B21A84; Tue, 5 Jul 2016 19:37:10 +0000 (UTC) (envelope-from adamw@adamw.org) Received: from apnoea.adamw.org (apnoea.adamw.org [204.109.59.150]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "apnoea.adamw.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 7A92B12DB; Tue, 5 Jul 2016 19:37:09 +0000 (UTC) (envelope-from adamw@adamw.org) Received: by apnoea.adamw.org (OpenSMTPD) with ESMTPSA id 92da9a41 TLS version=TLSv1 cipher=ECDHE-RSA-AES256-SHA bits=256 verify=NO; Tue, 5 Jul 2016 13:36:45 -0600 (MDT) Content-Type: text/plain; charset=utf-8 Mime-Version: 1.0 (Mac OS X Mail 9.3 \(3124\)) Subject: Re: svn commit: r418108 - head/net/openntpd From: Adam Weinberger In-Reply-To: <201607051932.u65JWH1S024239@repo.freebsd.org> Date: Tue, 5 Jul 2016 13:37:05 -0600 Cc: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Content-Transfer-Encoding: quoted-printable Message-Id: References: <201607051932.u65JWH1S024239@repo.freebsd.org> To: Christian Weisgerber X-Mailer: Apple Mail (2.3124) X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Jul 2016 19:37:10 -0000 > On 5 Jul, 2016, at 13:32, Christian Weisgerber = wrote: >=20 > Author: naddy > Date: Tue Jul 5 19:32:17 2016 > New Revision: 418108 > URL: https://svnweb.freebsd.org/changeset/ports/418108 >=20 > Log: > Minor changes/improvements: > * switch to USES=3Dssl > * use the paths set by Mk/Uses/ssl.mk > * move post-install to post-stage >=20 > Submitted by: brnrd >=20 > Modified: > head/net/openntpd/Makefile >=20 > Modified: head/net/openntpd/Makefile > = =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D > --- head/net/openntpd/Makefile Tue Jul 5 19:31:56 2016 = (r418107) > +++ head/net/openntpd/Makefile Tue Jul 5 19:32:17 2016 = (r418108) > @@ -26,18 +26,17 @@ RESSL_DESC=3D SSL/TLS support via = LibreSS > OPTIONS_DEFAULT=3D RESSL >=20 > # Requires libtls from LibreSSL > -RESSL_USE=3D openssl=3Dyes > -RESSL_VARS=3D with_openssl_port=3Dyes > +RESSL_USES=3D ssl > RESSL_CONFIGURE_WITH=3D cacert=3D${LOCALBASE}/etc/ssl/cert.pem > -RESSL_CPPFLAGS=3D -I${LOCALBASE}/include > -RESSL_LDFLAGS=3D -L${LOCALBASE}/lib > +RESSL_CPPFLAGS=3D -I${OPENSSLINC} > +RESSL_LDFLAGS=3D -L${OPENSSLLIB} OPENSSLINC/LIB doesn=E2=80=99t necessarily contain anything before = bsd.port.pre.mk. I think you want to assign these farther down. # Adam =E2=80=94 Adam Weinberger adamw@adamw.org http://www.adamw.org From owner-svn-ports-all@freebsd.org Tue Jul 5 20:26:14 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id DE052B71870; Tue, 5 Jul 2016 20:26:14 +0000 (UTC) (envelope-from mat@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 9D23E1D53; Tue, 5 Jul 2016 20:26:14 +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 u65KQDRW043332; Tue, 5 Jul 2016 20:26:13 GMT (envelope-from mat@FreeBSD.org) Received: (from mat@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u65KQD5i043331; Tue, 5 Jul 2016 20:26:13 GMT (envelope-from mat@FreeBSD.org) Message-Id: <201607052026.u65KQD5i043331@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: mat set sender to mat@FreeBSD.org using -f From: Mathieu Arnold Date: Tue, 5 Jul 2016 20:26:13 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418111 - head/converters/p5-Text-Iconv X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Jul 2016 20:26:15 -0000 Author: mat Date: Tue Jul 5 20:26:13 2016 New Revision: 418111 URL: https://svnweb.freebsd.org/changeset/ports/418111 Log: Always use libiconv, which has all the functions. PR: 210848 Submitted by: Marcin Gryszkalis Sponsored by: Absolight Modified: head/converters/p5-Text-Iconv/Makefile (contents, props changed) Modified: head/converters/p5-Text-Iconv/Makefile ============================================================================== --- head/converters/p5-Text-Iconv/Makefile Tue Jul 5 19:34:00 2016 (r418110) +++ head/converters/p5-Text-Iconv/Makefile Tue Jul 5 20:26:13 2016 (r418111) @@ -3,7 +3,7 @@ PORTNAME= Text-Iconv PORTVERSION= 1.7 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= converters perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- @@ -11,7 +11,7 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Perl interface to iconv() codeset conversion function -USES= perl5 iconv +USES= perl5 iconv:translit USE_PERL5= configure CONFIGURE_ARGS+=INC="-I${ICONV_PREFIX}/include ${CFLAGS}" \ LIBS="-L${ICONV_PREFIX}/lib ${ICONV_LIB}" From owner-svn-ports-all@freebsd.org Tue Jul 5 20:47:30 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id DE52DB71DB9 for ; Tue, 5 Jul 2016 20:47:30 +0000 (UTC) (envelope-from ian@freebsd.org) Received: from pmta2.delivery6.ore.mailhop.org (pmta2.delivery6.ore.mailhop.org [54.200.129.228]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 9DE6D18CF for ; Tue, 5 Jul 2016 20:47:30 +0000 (UTC) (envelope-from ian@freebsd.org) X-MHO-User: a270cfb3-42f1-11e6-8929-8ded99d5e9d7 X-Report-Abuse-To: https://support.duocircle.com/support/solutions/articles/5000540958-duocircle-standard-smtp-abuse-information X-Originating-IP: 73.34.117.227 X-Mail-Handler: DuoCircle Outbound SMTP Received: from ilsoft.org (unknown [73.34.117.227]) by outbound2.ore.mailhop.org (Halon Mail Gateway) with ESMTPSA; Tue, 5 Jul 2016 20:47:05 +0000 (UTC) Received: from rev (rev [172.22.42.240]) by ilsoft.org (8.15.2/8.14.9) with ESMTP id u65KkJEF011717; Tue, 5 Jul 2016 14:46:20 -0600 (MDT) (envelope-from ian@freebsd.org) Message-ID: <1467751579.72182.101.camel@freebsd.org> Subject: Re: svn commit: r418108 - head/net/openntpd From: Ian Lepore To: Adam Weinberger , Christian Weisgerber Cc: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Date: Tue, 05 Jul 2016 14:46:19 -0600 In-Reply-To: References: <201607051932.u65JWH1S024239@repo.freebsd.org> Content-Type: text/plain; charset="iso-8859-13" X-Mailer: Evolution 3.16.5 FreeBSD GNOME Team Port Mime-Version: 1.0 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Jul 2016 20:47:31 -0000 On Tue, 2016-07-05 at 13:37 -0600, Adam Weinberger wrote: > > On 5 Jul, 2016, at 13:32, Christian Weisgerber > > wrote: > > > > Author: naddy > > Date: Tue Jul 5 19:32:17 2016 > > New Revision: 418108 > > URL: https://svnweb.freebsd.org/changeset/ports/418108 > > > > Log: > > Minor changes/improvements: > > * switch to USES=ssl > > * use the paths set by Mk/Uses/ssl.mk > > * move post-install to post-stage > > > > Submitted by: brnrd > > > > Modified: > > head/net/openntpd/Makefile > > > > Modified: head/net/openntpd/Makefile > > =================================================================== > > =========== > > --- head/net/openntpd/Makefile Tue Jul 5 19:31:56 2016 > > (r418107) > > +++ head/net/openntpd/Makefile Tue Jul 5 19:32:17 2016 > > (r418108) > > @@ -26,18 +26,17 @@ RESSL_DESC= SSL/TLS support via > > LibreSS > > OPTIONS_DEFAULT= RESSL > > > > # Requires libtls from LibreSSL > > -RESSL_USE= openssl=yes > > -RESSL_VARS= with_openssl_port=yes > > +RESSL_USES= ssl > > RESSL_CONFIGURE_WITH= cacert=${LOCALBASE}/etc/ssl/cert.pem > > -RESSL_CPPFLAGS= -I${LOCALBASE}/include > > -RESSL_LDFLAGS= -L${LOCALBASE}/lib > > +RESSL_CPPFLAGS= -I${OPENSSLINC} > > +RESSL_LDFLAGS= -L${OPENSSLLIB} > > OPENSSLINC/LIB doesnÿt necessarily contain anything before > bsd.port.pre.mk. I think you want to assign these farther down. > > # Adam > That doesn't matter. The value of a make variable is expanded late, either when it's used in a rule, or in a .if/.for, or assigned to another variable using :=. In the cases above, what gets assigned to, e.g., RESSL_CPPFLAGS is literally the characters '-I${OPENSSLINC}', not -I followed by the expansion of the OPENSSLINC variable. -- Ian From owner-svn-ports-all@freebsd.org Tue Jul 5 20:49:34 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 38250B71E92; Tue, 5 Jul 2016 20:49:34 +0000 (UTC) (envelope-from rene@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id E020F1B91; Tue, 5 Jul 2016 20:49: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 u65KnXkE050839; Tue, 5 Jul 2016 20:49:33 GMT (envelope-from rene@FreeBSD.org) Received: (from rene@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u65KnWSb050835; Tue, 5 Jul 2016 20:49:32 GMT (envelope-from rene@FreeBSD.org) Message-Id: <201607052049.u65KnWSb050835@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: rene set sender to rene@FreeBSD.org using -f From: Rene Ladan Date: Tue, 5 Jul 2016 20:49:32 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418112 - head/dns/dlint X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Jul 2016 20:49:34 -0000 Author: rene Date: Tue Jul 5 20:49:32 2016 New Revision: 418112 URL: https://svnweb.freebsd.org/changeset/ports/418112 Log: dns/dlint: unbreak - update to 1.4.1 - update MASTER_SITES PR: 205334 Submitted by: Chris Hutchinson Approved by: maintainer (jlaffaye) Modified: head/dns/dlint/Makefile head/dns/dlint/distinfo head/dns/dlint/pkg-descr Modified: head/dns/dlint/Makefile ============================================================================== --- head/dns/dlint/Makefile Tue Jul 5 20:26:13 2016 (r418111) +++ head/dns/dlint/Makefile Tue Jul 5 20:49:32 2016 (r418112) @@ -2,19 +2,15 @@ # $FreeBSD$ PORTNAME= dlint -PORTVERSION= 1.4.0 +PORTVERSION= 1.4.1 CATEGORIES= dns -MASTER_SITES= http://www.sfr-fresh.com/unix/misc/dns/ \ - http://www.sourcefiles.org/Networking/Tools/DNS/ -DISTNAME= dlint${PORTVERSION} +MASTER_SITES= http://BSDforge.com/projects/source/dns/dlint/ MAINTAINER= jlaffaye@FreeBSD.org COMMENT= Lint for DNS zones (Domain Name Server zone verification utility) -BROKEN= unfetchable -DEPRECATED= Broken for more than 6 months -EXPIRATION_DATE= 2016-07-04 -USES= shebangfix +USES= shebangfix tar:xz +NO_ARCH= yes NO_BUILD= yes SHEBANG_FILES= digparse Modified: head/dns/dlint/distinfo ============================================================================== --- head/dns/dlint/distinfo Tue Jul 5 20:26:13 2016 (r418111) +++ head/dns/dlint/distinfo Tue Jul 5 20:49:32 2016 (r418112) @@ -1,2 +1,3 @@ -SHA256 (dlint1.4.0.tar.gz) = ee9a955faa0cd3b5edb9c623d48fa9314ddeb00b34ff9aba08ae737814ff5e5c -SIZE (dlint1.4.0.tar.gz) = 23007 +TIMESTAMP = 1467747663 +SHA256 (dlint-1.4.1.tar.xz) = f542b03a1eff2b7850d353f5227976e418f98305bf163ac1e184360cc8222197 +SIZE (dlint-1.4.1.tar.xz) = 22100 Modified: head/dns/dlint/pkg-descr ============================================================================== --- head/dns/dlint/pkg-descr Tue Jul 5 20:26:13 2016 (r418111) +++ head/dns/dlint/pkg-descr Tue Jul 5 20:49:32 2016 (r418112) @@ -10,4 +10,4 @@ the standard DNS network protocol. Dlin do no more than syntax-check your database files. Dlint's messages are very informative and suggest ways to fix the problems, not just complain about them. -WWW: http://www.domtools.com/dns/dlint.shtml +WWW: http://BSDforge.com/projects/dns/dlint From owner-svn-ports-all@freebsd.org Tue Jul 5 21:13:31 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id A60F3B72715; Tue, 5 Jul 2016 21:13:31 +0000 (UTC) (envelope-from naddy@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 736E91E79; Tue, 5 Jul 2016 21:13:31 +0000 (UTC) (envelope-from naddy@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u65LDUik061603; Tue, 5 Jul 2016 21:13:30 GMT (envelope-from naddy@FreeBSD.org) Received: (from naddy@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u65LDUXc061601; Tue, 5 Jul 2016 21:13:30 GMT (envelope-from naddy@FreeBSD.org) Message-Id: <201607052113.u65LDUXc061601@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: naddy set sender to naddy@FreeBSD.org using -f From: Christian Weisgerber Date: Tue, 5 Jul 2016 21:13:30 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418113 - head/security/doas X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Jul 2016 21:13:31 -0000 Author: naddy Date: Tue Jul 5 21:13:30 2016 New Revision: 418113 URL: https://svnweb.freebsd.org/changeset/ports/418113 Log: Update to 5.9p4, which fixes a bug where command output is not displayed properly when the user authenticates with "nopass" specified in the doas.conf configuration file. PR: 210851 Submitted by: jsmith@resonatingmedia.com (maintainer) Modified: head/security/doas/Makefile head/security/doas/distinfo Modified: head/security/doas/Makefile ============================================================================== --- head/security/doas/Makefile Tue Jul 5 20:49:32 2016 (r418112) +++ head/security/doas/Makefile Tue Jul 5 21:13:30 2016 (r418113) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= doas -PORTVERSION= 5.9p2 +PORTVERSION= 5.9p4 CATEGORIES= security MAINTAINER= jsmith@resonatingmedia.com @@ -12,7 +12,7 @@ LICENSE= ISCL USE_GITHUB= yes GH_ACCOUNT= slicer69 GH_PROJECT= doas -GH_TAGNAME= 1a3589f +GH_TAGNAME= dc0fb32 USES= gmake Modified: head/security/doas/distinfo ============================================================================== --- head/security/doas/distinfo Tue Jul 5 20:49:32 2016 (r418112) +++ head/security/doas/distinfo Tue Jul 5 21:13:30 2016 (r418113) @@ -1,3 +1,3 @@ -TIMESTAMP = 1466970496 -SHA256 (slicer69-doas-5.9p2-1a3589f_GH0.tar.gz) = 6f190dc9c579d2f7518d6931572a67b3ab39586f7d38f9db192ea1a9fa72472d -SIZE (slicer69-doas-5.9p2-1a3589f_GH0.tar.gz) = 15218 +TIMESTAMP = 1467748363 +SHA256 (slicer69-doas-5.9p4-dc0fb32_GH0.tar.gz) = ba7368a0b6caa407a7dfce0b3682c91c73d8d6f5f8f26b4aa93b8e744e6e8d98 +SIZE (slicer69-doas-5.9p4-dc0fb32_GH0.tar.gz) = 15233 From owner-svn-ports-all@freebsd.org Tue Jul 5 23:26:54 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 6971AB71E93; Tue, 5 Jul 2016 23:26:54 +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 mx1.freebsd.org (Postfix) with ESMTPS id 439BE18FD; Tue, 5 Jul 2016 23:26:54 +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 u65NQrbH009278; Tue, 5 Jul 2016 23:26:53 GMT (envelope-from novel@FreeBSD.org) Received: (from novel@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u65NQrUa009273; Tue, 5 Jul 2016 23:26:53 GMT (envelope-from novel@FreeBSD.org) Message-Id: <201607052326.u65NQrUa009273@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: novel set sender to novel@FreeBSD.org using -f From: Roman Bogorodskiy Date: Tue, 5 Jul 2016 23:26:53 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418114 - in head/sysutils: . uefi-edk2-bhyve X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Jul 2016 23:26:54 -0000 Author: novel Date: Tue Jul 5 23:26:52 2016 New Revision: 418114 URL: https://svnweb.freebsd.org/changeset/ports/418114 Log: Add uefi-edk2-bhyve 20160704, UEFI-EDK2 firmware for bhyve. PR: 210719 Submitted by: fabian.freyer@physik.tu-berlin.de Added: head/sysutils/uefi-edk2-bhyve/ head/sysutils/uefi-edk2-bhyve/Makefile (contents, props changed) head/sysutils/uefi-edk2-bhyve/distinfo (contents, props changed) head/sysutils/uefi-edk2-bhyve/pkg-descr (contents, props changed) Modified: head/sysutils/Makefile Modified: head/sysutils/Makefile ============================================================================== --- head/sysutils/Makefile Tue Jul 5 21:13:30 2016 (r418113) +++ head/sysutils/Makefile Tue Jul 5 23:26:52 2016 (r418114) @@ -1104,6 +1104,7 @@ SUBDIR += ucspi-tcp SUBDIR += ucspi-unix SUBDIR += udfclient + SUBDIR += uefi-edk2-bhyve SUBDIR += ufs_copy SUBDIR += uhidd SUBDIR += uif2iso Added: head/sysutils/uefi-edk2-bhyve/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/uefi-edk2-bhyve/Makefile Tue Jul 5 23:26:52 2016 (r418114) @@ -0,0 +1,80 @@ +# $FreeBSD$ + +PORTNAME= uefi-edk2-bhyve +PORTVERSION= 20160704 +CATEGORIES= sysutils + +MAINTAINER= fabian.freyer@physik.tu-berlin.de +COMMENT= UEFI-EDK2 firmware for bhyve + +LICENSE= BSD2CLAUSE + +BUILD_DEPENDS= bash:shells/bash \ + gcc48:lang/gcc48 \ + nasm:devel/nasm \ + ${PYTHON_LIBDIR}/lib-dynload/_sqlite3.so:databases/py-sqlite3 + +USES= gmake \ + python:build +USE_GITHUB= yes +GH_ACCOUNT= freebsd +GH_PROJECT= uefi-edk2 +GH_TAGNAME= a36132939e259df79b16699c03c6f1d63c7454b9 + +PLIST_FILES= ${PREFIX}/share/uefi-firmwares/BHYVE_UEFI.fd + +ONLY_FOR_ARCHS= amd64 + +OPTIONS_DEFINE= CSM DEBUG +OPTIONS_DEFAULT=CSM +CSM_DESC= Build with Compatibility Support Module (Legacy Boot) +CSM_VARS= build_args+=-DCSM_ENABLE=TRUE + +DEBUG_VARS= uefi_target=DEBUG +DEBUG_VARS_OFF= uefi_target=RELEASE + +MAKE_ARGS+= AS=${LOCALBASE}/bin/as \ + AR=${LOCALBASE}/bin/ar \ + LD=${LOCALBASE}/bin/ld \ + OBJCOPY=${LOCALBASE}/bin/objcopy \ + CC=${LOCALBASE}/bin/gcc48 \ + CXX=${LOCALBASE}/bin/g++48 + +BUILD_ARGS=-DDEBUG_ON_SERIAL_PORT=TRUE -D FD_SIZE_2MB + +.include + +post-extract: + @${REINPLACE_CMD} -e 's|python|${PYTHON_CMD}|' ${WRKSRC}/BaseTools/Tests/GNUmakefile \ + ${WRKSRC}/BaseTools/BinWrappers/PosixLike/* + +do-build: + unset ARCH; unset MAKEFLAGS; ${MAKE_CMD} ${MAKE_ARGS} -C ${BUILD_WRKSRC}/BaseTools + ${MKDIR} ${BUILD_WRKSRC}/Build; + ${LN} -sf ${LOCALBASE}/bin/gcc48 ${BUILD_WRKSRC}/Build/gcc + ${LN} -sf ${LOCALBASE}/bin/ld ${BUILD_WRKSRC}/Build/ld + ${LN} -sf ${LOCALBASE}/bin/gmake ${BUILD_WRKSRC}/Build/make + ${LN} -sf ${LOCALBASE}/bin/ar ${BUILD_WRKSRC}/Build/ar + ${LN} -sf ${LOCALBASE}/bin/objcopy ${BUILD_WRKSRC}/Build/objcopy + ${LN} -sf ${LOCALBASE}/bin/nasm ${BUILD_WRKSRC}/Build/nasm +.if ${PORT_OPTIONS:MCSM} + bash -c " \ + cd ${BUILD_WRKSRC}; \ + source edksetup.sh;\ + unset ARCH; unset MAKEFLAGS; \ + ${MAKE_CMD} ${MAKE_ARGS} GCC48_BIN=${BUILD_WRKSRC}/Build/ -C ${BUILD_WRKSRC}/BhyvePkg/Csm/BhyveCsm16/" +.endif + bash -c " \ + cd ${BUILD_WRKSRC}; \ + source edksetup.sh;\ + unset ARCH; unset MAKEFLAGS; \ + export GCC48_BIN=${BUILD_WRKSRC}/Build/; \ + build -t GCC48 -a X64 -b ${UEFI_TARGET} -p BhyvePkg/BhyvePkgX64.dsc ${BUILD_ARGS} \ + " + +do-install: + ${MKDIR} ${STAGEDIR}${PREFIX}/share/uefi-firmwares/ + ${INSTALL} ${BUILD_WRKSRC}/Build/BhyveX64/${UEFI_TARGET}_GCC48/FV/BHYVE.fd \ + ${STAGEDIR}${PREFIX}/share/uefi-firmwares/BHYVE_UEFI.fd + +.include Added: head/sysutils/uefi-edk2-bhyve/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/uefi-edk2-bhyve/distinfo Tue Jul 5 23:26:52 2016 (r418114) @@ -0,0 +1,3 @@ +TIMESTAMP = 1467621762 +SHA256 (freebsd-uefi-edk2-20160704-a36132939e259df79b16699c03c6f1d63c7454b9_GH0.tar.gz) = 4a98c17a5ff3eb7d631feb6b3e32b019218f85add2a9cfda7dcbc084b2ca808b +SIZE (freebsd-uefi-edk2-20160704-a36132939e259df79b16699c03c6f1d63c7454b9_GH0.tar.gz) = 31009361 Added: head/sysutils/uefi-edk2-bhyve/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/uefi-edk2-bhyve/pkg-descr Tue Jul 5 23:26:52 2016 (r418114) @@ -0,0 +1,3 @@ +UEFI-EDK2 firmware for bhyve. + +WWW: https://github.com/freebsd/uefi-edk2/tree/bhyve/UDK2014.SP1 From owner-svn-ports-all@freebsd.org Tue Jul 5 23:37:02 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id E75ECB7216F; Tue, 5 Jul 2016 23:37:02 +0000 (UTC) (envelope-from bogorodskiy@gmail.com) Received: from mail-lf0-x22b.google.com (mail-lf0-x22b.google.com [IPv6:2a00:1450:4010:c07::22b]) (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 5B6091D5A; Tue, 5 Jul 2016 23:37:02 +0000 (UTC) (envelope-from bogorodskiy@gmail.com) Received: by mail-lf0-x22b.google.com with SMTP id l188so144396690lfe.2; Tue, 05 Jul 2016 16:37:02 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=date:from:to:cc:subject:message-id:references:mime-version :content-disposition:in-reply-to:user-agent; bh=rQsy3oCqenDdCCnJQnGIAdfWRIQ57N0AI4dqC0OCNsU=; b=HRCpdZrgAn2OJTPnBrbLg9+7/s8yUCm2X+UPnkG9ussojgBN9LziaAHxFPbdgDnq8a mdi7taU9rVbc27UNwJUhNhtPlQNgr/ai7VTQSekqR/NRmEvWHgt8cIHQU4Q3Y33qi5B2 rKii+Dko5x5IA5u883cNylE4R7kKD7bXsdYq1Uz3hcsCqaDuobaT75cAP1MYXNlAFMoV tpUmD3vtgA9344IltsYqUjKYXANevrDmbFDhSzS+nxg/4JgcLAT2oY1PLpvv0b9yWD6L VRDxO/FBksBtht0Ol8dGC+EDtk4wOtxK+vDQPavmKHVIDNKIGYBMkfFsSbDNyNq+Td0a Wpsg== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:date:from:to:cc:subject:message-id:references :mime-version:content-disposition:in-reply-to:user-agent; bh=rQsy3oCqenDdCCnJQnGIAdfWRIQ57N0AI4dqC0OCNsU=; b=bJ94eC/ucc/x0nzadXM7qiCckSeb6gRT9eB0yTyZjoOlpiTnLgBAxwHXpCgpWB4A2j IcJuCAXftLwGkJ5dioU0SJTBIvvbhi4nPCJ/vJKbNrmgJ/WSaJQvHxl+pS11ZTkQw4GA XkF8M8h7z25Yagy+wPQwfioXtzPlO/p7UnZjZRmGUqtW8vwlOGWJpDlItpxe+cSV6/Y0 tLV1O/pjxbMbKfLF+DwkB+lzj4LF+BcO8NfsDWGM3092ARlpdfAUaJXJ6rawoVLl3GZP xoom1c+mKQUj1HUU3bUmLBGGktmzmIFAO7bJOZ+TjE3WFDCtiwktinrjDI1h1xj0TsU8 XiHA== X-Gm-Message-State: ALyK8tIKFxJylBe4upU+hgRyAIx5EkCSq6ZCg5Krf6833L9pSG4SMPQqanNoug0f9YxjDg== X-Received: by 10.25.141.15 with SMTP id p15mr4130049lfd.185.1467761819626; Tue, 05 Jul 2016 16:36:59 -0700 (PDT) Received: from dev.san.ru ([88.147.129.60]) by smtp.gmail.com with ESMTPSA id g79sm5904176ljg.26.2016.07.05.16.36.58 (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Tue, 05 Jul 2016 16:36:58 -0700 (PDT) Date: Wed, 6 Jul 2016 02:36:53 +0300 From: Roman Bogorodskiy To: Roman Bogorodskiy Cc: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: Re: svn commit: r418114 - in head/sysutils: . uefi-edk2-bhyve Message-ID: <20160705233651.GA63806@dev.san.ru> References: <201607052326.u65NQrUa009273@repo.freebsd.org> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="UlVJffcvxoiEqYs2" Content-Disposition: inline In-Reply-To: <201607052326.u65NQrUa009273@repo.freebsd.org> User-Agent: Mutt/1.5.24 (2015-08-30) X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Jul 2016 23:37:03 -0000 --UlVJffcvxoiEqYs2 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Roman Bogorodskiy wrote: > Author: novel > Date: Tue Jul 5 23:26:52 2016 > New Revision: 418114 > URL: https://svnweb.freebsd.org/changeset/ports/418114 >=20 > Log: > Add uefi-edk2-bhyve 20160704, UEFI-EDK2 firmware for bhyve. > =20 > PR: 210719 > Submitted by: fabian.freyer@physik.tu-berlin.de >=20 > Added: > head/sysutils/uefi-edk2-bhyve/ > head/sysutils/uefi-edk2-bhyve/Makefile (contents, props changed) > head/sysutils/uefi-edk2-bhyve/distinfo (contents, props changed) > head/sysutils/uefi-edk2-bhyve/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 Tue Jul 5 21:13:30 2016 (r418113) > +++ head/sysutils/Makefile Tue Jul 5 23:26:52 2016 (r418114) > @@ -1104,6 +1104,7 @@ > SUBDIR +=3D ucspi-tcp > SUBDIR +=3D ucspi-unix > SUBDIR +=3D udfclient > + SUBDIR +=3D uefi-edk2-bhyve > SUBDIR +=3D ufs_copy > SUBDIR +=3D uhidd > SUBDIR +=3D uif2iso >=20 > Added: head/sysutils/uefi-edk2-bhyve/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/uefi-edk2-bhyve/Makefile Tue Jul 5 23:26:52 2016 (r418= 114) > @@ -0,0 +1,80 @@ > +# $FreeBSD$ > + > +PORTNAME=3D uefi-edk2-bhyve > +PORTVERSION=3D 20160704 > +CATEGORIES=3D sysutils > + > +MAINTAINER=3D fabian.freyer@physik.tu-berlin.de > +COMMENT=3D UEFI-EDK2 firmware for bhyve > + > +LICENSE=3D BSD2CLAUSE > + > +BUILD_DEPENDS=3D bash:shells/bash \ > + gcc48:lang/gcc48 \ I just figured out that most probably I'll need to use USE_GCC here, I'll fix that soon.=20 Roman Bogorodskiy --UlVJffcvxoiEqYs2 Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- Version: GnuPG v1 iQEcBAEBAgAGBQJXfESTAAoJEMltX/4IwiJqqAUH/Rn4DgwtCO5YfRR3zW1JNivQ 6eutqx18a79V5PJPIMZ95rj0W70cP0P89AJRu7iQtu1gTXUvWySV/B9jUk8u4Syp 0TynYcUYBr/Q6qRiL+kQbg4pToUACeayuzpk4kslZs3Kjf2Ih9oRPhVhPyEFS6o+ 4JPiVi0hp11jI9y550pf0hYXASdkw9aBhxb7h+5Wd99hcMD7+Hd0OCcIfcn7LcTk 2gdLjwFxYxL45yEVxhOQAeaXHGPOlIyVTVut+QnBJswFT9tz+SPYdnQRgvmZXu8c ylhZhpVy0D/7M3hOkGHcbHyYFDrVzljuZAR+rqraHJMmEJZJYEWOK2qUBQ7CQvE= =VgLF -----END PGP SIGNATURE----- --UlVJffcvxoiEqYs2-- From owner-svn-ports-all@freebsd.org Wed Jul 6 00:39:14 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 37ED0B734B8; Wed, 6 Jul 2016 00:39:14 +0000 (UTC) (envelope-from junovitch@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 012BF1975; Wed, 6 Jul 2016 00:39:13 +0000 (UTC) (envelope-from junovitch@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u660dDux035289; Wed, 6 Jul 2016 00:39:13 GMT (envelope-from junovitch@FreeBSD.org) Received: (from junovitch@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u660dD2S035288; Wed, 6 Jul 2016 00:39:13 GMT (envelope-from junovitch@FreeBSD.org) Message-Id: <201607060039.u660dD2S035288@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: junovitch set sender to junovitch@FreeBSD.org using -f From: Jason Unovitch Date: Wed, 6 Jul 2016 00:39:13 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418115 - head/devel/pcre X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Jul 2016 00:39:14 -0000 Author: junovitch Date: Wed Jul 6 00:39:12 2016 New Revision: 418115 URL: https://svnweb.freebsd.org/changeset/ports/418115 Log: devel/pcre: add USES= cpe Note: There are two other conflicting CPE_PRODUCTs in the CPE dictionary. perl-compatible_regular_expression_library perl_compatible_regular_expression_library I contacted NIST for clarification and 'cpe:2.3:a:pcre:pcre' is the correct CPE string. As such we do not need to set CPE_VENDOR or CPE_PRODUCT. PR: 208328 Submitted by: Shun (original patch) Approved by: adamw (maintainer) Modified: head/devel/pcre/Makefile Modified: head/devel/pcre/Makefile ============================================================================== --- head/devel/pcre/Makefile Tue Jul 5 23:26:52 2016 (r418114) +++ head/devel/pcre/Makefile Wed Jul 6 00:39:12 2016 (r418115) @@ -15,7 +15,7 @@ COMMENT= Perl Compatible Regular Express LICENSE= BSD3CLAUSE LICENSE_FILE= ${WRKSRC}/LICENCE -USES= libtool pathfix tar:bzip2 +USES= cpe libtool pathfix tar:bzip2 USE_LDCONFIG= yes GNU_CONFIGURE= yes From owner-svn-ports-all@freebsd.org Wed Jul 6 04:35:18 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id D7E91B71713; Wed, 6 Jul 2016 04:35:18 +0000 (UTC) (envelope-from cy@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 9BFB01B52; Wed, 6 Jul 2016 04:35:18 +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 u664ZHMv025869; Wed, 6 Jul 2016 04:35:17 GMT (envelope-from cy@FreeBSD.org) Received: (from cy@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u664ZHok025868; Wed, 6 Jul 2016 04:35:17 GMT (envelope-from cy@FreeBSD.org) Message-Id: <201607060435.u664ZHok025868@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: cy set sender to cy@FreeBSD.org using -f From: Cy Schubert Date: Wed, 6 Jul 2016 04:35:17 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418116 - head/net/vnc X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Jul 2016 04:35:18 -0000 Author: cy Date: Wed Jul 6 04:35:17 2016 New Revision: 418116 URL: https://svnweb.freebsd.org/changeset/ports/418116 Log: Rehost distfiles, making them fetchable again. Modified: head/net/vnc/Makefile Modified: head/net/vnc/Makefile ============================================================================== --- head/net/vnc/Makefile Wed Jul 6 00:39:12 2016 (r418115) +++ head/net/vnc/Makefile Wed Jul 6 04:35:17 2016 (r418116) @@ -5,9 +5,10 @@ PORTNAME= vnc PORTVERSION= 4.1.3 PORTREVISION= 10 CATEGORIES= net ipv6 -MASTER_SITES= http://home.bluelife.at/ports/distfiles/${DIST_SUBDIR}/:vnc +MASTER_SITES= http://www.cschubert.com/distfiles/xc/ \ + http://people.freebsd.org/~cy/distfiles/xc/ DISTNAME= vnc-4_1_3-unixsrc -DISTFILES= ${DISTNAME}${EXTRACT_SUFX}:vnc +DISTFILES= ${DISTNAME}${EXTRACT_SUFX} DIST_SUBDIR= xc MAINTAINER= cy@FreeBSD.org @@ -42,10 +43,9 @@ BROKEN= Does not compile on arm .endif .if ${PORT_OPTIONS:MSERVER} -MASTER_SITES+= XORG/4.3.0/:x -DISTFILES+= X430src-1.tgz:x \ - X430src-2.tgz:x \ - X430src-3.tgz:x +DISTFILES+= X430src-1.tgz \ + X430src-2.tgz \ + X430src-3.tgz .if ${OSVERSION} > 1000054 USE_GCC= 4.6 From owner-svn-ports-all@freebsd.org Wed Jul 6 05:32:36 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id C4BAFB20CCE; Wed, 6 Jul 2016 05:32:36 +0000 (UTC) (envelope-from lwhsu@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 8C3E314CA; Wed, 6 Jul 2016 05:32:36 +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 u665WZe6048033; Wed, 6 Jul 2016 05:32:35 GMT (envelope-from lwhsu@FreeBSD.org) Received: (from lwhsu@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u665WZda048031; Wed, 6 Jul 2016 05:32:35 GMT (envelope-from lwhsu@FreeBSD.org) Message-Id: <201607060532.u665WZda048031@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: lwhsu set sender to lwhsu@FreeBSD.org using -f From: Li-Wen Hsu Date: Wed, 6 Jul 2016 05:32:35 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418117 - head/devel/jenkins X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Jul 2016 05:32:36 -0000 Author: lwhsu Date: Wed Jul 6 05:32:35 2016 New Revision: 418117 URL: https://svnweb.freebsd.org/changeset/ports/418117 Log: - Update to 2.12 Modified: head/devel/jenkins/Makefile head/devel/jenkins/distinfo Modified: head/devel/jenkins/Makefile ============================================================================== --- head/devel/jenkins/Makefile Wed Jul 6 04:35:17 2016 (r418116) +++ head/devel/jenkins/Makefile Wed Jul 6 05:32:35 2016 (r418117) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= jenkins -PORTVERSION= 2.11 +PORTVERSION= 2.12 CATEGORIES= devel java MASTER_SITES= http://mirrors.jenkins-ci.org/war/${PORTVERSION}/ DISTNAME= jenkins Modified: head/devel/jenkins/distinfo ============================================================================== --- head/devel/jenkins/distinfo Wed Jul 6 04:35:17 2016 (r418116) +++ head/devel/jenkins/distinfo Wed Jul 6 05:32:35 2016 (r418117) @@ -1,3 +1,3 @@ -TIMESTAMP = 1466997106 -SHA256 (jenkins/2.11/jenkins.war) = 45f89868e66e53160cda5f367eb9c1026ac086794214e18304c51c6d320f6680 -SIZE (jenkins/2.11/jenkins.war) = 68824538 +TIMESTAMP = 1467783048 +SHA256 (jenkins/2.12/jenkins.war) = 65e51c0dbd2915f4b37f7daebfa561b49c279ab4bc04997011db0539b77d954d +SIZE (jenkins/2.12/jenkins.war) = 68829979 From owner-svn-ports-all@freebsd.org Wed Jul 6 06:18:52 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id BABA5B71BE8; Wed, 6 Jul 2016 06:18:52 +0000 (UTC) (envelope-from gahr@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 965A81645; Wed, 6 Jul 2016 06:18:52 +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 u666IpGo062791; Wed, 6 Jul 2016 06:18:51 GMT (envelope-from gahr@FreeBSD.org) Received: (from gahr@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u666Ip6v062787; Wed, 6 Jul 2016 06:18:51 GMT (envelope-from gahr@FreeBSD.org) Message-Id: <201607060618.u666Ip6v062787@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: gahr set sender to gahr@FreeBSD.org using -f From: Pietro Cerutti Date: Wed, 6 Jul 2016 06:18:51 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418118 - in head/devel/icu: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Jul 2016 06:18:52 -0000 Author: gahr Date: Wed Jul 6 06:18:51 2016 New Revision: 418118 URL: https://svnweb.freebsd.org/changeset/ports/418118 Log: devel/icu: update to 57.1 PR: 205120 Submitted by: yuri@rawbw.com Reviewed by: gahr@FreeBSD.org Approved by: maintainer (timeout) Modified: head/devel/icu/Makefile head/devel/icu/distinfo head/devel/icu/files/patch-config__mh-bsd-gcc head/devel/icu/pkg-plist Modified: head/devel/icu/Makefile ============================================================================== --- head/devel/icu/Makefile Wed Jul 6 05:32:35 2016 (r418117) +++ head/devel/icu/Makefile Wed Jul 6 06:18:51 2016 (r418118) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= icu -PORTVERSION= 55.1 +PORTVERSION= 57.1 CATEGORIES= devel MASTER_SITES= http://download.icu-project.org/files/icu4c/${PORTVERSION}/ \ SF/${PORTNAME}/ICU4C/${PORTVERSION}/ @@ -24,6 +24,7 @@ THREADS_DESC= Build thread-safe version USE_LDCONFIG= yes WRKSRC= ${WRKDIR}/icu/source +TEST_TARGET= do-test GNU_CONFIGURE= yes CONFIGURE_ARGS+= --with-data-packaging=library \ @@ -36,7 +37,6 @@ CONFIGURE_ARGS+= --with-data-packaging=l CONFIGURE_ARGS+= --with-cross-build .endif - USES= gmake pathfix ICUMAJOR= ${PORTVERSION:C/\..*//} @@ -76,6 +76,6 @@ post-stage: @${STRIP_CMD} ${STAGEDIR}${PREFIX}/sbin/* @${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/libicuda*.so.* -test regression-test: iotest cintltst intltest +do-test regression-test: iotest cintltst intltest .include Modified: head/devel/icu/distinfo ============================================================================== --- head/devel/icu/distinfo Wed Jul 6 05:32:35 2016 (r418117) +++ head/devel/icu/distinfo Wed Jul 6 06:18:51 2016 (r418118) @@ -1,2 +1,3 @@ -SHA256 (icu4c-55_1-src.tgz) = e16b22cbefdd354bec114541f7849a12f8fc2015320ca5282ee4fd787571457b -SIZE (icu4c-55_1-src.tgz) = 25600847 +TIMESTAMP = 1464596691 +SHA256 (icu4c-57_1-src.tgz) = ff8c67cb65949b1e7808f2359f2b80f722697048e90e7cfc382ec1fe229e9581 +SIZE (icu4c-57_1-src.tgz) = 22360664 Modified: head/devel/icu/files/patch-config__mh-bsd-gcc ============================================================================== --- head/devel/icu/files/patch-config__mh-bsd-gcc Wed Jul 6 05:32:35 2016 (r418117) +++ head/devel/icu/files/patch-config__mh-bsd-gcc Wed Jul 6 06:18:51 2016 (r418118) @@ -1,6 +1,6 @@ ---- ./config/mh-bsd-gcc.orig 2011-10-19 01:13:00.000000000 +0200 -+++ ./config/mh-bsd-gcc 2012-01-14 21:01:17.083384507 +0100 -@@ -23,9 +23,6 @@ +--- config/mh-bsd-gcc.orig 2016-03-23 20:50:50 UTC ++++ config/mh-bsd-gcc +@@ -23,9 +23,6 @@ LD_RPATH_PRE= -Wl,-rpath, ## Compiler switch to embed a library name LD_SONAME = -Wl,-soname -Wl,$(notdir $(MIDDLE_SO_TARGET)) Modified: head/devel/icu/pkg-plist ============================================================================== --- head/devel/icu/pkg-plist Wed Jul 6 05:32:35 2016 (r418117) +++ head/devel/icu/pkg-plist Wed Jul 6 06:18:51 2016 (r418118) @@ -132,6 +132,7 @@ include/unicode/schriter.h include/unicode/scientificnumberformatter.h include/unicode/search.h include/unicode/selfmt.h +include/unicode/simpleformatter.h include/unicode/simpletz.h include/unicode/smpdtfmt.h include/unicode/sortkey.h @@ -202,6 +203,7 @@ include/unicode/uobject.h include/unicode/upluralrules.h include/unicode/uregex.h include/unicode/uregion.h +include/unicode/ureldatefmt.h include/unicode/urename.h include/unicode/urep.h include/unicode/ures.h @@ -255,5 +257,5 @@ man/man8/gencmn.8.gz man/man8/gensprep.8.gz man/man8/icupkg.8.gz %%DATADIR%%/%%ICUVER%%/mkinstalldirs -%%DATADIR%%/%%ICUVER%%/license.html +%%DATADIR%%/%%ICUVER%%/LICENSE %%DATADIR%%/%%ICUVER%%/config/mh-bsd-gcc From owner-svn-ports-all@freebsd.org Wed Jul 6 07:34:20 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id C371EB72D4B; Wed, 6 Jul 2016 07:34:20 +0000 (UTC) (envelope-from gahr@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 9033617D0; Wed, 6 Jul 2016 07:34:20 +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 u667YJZO093750; Wed, 6 Jul 2016 07:34:19 GMT (envelope-from gahr@FreeBSD.org) Received: (from gahr@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u667YDZH093679; Wed, 6 Jul 2016 07:34:13 GMT (envelope-from gahr@FreeBSD.org) Message-Id: <201607060734.u667YDZH093679@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: gahr set sender to gahr@FreeBSD.org using -f From: Pietro Cerutti Date: Wed, 6 Jul 2016 07:34:13 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418119 - in head: astro/osmium audio/musicpd chinese/fcitx databases/couchdb databases/firebird25-server databases/postgresql91-server databases/postgresql92-server databases/sqlite3 d... X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Jul 2016 07:34:20 -0000 Author: gahr Date: Wed Jul 6 07:34:12 2016 New Revision: 418119 URL: https://svnweb.freebsd.org/changeset/ports/418119 Log: devel/icu: bump PORTREVISION on dependent ports Modified: head/astro/osmium/Makefile head/audio/musicpd/Makefile head/chinese/fcitx/Makefile head/databases/couchdb/Makefile head/databases/firebird25-server/Makefile head/databases/postgresql91-server/Makefile head/databases/postgresql92-server/Makefile head/databases/sqlite3/Makefile head/deskutils/calibre/Makefile head/devel/boost-libs/Makefile head/devel/dee/Makefile head/devel/glib20/Makefile head/devel/hs-text-icu/Makefile head/devel/objecthash/Makefile head/devel/pecl-intl/Makefile head/devel/py-pyicu/Makefile head/devel/qt4-corelib/Makefile head/devel/qt5-core/Makefile head/dns/bundy/Makefile head/dns/libpsl/Makefile head/editors/libreoffice/Makefile.common head/editors/libreoffice4/Makefile head/emulators/open-vm-tools/Makefile head/emulators/xcpc/Makefile head/graphics/libcdr01/Makefile head/graphics/libfreehand/Makefile head/graphics/mapnik/Makefile head/irc/znc/Makefile head/lang/gnustep-base/Makefile head/lang/parrot/Makefile head/lang/phantomjs/Makefile head/lang/swift/Makefile head/lang/v8-devel/Makefile head/mail/dovecot2/Makefile head/mail/postfix-current/Makefile head/mail/postfix/Makefile head/math/R/Makefile head/misc/sword/Makefile head/multimedia/aegisub/Makefile head/multimedia/subtitlecomposer-kde4/Makefile head/net-p2p/twister/Makefile head/net/yaz/Makefile head/print/harfbuzz/Makefile head/print/libmspub01/Makefile head/print/tex-xetex/Makefile head/print/texlive-base/Makefile head/sysutils/gdisk/Makefile head/sysutils/osquery/Makefile head/sysutils/tracker/Makefile head/textproc/R-cran-stringi/Makefile head/textproc/dwdiff/Makefile head/textproc/ibus-qt/Makefile head/textproc/libe-book/Makefile head/textproc/liblrdf/Makefile head/textproc/libvisio01/Makefile head/textproc/raptor2/Makefile head/textproc/rubygem-charlock_holmes/Makefile head/textproc/zorba/Makefile head/www/chromium/Makefile head/www/cppcms/Makefile head/www/webkit-gtk2/Makefile head/www/webkit-gtk3/Makefile head/www/webkit-qt5/Makefile head/www/webkit2-gtk3/Makefile Modified: head/astro/osmium/Makefile ============================================================================== --- head/astro/osmium/Makefile Wed Jul 6 06:18:51 2016 (r418118) +++ head/astro/osmium/Makefile Wed Jul 6 07:34:12 2016 (r418119) @@ -3,7 +3,7 @@ PORTNAME= osmium PORTVERSION= git20130522 -PORTREVISION= 10 +PORTREVISION= 11 CATEGORIES= astro geography devel MAINTAINER= amdmi3@FreeBSD.org Modified: head/audio/musicpd/Makefile ============================================================================== --- head/audio/musicpd/Makefile Wed Jul 6 06:18:51 2016 (r418118) +++ head/audio/musicpd/Makefile Wed Jul 6 07:34:12 2016 (r418119) @@ -2,7 +2,7 @@ PORTNAME= musicpd PORTVERSION= 0.19.15 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= audio ipv6 MASTER_SITES= http://www.musicpd.org/download/mpd/${PORTVERSION:R}/ DISTNAME= mpd-${PORTVERSION} Modified: head/chinese/fcitx/Makefile ============================================================================== --- head/chinese/fcitx/Makefile Wed Jul 6 06:18:51 2016 (r418118) +++ head/chinese/fcitx/Makefile Wed Jul 6 07:34:12 2016 (r418119) @@ -3,7 +3,7 @@ PORTNAME= fcitx PORTVERSION= 4.2.8.6 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= chinese x11 MASTER_SITES= http://download.fcitx-im.org/fcitx/:fcitx \ http://download.fcitx-im.org/data/:data Modified: head/databases/couchdb/Makefile ============================================================================== --- head/databases/couchdb/Makefile Wed Jul 6 06:18:51 2016 (r418118) +++ head/databases/couchdb/Makefile Wed Jul 6 07:34:12 2016 (r418119) @@ -3,7 +3,7 @@ PORTNAME= couchdb PORTVERSION= 1.6.1 -PORTREVISION= 4 +PORTREVISION= 5 PORTEPOCH= 2 CATEGORIES= databases MASTER_SITES= APACHE/couchdb/source/${PORTVERSION} Modified: head/databases/firebird25-server/Makefile ============================================================================== --- head/databases/firebird25-server/Makefile Wed Jul 6 06:18:51 2016 (r418118) +++ head/databases/firebird25-server/Makefile Wed Jul 6 07:34:12 2016 (r418119) @@ -3,7 +3,7 @@ PORTNAME= firebird PORTVERSION= 2.5.4 -PORTREVISION= 5 +PORTREVISION= 6 CATEGORIES?= databases MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/${PORTVERSION:S/.0//}-Release/ PKGNAMESUFFIX?= ${PORTVERSION:R:S/.//}-server Modified: head/databases/postgresql91-server/Makefile ============================================================================== --- head/databases/postgresql91-server/Makefile Wed Jul 6 06:18:51 2016 (r418118) +++ head/databases/postgresql91-server/Makefile Wed Jul 6 07:34:12 2016 (r418119) @@ -3,6 +3,7 @@ PORTNAME?= postgresql DISTVERSION?= 9.1.22 +PORTREVISION= 1 CATEGORIES?= databases MASTER_SITES= PGSQL/source/v${DISTVERSION} PKGNAMESUFFIX?= ${DISTVERSION:R:S/.//}${COMPONENT} Modified: head/databases/postgresql92-server/Makefile ============================================================================== --- head/databases/postgresql92-server/Makefile Wed Jul 6 06:18:51 2016 (r418118) +++ head/databases/postgresql92-server/Makefile Wed Jul 6 07:34:12 2016 (r418119) @@ -3,6 +3,7 @@ PORTNAME?= postgresql DISTVERSION?= 9.2.17 +PORTREVISION= 1 CATEGORIES?= databases MASTER_SITES= PGSQL/source/v${DISTVERSION} PKGNAMESUFFIX?= ${DISTVERSION:R:S/.//}${COMPONENT} Modified: head/databases/sqlite3/Makefile ============================================================================== --- head/databases/sqlite3/Makefile Wed Jul 6 06:18:51 2016 (r418118) +++ head/databases/sqlite3/Makefile Wed Jul 6 07:34:12 2016 (r418119) @@ -3,6 +3,7 @@ PORTNAME= sqlite3 PORTVERSION= 3.13.0 +PORTREVISION= 1 CATEGORIES= databases MASTER_SITES= https://www.sqlite.org/2016/ http://www2.sqlite.org/2016/ http://www3.sqlite.org/2016/ DISTNAME= sqlite-autoconf-${PORTVERSION:C/\.([[:digit:]])[[:>:]]/0\1/g:S/.//g}00 Modified: head/deskutils/calibre/Makefile ============================================================================== --- head/deskutils/calibre/Makefile Wed Jul 6 06:18:51 2016 (r418118) +++ head/deskutils/calibre/Makefile Wed Jul 6 07:34:12 2016 (r418119) @@ -3,6 +3,7 @@ PORTNAME= calibre PORTVERSION= 2.61.0 +PORTREVISION= 1 CATEGORIES= deskutils python MASTER_SITES= http://download.calibre-ebook.com/${PORTVERSION}/ Modified: head/devel/boost-libs/Makefile ============================================================================== --- head/devel/boost-libs/Makefile Wed Jul 6 06:18:51 2016 (r418118) +++ head/devel/boost-libs/Makefile Wed Jul 6 07:34:12 2016 (r418119) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= boost-libs -PORTREVISION= 10 +PORTREVISION= 11 COMMENT= Free portable C++ libraries (without Boost.Python) Modified: head/devel/dee/Makefile ============================================================================== --- head/devel/dee/Makefile Wed Jul 6 06:18:51 2016 (r418118) +++ head/devel/dee/Makefile Wed Jul 6 07:34:12 2016 (r418119) @@ -3,7 +3,7 @@ PORTNAME= dee PORTVERSION= 1.2.7 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= devel MASTER_SITES= https://launchpadlibrarian.net/151383425/ \ https://launchpad.net/${PORTNAME}/1.0/${PORTVERSION}/+download/ Modified: head/devel/glib20/Makefile ============================================================================== --- head/devel/glib20/Makefile Wed Jul 6 06:18:51 2016 (r418118) +++ head/devel/glib20/Makefile Wed Jul 6 07:34:12 2016 (r418119) @@ -3,6 +3,7 @@ PORTNAME= glib PORTVERSION= 2.46.2 +PORTREVISION= 1 CATEGORIES= devel MASTER_SITES= GNOME DIST_SUBDIR= gnome2 Modified: head/devel/hs-text-icu/Makefile ============================================================================== --- head/devel/hs-text-icu/Makefile Wed Jul 6 06:18:51 2016 (r418118) +++ head/devel/hs-text-icu/Makefile Wed Jul 6 07:34:12 2016 (r418119) @@ -2,6 +2,7 @@ PORTNAME= text-icu PORTVERSION= 0.7.0.1 +PORTREVISION= 1 CATEGORIES= devel haskell MAINTAINER= haskell@FreeBSD.org Modified: head/devel/objecthash/Makefile ============================================================================== --- head/devel/objecthash/Makefile Wed Jul 6 06:18:51 2016 (r418118) +++ head/devel/objecthash/Makefile Wed Jul 6 07:34:12 2016 (r418119) @@ -3,6 +3,7 @@ PORTNAME= objecthash PORTVERSION= 20160121 +PORTREVISION= 1 CATEGORIES= devel MAINTAINER= ports@FreeBSD.org Modified: head/devel/pecl-intl/Makefile ============================================================================== --- head/devel/pecl-intl/Makefile Wed Jul 6 06:18:51 2016 (r418118) +++ head/devel/pecl-intl/Makefile Wed Jul 6 07:34:12 2016 (r418119) @@ -3,7 +3,7 @@ PORTNAME= intl PORTVERSION= 3.0.0 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= devel pear MASTER_SITES= http://pecl.php.net/get/ PKGNAMEPREFIX= pecl- Modified: head/devel/py-pyicu/Makefile ============================================================================== --- head/devel/py-pyicu/Makefile Wed Jul 6 06:18:51 2016 (r418118) +++ head/devel/py-pyicu/Makefile Wed Jul 6 07:34:12 2016 (r418119) @@ -3,7 +3,7 @@ PORTNAME= pyicu PORTVERSION= 1.8 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= devel python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} Modified: head/devel/qt4-corelib/Makefile ============================================================================== --- head/devel/qt4-corelib/Makefile Wed Jul 6 06:18:51 2016 (r418118) +++ head/devel/qt4-corelib/Makefile Wed Jul 6 07:34:12 2016 (r418119) @@ -3,7 +3,7 @@ PORTNAME= corelib DISTVERSION= ${QT4_VERSION} -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= devel PKGNAMEPREFIX= qt4- Modified: head/devel/qt5-core/Makefile ============================================================================== --- head/devel/qt5-core/Makefile Wed Jul 6 06:18:51 2016 (r418118) +++ head/devel/qt5-core/Makefile Wed Jul 6 07:34:12 2016 (r418119) @@ -2,6 +2,7 @@ PORTNAME= core DISTVERSION= ${QT5_VERSION} +PORTREVISION= 1 CATEGORIES= devel PKGNAMEPREFIX= qt5- Modified: head/dns/bundy/Makefile ============================================================================== --- head/dns/bundy/Makefile Wed Jul 6 06:18:51 2016 (r418118) +++ head/dns/bundy/Makefile Wed Jul 6 07:34:12 2016 (r418119) @@ -3,7 +3,7 @@ PORTNAME= bundy PORTVERSION= 0.20160125 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= dns MASTER_SITES= LOCAL/mat/bundy SF/boost/boost/1.55.0:boost DISTFILES+= boost_1_55_0.tar.bz2:boost Modified: head/dns/libpsl/Makefile ============================================================================== --- head/dns/libpsl/Makefile Wed Jul 6 06:18:51 2016 (r418118) +++ head/dns/libpsl/Makefile Wed Jul 6 07:34:12 2016 (r418119) @@ -3,6 +3,7 @@ PORTNAME= libpsl PORTVERSION= 0.13.0 +PORTREVISION= 1 DISTVERSIONPREFIX= ${PORTNAME}- CATEGORIES= dns Modified: head/editors/libreoffice/Makefile.common ============================================================================== --- head/editors/libreoffice/Makefile.common Wed Jul 6 06:18:51 2016 (r418118) +++ head/editors/libreoffice/Makefile.common Wed Jul 6 07:34:12 2016 (r418119) @@ -2,6 +2,7 @@ PORTNAME= libreoffice PORTVERSION= 5.0.6 +PORTREVISION= 1 CATEGORIES+= editors MAINTAINER= office@FreeBSD.org Modified: head/editors/libreoffice4/Makefile ============================================================================== --- head/editors/libreoffice4/Makefile Wed Jul 6 06:18:51 2016 (r418118) +++ head/editors/libreoffice4/Makefile Wed Jul 6 07:34:12 2016 (r418119) @@ -2,7 +2,7 @@ PORTNAME= libreoffice PORTVERSION= 4.3.7 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= editors MASTER_SITES= http://download.documentfoundation.org/libreoffice/ \ http://dev-www.libreoffice.org/extern/:ext \ Modified: head/emulators/open-vm-tools/Makefile ============================================================================== --- head/emulators/open-vm-tools/Makefile Wed Jul 6 06:18:51 2016 (r418118) +++ head/emulators/open-vm-tools/Makefile Wed Jul 6 07:34:12 2016 (r418119) @@ -3,7 +3,7 @@ PORTNAME= open-vm-tools PORTVERSION= ${BUILD_VER} -PORTREVISION= 12 +PORTREVISION= 13 PORTEPOCH= 1 CATEGORIES= emulators MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/stable-9.4.x Modified: head/emulators/xcpc/Makefile ============================================================================== --- head/emulators/xcpc/Makefile Wed Jul 6 06:18:51 2016 (r418118) +++ head/emulators/xcpc/Makefile Wed Jul 6 07:34:12 2016 (r418119) @@ -3,7 +3,7 @@ PORTNAME= xcpc PORTVERSION= 20070122 -PORTREVISION= 11 +PORTREVISION= 12 CATEGORIES= emulators MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/${PORTNAME}-${PORTVERSION} Modified: head/graphics/libcdr01/Makefile ============================================================================== --- head/graphics/libcdr01/Makefile Wed Jul 6 06:18:51 2016 (r418118) +++ head/graphics/libcdr01/Makefile Wed Jul 6 07:34:12 2016 (r418119) @@ -2,6 +2,7 @@ PORTNAME= libcdr PORTVERSION= 0.1.2 +PORTREVISION= 1 CATEGORIES= graphics devel MASTER_SITES= LODEV PKGNAMESUFFIX= 01 Modified: head/graphics/libfreehand/Makefile ============================================================================== --- head/graphics/libfreehand/Makefile Wed Jul 6 06:18:51 2016 (r418118) +++ head/graphics/libfreehand/Makefile Wed Jul 6 07:34:12 2016 (r418119) @@ -2,6 +2,7 @@ PORTNAME= libfreehand PORTVERSION= 0.1.1 +PORTREVISION= 1 CATEGORIES= graphics MASTER_SITES= LODEV Modified: head/graphics/mapnik/Makefile ============================================================================== --- head/graphics/mapnik/Makefile Wed Jul 6 06:18:51 2016 (r418118) +++ head/graphics/mapnik/Makefile Wed Jul 6 07:34:12 2016 (r418119) @@ -4,7 +4,7 @@ PORTNAME= mapnik PORTVERSION= 3.0.9 DISTVERSIONPREFIX= v -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= graphics geography MASTER_SITES= http://mapnik.s3.amazonaws.com/dist/v${PORTVERSION}/ Modified: head/irc/znc/Makefile ============================================================================== --- head/irc/znc/Makefile Wed Jul 6 06:18:51 2016 (r418118) +++ head/irc/znc/Makefile Wed Jul 6 07:34:12 2016 (r418119) @@ -3,6 +3,7 @@ PORTNAME= znc PORTVERSION= 1.6.3 +PORTREVISION= 1 CATEGORIES= irc ipv6 MASTER_SITES= http://znc.in/releases/ \ http://znc.in/releases/archive/ Modified: head/lang/gnustep-base/Makefile ============================================================================== --- head/lang/gnustep-base/Makefile Wed Jul 6 06:18:51 2016 (r418118) +++ head/lang/gnustep-base/Makefile Wed Jul 6 07:34:12 2016 (r418119) @@ -3,7 +3,7 @@ PORTNAME= gnustep-base PORTVERSION= 1.24.8 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= lang devel gnustep MASTER_SITES= GNUSTEP/core Modified: head/lang/parrot/Makefile ============================================================================== --- head/lang/parrot/Makefile Wed Jul 6 06:18:51 2016 (r418118) +++ head/lang/parrot/Makefile Wed Jul 6 07:34:12 2016 (r418119) @@ -3,6 +3,7 @@ PORTNAME= parrot PORTVERSION= 8.1.0 +PORTREVISION= 1 CATEGORIES= lang MASTER_SITES= ftp://ftp.parrot.org/pub/parrot/releases/supported/${PORTVERSION}/ \ LOCAL/sunpoet Modified: head/lang/phantomjs/Makefile ============================================================================== --- head/lang/phantomjs/Makefile Wed Jul 6 06:18:51 2016 (r418118) +++ head/lang/phantomjs/Makefile Wed Jul 6 07:34:12 2016 (r418119) @@ -2,7 +2,7 @@ PORTNAME= phantomjs PORTVERSION= 2.0.0 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= lang MASTER_SITES= https://bitbucket.org/ariya/phantomjs/downloads/ DISTNAME= ${PORTNAME}-${PORTVERSION}-source Modified: head/lang/swift/Makefile ============================================================================== --- head/lang/swift/Makefile Wed Jul 6 06:18:51 2016 (r418118) +++ head/lang/swift/Makefile Wed Jul 6 07:34:12 2016 (r418119) @@ -2,6 +2,7 @@ PORTNAME= swift PORTVERSION= 2.2.1 +PORTREVISION= 1 CATEGORIES= lang MAINTAINER= swills@FreeBSD.org Modified: head/lang/v8-devel/Makefile ============================================================================== --- head/lang/v8-devel/Makefile Wed Jul 6 06:18:51 2016 (r418118) +++ head/lang/v8-devel/Makefile Wed Jul 6 07:34:12 2016 (r418119) @@ -3,7 +3,7 @@ PORTNAME= v8 PORTVERSION= 3.27.7 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= lang MASTER_SITES= LOCAL/vanilla PKGNAMESUFFIX= -devel Modified: head/mail/dovecot2/Makefile ============================================================================== --- head/mail/dovecot2/Makefile Wed Jul 6 06:18:51 2016 (r418118) +++ head/mail/dovecot2/Makefile Wed Jul 6 07:34:12 2016 (r418119) @@ -14,6 +14,7 @@ PORTNAME= dovecot PORTVERSION= 2.2.25 +PORTREVISION= 1 CATEGORIES= mail ipv6 MASTER_SITES= http://www.dovecot.org/releases/${PORTVERSION:R}/ PKGNAMESUFFIX= 2 Modified: head/mail/postfix-current/Makefile ============================================================================== --- head/mail/postfix-current/Makefile Wed Jul 6 06:18:51 2016 (r418118) +++ head/mail/postfix-current/Makefile Wed Jul 6 07:34:12 2016 (r418119) @@ -3,6 +3,7 @@ PORTNAME= postfix DISTVERSION= 3.2-20160625 +PORTREVISION= 1 PORTEPOCH= 4 CATEGORIES= mail ipv6 MASTER_SITES= ftp://ftp.porcupine.org/mirrors/postfix-release/ \ Modified: head/mail/postfix/Makefile ============================================================================== --- head/mail/postfix/Makefile Wed Jul 6 06:18:51 2016 (r418118) +++ head/mail/postfix/Makefile Wed Jul 6 07:34:12 2016 (r418119) @@ -3,6 +3,7 @@ PORTNAME= postfix PORTVERSION= 3.1.1 +PORTREVISION= 1 PORTEPOCH= 1 CATEGORIES= mail ipv6 MASTER_SITES= ftp://ftp.porcupine.org/mirrors/postfix-release/ \ Modified: head/math/R/Makefile ============================================================================== --- head/math/R/Makefile Wed Jul 6 06:18:51 2016 (r418118) +++ head/math/R/Makefile Wed Jul 6 07:34:12 2016 (r418119) @@ -3,6 +3,7 @@ PORTNAME?= R PORTVERSION= 3.3.1 +PORTREVISION= 1 CATEGORIES= math lang MASTER_SITES= http://cran.r-project.org/%SUBDIR%/ \ ftp://cran.r-project.org/pub/R/%SUBDIR%/ \ Modified: head/misc/sword/Makefile ============================================================================== --- head/misc/sword/Makefile Wed Jul 6 06:18:51 2016 (r418118) +++ head/misc/sword/Makefile Wed Jul 6 07:34:12 2016 (r418119) @@ -3,7 +3,7 @@ PORTNAME= sword PORTVERSION= 1.7.4 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= misc MASTER_SITES= ftp://ftp.crosswire.org/pub/sword/source/v${PORTVERSION:R}/ \ http://crosswire.org/ftpmirror/pub/sword/source/v${PORTVERSION:R}/ Modified: head/multimedia/aegisub/Makefile ============================================================================== --- head/multimedia/aegisub/Makefile Wed Jul 6 06:18:51 2016 (r418118) +++ head/multimedia/aegisub/Makefile Wed Jul 6 07:34:12 2016 (r418119) @@ -3,7 +3,7 @@ PORTNAME= aegisub PORTVERSION= 3.2.2 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= multimedia MASTER_SITES= http://ftp.aegisub.org/pub/archives/releases/source/ \ ftp://ftp.aegisub.org/pub/archives/releases/source/ \ Modified: head/multimedia/subtitlecomposer-kde4/Makefile ============================================================================== --- head/multimedia/subtitlecomposer-kde4/Makefile Wed Jul 6 06:18:51 2016 (r418118) +++ head/multimedia/subtitlecomposer-kde4/Makefile Wed Jul 6 07:34:12 2016 (r418119) @@ -3,7 +3,7 @@ PORTNAME= subtitlecomposer PORTVERSION= 0.5.7 DISTVERSIONPREFIX= v -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= multimedia kde MAINTAINER= makc@FreeBSD.org Modified: head/net-p2p/twister/Makefile ============================================================================== --- head/net-p2p/twister/Makefile Wed Jul 6 06:18:51 2016 (r418118) +++ head/net-p2p/twister/Makefile Wed Jul 6 07:34:12 2016 (r418119) @@ -3,6 +3,7 @@ PORTNAME= twister-core PORTVERSION= 0.9.34 +PORTREVISION= 1 DISTVERSIONPREFIX= v PORTEPOCH= 1 CATEGORIES= net-p2p Modified: head/net/yaz/Makefile ============================================================================== --- head/net/yaz/Makefile Wed Jul 6 06:18:51 2016 (r418118) +++ head/net/yaz/Makefile Wed Jul 6 07:34:12 2016 (r418119) @@ -3,6 +3,7 @@ PORTNAME= yaz PORTVERSION= 5.16.0 +PORTREVISION= 1 CATEGORIES= net MASTER_SITES= http://ftp.indexdata.dk/pub/yaz/ Modified: head/print/harfbuzz/Makefile ============================================================================== --- head/print/harfbuzz/Makefile Wed Jul 6 06:18:51 2016 (r418118) +++ head/print/harfbuzz/Makefile Wed Jul 6 07:34:12 2016 (r418119) @@ -3,6 +3,7 @@ PORTNAME= harfbuzz PORTVERSION= 1.2.3 +PORTREVISION= 1 CATEGORIES= print MASTER_SITES= http://www.freedesktop.org/software/harfbuzz/release/ Modified: head/print/libmspub01/Makefile ============================================================================== --- head/print/libmspub01/Makefile Wed Jul 6 06:18:51 2016 (r418118) +++ head/print/libmspub01/Makefile Wed Jul 6 07:34:12 2016 (r418119) @@ -2,7 +2,7 @@ PORTNAME= libmspub PORTVERSION= 0.1.2 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= print graphics devel MASTER_SITES= http://dev-www.libreoffice.org/src/${PORTNAME}/ PKGNAMESUFFIX= 01 Modified: head/print/tex-xetex/Makefile ============================================================================== --- head/print/tex-xetex/Makefile Wed Jul 6 06:18:51 2016 (r418118) +++ head/print/tex-xetex/Makefile Wed Jul 6 07:34:12 2016 (r418119) @@ -2,7 +2,7 @@ PORTNAME= xetex PORTVERSION= 0.99992 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= print MASTER_SITES= ftp://tug.org/historic/systems/texlive/2015/ PKGNAMEPREFIX= tex- Modified: head/print/texlive-base/Makefile ============================================================================== --- head/print/texlive-base/Makefile Wed Jul 6 06:18:51 2016 (r418118) +++ head/print/texlive-base/Makefile Wed Jul 6 07:34:12 2016 (r418119) @@ -2,7 +2,7 @@ PORTNAME= texlive PORTVERSION= 20150521 -PORTREVISION= 8 +PORTREVISION= 9 CATEGORIES= print MASTER_SITES= TEX_CTAN/systems/texlive/Source/ PKGNAMESUFFIX= -base Modified: head/sysutils/gdisk/Makefile ============================================================================== --- head/sysutils/gdisk/Makefile Wed Jul 6 06:18:51 2016 (r418118) +++ head/sysutils/gdisk/Makefile Wed Jul 6 07:34:12 2016 (r418119) @@ -3,6 +3,7 @@ PORTNAME= gdisk PORTVERSION= 0.8.10 +PORTREVISION= 1 CATEGORIES= sysutils MASTER_SITES= SF/gptfdisk/gptfdisk/${PORTVERSION} DISTNAME= gptfdisk-${PORTVERSION} Modified: head/sysutils/osquery/Makefile ============================================================================== --- head/sysutils/osquery/Makefile Wed Jul 6 06:18:51 2016 (r418118) +++ head/sysutils/osquery/Makefile Wed Jul 6 07:34:12 2016 (r418119) @@ -3,6 +3,7 @@ PORTNAME= osquery PORTVERSION= 1.4.7 +PORTREVISION= 1 CATEGORIES= sysutils MAINTAINER= zi@FreeBSD.org Modified: head/sysutils/tracker/Makefile ============================================================================== --- head/sysutils/tracker/Makefile Wed Jul 6 06:18:51 2016 (r418118) +++ head/sysutils/tracker/Makefile Wed Jul 6 07:34:12 2016 (r418119) @@ -3,7 +3,7 @@ PORTNAME= tracker PORTVERSION= 1.6.1 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= sysutils gnome MASTER_SITES= GNOME Modified: head/textproc/R-cran-stringi/Makefile ============================================================================== --- head/textproc/R-cran-stringi/Makefile Wed Jul 6 06:18:51 2016 (r418118) +++ head/textproc/R-cran-stringi/Makefile Wed Jul 6 07:34:12 2016 (r418119) @@ -3,6 +3,7 @@ PORTNAME= stringi DISTVERSION= 1.1.1 +PORTREVISION= 1 CATEGORIES= textproc DISTNAME= ${PORTNAME}_${DISTVERSION} Modified: head/textproc/dwdiff/Makefile ============================================================================== --- head/textproc/dwdiff/Makefile Wed Jul 6 06:18:51 2016 (r418118) +++ head/textproc/dwdiff/Makefile Wed Jul 6 07:34:12 2016 (r418119) @@ -3,7 +3,7 @@ PORTNAME= dwdiff PORTVERSION= 2.0.9 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= textproc MASTER_SITES= http://os.ghalkes.nl/dist/ \ http://fossies.org/unix/privat/ Modified: head/textproc/ibus-qt/Makefile ============================================================================== --- head/textproc/ibus-qt/Makefile Wed Jul 6 06:18:51 2016 (r418118) +++ head/textproc/ibus-qt/Makefile Wed Jul 6 07:34:12 2016 (r418119) @@ -3,7 +3,7 @@ PORTNAME= ibus-qt PORTVERSION= 1.3.3 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= textproc MASTER_SITES= https://github.com/${GH_ACCOUNT}/${PORTNAME}/releases/download/${PORTVERSION}/ \ http://github.com/${GH_ACCOUNT}/${PORTNAME}/releases/download/${PORTVERSION}/ Modified: head/textproc/libe-book/Makefile ============================================================================== --- head/textproc/libe-book/Makefile Wed Jul 6 06:18:51 2016 (r418118) +++ head/textproc/libe-book/Makefile Wed Jul 6 07:34:12 2016 (r418119) @@ -2,7 +2,7 @@ PORTNAME= libe-book PORTVERSION= 0.1.2 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= textproc MASTER_SITES= SF/libebook/${PORTNAME}-${PORTVERSION}/ Modified: head/textproc/liblrdf/Makefile ============================================================================== --- head/textproc/liblrdf/Makefile Wed Jul 6 06:18:51 2016 (r418118) +++ head/textproc/liblrdf/Makefile Wed Jul 6 07:34:12 2016 (r418119) @@ -3,7 +3,7 @@ PORTNAME= liblrdf PORTVERSION= 0.5.0 -PORTREVISION= 7 +PORTREVISION= 8 CATEGORIES= textproc MASTER_SITES= GENTOO Modified: head/textproc/libvisio01/Makefile ============================================================================== --- head/textproc/libvisio01/Makefile Wed Jul 6 06:18:51 2016 (r418118) +++ head/textproc/libvisio01/Makefile Wed Jul 6 07:34:12 2016 (r418119) @@ -2,6 +2,7 @@ PORTNAME= libvisio PORTVERSION= 0.1.5 +PORTREVISION= 1 CATEGORIES= textproc devel MASTER_SITES= http://dev-www.libreoffice.org/src/${PORTNAME}/ PKGNAMESUFFIX= 01 Modified: head/textproc/raptor2/Makefile ============================================================================== --- head/textproc/raptor2/Makefile Wed Jul 6 06:18:51 2016 (r418118) +++ head/textproc/raptor2/Makefile Wed Jul 6 07:34:12 2016 (r418119) @@ -3,7 +3,7 @@ PORTNAME= raptor2 PORTVERSION= 2.0.15 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= textproc MASTER_SITES= http://download.librdf.org/source/ \ SF/librdf/${PORTNAME}/${PORTVERSION} Modified: head/textproc/rubygem-charlock_holmes/Makefile ============================================================================== --- head/textproc/rubygem-charlock_holmes/Makefile Wed Jul 6 06:18:51 2016 (r418118) +++ head/textproc/rubygem-charlock_holmes/Makefile Wed Jul 6 07:34:12 2016 (r418119) @@ -2,7 +2,7 @@ PORTNAME= charlock_holmes PORTVERSION= 0.7.3 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= textproc rubygems MASTER_SITES= RG Modified: head/textproc/zorba/Makefile ============================================================================== --- head/textproc/zorba/Makefile Wed Jul 6 06:18:51 2016 (r418118) +++ head/textproc/zorba/Makefile Wed Jul 6 07:34:12 2016 (r418119) @@ -3,7 +3,7 @@ PORTNAME= zorba PORTVERSION= 2.7.0 -PORTREVISION= 8 +PORTREVISION= 9 CATEGORIES= textproc MASTER_SITES= https://launchpadlibrarian.net/119058962/ DISTNAME= ${PORTNAME}-src-${PORTVERSION} Modified: head/www/chromium/Makefile ============================================================================== --- head/www/chromium/Makefile Wed Jul 6 06:18:51 2016 (r418118) +++ head/www/chromium/Makefile Wed Jul 6 07:34:12 2016 (r418119) @@ -3,6 +3,7 @@ PORTNAME= chromium PORTVERSION= 51.0.2704.106 +PORTREVISION= 1 CATEGORIES= www MASTER_SITES= http://commondatastorage.googleapis.com/chromium-browser-official/ DISTFILES= ${DISTNAME}${EXTRACT_SUFX} # default, but needed to get distinfo correct if TEST is on Modified: head/www/cppcms/Makefile ============================================================================== --- head/www/cppcms/Makefile Wed Jul 6 06:18:51 2016 (r418118) +++ head/www/cppcms/Makefile Wed Jul 6 07:34:12 2016 (r418119) @@ -2,7 +2,7 @@ PORTNAME= cppcms PORTVERSION= 1.0.5 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= www MASTER_SITES= SF/cppcms/${PORTNAME}/${PORTVERSION} Modified: head/www/webkit-gtk2/Makefile ============================================================================== --- head/www/webkit-gtk2/Makefile Wed Jul 6 06:18:51 2016 (r418118) +++ head/www/webkit-gtk2/Makefile Wed Jul 6 07:34:12 2016 (r418119) @@ -3,6 +3,7 @@ PORTNAME= webkit PORTVERSION= 2.4.11 +PORTREVISION= 1 CATEGORIES= www MASTER_SITES= http://webkitgtk.org/releases/ PKGNAMESUFFIX= -gtk2 Modified: head/www/webkit-gtk3/Makefile ============================================================================== --- head/www/webkit-gtk3/Makefile Wed Jul 6 06:18:51 2016 (r418118) +++ head/www/webkit-gtk3/Makefile Wed Jul 6 07:34:12 2016 (r418119) @@ -3,6 +3,7 @@ PORTNAME= webkit PORTVERSION= 2.4.11 +PORTREVISION= 1 CATEGORIES= www MASTER_SITES= http://webkitgtk.org/releases/ PKGNAMESUFFIX= -gtk3 Modified: head/www/webkit-qt5/Makefile ============================================================================== --- head/www/webkit-qt5/Makefile Wed Jul 6 06:18:51 2016 (r418118) +++ head/www/webkit-qt5/Makefile Wed Jul 6 07:34:12 2016 (r418119) @@ -2,7 +2,7 @@ PORTNAME= webkit DISTVERSION= ${QT5_VERSION} -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= www PKGNAMEPREFIX= qt5- Modified: head/www/webkit2-gtk3/Makefile ============================================================================== --- head/www/webkit2-gtk3/Makefile Wed Jul 6 06:18:51 2016 (r418118) +++ head/www/webkit2-gtk3/Makefile Wed Jul 6 07:34:12 2016 (r418119) @@ -3,7 +3,7 @@ PORTNAME= webkit PORTVERSION= 2.8.5 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= www MASTER_SITES= http://webkitgtk.org/releases/ PKGNAMESUFFIX= 2-gtk3 From owner-svn-ports-all@freebsd.org Wed Jul 6 08:02:24 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 4C8C5B7382B; Wed, 6 Jul 2016 08:02:24 +0000 (UTC) (envelope-from mat@FreeBSD.org) Received: from prod2.absolight.net (prod2.absolight.net [79.143.243.136]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "plouf.absolight.net", Issuer "CAcert Class 3 Root" (not verified)) by mx1.freebsd.org (Postfix) with ESMTPS id 1712913D7; Wed, 6 Jul 2016 08:02:23 +0000 (UTC) (envelope-from mat@FreeBSD.org) Received: from prod2.absolight.net (localhost [127.0.0.1]) by prod2.absolight.net (Postfix) with ESMTP id 3FCD6BDC93; Wed, 6 Jul 2016 10:02:21 +0200 (CEST) Received: from atuin.in.mat.cc (atuin.in.mat.cc [79.143.241.205]) by prod2.absolight.net (Postfix) with ESMTPA id 1F71FBDC6E; Wed, 6 Jul 2016 10:02:21 +0200 (CEST) Received: from localhost (localhost [127.0.0.1]) by atuin.in.mat.cc (Postfix) with ESMTP id 8D5A064350C9; Wed, 6 Jul 2016 10:02:20 +0200 (CEST) Date: Wed, 06 Jul 2016 10:02:20 +0200 From: Mathieu Arnold To: Pietro Cerutti , ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: Re: svn commit: r418118 - in head/devel/icu: . files Message-ID: In-Reply-To: <201607060618.u666Ip6v062787@repo.freebsd.org> References: <201607060618.u666Ip6v062787@repo.freebsd.org> X-Mailer: Mulberry/4.0.8 (Mac OS X) MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="==========F1151615681FBC8E7D01==========" X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Jul 2016 08:02:24 -0000 --==========F1151615681FBC8E7D01========== Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Content-Disposition: inline +--On 6 juillet 2016 06:18:51 +0000 Pietro Cerutti wrote: | +TEST_TARGET= do-test TEST_TARGET means run this targets in the source directory to run the tests, but it is useless if there is a do-test target is defined in the Makefile because it is not going to be used, ever. | -test regression-test: iotest cintltst intltest | +do-test regression-test: iotest cintltst intltest -- Mathieu Arnold --==========F1151615681FBC8E7D01========== Content-Type: application/pgp-signature Content-Transfer-Encoding: 7bit -----BEGIN PGP SIGNATURE----- Version: GnuPG v1 iQJ8BAEBCgBmBQJXfLsMXxSAAAAAAC4AKGlzc3Vlci1mcHJAbm90YXRpb25zLm9w ZW5wZ3AuZmlmdGhob3JzZW1hbi5uZXQzQUI2OTc4OUQyRUQxMjEwNjQ0MEJBNUIz QTQ1MTZGMzUxODNDRTQ4AAoJEDpFFvNRg85IO2YQAKBpsltkuvPr5hf3mKnaPM78 jyZaH0Cai87M7qTyR6BhUbSArUrdBI2yvh1EHJ8TSxA+2n62JMxsYNkr9eNWYwes MsaJC+NFefufcpmoXKyTLzvVcZDEMfCZw+l1PC0gEUVCul0+X4yrmyXYHnnLuaLe v2g9qzJ7cNYfmwVNqPHS6KPUFFeOmbXH57mJpv0wAz2oA8APlIDtHnoHPyMHQS4O f4B/PVo+zL3yE+ot42zxlc+cOJ4KXyx65xNluO7cpFpeH3DDyJvmSPtzAn/LYart sacm2Gp+rmVpoPmsqS0azPxcyBf6oFPwvoZsIrI0XpIb3k+1mXaiKPKBAuys6UJa 0Fc7H4ohGgQ3/0MWItRzhsGj96tjo9oZvHwDuYeuKuPbmHbXojaTtscaq1k+6cdi L9+a3Eki7q+pw985dcznnKowIwXWZo/6mG7X/WJheR0gexbmiDZLA75p50wEH4Z9 7pEfddz1j67zZC5+HBhdKI5js6W17QsKniHtXuaFluJEz0sGFOEN/SZTm9H6/pm9 fWvx3tY16s4TAtMUWNijWdjNGJ2m/VIudU+bUruHKSSPrK5v0VKjYZjRBOvlhjdk iqOAoll7wL4EUee2ws1VoxxI6QQ0ZN655jeQx15bT6aTsrjasTJU8m+rz0PPO1Ky u61W5AxHc63Txwcvvrm1 =Ovt3 -----END PGP SIGNATURE----- --==========F1151615681FBC8E7D01==========-- From owner-svn-ports-all@freebsd.org Wed Jul 6 08:06:57 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id ED432B738C8; Wed, 6 Jul 2016 08:06:57 +0000 (UTC) (envelope-from gahr@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id BDD8815B0; Wed, 6 Jul 2016 08:06:57 +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 u6686u9f004798; Wed, 6 Jul 2016 08:06:56 GMT (envelope-from gahr@FreeBSD.org) Received: (from gahr@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u6686udj004797; Wed, 6 Jul 2016 08:06:56 GMT (envelope-from gahr@FreeBSD.org) Message-Id: <201607060806.u6686udj004797@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: gahr set sender to gahr@FreeBSD.org using -f From: Pietro Cerutti Date: Wed, 6 Jul 2016 08:06:56 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418120 - head/devel/icu X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Jul 2016 08:06:58 -0000 Author: gahr Date: Wed Jul 6 08:06:56 2016 New Revision: 418120 URL: https://svnweb.freebsd.org/changeset/ports/418120 Log: devel/icu: TEST_TARGET is useless when the do-test target is defined Reported by: mat Modified: head/devel/icu/Makefile Modified: head/devel/icu/Makefile ============================================================================== --- head/devel/icu/Makefile Wed Jul 6 07:34:12 2016 (r418119) +++ head/devel/icu/Makefile Wed Jul 6 08:06:56 2016 (r418120) @@ -24,7 +24,6 @@ THREADS_DESC= Build thread-safe version USE_LDCONFIG= yes WRKSRC= ${WRKDIR}/icu/source -TEST_TARGET= do-test GNU_CONFIGURE= yes CONFIGURE_ARGS+= --with-data-packaging=library \ From owner-svn-ports-all@freebsd.org Wed Jul 6 08:07:23 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 21536B7391E; Wed, 6 Jul 2016 08:07:23 +0000 (UTC) (envelope-from gahr@FreeBSD.org) Received: from mail.ptrcrt.ch (gahr.cloud.tilaa.com [84.22.109.158]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 011781688; Wed, 6 Jul 2016 08:07:19 +0000 (UTC) (envelope-from gahr@FreeBSD.org) Received: from webmail.ptrcrt.ch (www.gahr.ch [192.168.1.2]) by mail.ptrcrt.ch (OpenSMTPD) with ESMTPSA id ecabdca0 TLS version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128 verify=NO; Wed, 6 Jul 2016 08:07:16 +0000 (UTC) MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII; format=flowed Content-Transfer-Encoding: 7bit Date: Wed, 06 Jul 2016 10:07:16 +0200 From: Pietro Cerutti To: Mathieu Arnold Cc: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org, owner-ports-committers@freebsd.org Subject: Re: svn commit: r418118 - in head/devel/icu: . files Organization: The FreeBSD Project In-Reply-To: References: <201607060618.u666Ip6v062787@repo.freebsd.org> Message-ID: X-Sender: gahr@FreeBSD.org User-Agent: Roundcube Webmail/1.2.0 X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Jul 2016 08:07:23 -0000 On 2016-07-06 10:02, Mathieu Arnold wrote: > +--On 6 juillet 2016 06:18:51 +0000 Pietro Cerutti > wrote: > | +TEST_TARGET= do-test > > TEST_TARGET means run this targets in the source directory to run the > tests, but it is useless if there is a do-test target is defined in the > Makefile because it is not going to be used, ever. > > | -test regression-test: iotest cintltst intltest > | +do-test regression-test: iotest cintltst intltest Fixed in r418120, thanks! -- Pietro Cerutti gahr@FreeBSD.org PGP Public Key: http://gahr.ch/pgp From owner-svn-ports-all@freebsd.org Wed Jul 6 08:36:20 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 00E14B2109B; Wed, 6 Jul 2016 08:36:20 +0000 (UTC) (envelope-from wen@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id D102212D3; Wed, 6 Jul 2016 08:36:19 +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 u668aJN1015611; Wed, 6 Jul 2016 08:36:19 GMT (envelope-from wen@FreeBSD.org) Received: (from wen@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u668aING015607; Wed, 6 Jul 2016 08:36:18 GMT (envelope-from wen@FreeBSD.org) Message-Id: <201607060836.u668aING015607@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: wen set sender to wen@FreeBSD.org using -f From: Wen Heping Date: Wed, 6 Jul 2016 08:36:18 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418121 - in head/math/saga: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Jul 2016 08:36:20 -0000 Author: wen Date: Wed Jul 6 08:36:18 2016 New Revision: 418121 URL: https://svnweb.freebsd.org/changeset/ports/418121 Log: - Update to 2.3.0 PR: 210810 Submitted by: rhurlin@gwdg.de(maintainer) Modified: head/math/saga/Makefile head/math/saga/distinfo head/math/saga/files/patch-src_saga__core_saga__gui_dlg__about.cpp head/math/saga/pkg-plist Modified: head/math/saga/Makefile ============================================================================== --- head/math/saga/Makefile Wed Jul 6 08:06:56 2016 (r418120) +++ head/math/saga/Makefile Wed Jul 6 08:36:18 2016 (r418121) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= saga -PORTVERSION= 2.2.7 +PORTVERSION= 2.3.0 CATEGORIES= math MASTER_SITES= SF/saga-gis/SAGA%20-%20${PORTVERSION:C/\.[[:digit:]]*$//}/SAGA%20${PORTVERSION} DISTNAME= ${PORTNAME}_${PORTVERSION} @@ -14,14 +14,17 @@ LICENSE= GPLv2 LGPL21 LICENSE_COMB= multi BUILD_DEPENDS= swig3.0:devel/swig30 -LIB_DEPENDS= libproj.so:graphics/proj \ +LIB_DEPENDS= libfftw3.so:math/fftw3 \ libgdal.so:graphics/gdal \ libhpdf.so:print/libharu \ libjasper.so:graphics/jasper \ - libtiff.so:graphics/tiff \ - libodbc.so:databases/unixODBC \ liblas.so:devel/liblas12 \ - libopencv_ml.so:graphics/opencv + libodbc.so:databases/unixODBC \ + libopencv_ml.so:graphics/opencv \ + libopencv_core.so:graphics/opencv-core \ + libproj.so:graphics/proj \ + libtbb.so:devel/tbb \ + libtiff.so:graphics/tiff RUN_DEPENDS:= ${BUILD_DEPENDS} CONFIGURE_ARGS= CFLAGS="${CFLAGS}" LDFLAGS="${LDFLAGS}" \ @@ -78,8 +81,6 @@ post-extract: ${WRKSRC}/src/modules/imagery/imagery_opencv/Makefile.am post-patch: - @${REINPLACE_CMD} -e 's|wxString(SAGA_VERSION) + "\\n"|wxString(SAGA_VERSION) + " (SVN r2893)" + "\\n"|' \ - ${WRKSRC}/src/saga_core/saga_gui/dlg_about.cpp .if ${ARCH} == "powerpc" @${REINPLACE_CMD} -e 's|typedef unsigned long DWORD;|typedef unsigned int DWORD;|' \ ${WRKSRC}/src/saga_core/saga_api/api_core.h Modified: head/math/saga/distinfo ============================================================================== --- head/math/saga/distinfo Wed Jul 6 08:06:56 2016 (r418120) +++ head/math/saga/distinfo Wed Jul 6 08:36:18 2016 (r418121) @@ -1,2 +1,3 @@ -SHA256 (saga_2.2.7.tar.gz) = 6be4b844226bc48da4f2deb39bc732767b939e72b76506abf03f8170c54cb671 -SIZE (saga_2.2.7.tar.gz) = 4239415 +TIMESTAMP = 1467312794 +SHA256 (saga_2.3.0.tar.gz) = d1fd4fad55c7fe7e57f4ddb6f24ca7b732977c472766a3a2260bde5b3b31a21e +SIZE (saga_2.3.0.tar.gz) = 4281156 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 Wed Jul 6 08:06:56 2016 (r418120) +++ head/math/saga/files/patch-src_saga__core_saga__gui_dlg__about.cpp Wed Jul 6 08:36:18 2016 (r418121) @@ -1,6 +1,14 @@ ---- src/saga_core/saga_gui/dlg_about.cpp.orig 2016-02-28 15:31:41 UTC +--- src/saga_core/saga_gui/dlg_about.cpp.orig 2016-06-29 05:55:46 UTC +++ src/saga_core/saga_gui/dlg_about.cpp -@@ -264,7 +264,25 @@ wxString CDLG_About::_Get_Version(void) +@@ -189,6 +189,7 @@ wxString CDLG_About::_Get_Version(void) + s += "http://www.saga-gis.org\n"; + s += "\n"; + s += "Version: " + wxString(SAGA_VERSION) + "\n"; ++ s += "https://sourceforge.net/p/saga-gis/code/ci/release-2-3-0/tree/\n"; + + #ifdef _SAGA_MSW + #ifdef _WIN64 +@@ -264,7 +265,25 @@ wxString CDLG_About::_Get_Version(void) #elif defined(__GNUWIN32__) "Gnu-Win32 compiler" #elif defined(__GNUG__) Modified: head/math/saga/pkg-plist ============================================================================== --- head/math/saga/pkg-plist Wed Jul 6 08:06:56 2016 (r418120) +++ head/math/saga/pkg-plist Wed Jul 6 08:36:18 2016 (r418121) @@ -115,6 +115,7 @@ share/applications/saga.desktop share/icons/hicolor/128x128/apps/saga.png share/icons/hicolor/16x16/apps/saga.png share/icons/hicolor/192x192/apps/saga.png +share/icons/hicolor/22x22/apps/saga.png share/icons/hicolor/24x24/apps/saga.png share/icons/hicolor/256x256/apps/saga.png share/icons/hicolor/32x32/apps/saga.png From owner-svn-ports-all@freebsd.org Wed Jul 6 08:44:11 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 7FC2EB212E9; Wed, 6 Jul 2016 08:44:11 +0000 (UTC) (envelope-from lth@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 51FDF16BA; Wed, 6 Jul 2016 08:44:11 +0000 (UTC) (envelope-from lth@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u668iAGM019394; Wed, 6 Jul 2016 08:44:10 GMT (envelope-from lth@FreeBSD.org) Received: (from lth@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u668iAcT019392; Wed, 6 Jul 2016 08:44:10 GMT (envelope-from lth@FreeBSD.org) Message-Id: <201607060844.u668iAcT019392@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: lth set sender to lth@FreeBSD.org using -f From: Lars Thegler Date: Wed, 6 Jul 2016 08:44:10 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418122 - head/databases/p5-SQL-Statement X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Jul 2016 08:44:11 -0000 Author: lth Date: Wed Jul 6 08:44:10 2016 New Revision: 418122 URL: https://svnweb.freebsd.org/changeset/ports/418122 Log: - Update to 1.410 - Add LICENSE - Disperse maintainership Modified: head/databases/p5-SQL-Statement/Makefile head/databases/p5-SQL-Statement/distinfo Modified: head/databases/p5-SQL-Statement/Makefile ============================================================================== --- head/databases/p5-SQL-Statement/Makefile Wed Jul 6 08:36:18 2016 (r418121) +++ head/databases/p5-SQL-Statement/Makefile Wed Jul 6 08:44:10 2016 (r418122) @@ -2,14 +2,17 @@ # $FreeBSD$ PORTNAME= SQL-Statement -PORTVERSION= 1.407 +PORTVERSION= 1.410 CATEGORIES= databases perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- -MAINTAINER= lth@FreeBSD.org +MAINTAINER= perl@FreeBSD.org COMMENT= Perl5 module for SQL parsing and processing +LICENSE= ART10 GPLv1 +LICENSE_COMB= dual + RUN_DEPENDS= p5-Clone>=0.30:devel/p5-Clone \ p5-Params-Util>=1.00:devel/p5-Params-Util BUILD_DEPENDS:= ${RUN_DEPENDS} Modified: head/databases/p5-SQL-Statement/distinfo ============================================================================== --- head/databases/p5-SQL-Statement/distinfo Wed Jul 6 08:36:18 2016 (r418121) +++ head/databases/p5-SQL-Statement/distinfo Wed Jul 6 08:44:10 2016 (r418122) @@ -1,2 +1,3 @@ -SHA256 (SQL-Statement-1.407.tar.gz) = f6e0c82b924a9eb983ad1561cad8bdd10f50fef97e53696e948ae167bd33b4d0 -SIZE (SQL-Statement-1.407.tar.gz) = 137336 +TIMESTAMP = 1467793815 +SHA256 (SQL-Statement-1.410.tar.gz) = 7367fcda896367c96d98416cad423c9f98adb7e04b793c5c7deb3052a1213182 +SIZE (SQL-Statement-1.410.tar.gz) = 153271 From owner-svn-ports-all@freebsd.org Wed Jul 6 08:44:42 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 4C117B2131D; Wed, 6 Jul 2016 08:44:42 +0000 (UTC) (envelope-from delphij@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 16CD1179B; Wed, 6 Jul 2016 08:44:42 +0000 (UTC) (envelope-from delphij@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u668if2t019536; Wed, 6 Jul 2016 08:44:41 GMT (envelope-from delphij@FreeBSD.org) Received: (from delphij@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u668ifN0019533; Wed, 6 Jul 2016 08:44:41 GMT (envelope-from delphij@FreeBSD.org) Message-Id: <201607060844.u668ifN0019533@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: delphij set sender to delphij@FreeBSD.org using -f From: Xin LI Date: Wed, 6 Jul 2016 08:44:41 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418123 - head/www/dokuwiki X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Jul 2016 08:44:42 -0000 Author: delphij Date: Wed Jul 6 08:44:40 2016 New Revision: 418123 URL: https://svnweb.freebsd.org/changeset/ports/418123 Log: Update to 2016-06-26a. Modified: head/www/dokuwiki/Makefile head/www/dokuwiki/distinfo head/www/dokuwiki/pkg-plist Modified: head/www/dokuwiki/Makefile ============================================================================== --- head/www/dokuwiki/Makefile Wed Jul 6 08:44:10 2016 (r418122) +++ head/www/dokuwiki/Makefile Wed Jul 6 08:44:40 2016 (r418123) @@ -14,7 +14,7 @@ LICENSE= GPLv2 BROKEN_powerpc64= Does not build -DIST_VER= ${PORTNAME}-2015-08-10a +DIST_VER= ${PORTNAME}-2016-06-26a USE_PHP= gd mbstring openssl pcre session xml zlib NO_ARCH= YES NO_BUILD= YES Modified: head/www/dokuwiki/distinfo ============================================================================== --- head/www/dokuwiki/distinfo Wed Jul 6 08:44:10 2016 (r418122) +++ head/www/dokuwiki/distinfo Wed Jul 6 08:44:40 2016 (r418123) @@ -1,2 +1,3 @@ -SHA256 (dokuwiki-2015-08-10a.tgz) = 98f0868c0cf9fc6664b57f89149fa537b73222bcc010247771e4afc08c8199fd -SIZE (dokuwiki-2015-08-10a.tgz) = 3406922 +TIMESTAMP = 1467792388 +SHA256 (dokuwiki-2016-06-26a.tgz) = dfdb243cc766482eeefd99e70215b289c9aa0bd8bee83068f438440d7b1a1ce6 +SIZE (dokuwiki-2016-06-26a.tgz) = 3464161 Modified: head/www/dokuwiki/pkg-plist ============================================================================== --- head/www/dokuwiki/pkg-plist Wed Jul 6 08:44:10 2016 (r418122) +++ head/www/dokuwiki/pkg-plist Wed Jul 6 08:44:40 2016 (r418123) @@ -51,6 +51,7 @@ %%WWWDIR%%/inc/FeedParser.php %%WWWDIR%%/inc/Form/ButtonElement.php %%WWWDIR%%/inc/Form/CheckableElement.php +%%WWWDIR%%/inc/Form/DropdownElement.php %%WWWDIR%%/inc/Form/Element.php %%WWWDIR%%/inc/Form/FieldsetCloseElement.php %%WWWDIR%%/inc/Form/FieldsetOpenElement.php @@ -83,7 +84,6 @@ %%WWWDIR%%/inc/cache.php %%WWWDIR%%/inc/changelog.php %%WWWDIR%%/inc/cli.php -%%WWWDIR%%/inc/cliopts.php %%WWWDIR%%/inc/common.php %%WWWDIR%%/inc/compatibility.php %%WWWDIR%%/inc/config_cascade.php @@ -329,6 +329,44 @@ %%WWWDIR%%/inc/lang/cs/subscr_single.txt %%WWWDIR%%/inc/lang/cs/updateprofile.txt %%WWWDIR%%/inc/lang/cs/uploadmail.txt +%%WWWDIR%%/inc/lang/cy/admin.txt +%%WWWDIR%%/inc/lang/cy/adminplugins.txt +%%WWWDIR%%/inc/lang/cy/backlinks.txt +%%WWWDIR%%/inc/lang/cy/conflict.txt +%%WWWDIR%%/inc/lang/cy/denied.txt +%%WWWDIR%%/inc/lang/cy/diff.txt +%%WWWDIR%%/inc/lang/cy/draft.txt +%%WWWDIR%%/inc/lang/cy/edit.txt +%%WWWDIR%%/inc/lang/cy/editrev.txt +%%WWWDIR%%/inc/lang/cy/index.txt +%%WWWDIR%%/inc/lang/cy/install.html +%%WWWDIR%%/inc/lang/cy/jquery.ui.datepicker.js +%%WWWDIR%%/inc/lang/cy/lang.php +%%WWWDIR%%/inc/lang/cy/locked.txt +%%WWWDIR%%/inc/lang/cy/login.txt +%%WWWDIR%%/inc/lang/cy/mailtext.txt +%%WWWDIR%%/inc/lang/cy/mailwrap.html +%%WWWDIR%%/inc/lang/cy/newpage.txt +%%WWWDIR%%/inc/lang/cy/norev.txt +%%WWWDIR%%/inc/lang/cy/password.txt +%%WWWDIR%%/inc/lang/cy/preview.txt +%%WWWDIR%%/inc/lang/cy/pwconfirm.txt +%%WWWDIR%%/inc/lang/cy/read.txt +%%WWWDIR%%/inc/lang/cy/recent.txt +%%WWWDIR%%/inc/lang/cy/register.txt +%%WWWDIR%%/inc/lang/cy/registermail.txt +%%WWWDIR%%/inc/lang/cy/resendpwd.txt +%%WWWDIR%%/inc/lang/cy/resetpwd.txt +%%WWWDIR%%/inc/lang/cy/revisions.txt +%%WWWDIR%%/inc/lang/cy/searchpage.txt +%%WWWDIR%%/inc/lang/cy/showrev.txt +%%WWWDIR%%/inc/lang/cy/stopwords.txt +%%WWWDIR%%/inc/lang/cy/subscr_digest.txt +%%WWWDIR%%/inc/lang/cy/subscr_form.txt +%%WWWDIR%%/inc/lang/cy/subscr_list.txt +%%WWWDIR%%/inc/lang/cy/subscr_single.txt +%%WWWDIR%%/inc/lang/cy/updateprofile.txt +%%WWWDIR%%/inc/lang/cy/uploadmail.txt %%WWWDIR%%/inc/lang/da/admin.txt %%WWWDIR%%/inc/lang/da/adminplugins.txt %%WWWDIR%%/inc/lang/da/backlinks.txt @@ -1360,6 +1398,7 @@ %%WWWDIR%%/inc/lang/mk/recent.txt %%WWWDIR%%/inc/lang/mk/showrev.txt %%WWWDIR%%/inc/lang/ml/admin.txt +%%WWWDIR%%/inc/lang/ml/jquery.ui.datepicker.js %%WWWDIR%%/inc/lang/mr/admin.txt %%WWWDIR%%/inc/lang/mr/backlinks.txt %%WWWDIR%%/inc/lang/mr/conflict.txt @@ -1960,6 +1999,7 @@ %%WWWDIR%%/inc/lang/uk/register.txt %%WWWDIR%%/inc/lang/uk/registermail.txt %%WWWDIR%%/inc/lang/uk/resendpwd.txt +%%WWWDIR%%/inc/lang/uk/resetpwd.txt %%WWWDIR%%/inc/lang/uk/revisions.txt %%WWWDIR%%/inc/lang/uk/searchpage.txt %%WWWDIR%%/inc/lang/uk/showrev.txt @@ -2415,6 +2455,8 @@ %%WWWDIR%%/lib/plugins/acl/lang/ca/lang.php %%WWWDIR%%/lib/plugins/acl/lang/cs/help.txt %%WWWDIR%%/lib/plugins/acl/lang/cs/lang.php +%%WWWDIR%%/lib/plugins/acl/lang/cy/help.txt +%%WWWDIR%%/lib/plugins/acl/lang/cy/lang.php %%WWWDIR%%/lib/plugins/acl/lang/da/help.txt %%WWWDIR%%/lib/plugins/acl/lang/da/lang.php %%WWWDIR%%/lib/plugins/acl/lang/de-informal/help.txt @@ -2539,6 +2581,8 @@ %%WWWDIR%%/lib/plugins/authad/lang/ca/lang.php %%WWWDIR%%/lib/plugins/authad/lang/cs/lang.php %%WWWDIR%%/lib/plugins/authad/lang/cs/settings.php +%%WWWDIR%%/lib/plugins/authad/lang/cy/lang.php +%%WWWDIR%%/lib/plugins/authad/lang/cy/settings.php %%WWWDIR%%/lib/plugins/authad/lang/da/lang.php %%WWWDIR%%/lib/plugins/authad/lang/da/settings.php %%WWWDIR%%/lib/plugins/authad/lang/de-informal/lang.php @@ -2609,6 +2653,9 @@ %%WWWDIR%%/lib/plugins/authldap/lang/bg/settings.php %%WWWDIR%%/lib/plugins/authldap/lang/cs/lang.php %%WWWDIR%%/lib/plugins/authldap/lang/cs/settings.php +%%WWWDIR%%/lib/plugins/authldap/lang/cy/lang.php +%%WWWDIR%%/lib/plugins/authldap/lang/cy/settings.php +%%WWWDIR%%/lib/plugins/authldap/lang/da/lang.php %%WWWDIR%%/lib/plugins/authldap/lang/da/settings.php %%WWWDIR%%/lib/plugins/authldap/lang/de-informal/settings.php %%WWWDIR%%/lib/plugins/authldap/lang/de/lang.php @@ -2619,6 +2666,7 @@ %%WWWDIR%%/lib/plugins/authldap/lang/es/lang.php %%WWWDIR%%/lib/plugins/authldap/lang/es/settings.php %%WWWDIR%%/lib/plugins/authldap/lang/et/settings.php +%%WWWDIR%%/lib/plugins/authldap/lang/fa/lang.php %%WWWDIR%%/lib/plugins/authldap/lang/fa/settings.php %%WWWDIR%%/lib/plugins/authldap/lang/fi/settings.php %%WWWDIR%%/lib/plugins/authldap/lang/fr/lang.php @@ -2628,6 +2676,7 @@ %%WWWDIR%%/lib/plugins/authldap/lang/hr/settings.php %%WWWDIR%%/lib/plugins/authldap/lang/hu/lang.php %%WWWDIR%%/lib/plugins/authldap/lang/hu/settings.php +%%WWWDIR%%/lib/plugins/authldap/lang/it/lang.php %%WWWDIR%%/lib/plugins/authldap/lang/it/settings.php %%WWWDIR%%/lib/plugins/authldap/lang/ja/lang.php %%WWWDIR%%/lib/plugins/authldap/lang/ja/settings.php @@ -2659,6 +2708,9 @@ %%WWWDIR%%/lib/plugins/authmysql/lang/bg/settings.php %%WWWDIR%%/lib/plugins/authmysql/lang/cs/lang.php %%WWWDIR%%/lib/plugins/authmysql/lang/cs/settings.php +%%WWWDIR%%/lib/plugins/authmysql/lang/cy/lang.php +%%WWWDIR%%/lib/plugins/authmysql/lang/cy/settings.php +%%WWWDIR%%/lib/plugins/authmysql/lang/da/lang.php %%WWWDIR%%/lib/plugins/authmysql/lang/da/settings.php %%WWWDIR%%/lib/plugins/authmysql/lang/de-informal/settings.php %%WWWDIR%%/lib/plugins/authmysql/lang/de/lang.php @@ -2668,6 +2720,7 @@ %%WWWDIR%%/lib/plugins/authmysql/lang/eo/settings.php %%WWWDIR%%/lib/plugins/authmysql/lang/es/lang.php %%WWWDIR%%/lib/plugins/authmysql/lang/es/settings.php +%%WWWDIR%%/lib/plugins/authmysql/lang/fa/lang.php %%WWWDIR%%/lib/plugins/authmysql/lang/fa/settings.php %%WWWDIR%%/lib/plugins/authmysql/lang/fi/settings.php %%WWWDIR%%/lib/plugins/authmysql/lang/fr/lang.php @@ -2694,6 +2747,7 @@ %%WWWDIR%%/lib/plugins/authmysql/lang/pt/settings.php %%WWWDIR%%/lib/plugins/authmysql/lang/ru/lang.php %%WWWDIR%%/lib/plugins/authmysql/lang/ru/settings.php +%%WWWDIR%%/lib/plugins/authmysql/lang/sk/lang.php %%WWWDIR%%/lib/plugins/authmysql/lang/sk/settings.php %%WWWDIR%%/lib/plugins/authmysql/lang/sl/settings.php %%WWWDIR%%/lib/plugins/authmysql/lang/sv/settings.php @@ -2703,11 +2757,38 @@ %%WWWDIR%%/lib/plugins/authmysql/lang/zh/lang.php %%WWWDIR%%/lib/plugins/authmysql/lang/zh/settings.php %%WWWDIR%%/lib/plugins/authmysql/plugin.info.txt +%%WWWDIR%%/lib/plugins/authpdo/README +%%WWWDIR%%/lib/plugins/authpdo/auth.php +%%WWWDIR%%/lib/plugins/authpdo/conf/default.php +%%WWWDIR%%/lib/plugins/authpdo/conf/metadata.php +%%WWWDIR%%/lib/plugins/authpdo/lang/bg/lang.php +%%WWWDIR%%/lib/plugins/authpdo/lang/cs/lang.php +%%WWWDIR%%/lib/plugins/authpdo/lang/cy/lang.php +%%WWWDIR%%/lib/plugins/authpdo/lang/de/lang.php +%%WWWDIR%%/lib/plugins/authpdo/lang/en/lang.php +%%WWWDIR%%/lib/plugins/authpdo/lang/en/settings.php +%%WWWDIR%%/lib/plugins/authpdo/lang/es/lang.php +%%WWWDIR%%/lib/plugins/authpdo/lang/fa/lang.php +%%WWWDIR%%/lib/plugins/authpdo/lang/fr/lang.php +%%WWWDIR%%/lib/plugins/authpdo/lang/hr/lang.php +%%WWWDIR%%/lib/plugins/authpdo/lang/hu/lang.php +%%WWWDIR%%/lib/plugins/authpdo/lang/it/lang.php +%%WWWDIR%%/lib/plugins/authpdo/lang/ja/lang.php +%%WWWDIR%%/lib/plugins/authpdo/lang/ko/lang.php +%%WWWDIR%%/lib/plugins/authpdo/lang/nl/lang.php +%%WWWDIR%%/lib/plugins/authpdo/lang/pt-br/lang.php +%%WWWDIR%%/lib/plugins/authpdo/lang/pt/lang.php +%%WWWDIR%%/lib/plugins/authpdo/lang/ru/lang.php +%%WWWDIR%%/lib/plugins/authpdo/lang/sk/lang.php +%%WWWDIR%%/lib/plugins/authpdo/lang/tr/lang.php +%%WWWDIR%%/lib/plugins/authpdo/lang/zh/lang.php +%%WWWDIR%%/lib/plugins/authpdo/plugin.info.txt %%WWWDIR%%/lib/plugins/authpgsql/auth.php %%WWWDIR%%/lib/plugins/authpgsql/conf/default.php %%WWWDIR%%/lib/plugins/authpgsql/conf/metadata.php %%WWWDIR%%/lib/plugins/authpgsql/lang/bg/settings.php %%WWWDIR%%/lib/plugins/authpgsql/lang/cs/settings.php +%%WWWDIR%%/lib/plugins/authpgsql/lang/cy/settings.php %%WWWDIR%%/lib/plugins/authpgsql/lang/da/settings.php %%WWWDIR%%/lib/plugins/authpgsql/lang/de-informal/settings.php %%WWWDIR%%/lib/plugins/authpgsql/lang/de/settings.php @@ -2743,6 +2824,7 @@ %%WWWDIR%%/lib/plugins/authplain/lang/ca-valencia/lang.php %%WWWDIR%%/lib/plugins/authplain/lang/ca/lang.php %%WWWDIR%%/lib/plugins/authplain/lang/cs/lang.php +%%WWWDIR%%/lib/plugins/authplain/lang/cy/lang.php %%WWWDIR%%/lib/plugins/authplain/lang/da/lang.php %%WWWDIR%%/lib/plugins/authplain/lang/de-informal/lang.php %%WWWDIR%%/lib/plugins/authplain/lang/de/lang.php @@ -2814,6 +2896,8 @@ %%WWWDIR%%/lib/plugins/config/lang/ca/lang.php %%WWWDIR%%/lib/plugins/config/lang/cs/intro.txt %%WWWDIR%%/lib/plugins/config/lang/cs/lang.php +%%WWWDIR%%/lib/plugins/config/lang/cy/intro.txt +%%WWWDIR%%/lib/plugins/config/lang/cy/lang.php %%WWWDIR%%/lib/plugins/config/lang/da/intro.txt %%WWWDIR%%/lib/plugins/config/lang/da/lang.php %%WWWDIR%%/lib/plugins/config/lang/de-informal/intro.txt @@ -2842,6 +2926,8 @@ %%WWWDIR%%/lib/plugins/config/lang/he/intro.txt %%WWWDIR%%/lib/plugins/config/lang/he/lang.php %%WWWDIR%%/lib/plugins/config/lang/hi/lang.php +%%WWWDIR%%/lib/plugins/config/lang/hr/intro.txt +%%WWWDIR%%/lib/plugins/config/lang/hr/lang.php %%WWWDIR%%/lib/plugins/config/lang/hu/intro.txt %%WWWDIR%%/lib/plugins/config/lang/hu/lang.php %%WWWDIR%%/lib/plugins/config/lang/ia/intro.txt @@ -2924,12 +3010,21 @@ %%WWWDIR%%/lib/plugins/extension/images/template.png %%WWWDIR%%/lib/plugins/extension/images/up.png %%WWWDIR%%/lib/plugins/extension/images/warning.png +%%WWWDIR%%/lib/plugins/extension/lang/bg/intro_install.txt +%%WWWDIR%%/lib/plugins/extension/lang/bg/intro_plugins.txt +%%WWWDIR%%/lib/plugins/extension/lang/bg/intro_search.txt +%%WWWDIR%%/lib/plugins/extension/lang/bg/intro_templates.txt %%WWWDIR%%/lib/plugins/extension/lang/bg/lang.php %%WWWDIR%%/lib/plugins/extension/lang/cs/intro_install.txt %%WWWDIR%%/lib/plugins/extension/lang/cs/intro_plugins.txt %%WWWDIR%%/lib/plugins/extension/lang/cs/intro_search.txt %%WWWDIR%%/lib/plugins/extension/lang/cs/intro_templates.txt %%WWWDIR%%/lib/plugins/extension/lang/cs/lang.php +%%WWWDIR%%/lib/plugins/extension/lang/cy/intro_install.txt +%%WWWDIR%%/lib/plugins/extension/lang/cy/intro_plugins.txt +%%WWWDIR%%/lib/plugins/extension/lang/cy/intro_search.txt +%%WWWDIR%%/lib/plugins/extension/lang/cy/intro_templates.txt +%%WWWDIR%%/lib/plugins/extension/lang/cy/lang.php %%WWWDIR%%/lib/plugins/extension/lang/da/intro_install.txt %%WWWDIR%%/lib/plugins/extension/lang/da/intro_plugins.txt %%WWWDIR%%/lib/plugins/extension/lang/da/intro_templates.txt @@ -2954,6 +3049,10 @@ %%WWWDIR%%/lib/plugins/extension/lang/es/intro_search.txt %%WWWDIR%%/lib/plugins/extension/lang/es/intro_templates.txt %%WWWDIR%%/lib/plugins/extension/lang/es/lang.php +%%WWWDIR%%/lib/plugins/extension/lang/fa/intro_install.txt +%%WWWDIR%%/lib/plugins/extension/lang/fa/intro_plugins.txt +%%WWWDIR%%/lib/plugins/extension/lang/fa/intro_search.txt +%%WWWDIR%%/lib/plugins/extension/lang/fa/intro_templates.txt %%WWWDIR%%/lib/plugins/extension/lang/fa/lang.php %%WWWDIR%%/lib/plugins/extension/lang/fi/lang.php %%WWWDIR%%/lib/plugins/extension/lang/fr/intro_install.txt @@ -2973,6 +3072,8 @@ %%WWWDIR%%/lib/plugins/extension/lang/hu/lang.php %%WWWDIR%%/lib/plugins/extension/lang/it/intro_install.txt %%WWWDIR%%/lib/plugins/extension/lang/it/intro_plugins.txt +%%WWWDIR%%/lib/plugins/extension/lang/it/intro_search.txt +%%WWWDIR%%/lib/plugins/extension/lang/it/intro_templates.txt %%WWWDIR%%/lib/plugins/extension/lang/it/lang.php %%WWWDIR%%/lib/plugins/extension/lang/ja/intro_install.txt %%WWWDIR%%/lib/plugins/extension/lang/ja/intro_plugins.txt @@ -3040,6 +3141,9 @@ %%WWWDIR%%/lib/plugins/popularity/lang/cs/intro.txt %%WWWDIR%%/lib/plugins/popularity/lang/cs/lang.php %%WWWDIR%%/lib/plugins/popularity/lang/cs/submitted.txt +%%WWWDIR%%/lib/plugins/popularity/lang/cy/intro.txt +%%WWWDIR%%/lib/plugins/popularity/lang/cy/lang.php +%%WWWDIR%%/lib/plugins/popularity/lang/cy/submitted.txt %%WWWDIR%%/lib/plugins/popularity/lang/da/intro.txt %%WWWDIR%%/lib/plugins/popularity/lang/da/lang.php %%WWWDIR%%/lib/plugins/popularity/lang/da/submitted.txt @@ -3168,6 +3272,8 @@ %%WWWDIR%%/lib/plugins/revert/lang/ca/lang.php %%WWWDIR%%/lib/plugins/revert/lang/cs/intro.txt %%WWWDIR%%/lib/plugins/revert/lang/cs/lang.php +%%WWWDIR%%/lib/plugins/revert/lang/cy/intro.txt +%%WWWDIR%%/lib/plugins/revert/lang/cy/lang.php %%WWWDIR%%/lib/plugins/revert/lang/da/intro.txt %%WWWDIR%%/lib/plugins/revert/lang/da/lang.php %%WWWDIR%%/lib/plugins/revert/lang/de-informal/intro.txt @@ -3258,17 +3364,25 @@ %%WWWDIR%%/lib/plugins/styling/admin.php %%WWWDIR%%/lib/plugins/styling/iris.js %%WWWDIR%%/lib/plugins/styling/lang/bg/lang.php +%%WWWDIR%%/lib/plugins/styling/lang/cs/intro.txt %%WWWDIR%%/lib/plugins/styling/lang/cs/lang.php +%%WWWDIR%%/lib/plugins/styling/lang/cy/intro.txt +%%WWWDIR%%/lib/plugins/styling/lang/cy/lang.php %%WWWDIR%%/lib/plugins/styling/lang/de/intro.txt %%WWWDIR%%/lib/plugins/styling/lang/de/lang.php %%WWWDIR%%/lib/plugins/styling/lang/en/intro.txt %%WWWDIR%%/lib/plugins/styling/lang/en/lang.php %%WWWDIR%%/lib/plugins/styling/lang/es/intro.txt %%WWWDIR%%/lib/plugins/styling/lang/es/lang.php +%%WWWDIR%%/lib/plugins/styling/lang/fa/intro.txt +%%WWWDIR%%/lib/plugins/styling/lang/fa/lang.php %%WWWDIR%%/lib/plugins/styling/lang/fr/intro.txt %%WWWDIR%%/lib/plugins/styling/lang/fr/lang.php +%%WWWDIR%%/lib/plugins/styling/lang/hr/intro.txt +%%WWWDIR%%/lib/plugins/styling/lang/hr/lang.php %%WWWDIR%%/lib/plugins/styling/lang/hu/intro.txt %%WWWDIR%%/lib/plugins/styling/lang/hu/lang.php +%%WWWDIR%%/lib/plugins/styling/lang/it/intro.txt %%WWWDIR%%/lib/plugins/styling/lang/it/lang.php %%WWWDIR%%/lib/plugins/styling/lang/ja/intro.txt %%WWWDIR%%/lib/plugins/styling/lang/ja/lang.php @@ -3278,8 +3392,11 @@ %%WWWDIR%%/lib/plugins/styling/lang/nl/lang.php %%WWWDIR%%/lib/plugins/styling/lang/pt-br/intro.txt %%WWWDIR%%/lib/plugins/styling/lang/pt-br/lang.php +%%WWWDIR%%/lib/plugins/styling/lang/pt/lang.php %%WWWDIR%%/lib/plugins/styling/lang/ru/intro.txt %%WWWDIR%%/lib/plugins/styling/lang/ru/lang.php +%%WWWDIR%%/lib/plugins/styling/lang/sk/lang.php +%%WWWDIR%%/lib/plugins/styling/lang/zh-tw/lang.php %%WWWDIR%%/lib/plugins/styling/lang/zh/intro.txt %%WWWDIR%%/lib/plugins/styling/lang/zh/lang.php %%WWWDIR%%/lib/plugins/styling/plugin.info.txt @@ -3321,6 +3438,13 @@ %%WWWDIR%%/lib/plugins/usermanager/lang/cs/intro.txt %%WWWDIR%%/lib/plugins/usermanager/lang/cs/lang.php %%WWWDIR%%/lib/plugins/usermanager/lang/cs/list.txt +%%WWWDIR%%/lib/plugins/usermanager/lang/cy/add.txt +%%WWWDIR%%/lib/plugins/usermanager/lang/cy/delete.txt +%%WWWDIR%%/lib/plugins/usermanager/lang/cy/edit.txt +%%WWWDIR%%/lib/plugins/usermanager/lang/cy/import.txt +%%WWWDIR%%/lib/plugins/usermanager/lang/cy/intro.txt +%%WWWDIR%%/lib/plugins/usermanager/lang/cy/lang.php +%%WWWDIR%%/lib/plugins/usermanager/lang/cy/list.txt %%WWWDIR%%/lib/plugins/usermanager/lang/da/add.txt %%WWWDIR%%/lib/plugins/usermanager/lang/da/delete.txt %%WWWDIR%%/lib/plugins/usermanager/lang/da/edit.txt @@ -3379,6 +3503,7 @@ %%WWWDIR%%/lib/plugins/usermanager/lang/fa/add.txt %%WWWDIR%%/lib/plugins/usermanager/lang/fa/delete.txt %%WWWDIR%%/lib/plugins/usermanager/lang/fa/edit.txt +%%WWWDIR%%/lib/plugins/usermanager/lang/fa/import.txt %%WWWDIR%%/lib/plugins/usermanager/lang/fa/intro.txt %%WWWDIR%%/lib/plugins/usermanager/lang/fa/lang.php %%WWWDIR%%/lib/plugins/usermanager/lang/fa/list.txt @@ -3438,6 +3563,7 @@ %%WWWDIR%%/lib/plugins/usermanager/lang/it/add.txt %%WWWDIR%%/lib/plugins/usermanager/lang/it/delete.txt %%WWWDIR%%/lib/plugins/usermanager/lang/it/edit.txt +%%WWWDIR%%/lib/plugins/usermanager/lang/it/import.txt %%WWWDIR%%/lib/plugins/usermanager/lang/it/intro.txt %%WWWDIR%%/lib/plugins/usermanager/lang/it/lang.php %%WWWDIR%%/lib/plugins/usermanager/lang/it/list.txt @@ -3673,7 +3799,6 @@ %%WWWDIR%%/lib/tpl/dokuwiki/css/basic.less %%WWWDIR%%/lib/tpl/dokuwiki/css/content.less %%WWWDIR%%/lib/tpl/dokuwiki/css/design.less -%%WWWDIR%%/lib/tpl/dokuwiki/css/mixins.less %%WWWDIR%%/lib/tpl/dokuwiki/css/mobile.less %%WWWDIR%%/lib/tpl/dokuwiki/css/pagetools.less %%WWWDIR%%/lib/tpl/dokuwiki/css/print.css @@ -3711,18 +3836,27 @@ %%WWWDIR%%/lib/tpl/dokuwiki/images/toc-arrows.png %%WWWDIR%%/lib/tpl/dokuwiki/images/toc-bullet.png %%WWWDIR%%/lib/tpl/dokuwiki/images/usertools.png +%%WWWDIR%%/lib/tpl/dokuwiki/lang/bg/lang.php %%WWWDIR%%/lib/tpl/dokuwiki/lang/cs/lang.php +%%WWWDIR%%/lib/tpl/dokuwiki/lang/cs/style.txt +%%WWWDIR%%/lib/tpl/dokuwiki/lang/cy/lang.php +%%WWWDIR%%/lib/tpl/dokuwiki/lang/cy/style.txt %%WWWDIR%%/lib/tpl/dokuwiki/lang/de/lang.php %%WWWDIR%%/lib/tpl/dokuwiki/lang/de/style.txt %%WWWDIR%%/lib/tpl/dokuwiki/lang/en/lang.php %%WWWDIR%%/lib/tpl/dokuwiki/lang/en/style.txt %%WWWDIR%%/lib/tpl/dokuwiki/lang/es/lang.php %%WWWDIR%%/lib/tpl/dokuwiki/lang/es/style.txt +%%WWWDIR%%/lib/tpl/dokuwiki/lang/fa/lang.php +%%WWWDIR%%/lib/tpl/dokuwiki/lang/fa/style.txt %%WWWDIR%%/lib/tpl/dokuwiki/lang/fr/lang.php %%WWWDIR%%/lib/tpl/dokuwiki/lang/fr/style.txt +%%WWWDIR%%/lib/tpl/dokuwiki/lang/hr/lang.php +%%WWWDIR%%/lib/tpl/dokuwiki/lang/hr/style.txt %%WWWDIR%%/lib/tpl/dokuwiki/lang/hu/lang.php %%WWWDIR%%/lib/tpl/dokuwiki/lang/hu/style.txt %%WWWDIR%%/lib/tpl/dokuwiki/lang/it/lang.php +%%WWWDIR%%/lib/tpl/dokuwiki/lang/it/style.txt %%WWWDIR%%/lib/tpl/dokuwiki/lang/ja/lang.php %%WWWDIR%%/lib/tpl/dokuwiki/lang/ja/style.txt %%WWWDIR%%/lib/tpl/dokuwiki/lang/ko/lang.php @@ -3732,6 +3866,8 @@ %%WWWDIR%%/lib/tpl/dokuwiki/lang/pt-br/lang.php %%WWWDIR%%/lib/tpl/dokuwiki/lang/pt-br/style.txt %%WWWDIR%%/lib/tpl/dokuwiki/lang/ru/lang.php +%%WWWDIR%%/lib/tpl/dokuwiki/lang/ru/style.txt +%%WWWDIR%%/lib/tpl/dokuwiki/lang/sk/lang.php %%WWWDIR%%/lib/tpl/dokuwiki/lang/zh/lang.php %%WWWDIR%%/lib/tpl/dokuwiki/lang/zh/style.txt %%WWWDIR%%/lib/tpl/dokuwiki/main.php From owner-svn-ports-all@freebsd.org Wed Jul 6 08:45:48 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 79BDFB21373; Wed, 6 Jul 2016 08:45:48 +0000 (UTC) (envelope-from delphij@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 42E3518B4; Wed, 6 Jul 2016 08:45:48 +0000 (UTC) (envelope-from delphij@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u668jllq019749; Wed, 6 Jul 2016 08:45:47 GMT (envelope-from delphij@FreeBSD.org) Received: (from delphij@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u668jlNR019746; Wed, 6 Jul 2016 08:45:47 GMT (envelope-from delphij@FreeBSD.org) Message-Id: <201607060845.u668jlNR019746@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: delphij set sender to delphij@FreeBSD.org using -f From: Xin LI Date: Wed, 6 Jul 2016 08:45:47 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r418124 - branches/2016Q3/www/dokuwiki X-SVN-Group: ports-branches MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Jul 2016 08:45:48 -0000 Author: delphij Date: Wed Jul 6 08:45:47 2016 New Revision: 418124 URL: https://svnweb.freebsd.org/changeset/ports/418124 Log: MFH: r418123 Update to 2016-06-26a. Approved by: ports-secteam Modified: branches/2016Q3/www/dokuwiki/Makefile branches/2016Q3/www/dokuwiki/distinfo branches/2016Q3/www/dokuwiki/pkg-plist Directory Properties: branches/2016Q3/ (props changed) Modified: branches/2016Q3/www/dokuwiki/Makefile ============================================================================== --- branches/2016Q3/www/dokuwiki/Makefile Wed Jul 6 08:44:40 2016 (r418123) +++ branches/2016Q3/www/dokuwiki/Makefile Wed Jul 6 08:45:47 2016 (r418124) @@ -14,7 +14,7 @@ LICENSE= GPLv2 BROKEN_powerpc64= Does not build -DIST_VER= ${PORTNAME}-2015-08-10a +DIST_VER= ${PORTNAME}-2016-06-26a USE_PHP= gd mbstring openssl pcre session xml zlib NO_ARCH= YES NO_BUILD= YES Modified: branches/2016Q3/www/dokuwiki/distinfo ============================================================================== --- branches/2016Q3/www/dokuwiki/distinfo Wed Jul 6 08:44:40 2016 (r418123) +++ branches/2016Q3/www/dokuwiki/distinfo Wed Jul 6 08:45:47 2016 (r418124) @@ -1,2 +1,3 @@ -SHA256 (dokuwiki-2015-08-10a.tgz) = 98f0868c0cf9fc6664b57f89149fa537b73222bcc010247771e4afc08c8199fd -SIZE (dokuwiki-2015-08-10a.tgz) = 3406922 +TIMESTAMP = 1467792388 +SHA256 (dokuwiki-2016-06-26a.tgz) = dfdb243cc766482eeefd99e70215b289c9aa0bd8bee83068f438440d7b1a1ce6 +SIZE (dokuwiki-2016-06-26a.tgz) = 3464161 Modified: branches/2016Q3/www/dokuwiki/pkg-plist ============================================================================== --- branches/2016Q3/www/dokuwiki/pkg-plist Wed Jul 6 08:44:40 2016 (r418123) +++ branches/2016Q3/www/dokuwiki/pkg-plist Wed Jul 6 08:45:47 2016 (r418124) @@ -51,6 +51,7 @@ %%WWWDIR%%/inc/FeedParser.php %%WWWDIR%%/inc/Form/ButtonElement.php %%WWWDIR%%/inc/Form/CheckableElement.php +%%WWWDIR%%/inc/Form/DropdownElement.php %%WWWDIR%%/inc/Form/Element.php %%WWWDIR%%/inc/Form/FieldsetCloseElement.php %%WWWDIR%%/inc/Form/FieldsetOpenElement.php @@ -83,7 +84,6 @@ %%WWWDIR%%/inc/cache.php %%WWWDIR%%/inc/changelog.php %%WWWDIR%%/inc/cli.php -%%WWWDIR%%/inc/cliopts.php %%WWWDIR%%/inc/common.php %%WWWDIR%%/inc/compatibility.php %%WWWDIR%%/inc/config_cascade.php @@ -329,6 +329,44 @@ %%WWWDIR%%/inc/lang/cs/subscr_single.txt %%WWWDIR%%/inc/lang/cs/updateprofile.txt %%WWWDIR%%/inc/lang/cs/uploadmail.txt +%%WWWDIR%%/inc/lang/cy/admin.txt +%%WWWDIR%%/inc/lang/cy/adminplugins.txt +%%WWWDIR%%/inc/lang/cy/backlinks.txt +%%WWWDIR%%/inc/lang/cy/conflict.txt +%%WWWDIR%%/inc/lang/cy/denied.txt +%%WWWDIR%%/inc/lang/cy/diff.txt +%%WWWDIR%%/inc/lang/cy/draft.txt +%%WWWDIR%%/inc/lang/cy/edit.txt +%%WWWDIR%%/inc/lang/cy/editrev.txt +%%WWWDIR%%/inc/lang/cy/index.txt +%%WWWDIR%%/inc/lang/cy/install.html +%%WWWDIR%%/inc/lang/cy/jquery.ui.datepicker.js +%%WWWDIR%%/inc/lang/cy/lang.php +%%WWWDIR%%/inc/lang/cy/locked.txt +%%WWWDIR%%/inc/lang/cy/login.txt +%%WWWDIR%%/inc/lang/cy/mailtext.txt +%%WWWDIR%%/inc/lang/cy/mailwrap.html +%%WWWDIR%%/inc/lang/cy/newpage.txt +%%WWWDIR%%/inc/lang/cy/norev.txt +%%WWWDIR%%/inc/lang/cy/password.txt +%%WWWDIR%%/inc/lang/cy/preview.txt +%%WWWDIR%%/inc/lang/cy/pwconfirm.txt +%%WWWDIR%%/inc/lang/cy/read.txt +%%WWWDIR%%/inc/lang/cy/recent.txt +%%WWWDIR%%/inc/lang/cy/register.txt +%%WWWDIR%%/inc/lang/cy/registermail.txt +%%WWWDIR%%/inc/lang/cy/resendpwd.txt +%%WWWDIR%%/inc/lang/cy/resetpwd.txt +%%WWWDIR%%/inc/lang/cy/revisions.txt +%%WWWDIR%%/inc/lang/cy/searchpage.txt +%%WWWDIR%%/inc/lang/cy/showrev.txt +%%WWWDIR%%/inc/lang/cy/stopwords.txt +%%WWWDIR%%/inc/lang/cy/subscr_digest.txt +%%WWWDIR%%/inc/lang/cy/subscr_form.txt +%%WWWDIR%%/inc/lang/cy/subscr_list.txt +%%WWWDIR%%/inc/lang/cy/subscr_single.txt +%%WWWDIR%%/inc/lang/cy/updateprofile.txt +%%WWWDIR%%/inc/lang/cy/uploadmail.txt %%WWWDIR%%/inc/lang/da/admin.txt %%WWWDIR%%/inc/lang/da/adminplugins.txt %%WWWDIR%%/inc/lang/da/backlinks.txt @@ -1360,6 +1398,7 @@ %%WWWDIR%%/inc/lang/mk/recent.txt %%WWWDIR%%/inc/lang/mk/showrev.txt %%WWWDIR%%/inc/lang/ml/admin.txt +%%WWWDIR%%/inc/lang/ml/jquery.ui.datepicker.js %%WWWDIR%%/inc/lang/mr/admin.txt %%WWWDIR%%/inc/lang/mr/backlinks.txt %%WWWDIR%%/inc/lang/mr/conflict.txt @@ -1960,6 +1999,7 @@ %%WWWDIR%%/inc/lang/uk/register.txt %%WWWDIR%%/inc/lang/uk/registermail.txt %%WWWDIR%%/inc/lang/uk/resendpwd.txt +%%WWWDIR%%/inc/lang/uk/resetpwd.txt %%WWWDIR%%/inc/lang/uk/revisions.txt %%WWWDIR%%/inc/lang/uk/searchpage.txt %%WWWDIR%%/inc/lang/uk/showrev.txt @@ -2415,6 +2455,8 @@ %%WWWDIR%%/lib/plugins/acl/lang/ca/lang.php %%WWWDIR%%/lib/plugins/acl/lang/cs/help.txt %%WWWDIR%%/lib/plugins/acl/lang/cs/lang.php +%%WWWDIR%%/lib/plugins/acl/lang/cy/help.txt +%%WWWDIR%%/lib/plugins/acl/lang/cy/lang.php %%WWWDIR%%/lib/plugins/acl/lang/da/help.txt %%WWWDIR%%/lib/plugins/acl/lang/da/lang.php %%WWWDIR%%/lib/plugins/acl/lang/de-informal/help.txt @@ -2539,6 +2581,8 @@ %%WWWDIR%%/lib/plugins/authad/lang/ca/lang.php %%WWWDIR%%/lib/plugins/authad/lang/cs/lang.php %%WWWDIR%%/lib/plugins/authad/lang/cs/settings.php +%%WWWDIR%%/lib/plugins/authad/lang/cy/lang.php +%%WWWDIR%%/lib/plugins/authad/lang/cy/settings.php %%WWWDIR%%/lib/plugins/authad/lang/da/lang.php %%WWWDIR%%/lib/plugins/authad/lang/da/settings.php %%WWWDIR%%/lib/plugins/authad/lang/de-informal/lang.php @@ -2609,6 +2653,9 @@ %%WWWDIR%%/lib/plugins/authldap/lang/bg/settings.php %%WWWDIR%%/lib/plugins/authldap/lang/cs/lang.php %%WWWDIR%%/lib/plugins/authldap/lang/cs/settings.php +%%WWWDIR%%/lib/plugins/authldap/lang/cy/lang.php +%%WWWDIR%%/lib/plugins/authldap/lang/cy/settings.php +%%WWWDIR%%/lib/plugins/authldap/lang/da/lang.php %%WWWDIR%%/lib/plugins/authldap/lang/da/settings.php %%WWWDIR%%/lib/plugins/authldap/lang/de-informal/settings.php %%WWWDIR%%/lib/plugins/authldap/lang/de/lang.php @@ -2619,6 +2666,7 @@ %%WWWDIR%%/lib/plugins/authldap/lang/es/lang.php %%WWWDIR%%/lib/plugins/authldap/lang/es/settings.php %%WWWDIR%%/lib/plugins/authldap/lang/et/settings.php +%%WWWDIR%%/lib/plugins/authldap/lang/fa/lang.php %%WWWDIR%%/lib/plugins/authldap/lang/fa/settings.php %%WWWDIR%%/lib/plugins/authldap/lang/fi/settings.php %%WWWDIR%%/lib/plugins/authldap/lang/fr/lang.php @@ -2628,6 +2676,7 @@ %%WWWDIR%%/lib/plugins/authldap/lang/hr/settings.php %%WWWDIR%%/lib/plugins/authldap/lang/hu/lang.php %%WWWDIR%%/lib/plugins/authldap/lang/hu/settings.php +%%WWWDIR%%/lib/plugins/authldap/lang/it/lang.php %%WWWDIR%%/lib/plugins/authldap/lang/it/settings.php %%WWWDIR%%/lib/plugins/authldap/lang/ja/lang.php %%WWWDIR%%/lib/plugins/authldap/lang/ja/settings.php @@ -2659,6 +2708,9 @@ %%WWWDIR%%/lib/plugins/authmysql/lang/bg/settings.php %%WWWDIR%%/lib/plugins/authmysql/lang/cs/lang.php %%WWWDIR%%/lib/plugins/authmysql/lang/cs/settings.php +%%WWWDIR%%/lib/plugins/authmysql/lang/cy/lang.php +%%WWWDIR%%/lib/plugins/authmysql/lang/cy/settings.php +%%WWWDIR%%/lib/plugins/authmysql/lang/da/lang.php %%WWWDIR%%/lib/plugins/authmysql/lang/da/settings.php %%WWWDIR%%/lib/plugins/authmysql/lang/de-informal/settings.php %%WWWDIR%%/lib/plugins/authmysql/lang/de/lang.php @@ -2668,6 +2720,7 @@ %%WWWDIR%%/lib/plugins/authmysql/lang/eo/settings.php %%WWWDIR%%/lib/plugins/authmysql/lang/es/lang.php %%WWWDIR%%/lib/plugins/authmysql/lang/es/settings.php +%%WWWDIR%%/lib/plugins/authmysql/lang/fa/lang.php %%WWWDIR%%/lib/plugins/authmysql/lang/fa/settings.php %%WWWDIR%%/lib/plugins/authmysql/lang/fi/settings.php %%WWWDIR%%/lib/plugins/authmysql/lang/fr/lang.php @@ -2694,6 +2747,7 @@ %%WWWDIR%%/lib/plugins/authmysql/lang/pt/settings.php %%WWWDIR%%/lib/plugins/authmysql/lang/ru/lang.php %%WWWDIR%%/lib/plugins/authmysql/lang/ru/settings.php +%%WWWDIR%%/lib/plugins/authmysql/lang/sk/lang.php %%WWWDIR%%/lib/plugins/authmysql/lang/sk/settings.php %%WWWDIR%%/lib/plugins/authmysql/lang/sl/settings.php %%WWWDIR%%/lib/plugins/authmysql/lang/sv/settings.php @@ -2703,11 +2757,38 @@ %%WWWDIR%%/lib/plugins/authmysql/lang/zh/lang.php %%WWWDIR%%/lib/plugins/authmysql/lang/zh/settings.php %%WWWDIR%%/lib/plugins/authmysql/plugin.info.txt +%%WWWDIR%%/lib/plugins/authpdo/README +%%WWWDIR%%/lib/plugins/authpdo/auth.php +%%WWWDIR%%/lib/plugins/authpdo/conf/default.php +%%WWWDIR%%/lib/plugins/authpdo/conf/metadata.php +%%WWWDIR%%/lib/plugins/authpdo/lang/bg/lang.php +%%WWWDIR%%/lib/plugins/authpdo/lang/cs/lang.php +%%WWWDIR%%/lib/plugins/authpdo/lang/cy/lang.php +%%WWWDIR%%/lib/plugins/authpdo/lang/de/lang.php +%%WWWDIR%%/lib/plugins/authpdo/lang/en/lang.php +%%WWWDIR%%/lib/plugins/authpdo/lang/en/settings.php +%%WWWDIR%%/lib/plugins/authpdo/lang/es/lang.php +%%WWWDIR%%/lib/plugins/authpdo/lang/fa/lang.php +%%WWWDIR%%/lib/plugins/authpdo/lang/fr/lang.php +%%WWWDIR%%/lib/plugins/authpdo/lang/hr/lang.php +%%WWWDIR%%/lib/plugins/authpdo/lang/hu/lang.php +%%WWWDIR%%/lib/plugins/authpdo/lang/it/lang.php +%%WWWDIR%%/lib/plugins/authpdo/lang/ja/lang.php +%%WWWDIR%%/lib/plugins/authpdo/lang/ko/lang.php +%%WWWDIR%%/lib/plugins/authpdo/lang/nl/lang.php +%%WWWDIR%%/lib/plugins/authpdo/lang/pt-br/lang.php +%%WWWDIR%%/lib/plugins/authpdo/lang/pt/lang.php +%%WWWDIR%%/lib/plugins/authpdo/lang/ru/lang.php +%%WWWDIR%%/lib/plugins/authpdo/lang/sk/lang.php +%%WWWDIR%%/lib/plugins/authpdo/lang/tr/lang.php +%%WWWDIR%%/lib/plugins/authpdo/lang/zh/lang.php +%%WWWDIR%%/lib/plugins/authpdo/plugin.info.txt %%WWWDIR%%/lib/plugins/authpgsql/auth.php %%WWWDIR%%/lib/plugins/authpgsql/conf/default.php %%WWWDIR%%/lib/plugins/authpgsql/conf/metadata.php %%WWWDIR%%/lib/plugins/authpgsql/lang/bg/settings.php %%WWWDIR%%/lib/plugins/authpgsql/lang/cs/settings.php +%%WWWDIR%%/lib/plugins/authpgsql/lang/cy/settings.php %%WWWDIR%%/lib/plugins/authpgsql/lang/da/settings.php %%WWWDIR%%/lib/plugins/authpgsql/lang/de-informal/settings.php %%WWWDIR%%/lib/plugins/authpgsql/lang/de/settings.php @@ -2743,6 +2824,7 @@ %%WWWDIR%%/lib/plugins/authplain/lang/ca-valencia/lang.php %%WWWDIR%%/lib/plugins/authplain/lang/ca/lang.php %%WWWDIR%%/lib/plugins/authplain/lang/cs/lang.php +%%WWWDIR%%/lib/plugins/authplain/lang/cy/lang.php %%WWWDIR%%/lib/plugins/authplain/lang/da/lang.php %%WWWDIR%%/lib/plugins/authplain/lang/de-informal/lang.php %%WWWDIR%%/lib/plugins/authplain/lang/de/lang.php @@ -2814,6 +2896,8 @@ %%WWWDIR%%/lib/plugins/config/lang/ca/lang.php %%WWWDIR%%/lib/plugins/config/lang/cs/intro.txt %%WWWDIR%%/lib/plugins/config/lang/cs/lang.php +%%WWWDIR%%/lib/plugins/config/lang/cy/intro.txt +%%WWWDIR%%/lib/plugins/config/lang/cy/lang.php %%WWWDIR%%/lib/plugins/config/lang/da/intro.txt %%WWWDIR%%/lib/plugins/config/lang/da/lang.php %%WWWDIR%%/lib/plugins/config/lang/de-informal/intro.txt @@ -2842,6 +2926,8 @@ %%WWWDIR%%/lib/plugins/config/lang/he/intro.txt %%WWWDIR%%/lib/plugins/config/lang/he/lang.php %%WWWDIR%%/lib/plugins/config/lang/hi/lang.php +%%WWWDIR%%/lib/plugins/config/lang/hr/intro.txt +%%WWWDIR%%/lib/plugins/config/lang/hr/lang.php %%WWWDIR%%/lib/plugins/config/lang/hu/intro.txt %%WWWDIR%%/lib/plugins/config/lang/hu/lang.php %%WWWDIR%%/lib/plugins/config/lang/ia/intro.txt @@ -2924,12 +3010,21 @@ %%WWWDIR%%/lib/plugins/extension/images/template.png %%WWWDIR%%/lib/plugins/extension/images/up.png %%WWWDIR%%/lib/plugins/extension/images/warning.png +%%WWWDIR%%/lib/plugins/extension/lang/bg/intro_install.txt +%%WWWDIR%%/lib/plugins/extension/lang/bg/intro_plugins.txt +%%WWWDIR%%/lib/plugins/extension/lang/bg/intro_search.txt +%%WWWDIR%%/lib/plugins/extension/lang/bg/intro_templates.txt %%WWWDIR%%/lib/plugins/extension/lang/bg/lang.php %%WWWDIR%%/lib/plugins/extension/lang/cs/intro_install.txt %%WWWDIR%%/lib/plugins/extension/lang/cs/intro_plugins.txt %%WWWDIR%%/lib/plugins/extension/lang/cs/intro_search.txt %%WWWDIR%%/lib/plugins/extension/lang/cs/intro_templates.txt %%WWWDIR%%/lib/plugins/extension/lang/cs/lang.php +%%WWWDIR%%/lib/plugins/extension/lang/cy/intro_install.txt +%%WWWDIR%%/lib/plugins/extension/lang/cy/intro_plugins.txt +%%WWWDIR%%/lib/plugins/extension/lang/cy/intro_search.txt +%%WWWDIR%%/lib/plugins/extension/lang/cy/intro_templates.txt +%%WWWDIR%%/lib/plugins/extension/lang/cy/lang.php %%WWWDIR%%/lib/plugins/extension/lang/da/intro_install.txt %%WWWDIR%%/lib/plugins/extension/lang/da/intro_plugins.txt %%WWWDIR%%/lib/plugins/extension/lang/da/intro_templates.txt @@ -2954,6 +3049,10 @@ %%WWWDIR%%/lib/plugins/extension/lang/es/intro_search.txt %%WWWDIR%%/lib/plugins/extension/lang/es/intro_templates.txt %%WWWDIR%%/lib/plugins/extension/lang/es/lang.php +%%WWWDIR%%/lib/plugins/extension/lang/fa/intro_install.txt +%%WWWDIR%%/lib/plugins/extension/lang/fa/intro_plugins.txt +%%WWWDIR%%/lib/plugins/extension/lang/fa/intro_search.txt +%%WWWDIR%%/lib/plugins/extension/lang/fa/intro_templates.txt %%WWWDIR%%/lib/plugins/extension/lang/fa/lang.php %%WWWDIR%%/lib/plugins/extension/lang/fi/lang.php %%WWWDIR%%/lib/plugins/extension/lang/fr/intro_install.txt @@ -2973,6 +3072,8 @@ %%WWWDIR%%/lib/plugins/extension/lang/hu/lang.php %%WWWDIR%%/lib/plugins/extension/lang/it/intro_install.txt %%WWWDIR%%/lib/plugins/extension/lang/it/intro_plugins.txt +%%WWWDIR%%/lib/plugins/extension/lang/it/intro_search.txt +%%WWWDIR%%/lib/plugins/extension/lang/it/intro_templates.txt %%WWWDIR%%/lib/plugins/extension/lang/it/lang.php %%WWWDIR%%/lib/plugins/extension/lang/ja/intro_install.txt %%WWWDIR%%/lib/plugins/extension/lang/ja/intro_plugins.txt @@ -3040,6 +3141,9 @@ %%WWWDIR%%/lib/plugins/popularity/lang/cs/intro.txt %%WWWDIR%%/lib/plugins/popularity/lang/cs/lang.php %%WWWDIR%%/lib/plugins/popularity/lang/cs/submitted.txt +%%WWWDIR%%/lib/plugins/popularity/lang/cy/intro.txt +%%WWWDIR%%/lib/plugins/popularity/lang/cy/lang.php +%%WWWDIR%%/lib/plugins/popularity/lang/cy/submitted.txt %%WWWDIR%%/lib/plugins/popularity/lang/da/intro.txt %%WWWDIR%%/lib/plugins/popularity/lang/da/lang.php %%WWWDIR%%/lib/plugins/popularity/lang/da/submitted.txt @@ -3168,6 +3272,8 @@ %%WWWDIR%%/lib/plugins/revert/lang/ca/lang.php %%WWWDIR%%/lib/plugins/revert/lang/cs/intro.txt %%WWWDIR%%/lib/plugins/revert/lang/cs/lang.php +%%WWWDIR%%/lib/plugins/revert/lang/cy/intro.txt +%%WWWDIR%%/lib/plugins/revert/lang/cy/lang.php %%WWWDIR%%/lib/plugins/revert/lang/da/intro.txt %%WWWDIR%%/lib/plugins/revert/lang/da/lang.php %%WWWDIR%%/lib/plugins/revert/lang/de-informal/intro.txt @@ -3258,17 +3364,25 @@ %%WWWDIR%%/lib/plugins/styling/admin.php %%WWWDIR%%/lib/plugins/styling/iris.js %%WWWDIR%%/lib/plugins/styling/lang/bg/lang.php +%%WWWDIR%%/lib/plugins/styling/lang/cs/intro.txt %%WWWDIR%%/lib/plugins/styling/lang/cs/lang.php +%%WWWDIR%%/lib/plugins/styling/lang/cy/intro.txt +%%WWWDIR%%/lib/plugins/styling/lang/cy/lang.php %%WWWDIR%%/lib/plugins/styling/lang/de/intro.txt %%WWWDIR%%/lib/plugins/styling/lang/de/lang.php %%WWWDIR%%/lib/plugins/styling/lang/en/intro.txt %%WWWDIR%%/lib/plugins/styling/lang/en/lang.php %%WWWDIR%%/lib/plugins/styling/lang/es/intro.txt %%WWWDIR%%/lib/plugins/styling/lang/es/lang.php +%%WWWDIR%%/lib/plugins/styling/lang/fa/intro.txt +%%WWWDIR%%/lib/plugins/styling/lang/fa/lang.php %%WWWDIR%%/lib/plugins/styling/lang/fr/intro.txt %%WWWDIR%%/lib/plugins/styling/lang/fr/lang.php +%%WWWDIR%%/lib/plugins/styling/lang/hr/intro.txt +%%WWWDIR%%/lib/plugins/styling/lang/hr/lang.php %%WWWDIR%%/lib/plugins/styling/lang/hu/intro.txt %%WWWDIR%%/lib/plugins/styling/lang/hu/lang.php +%%WWWDIR%%/lib/plugins/styling/lang/it/intro.txt %%WWWDIR%%/lib/plugins/styling/lang/it/lang.php %%WWWDIR%%/lib/plugins/styling/lang/ja/intro.txt %%WWWDIR%%/lib/plugins/styling/lang/ja/lang.php @@ -3278,8 +3392,11 @@ %%WWWDIR%%/lib/plugins/styling/lang/nl/lang.php %%WWWDIR%%/lib/plugins/styling/lang/pt-br/intro.txt %%WWWDIR%%/lib/plugins/styling/lang/pt-br/lang.php +%%WWWDIR%%/lib/plugins/styling/lang/pt/lang.php %%WWWDIR%%/lib/plugins/styling/lang/ru/intro.txt %%WWWDIR%%/lib/plugins/styling/lang/ru/lang.php +%%WWWDIR%%/lib/plugins/styling/lang/sk/lang.php +%%WWWDIR%%/lib/plugins/styling/lang/zh-tw/lang.php %%WWWDIR%%/lib/plugins/styling/lang/zh/intro.txt %%WWWDIR%%/lib/plugins/styling/lang/zh/lang.php %%WWWDIR%%/lib/plugins/styling/plugin.info.txt @@ -3321,6 +3438,13 @@ %%WWWDIR%%/lib/plugins/usermanager/lang/cs/intro.txt %%WWWDIR%%/lib/plugins/usermanager/lang/cs/lang.php %%WWWDIR%%/lib/plugins/usermanager/lang/cs/list.txt +%%WWWDIR%%/lib/plugins/usermanager/lang/cy/add.txt +%%WWWDIR%%/lib/plugins/usermanager/lang/cy/delete.txt +%%WWWDIR%%/lib/plugins/usermanager/lang/cy/edit.txt +%%WWWDIR%%/lib/plugins/usermanager/lang/cy/import.txt +%%WWWDIR%%/lib/plugins/usermanager/lang/cy/intro.txt +%%WWWDIR%%/lib/plugins/usermanager/lang/cy/lang.php +%%WWWDIR%%/lib/plugins/usermanager/lang/cy/list.txt %%WWWDIR%%/lib/plugins/usermanager/lang/da/add.txt %%WWWDIR%%/lib/plugins/usermanager/lang/da/delete.txt %%WWWDIR%%/lib/plugins/usermanager/lang/da/edit.txt @@ -3379,6 +3503,7 @@ %%WWWDIR%%/lib/plugins/usermanager/lang/fa/add.txt %%WWWDIR%%/lib/plugins/usermanager/lang/fa/delete.txt %%WWWDIR%%/lib/plugins/usermanager/lang/fa/edit.txt +%%WWWDIR%%/lib/plugins/usermanager/lang/fa/import.txt %%WWWDIR%%/lib/plugins/usermanager/lang/fa/intro.txt %%WWWDIR%%/lib/plugins/usermanager/lang/fa/lang.php %%WWWDIR%%/lib/plugins/usermanager/lang/fa/list.txt @@ -3438,6 +3563,7 @@ %%WWWDIR%%/lib/plugins/usermanager/lang/it/add.txt %%WWWDIR%%/lib/plugins/usermanager/lang/it/delete.txt %%WWWDIR%%/lib/plugins/usermanager/lang/it/edit.txt +%%WWWDIR%%/lib/plugins/usermanager/lang/it/import.txt %%WWWDIR%%/lib/plugins/usermanager/lang/it/intro.txt %%WWWDIR%%/lib/plugins/usermanager/lang/it/lang.php %%WWWDIR%%/lib/plugins/usermanager/lang/it/list.txt @@ -3673,7 +3799,6 @@ %%WWWDIR%%/lib/tpl/dokuwiki/css/basic.less %%WWWDIR%%/lib/tpl/dokuwiki/css/content.less %%WWWDIR%%/lib/tpl/dokuwiki/css/design.less -%%WWWDIR%%/lib/tpl/dokuwiki/css/mixins.less %%WWWDIR%%/lib/tpl/dokuwiki/css/mobile.less %%WWWDIR%%/lib/tpl/dokuwiki/css/pagetools.less %%WWWDIR%%/lib/tpl/dokuwiki/css/print.css @@ -3711,18 +3836,27 @@ %%WWWDIR%%/lib/tpl/dokuwiki/images/toc-arrows.png %%WWWDIR%%/lib/tpl/dokuwiki/images/toc-bullet.png %%WWWDIR%%/lib/tpl/dokuwiki/images/usertools.png +%%WWWDIR%%/lib/tpl/dokuwiki/lang/bg/lang.php %%WWWDIR%%/lib/tpl/dokuwiki/lang/cs/lang.php +%%WWWDIR%%/lib/tpl/dokuwiki/lang/cs/style.txt +%%WWWDIR%%/lib/tpl/dokuwiki/lang/cy/lang.php +%%WWWDIR%%/lib/tpl/dokuwiki/lang/cy/style.txt %%WWWDIR%%/lib/tpl/dokuwiki/lang/de/lang.php %%WWWDIR%%/lib/tpl/dokuwiki/lang/de/style.txt %%WWWDIR%%/lib/tpl/dokuwiki/lang/en/lang.php %%WWWDIR%%/lib/tpl/dokuwiki/lang/en/style.txt %%WWWDIR%%/lib/tpl/dokuwiki/lang/es/lang.php %%WWWDIR%%/lib/tpl/dokuwiki/lang/es/style.txt +%%WWWDIR%%/lib/tpl/dokuwiki/lang/fa/lang.php +%%WWWDIR%%/lib/tpl/dokuwiki/lang/fa/style.txt %%WWWDIR%%/lib/tpl/dokuwiki/lang/fr/lang.php %%WWWDIR%%/lib/tpl/dokuwiki/lang/fr/style.txt +%%WWWDIR%%/lib/tpl/dokuwiki/lang/hr/lang.php +%%WWWDIR%%/lib/tpl/dokuwiki/lang/hr/style.txt %%WWWDIR%%/lib/tpl/dokuwiki/lang/hu/lang.php %%WWWDIR%%/lib/tpl/dokuwiki/lang/hu/style.txt %%WWWDIR%%/lib/tpl/dokuwiki/lang/it/lang.php +%%WWWDIR%%/lib/tpl/dokuwiki/lang/it/style.txt %%WWWDIR%%/lib/tpl/dokuwiki/lang/ja/lang.php %%WWWDIR%%/lib/tpl/dokuwiki/lang/ja/style.txt %%WWWDIR%%/lib/tpl/dokuwiki/lang/ko/lang.php @@ -3732,6 +3866,8 @@ %%WWWDIR%%/lib/tpl/dokuwiki/lang/pt-br/lang.php %%WWWDIR%%/lib/tpl/dokuwiki/lang/pt-br/style.txt %%WWWDIR%%/lib/tpl/dokuwiki/lang/ru/lang.php +%%WWWDIR%%/lib/tpl/dokuwiki/lang/ru/style.txt +%%WWWDIR%%/lib/tpl/dokuwiki/lang/sk/lang.php %%WWWDIR%%/lib/tpl/dokuwiki/lang/zh/lang.php %%WWWDIR%%/lib/tpl/dokuwiki/lang/zh/style.txt %%WWWDIR%%/lib/tpl/dokuwiki/main.php From owner-svn-ports-all@freebsd.org Wed Jul 6 08:47:13 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 3FA57B213ED; Wed, 6 Jul 2016 08:47:13 +0000 (UTC) (envelope-from cpm@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id ECAA81A3B; Wed, 6 Jul 2016 08:47:12 +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 u668lCsx019960; Wed, 6 Jul 2016 08:47:12 GMT (envelope-from cpm@FreeBSD.org) Received: (from cpm@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u668lCg6019958; Wed, 6 Jul 2016 08:47:12 GMT (envelope-from cpm@FreeBSD.org) Message-Id: <201607060847.u668lCg6019958@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, 6 Jul 2016 08:47:12 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418125 - head/net/rtptools X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Jul 2016 08:47:13 -0000 Author: cpm Date: Wed Jul 6 08:47:11 2016 New Revision: 418125 URL: https://svnweb.freebsd.org/changeset/ports/418125 Log: - Update to 1.21 - Update MAINTAINER to my @FreeBSD.org address - Add LICENSE blob - Use post-install-DOCS-on target Reviewed by: junovitch (mentor) Approved by: junovitch (mentor) Differential Revision: D7124 Modified: head/net/rtptools/Makefile head/net/rtptools/distinfo Modified: head/net/rtptools/Makefile ============================================================================== --- head/net/rtptools/Makefile Wed Jul 6 08:45:47 2016 (r418124) +++ head/net/rtptools/Makefile Wed Jul 6 08:47:11 2016 (r418125) @@ -2,13 +2,18 @@ # $FreeBSD$ PORTNAME= rtptools -PORTVERSION= 1.20 +PORTVERSION= 1.21 CATEGORIES= net mbone MASTER_SITES= http://www.cs.columbia.edu/IRT/software/rtptools/download/ -MAINTAINER= cpm@fbsd.es +MAINTAINER= cpm@FreeBSD.org COMMENT= Set of tools to record, playback, and monitor RTPv2 data streams +LICENSE= CUL +LICENSE_NAME= Columbia University License +LICENSE_FILE= ${WRKSRC}/COPYRIGHT +LICENSE_PERMS= dist-mirror dist-sell pkg-mirror pkg-sell auto-accept + USES= dos2unix DOS2UNIX_GLOB= *.c GNU_CONFIGURE= yes @@ -18,7 +23,7 @@ PORTDOCS= README ChangeLog.html rtptools OPTIONS_DEFINE= DOCS -post-install: +post-install-DOCS-on: @${MKDIR} ${STAGEDIR}${DOCSDIR} ${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/|} ${STAGEDIR}${DOCSDIR} Modified: head/net/rtptools/distinfo ============================================================================== --- head/net/rtptools/distinfo Wed Jul 6 08:45:47 2016 (r418124) +++ head/net/rtptools/distinfo Wed Jul 6 08:47:11 2016 (r418125) @@ -1,2 +1,3 @@ -SHA256 (rtptools-1.20.tar.gz) = 99d681f6e328486fa1fc16581b0a5974e31eb2708101683ee9c8a0b6bed31050 -SIZE (rtptools-1.20.tar.gz) = 168950 +TIMESTAMP = 1467752572 +SHA256 (rtptools-1.21.tar.gz) = 2ddbf6d3a4dbdef26ca85e860f6795264a359d30e24fd63f14a8c4f7ca331830 +SIZE (rtptools-1.21.tar.gz) = 171901 From owner-svn-ports-all@freebsd.org Wed Jul 6 09:00:09 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 0EA39B218FA; Wed, 6 Jul 2016 09:00:09 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id B3B911F50; Wed, 6 Jul 2016 09:00:08 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u66907gt023755; Wed, 6 Jul 2016 09:00:07 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u66907ek023751; Wed, 6 Jul 2016 09:00:07 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201607060900.u66907ek023751@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Wed, 6 Jul 2016 09:00:07 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418126 - in head/net/ccxstream: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Jul 2016 09:00:09 -0000 Author: amdmi3 Date: Wed Jul 6 09:00:07 2016 New Revision: 418126 URL: https://svnweb.freebsd.org/changeset/ports/418126 Log: - Switch to options helpers - Regenerate patches with `make makepatch` Modified: head/net/ccxstream/Makefile head/net/ccxstream/files/patch-ccxclientconn.c head/net/ccxstream/files/patch-ccxstream.c Modified: head/net/ccxstream/Makefile ============================================================================== --- head/net/ccxstream/Makefile Wed Jul 6 08:47:11 2016 (r418125) +++ head/net/ccxstream/Makefile Wed Jul 6 09:00:07 2016 (r418126) @@ -30,6 +30,8 @@ post-patch: do-install: ${INSTALL_PROGRAM} ${WRKSRC}/ccxstream ${STAGEDIR}${PREFIX}/sbin ${INSTALL_PROGRAM} ${WRKSRC}/ccxtest ${STAGEDIR}${PREFIX}/bin + +do-install-DOCS-on: @${MKDIR} ${STAGEDIR}${DOCSDIR} .for i in ${PORTDOCS} ${INSTALL_DATA} ${WRKSRC}/${i} ${STAGEDIR}${DOCSDIR} Modified: head/net/ccxstream/files/patch-ccxclientconn.c ============================================================================== --- head/net/ccxstream/files/patch-ccxclientconn.c Wed Jul 6 08:47:11 2016 (r418125) +++ head/net/ccxstream/files/patch-ccxclientconn.c Wed Jul 6 09:00:07 2016 (r418126) @@ -1,6 +1,6 @@ ---- ccxclientconn.c.orig Mon Mar 17 11:29:15 2003 -+++ ccxclientconn.c Tue May 15 14:58:52 2007 -@@ -51,6 +51,11 @@ +--- ccxclientconn.c.orig 2003-03-17 14:29:15 UTC ++++ ccxclientconn.c +@@ -51,6 +51,11 @@ static void cc_xstream_client_socket_set i = 1; setsockopt(sock, IPPROTO_TCP,TCP_NODELAY, &i, sizeof (i)); #endif /* TCP_NODELAY */ Modified: head/net/ccxstream/files/patch-ccxstream.c ============================================================================== --- head/net/ccxstream/files/patch-ccxstream.c Wed Jul 6 08:47:11 2016 (r418125) +++ head/net/ccxstream/files/patch-ccxstream.c Wed Jul 6 09:00:07 2016 (r418126) @@ -1,6 +1,6 @@ ---- ccxstream.c.orig Mon Mar 17 11:29:15 2003 -+++ ccxstream.c Tue May 15 15:02:31 2007 -@@ -1004,7 +1004,7 @@ +--- ccxstream.c.orig 2003-03-17 14:29:15 UTC ++++ ccxstream.c +@@ -1004,7 +1004,7 @@ int cc_xstream_handle_packet(CcXstreamCo for (fh = 0; fh < CC_XSTREAM_MAX_OPEN_FILES; fh++) if (conn->open_file_handle[fh] == handle) break; @@ -9,7 +9,7 @@ { cc_xstream_send_error(conn, id, CC_XSTREAM_XBMSP_ERROR_INVALID_HANDLE, "Invalid file handle."); return 1; -@@ -1016,10 +1016,19 @@ +@@ -1016,10 +1016,19 @@ int cc_xstream_handle_packet(CcXstreamCo } hlp = cc_xmalloc(rlen); sz = fread(hlp, 1, rlen, conn->f[fh]); @@ -29,7 +29,7 @@ cc_xfree(hlp); return 1; } -@@ -1661,6 +1670,16 @@ +@@ -1661,6 +1670,16 @@ int main(int argc, char **argv) setsockopt(prog->s, SOL_SOCKET, SO_REUSEPORT, (char *)&c, sizeof (c)); #endif /* SO_REUSEPORT */ @@ -46,7 +46,7 @@ memset(&sa, 0, sizeof (sa)); sa.sin_family = AF_INET; sa.sin_addr = la; -@@ -1693,6 +1712,10 @@ +@@ -1693,6 +1712,10 @@ int main(int argc, char **argv) c = 1; setsockopt(prog->bs, SOL_SOCKET, SO_BROADCAST, (char *)&c, sizeof (c)); #endif /* SO_BROADCAST */ From owner-svn-ports-all@freebsd.org Wed Jul 6 09:02:54 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 7DC22B21A6B; Wed, 6 Jul 2016 09:02:54 +0000 (UTC) (envelope-from koobs.freebsd@gmail.com) Received: from mail-pa0-x22b.google.com (mail-pa0-x22b.google.com [IPv6:2607:f8b0:400e:c03::22b]) (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 4B9A114B0; Wed, 6 Jul 2016 09:02:54 +0000 (UTC) (envelope-from koobs.freebsd@gmail.com) Received: by mail-pa0-x22b.google.com with SMTP id uj8so15365352pab.3; Wed, 06 Jul 2016 02:02:54 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=sender:reply-to:subject:references:to:from:cc:message-id:date :user-agent:mime-version:in-reply-to:content-transfer-encoding; bh=mMfcNzPUq8TSfQWMttSLv5Mw/43mTzFPj1FFiORiEao=; b=cNSrx4pnvrilUIXd5NwvMrRt/o8JAfhp/tAy1CMh46HEx1ghUPUZKminT0spfRk7Fs stf+GsdY7rZ2IO9ZsYRloA9zaRT1W2y1YY9WjFKxvY2a92dbEvx/fv0JNL2qtJCf9nGx +hhtIHpYAdSiXX7oxW8oy4jwPrsuL16z7a0BLG9UQqBvh52xss8+UZI8t9n/P7ACaaVG +uZeC7IYT/5/0IRjBBpUHjJUyMFqhywk7+Yme0eFpwBk5WH166w3VUZTJypo7+YDOkxZ vDbiJUVu48fqHpiMBZQTvLgLJ3CyuSdYVFfV6BOYMairPNSsot9n+ISTvLk1n1EFY3oD 3S+Q== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:sender:reply-to:subject:references:to:from:cc :message-id:date:user-agent:mime-version:in-reply-to :content-transfer-encoding; bh=mMfcNzPUq8TSfQWMttSLv5Mw/43mTzFPj1FFiORiEao=; b=OB1LgKw5tree0Lb3fi8JkGZkmoIAWxSz4eADv00ouTFWOZbqFr9R/YaqfWw88Llr4h VKcGVc4LiH00qUF+DjYEotDgkRcerxoIvPxs/fYyuUBpY6WZBxeCbEc4WjBFK4ai4EcW XFA6ULM/4xguFve8ksy+dY8wonLQuDUdG0Wycm6PRqPFEb/Xp9NwwkCEjVniOnhBkIdq 7o/pievvtZcw7YA2RW2GLFIvnV3uZgk6tCbADBfqE6ejINP8XzH2ZF4is9Uk1k7uk3Ek ssFYmtMVWbman7Re/C1LItRxlqZXFnlCDDM+cgygDfggWgLZ/uhEzpaMPw5aNu+NjVSd PwCw== X-Gm-Message-State: ALyK8tLOvalCx+o18DJraL4FnA+goRfpxhqAMdJSNDiWjLYm1vCAn1UqbOSZYNzcobMLTA== X-Received: by 10.66.97.104 with SMTP id dz8mr39941763pab.22.1467795773625; Wed, 06 Jul 2016 02:02:53 -0700 (PDT) Received: from ?IPv6:2001:44b8:31ae:7b01:f985:3c4b:2a0c:8bea? (2001-44b8-31ae-7b01-f985-3c4b-2a0c-8bea.static.ipv6.internode.on.net. [2001:44b8:31ae:7b01:f985:3c4b:2a0c:8bea]) by smtp.gmail.com with ESMTPSA id vx4sm2919034pac.35.2016.07.06.02.02.51 (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Wed, 06 Jul 2016 02:02:53 -0700 (PDT) Sender: Kubilay Kocak Reply-To: koobs@FreeBSD.org Subject: Re: svn commit: r418098 - head/misc/py-socli References: <201607051758.u65Hwctr079258@repo.freebsd.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org From: Kubilay Kocak Cc: "Carlos J. Puga Medina" Message-ID: Date: Wed, 6 Jul 2016 19:02:44 +1000 User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64; rv:47.0) Gecko/20100101 Thunderbird/47.0 MIME-Version: 1.0 In-Reply-To: <201607051758.u65Hwctr079258@repo.freebsd.org> Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Jul 2016 09:02:54 -0000 On 6/07/2016 3:58 AM, Carlos J. Puga Medina wrote: > Author: cpm > Date: Tue Jul 5 17:58:37 2016 > New Revision: 418098 > URL: https://svnweb.freebsd.org/changeset/ports/418098 > > Log: > - Update to 1.8 release > - Change USES=python:3 to USES=python because python2 support has been added > - Remove ignore on package buiders A note for future reference and for others watching: USES=python, USES=python:2, and USES=python:3 have only ever, and continue only to mean: Depend on the lang/python, lang/python2 or lang/python3 *metaports*, because it depends on the python, python2 or python3 *symlinks*, because some script it has or runs uses that script filename. It does *not* mean "all/any Python versions", "supports any 2.x version", "any 3.x version" or anything else about the Python version(s) it supports. In particular, this means the use of USES=python to mean "any/all versions" in the vast majority, if not all ports is incorrect. Note: these "dependencies" can often (if not always) be removed by shebangfix'ing the files in question to use an explicit pythonX.Y script (making them PEP-394 compatible). The correct way to declare Python version support in a port is to explicitly, declaratively and accurately as possible (given the limitations below) list them using: * A.B-X.Y * -X.Y * X.Y+ * X.Y Ideally, they are declared identically to the versions listed in the setup.py, such as: Programming Language :: Python :: 2.6 Programming Language :: Python :: 2.7 Programming Language :: Python :: 3.2 Programming Language :: Python :: 3.3 Programming Language :: Python :: 3.4 Programming Language :: Python :: 3.5 Unfortunately, we can't currently declare multiple versions (that aren't ranges), such as A.B,A.C,X.Y, which we need. It would be awesome if someone could help expand the syntax, so we can actually start doing proper, correct and accurate version support declarations. Moving forward, we need better ways to declare "supports X, Y, Z versions *and* this or these symlinks (metaports), and we need to move to only explicitly listing supported versions, rather than implicitly. In the meantime, you can help by minimizing the use of USES=python, USES=python:2 and python:3 unless its absolutely required, or there is no better method. I'll write this up in the Python wiki pages, feel free to reply off-list if you have any questions or if you want to help ./koobs > Reviewed by: feld (mentor) > Approved by: feld (mentor) > Differential Revision: D7099 > > Modified: > head/misc/py-socli/Makefile > head/misc/py-socli/distinfo > > Modified: head/misc/py-socli/Makefile > ============================================================================== > --- head/misc/py-socli/Makefile Tue Jul 5 17:57:42 2016 (r418097) > +++ head/misc/py-socli/Makefile Tue Jul 5 17:58:37 2016 (r418098) > @@ -2,8 +2,7 @@ > # $FreeBSD$ > > PORTNAME= socli > -PORTVERSION= 1.7 > -PORTREVISION= 1 > +PORTVERSION= 1.8 > CATEGORIES= misc python > PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} > > @@ -16,7 +15,7 @@ LICENSE_FILE= ${WRKSRC}/LICENSE > RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}beautifulsoup>=0:www/py-beautifulsoup \ > ${PYTHON_PKGNAMEPREFIX}requests>=0:www/py-requests > > -USES= python:3 > +USES= python > USE_GITHUB= yes > USE_PYTHON= autoplist distutils > > @@ -24,10 +23,4 @@ GH_ACCOUNT= gautamkrishnar > > NO_ARCH= yes > > -.include > - > -.if defined(PACKAGE_BUILDING) && ${PYTHON_VER} != ${PYTHON_DEFAULT} > -IGNORE= you have python ${PYTHON_DEFAULT} set as the default, and this needs ${PYTHON_VER} > -.endif > - > -.include > +.include > > Modified: head/misc/py-socli/distinfo > ============================================================================== > --- head/misc/py-socli/distinfo Tue Jul 5 17:57:42 2016 (r418097) > +++ head/misc/py-socli/distinfo Tue Jul 5 17:58:37 2016 (r418098) > @@ -1,3 +1,3 @@ > -TIMESTAMP = 1466859233 > -SHA256 (gautamkrishnar-socli-1.7_GH0.tar.gz) = ce927f38a72468ed1f5a34b4d72ee1911475fa267cce82a2baeebd92f97c563f > -SIZE (gautamkrishnar-socli-1.7_GH0.tar.gz) = 7151 > +TIMESTAMP = 1467672057 > +SHA256 (gautamkrishnar-socli-1.8_GH0.tar.gz) = f3e462a0b5a9ce2ccf945be3a0500e37dc8c8bad293bfc12841d097a637c62d2 > +SIZE (gautamkrishnar-socli-1.8_GH0.tar.gz) = 7406 > From owner-svn-ports-all@freebsd.org Wed Jul 6 10:03:49 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 894A5B7478B; Wed, 6 Jul 2016 10:03:49 +0000 (UTC) (envelope-from lth@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 54FCD1F6B; Wed, 6 Jul 2016 10:03:49 +0000 (UTC) (envelope-from lth@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u66A3mDX049150; Wed, 6 Jul 2016 10:03:48 GMT (envelope-from lth@FreeBSD.org) Received: (from lth@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u66A3mJc049148; Wed, 6 Jul 2016 10:03:48 GMT (envelope-from lth@FreeBSD.org) Message-Id: <201607061003.u66A3mJc049148@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: lth set sender to lth@FreeBSD.org using -f From: Lars Thegler Date: Wed, 6 Jul 2016 10:03:48 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418127 - head/devel/p5-Test-POE-Server-TCP X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Jul 2016 10:03:49 -0000 Author: lth Date: Wed Jul 6 10:03:48 2016 New Revision: 418127 URL: https://svnweb.freebsd.org/changeset/ports/418127 Log: - Update from 1.18 to 1.20 - Add LICENSE - Disperse maintainership Modified: head/devel/p5-Test-POE-Server-TCP/Makefile head/devel/p5-Test-POE-Server-TCP/distinfo Modified: head/devel/p5-Test-POE-Server-TCP/Makefile ============================================================================== --- head/devel/p5-Test-POE-Server-TCP/Makefile Wed Jul 6 09:00:07 2016 (r418126) +++ head/devel/p5-Test-POE-Server-TCP/Makefile Wed Jul 6 10:03:48 2016 (r418127) @@ -2,14 +2,17 @@ # $FreeBSD$ PORTNAME= Test-POE-Server-TCP -PORTVERSION= 1.18 +PORTVERSION= 1.20 CATEGORIES= devel perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- -MAINTAINER= lth@FreeBSD.org +MAINTAINER= perl@FreeBSD.org COMMENT= POE Component providing TCP server services for test cases +LICENSE= ART10 GPLv1 +LICENSE_COMB= dual + BUILD_DEPENDS= p5-POE>=1.004:devel/p5-POE RUN_DEPENDS:= ${BUILD_DEPENDS} Modified: head/devel/p5-Test-POE-Server-TCP/distinfo ============================================================================== --- head/devel/p5-Test-POE-Server-TCP/distinfo Wed Jul 6 09:00:07 2016 (r418126) +++ head/devel/p5-Test-POE-Server-TCP/distinfo Wed Jul 6 10:03:48 2016 (r418127) @@ -1,2 +1,3 @@ -SHA256 (Test-POE-Server-TCP-1.18.tar.gz) = 76f911b7171af0ad91187faa2f941a5f1f038bb5405303332046548d2060676f -SIZE (Test-POE-Server-TCP-1.18.tar.gz) = 22407 +TIMESTAMP = 1467799017 +SHA256 (Test-POE-Server-TCP-1.20.tar.gz) = 9368ceb63580f0f3a877a9295268cbdab538e399e67c0cb5e7d175cac0042c5c +SIZE (Test-POE-Server-TCP-1.20.tar.gz) = 22429 From owner-svn-ports-all@freebsd.org Wed Jul 6 10:28:22 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 47625B74D95; Wed, 6 Jul 2016 10:28:22 +0000 (UTC) (envelope-from kubito@gmail.com) Received: from mail-wm0-x22d.google.com (mail-wm0-x22d.google.com [IPv6:2a00:1450:400c:c09::22d]) (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 CD6061BDA; Wed, 6 Jul 2016 10:28:21 +0000 (UTC) (envelope-from kubito@gmail.com) Received: by mail-wm0-x22d.google.com with SMTP id r201so186635913wme.1; Wed, 06 Jul 2016 03:28:21 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=sender:from:to:cc:subject:references:date:in-reply-to:message-id :user-agent:mime-version; bh=uwtbgFQe5kw/oYVMDuWRLOloMI2prFUifmsGy1OILQs=; b=YZmXGv520JOCsJru+3fT2we57v+AwY0YCtj6R38Ug3+wNLEaijtn3TISWTz7FMaNBE kAag8YkoPerAy15srEu/PZFATyYyuKoc9cnc409kkoqE1l8yPlqgm5YFTlw/GYWZ1rWR Ls44Q03nNann8V586HnbUO/lc7GUsxHIrJIXZfY208YXslOL2Ep+iWyydx36BxHQsgYN MRJ4GBsICIEWVz5MWpaZGKl7Q/ABts1swbZDh9U3qK1KUg4gksZLWCcUnw6MFwd7cJ6n VyIjYlY6dswSWMyrugLLoStyP5LK/cHc2K/TDgG23GkNe13pMte8Whu45eSyXdpLtcBj lvZw== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:sender:from:to:cc:subject:references:date :in-reply-to:message-id:user-agent:mime-version; bh=uwtbgFQe5kw/oYVMDuWRLOloMI2prFUifmsGy1OILQs=; b=KR6by2VW+bR0p7vze5eAlXQBTFILBO+QfG306tste1Kl/RG5NRQhozzcy5mRAY59ro Oa3DySb2V9ZxCdS/MgTWO/ooqRaPvxJTlZODj61lXEnf2TEu6X9wOXoLMPwTh9ULyV8i 8kC7BXDcSAPpP/2MPTj/4dv1QcTuBaQlUoVPnlkqmKwUh8sMKQ3XW16IZ4iYjB4S1af/ 6hCdRcM6k/9GeItELeHVF0AhsOKzANVpn8pFzcbk92dmY0C4iEu7HkFmiWK7agkPacA7 sIineZdRePfe5WM93hYPOEjVPhDqlbTrbFe5R+VYGCqNC89UsoJ3zdVWx7oqNea/4nnS 3EeQ== X-Gm-Message-State: ALyK8tIFGDaH3nHujvIdkV94neFrWyARHxRxDYHc2zrZ3zK0tWE94qvyI4FwuPwTYxfggg== X-Received: by 10.194.109.199 with SMTP id hu7mr19734012wjb.6.1467800900143; Wed, 06 Jul 2016 03:28:20 -0700 (PDT) Received: from orwell.gmail.com (dhcp-077-248-147-050.chello.nl. [77.248.147.50]) by smtp.gmail.com with ESMTPSA id b187sm12932457wmg.15.2016.07.06.03.28.19 (version=TLS1_2 cipher=ECDHE-RSA-CHACHA20-POLY1305 bits=256/256); Wed, 06 Jul 2016 03:28:19 -0700 (PDT) Sender: Raphael Kubo da Costa From: Raphael Kubo da Costa To: Pietro Cerutti Cc: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: Re: svn commit: r418119 - in head: astro/osmium audio/musicpd chinese/fcitx databases/couchdb databases/firebird25-server databases/postgresql91-server databases/postgresql92-server databases/sqlite3 d... References: <201607060734.u667YDZH093679@repo.freebsd.org> Date: Wed, 06 Jul 2016 12:27:39 +0200 In-Reply-To: <201607060734.u667YDZH093679@repo.freebsd.org> (Pietro Cerutti's message of "Wed, 6 Jul 2016 07:34:13 +0000 (UTC)") Message-ID: <86poqr83j8.fsf@FreeBSD.org> User-Agent: Gnus/5.130016 (Ma Gnus v0.16) Emacs/24.5 (berkeley-unix) MIME-Version: 1.0 Content-Type: text/plain X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Jul 2016 10:28:22 -0000 Pietro Cerutti writes: > Author: gahr > Date: Wed Jul 6 07:34:12 2016 > New Revision: 418119 > URL: https://svnweb.freebsd.org/changeset/ports/418119 > > Log: > devel/icu: bump PORTREVISION on dependent ports Compared to the list in freshports.org/devel/icu, it seems like you've missed some ports: - chinese/tin - devel/php70-intl - mail/thunderbird - news/tin - www/firefox - www/firefox-esr - www/libxul - www/node - www/node4 - www/seamonkey From owner-svn-ports-all@freebsd.org Wed Jul 6 11:19:58 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 950D4B74182; Wed, 6 Jul 2016 11:19:58 +0000 (UTC) (envelope-from gahr@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 51DDF1A39; Wed, 6 Jul 2016 11:19:58 +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 u66BJvJa075242; Wed, 6 Jul 2016 11:19:57 GMT (envelope-from gahr@FreeBSD.org) Received: (from gahr@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u66BJuZc075231; Wed, 6 Jul 2016 11:19:56 GMT (envelope-from gahr@FreeBSD.org) Message-Id: <201607061119.u66BJuZc075231@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: gahr set sender to gahr@FreeBSD.org using -f From: Pietro Cerutti Date: Wed, 6 Jul 2016 11:19:56 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418128 - in head: chinese/tin lang/php70 mail/thunderbird news/tin www/firefox www/firefox-esr www/libxul www/node www/node4 www/seamonkey X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Jul 2016 11:19:58 -0000 Author: gahr Date: Wed Jul 6 11:19:56 2016 New Revision: 418128 URL: https://svnweb.freebsd.org/changeset/ports/418128 Log: devel/icu: bump PORTREVISION on missing dependent ports Reported by: rakuco Modified: head/chinese/tin/Makefile head/lang/php70/Makefile head/mail/thunderbird/Makefile head/news/tin/Makefile head/www/firefox-esr/Makefile head/www/firefox/Makefile head/www/libxul/Makefile head/www/node/Makefile head/www/node4/Makefile head/www/seamonkey/Makefile Modified: head/chinese/tin/Makefile ============================================================================== --- head/chinese/tin/Makefile Wed Jul 6 10:03:48 2016 (r418127) +++ head/chinese/tin/Makefile Wed Jul 6 11:19:56 2016 (r418128) @@ -2,7 +2,7 @@ # $FreeBSD$ # Don't reset PORTREVISION and keep bumping it even if PORTVERSION is changed. -PORTREVISION= 6 +PORTREVISION= 7 CATEGORIES= chinese MAINTAINER= ports@FreeBSD.org Modified: head/lang/php70/Makefile ============================================================================== --- head/lang/php70/Makefile Wed Jul 6 10:03:48 2016 (r418127) +++ head/lang/php70/Makefile Wed Jul 6 11:19:56 2016 (r418128) @@ -3,7 +3,7 @@ PORTNAME= php70 PORTVERSION= 7.0.8 -PORTREVISION?= 0 +PORTREVISION?= 1 CATEGORIES?= lang devel www MASTER_SITES= PHP/distributions DISTNAME= php-${PORTVERSION} Modified: head/mail/thunderbird/Makefile ============================================================================== --- head/mail/thunderbird/Makefile Wed Jul 6 10:03:48 2016 (r418127) +++ head/mail/thunderbird/Makefile Wed Jul 6 11:19:56 2016 (r418128) @@ -3,6 +3,7 @@ PORTNAME= thunderbird DISTVERSION= 45.1.1 +PORTREVISION= 1 CATEGORIES= mail news net-im ipv6 MASTER_SITES= MOZILLA/${PORTNAME}/releases/${DISTVERSION}/source \ MOZILLA/${PORTNAME}/candidates/${DISTVERSION}-candidates/build1/source Modified: head/news/tin/Makefile ============================================================================== --- head/news/tin/Makefile Wed Jul 6 10:03:48 2016 (r418127) +++ head/news/tin/Makefile Wed Jul 6 11:19:56 2016 (r418128) @@ -3,6 +3,7 @@ PORTNAME= tin PORTVERSION= 2.3.4 +PORTREVISION= 1 CATEGORIES+= news ipv6 MASTER_SITES= ftp://ftp.tin.org/pub/news/clients/tin/v${PORTVERSION:R}/ \ ftp://ftp.sunet.se/pub/news/readers/tin/v${PORTVERSION:R}/ \ Modified: head/www/firefox-esr/Makefile ============================================================================== --- head/www/firefox-esr/Makefile Wed Jul 6 10:03:48 2016 (r418127) +++ head/www/firefox-esr/Makefile Wed Jul 6 11:19:56 2016 (r418128) @@ -3,6 +3,7 @@ PORTNAME= firefox DISTVERSION= 45.2.0 +PORTREVISION= 1 DISTVERSIONSUFFIX=esr.source PORTEPOCH= 1 CATEGORIES= www ipv6 Modified: head/www/firefox/Makefile ============================================================================== --- head/www/firefox/Makefile Wed Jul 6 10:03:48 2016 (r418127) +++ head/www/firefox/Makefile Wed Jul 6 11:19:56 2016 (r418128) @@ -3,6 +3,7 @@ PORTNAME= firefox DISTVERSION= 47.0.1 +PORTREVISION= 1 DISTVERSIONSUFFIX=.source PORTEPOCH= 1 CATEGORIES= www ipv6 Modified: head/www/libxul/Makefile ============================================================================== --- head/www/libxul/Makefile Wed Jul 6 10:03:48 2016 (r418127) +++ head/www/libxul/Makefile Wed Jul 6 11:19:56 2016 (r418128) @@ -3,6 +3,7 @@ PORTNAME= libxul DISTVERSION= 45.2.0 +PORTREVISION= 1 CATEGORIES?= www devel MASTER_SITES= MOZILLA/firefox/releases/${DISTVERSION}esr/source \ MOZILLA/firefox/candidates/${DISTVERSION}esr-candidates/build2/source Modified: head/www/node/Makefile ============================================================================== --- head/www/node/Makefile Wed Jul 6 10:03:48 2016 (r418127) +++ head/www/node/Makefile Wed Jul 6 11:19:56 2016 (r418128) @@ -2,6 +2,7 @@ PORTNAME= node PORTVERSION= 6.2.2 +PORTREVISION= 1 DISTVERSIONPREFIX= v CATEGORIES= www MASTER_SITES= http://nodejs.org/dist/v${PORTVERSION}/ Modified: head/www/node4/Makefile ============================================================================== --- head/www/node4/Makefile Wed Jul 6 10:03:48 2016 (r418127) +++ head/www/node4/Makefile Wed Jul 6 11:19:56 2016 (r418128) @@ -3,6 +3,7 @@ PORTNAME= node PORTVERSION= 4.4.7 +PORTREVISION= 1 DISTVERSIONPREFIX= v CATEGORIES= www MASTER_SITES= http://nodejs.org/dist/v${PORTVERSION}/ Modified: head/www/seamonkey/Makefile ============================================================================== --- head/www/seamonkey/Makefile Wed Jul 6 10:03:48 2016 (r418127) +++ head/www/seamonkey/Makefile Wed Jul 6 11:19:56 2016 (r418128) @@ -4,7 +4,7 @@ PORTNAME= seamonkey DISTVERSION= 2.39 MOZILLA_VER= 42 # above + 3 -PORTREVISION= 8 +PORTREVISION= 9 CATEGORIES?= www mail news editors irc ipv6 MASTER_SITES= MOZILLA/${PORTNAME}/releases/${DISTVERSION}/source \ MOZILLA/${PORTNAME}/candidates/${DISTVERSION}-candidates/build1/source From owner-svn-ports-all@freebsd.org Wed Jul 6 11:20:19 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 839C3B741E2; Wed, 6 Jul 2016 11:20:19 +0000 (UTC) (envelope-from gahr@FreeBSD.org) Received: from mail.ptrcrt.ch (gahr.cloud.tilaa.com [84.22.109.158]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 5D7C21B16; Wed, 6 Jul 2016 11:20:17 +0000 (UTC) (envelope-from gahr@FreeBSD.org) Received: from webmail.ptrcrt.ch (www.gahr.ch [192.168.1.2]) by mail.ptrcrt.ch (OpenSMTPD) with ESMTPSA id 265f1eb9 TLS version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128 verify=NO; Wed, 6 Jul 2016 11:20:13 +0000 (UTC) MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII; format=flowed Content-Transfer-Encoding: 7bit Date: Wed, 06 Jul 2016 13:20:13 +0200 From: Pietro Cerutti To: Raphael Kubo da Costa Cc: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org, owner-ports-committers@freebsd.org Subject: Re: svn commit: r418119 - in head: astro/osmium audio/musicpd chinese/fcitx databases/couchdb databases/firebird25-server databases/postgresql91-server databases/postgresql92-server databases/sqlite3 d... Organization: The FreeBSD Project In-Reply-To: <86poqr83j8.fsf@FreeBSD.org> References: <201607060734.u667YDZH093679@repo.freebsd.org> <86poqr83j8.fsf@FreeBSD.org> Message-ID: <3d3bac4a275c150f13f5412ef85e9384@gahr.ch> X-Sender: gahr@FreeBSD.org User-Agent: Roundcube Webmail/1.2.0 X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Jul 2016 11:20:19 -0000 On 2016-07-06 12:27, Raphael Kubo da Costa wrote: > Pietro Cerutti writes: > >> Author: gahr >> Date: Wed Jul 6 07:34:12 2016 >> New Revision: 418119 >> URL: https://svnweb.freebsd.org/changeset/ports/418119 >> >> Log: >> devel/icu: bump PORTREVISION on dependent ports > > Compared to the list in freshports.org/devel/icu, it seems like you've > missed some ports: > > - chinese/tin > - devel/php70-intl > - mail/thunderbird > - news/tin > - www/firefox > - www/firefox-esr > - www/libxul > - www/node > - www/node4 > - www/seamonkey Done in r418128, thanks! -- Pietro Cerutti gahr@FreeBSD.org PGP Public Key: http://gahr.ch/pgp From owner-svn-ports-all@freebsd.org Wed Jul 6 12:15:43 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 6F54FB754BD; Wed, 6 Jul 2016 12:15:43 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 41D3915C4; Wed, 6 Jul 2016 12:15:43 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u66CFgQg097011; Wed, 6 Jul 2016 12:15:42 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u66CFgWX097010; Wed, 6 Jul 2016 12:15:42 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201607061215.u66CFgWX097010@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Wed, 6 Jul 2016 12:15:42 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418129 - head/graphics/geeqie X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Jul 2016 12:15:43 -0000 Author: amdmi3 Date: Wed Jul 6 12:15:42 2016 New Revision: 418129 URL: https://svnweb.freebsd.org/changeset/ports/418129 Log: - Clarify LICENSE Modified: head/graphics/geeqie/Makefile Modified: head/graphics/geeqie/Makefile ============================================================================== --- head/graphics/geeqie/Makefile Wed Jul 6 11:19:56 2016 (r418128) +++ head/graphics/geeqie/Makefile Wed Jul 6 12:15:42 2016 (r418129) @@ -9,7 +9,7 @@ MASTER_SITES= http://www.geeqie.org/ MAINTAINER= amdmi3@FreeBSD.org COMMENT= Lightweight image viewer forked from GQview -LICENSE= GPLv2 +LICENSE= GPLv2+ LICENSE_FILE= ${WRKSRC}/COPYING LIB_DEPENDS= libpng.so:graphics/png From owner-svn-ports-all@freebsd.org Wed Jul 6 13:17:18 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 9C076B7515D; Wed, 6 Jul 2016 13:17:18 +0000 (UTC) (envelope-from gahr@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 691C2116B; Wed, 6 Jul 2016 13:17:18 +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 u66DHHae019494; Wed, 6 Jul 2016 13:17:17 GMT (envelope-from gahr@FreeBSD.org) Received: (from gahr@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u66DHHDT019492; Wed, 6 Jul 2016 13:17:17 GMT (envelope-from gahr@FreeBSD.org) Message-Id: <201607061317.u66DHHDT019492@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: gahr set sender to gahr@FreeBSD.org using -f From: Pietro Cerutti Date: Wed, 6 Jul 2016 13:17:17 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418130 - head/lang/lua53 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Jul 2016 13:17:18 -0000 Author: gahr Date: Wed Jul 6 13:17:17 2016 New Revision: 418130 URL: https://svnweb.freebsd.org/changeset/ports/418130 Log: lang/lua53: update to 5.3.3 Modified: head/lang/lua53/Makefile head/lang/lua53/distinfo Modified: head/lang/lua53/Makefile ============================================================================== --- head/lang/lua53/Makefile Wed Jul 6 12:15:42 2016 (r418129) +++ head/lang/lua53/Makefile Wed Jul 6 13:17:17 2016 (r418130) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= lua -PORTVERSION= 5.3.2 -PORTREVISION= 1 +PORTVERSION= 5.3.3 CATEGORIES= lang MASTER_SITES= http://www.lua.org/ftp/ PKGNAMESUFFIX= 53 Modified: head/lang/lua53/distinfo ============================================================================== --- head/lang/lua53/distinfo Wed Jul 6 12:15:42 2016 (r418129) +++ head/lang/lua53/distinfo Wed Jul 6 13:17:17 2016 (r418130) @@ -1,2 +1,3 @@ -SHA256 (lua-5.3.2.tar.gz) = c740c7bb23a936944e1cc63b7c3c5351a8976d7867c5252c8854f7b2af9da68f -SIZE (lua-5.3.2.tar.gz) = 288235 +TIMESTAMP = 1465493142 +SHA256 (lua-5.3.3.tar.gz) = 5113c06884f7de453ce57702abaac1d618307f33f6789fa870e87a59d772aca2 +SIZE (lua-5.3.3.tar.gz) = 294290 From owner-svn-ports-all@freebsd.org Wed Jul 6 13:19:39 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 69A5FB751B0; Wed, 6 Jul 2016 13:19: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 mx1.freebsd.org (Postfix) with ESMTPS id 3A18312BD; Wed, 6 Jul 2016 13:19: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 u66DJcxQ019683; Wed, 6 Jul 2016 13:19:38 GMT (envelope-from gahr@FreeBSD.org) Received: (from gahr@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u66DJcCZ019681; Wed, 6 Jul 2016 13:19:38 GMT (envelope-from gahr@FreeBSD.org) Message-Id: <201607061319.u66DJcCZ019681@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: gahr set sender to gahr@FreeBSD.org using -f From: Pietro Cerutti Date: Wed, 6 Jul 2016 13:19:38 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418131 - in head/games: irrlamb libretro-cores X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Jul 2016 13:19:39 -0000 Author: gahr Date: Wed Jul 6 13:19:38 2016 New Revision: 418131 URL: https://svnweb.freebsd.org/changeset/ports/418131 Log: lang/lua53: bump PORTREVISION on dependent ports Modified: head/games/irrlamb/Makefile head/games/libretro-cores/Makefile Modified: head/games/irrlamb/Makefile ============================================================================== --- head/games/irrlamb/Makefile Wed Jul 6 13:17:17 2016 (r418130) +++ head/games/irrlamb/Makefile Wed Jul 6 13:19:38 2016 (r418131) @@ -3,6 +3,7 @@ PORTNAME= irrlamb PORTVERSION= 0.2.1 +PORTREVISION= 1 DISTVERSIONPREFIX= v CATEGORIES= games Modified: head/games/libretro-cores/Makefile ============================================================================== --- head/games/libretro-cores/Makefile Wed Jul 6 13:17:17 2016 (r418130) +++ head/games/libretro-cores/Makefile Wed Jul 6 13:19:38 2016 (r418131) @@ -3,6 +3,7 @@ PORTNAME= libretro-cores PORTVERSION= 0.20151110 +PORTREVISION= 1 CATEGORIES= games MAINTAINER= yuri@rawbw.com From owner-svn-ports-all@freebsd.org Wed Jul 6 14:04:14 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 6D856B75BCD; Wed, 6 Jul 2016 14:04:14 +0000 (UTC) (envelope-from feld@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 233221B21; Wed, 6 Jul 2016 14:04:14 +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 u66E4DcT037676; Wed, 6 Jul 2016 14:04:13 GMT (envelope-from feld@FreeBSD.org) Received: (from feld@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u66E4Dfp037673; Wed, 6 Jul 2016 14:04:13 GMT (envelope-from feld@FreeBSD.org) Message-Id: <201607061404.u66E4Dfp037673@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: feld set sender to feld@FreeBSD.org using -f From: Mark Felder Date: Wed, 6 Jul 2016 14:04:13 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418132 - head/www/rubygem-redmine_acts_as_taggable_on X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Jul 2016 14:04:14 -0000 Author: feld Date: Wed Jul 6 14:04:12 2016 New Revision: 418132 URL: https://svnweb.freebsd.org/changeset/ports/418132 Log: www/rubygem-redmine_acts_as_taggable_on: Update to 1.1.0 This update changes to a different upstream fork where there is now support for Redmine 3.x. This is maintained by the same author who created the Redmine Knowledgebase plugin which requires this gem. PR: 210644 Approved by: maintainer (zi) Modified: head/www/rubygem-redmine_acts_as_taggable_on/Makefile head/www/rubygem-redmine_acts_as_taggable_on/distinfo head/www/rubygem-redmine_acts_as_taggable_on/pkg-descr Modified: head/www/rubygem-redmine_acts_as_taggable_on/Makefile ============================================================================== --- head/www/rubygem-redmine_acts_as_taggable_on/Makefile Wed Jul 6 13:19:38 2016 (r418131) +++ head/www/rubygem-redmine_acts_as_taggable_on/Makefile Wed Jul 6 14:04:12 2016 (r418132) @@ -2,10 +2,9 @@ # $FreeBSD$ PORTNAME= redmine_acts_as_taggable_on -PORTVERSION= 1.0.0 -PORTREVISION= 1 +PORTVERSION= 1.1.0 CATEGORIES= www rubygems -MASTER_SITES= RG +MASTER_SITES= LOCAL/feld/rubygems/ MAINTAINER= ruby@FreeBSD.org COMMENT= Allows multiple Redmine plugins to use tags safely Modified: head/www/rubygem-redmine_acts_as_taggable_on/distinfo ============================================================================== --- head/www/rubygem-redmine_acts_as_taggable_on/distinfo Wed Jul 6 13:19:38 2016 (r418131) +++ head/www/rubygem-redmine_acts_as_taggable_on/distinfo Wed Jul 6 14:04:12 2016 (r418132) @@ -1,2 +1,3 @@ -SHA256 (rubygem/redmine_acts_as_taggable_on-1.0.0.gem) = 5a906eaf861f1dc4b51407a2f5dbbf83716d646af59575c6c4a1054e94eef024 -SIZE (rubygem/redmine_acts_as_taggable_on-1.0.0.gem) = 17920 +TIMESTAMP = 1467062550 +SHA256 (rubygem/redmine_acts_as_taggable_on-1.1.0.gem) = 39fc03de3e04812016cbd173e79bd5a89545e6bab450d3c7dc0584891448ca18 +SIZE (rubygem/redmine_acts_as_taggable_on-1.1.0.gem) = 17920 Modified: head/www/rubygem-redmine_acts_as_taggable_on/pkg-descr ============================================================================== --- head/www/rubygem-redmine_acts_as_taggable_on/pkg-descr Wed Jul 6 13:19:38 2016 (r418131) +++ head/www/rubygem-redmine_acts_as_taggable_on/pkg-descr Wed Jul 6 14:04:12 2016 (r418132) @@ -1,3 +1,3 @@ Allows multiple Redmine plugins to use tags safely -WWW: https://github.com/hdgarrood/redmine_acts_as_taggable_on +WWW: https://github.com/alexbevi/redmine_acts_as_taggable_on From owner-svn-ports-all@freebsd.org Wed Jul 6 14:15:24 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id E43D5B75E89; Wed, 6 Jul 2016 14:15:24 +0000 (UTC) (envelope-from gahr@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id B62AE1359; Wed, 6 Jul 2016 14:15:24 +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 u66EFNAu041468; Wed, 6 Jul 2016 14:15:23 GMT (envelope-from gahr@FreeBSD.org) Received: (from gahr@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u66EFNTX041467; Wed, 6 Jul 2016 14:15:23 GMT (envelope-from gahr@FreeBSD.org) Message-Id: <201607061415.u66EFNTX041467@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: gahr set sender to gahr@FreeBSD.org using -f From: Pietro Cerutti Date: Wed, 6 Jul 2016 14:15:23 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418133 - head/databases/metakit X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Jul 2016 14:15:25 -0000 Author: gahr Date: Wed Jul 6 14:15:23 2016 New Revision: 418133 URL: https://svnweb.freebsd.org/changeset/ports/418133 Log: databases/metakit: bump dependency on Tcl from 8.4 to 8.5 Modified: head/databases/metakit/Makefile Modified: head/databases/metakit/Makefile ============================================================================== --- head/databases/metakit/Makefile Wed Jul 6 14:04:12 2016 (r418132) +++ head/databases/metakit/Makefile Wed Jul 6 14:15:23 2016 (r418133) @@ -33,7 +33,7 @@ PLIST_SUB+= WITH_PYTHON="@comment " .endif .if ${PORT_OPTIONS:MTCL} -USES+= tcl:84 +USES+= tcl:85 CATEGORIES+= tcl CONFIGURE_ARGS+=--with-tcl=${TCL_INCLUDEDIR} CONFIGURE_ENV+= TCL_LIBDIR=${TCL_LIBDIR} From owner-svn-ports-all@freebsd.org Wed Jul 6 14:15:57 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 13054B75EE4; Wed, 6 Jul 2016 14:15:57 +0000 (UTC) (envelope-from gahr@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id D7FFB148D; Wed, 6 Jul 2016 14:15:56 +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 u66EFu6C041583; Wed, 6 Jul 2016 14:15:56 GMT (envelope-from gahr@FreeBSD.org) Received: (from gahr@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u66EFu8l041582; Wed, 6 Jul 2016 14:15:56 GMT (envelope-from gahr@FreeBSD.org) Message-Id: <201607061415.u66EFu8l041582@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: gahr set sender to gahr@FreeBSD.org using -f From: Pietro Cerutti Date: Wed, 6 Jul 2016 14:15:56 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418134 - head/databases/metakit X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Jul 2016 14:15:57 -0000 Author: gahr Date: Wed Jul 6 14:15:55 2016 New Revision: 418134 URL: https://svnweb.freebsd.org/changeset/ports/418134 Log: databases/metakit: and bump PORTREVISION Modified: head/databases/metakit/Makefile Modified: head/databases/metakit/Makefile ============================================================================== --- head/databases/metakit/Makefile Wed Jul 6 14:15:23 2016 (r418133) +++ head/databases/metakit/Makefile Wed Jul 6 14:15:55 2016 (r418134) @@ -3,7 +3,7 @@ PORTNAME= metakit PORTVERSION= 2.4.9.7 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= databases MASTER_SITES= http://www.equi4.com/pub/mk/ From owner-svn-ports-all@freebsd.org Wed Jul 6 14:24:05 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 9ECC9B7507C; Wed, 6 Jul 2016 14:24:05 +0000 (UTC) (envelope-from gahr@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 6BA9518B4; Wed, 6 Jul 2016 14:24:05 +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 u66EO4tK045185; Wed, 6 Jul 2016 14:24:04 GMT (envelope-from gahr@FreeBSD.org) Received: (from gahr@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u66EO4iu045184; Wed, 6 Jul 2016 14:24:04 GMT (envelope-from gahr@FreeBSD.org) Message-Id: <201607061424.u66EO4iu045184@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: gahr set sender to gahr@FreeBSD.org using -f From: Pietro Cerutti Date: Wed, 6 Jul 2016 14:24:04 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418135 - head/games/gracer X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Jul 2016 14:24:05 -0000 Author: gahr Date: Wed Jul 6 14:24:04 2016 New Revision: 418135 URL: https://svnweb.freebsd.org/changeset/ports/418135 Log: games/gracer: do not depend on a specific version of Tcl Modified: head/games/gracer/Makefile Modified: head/games/gracer/Makefile ============================================================================== --- head/games/gracer/Makefile Wed Jul 6 14:15:55 2016 (r418134) +++ head/games/gracer/Makefile Wed Jul 6 14:24:04 2016 (r418135) @@ -3,7 +3,7 @@ PORTNAME= gracer PORTVERSION= 0.1.5 -PORTREVISION= 20 +PORTREVISION= 21 CATEGORIES= games MASTER_SITES= SF @@ -18,7 +18,7 @@ LIB_DEPENDS= libgif.so:graphics/giflib \ libpng.so:graphics/png USE_GL= glut -USES= gmake jpeg localbase perl5 tcl:84 +USES= gmake jpeg localbase perl5 tcl USE_PERL5= build GNU_CONFIGURE= yes CONFIGURE_ARGS= --with-plib=${LOCALBASE} From owner-svn-ports-all@freebsd.org Wed Jul 6 14:30:17 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 7A4E6B750F2; Wed, 6 Jul 2016 14:30:17 +0000 (UTC) (envelope-from royger@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 39AF61AC3; Wed, 6 Jul 2016 14:30:17 +0000 (UTC) (envelope-from royger@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u66EUGKY045507; Wed, 6 Jul 2016 14:30:16 GMT (envelope-from royger@FreeBSD.org) Received: (from royger@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u66EUGHl045505; Wed, 6 Jul 2016 14:30:16 GMT (envelope-from royger@FreeBSD.org) Message-Id: <201607061430.u66EUGHl045505@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: royger set sender to royger@FreeBSD.org using -f From: =?UTF-8?Q?Roger_Pau_Monn=c3=a9?= Date: Wed, 6 Jul 2016 14:30:16 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418136 - head/misc/seabios X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Jul 2016 14:30:17 -0000 Author: royger (src committer) Date: Wed Jul 6 14:30:16 2016 New Revision: 418136 URL: https://svnweb.freebsd.org/changeset/ports/418136 Log: seabios: update to 1.9.3 Sponsored by: Citrix Systems R&D Modified: head/misc/seabios/Makefile head/misc/seabios/distinfo Modified: head/misc/seabios/Makefile ============================================================================== --- head/misc/seabios/Makefile Wed Jul 6 14:24:04 2016 (r418135) +++ head/misc/seabios/Makefile Wed Jul 6 14:30:16 2016 (r418136) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= seabios -PORTVERSION= 1.9.2 +PORTVERSION= 1.9.3 CATEGORIES= misc MASTER_SITES= http://code.coreboot.org/p/seabios/downloads/get/ Modified: head/misc/seabios/distinfo ============================================================================== --- head/misc/seabios/distinfo Wed Jul 6 14:24:04 2016 (r418135) +++ head/misc/seabios/distinfo Wed Jul 6 14:30:16 2016 (r418136) @@ -1,2 +1,3 @@ -SHA256 (seabios-1.9.2.tar.gz) = f01d459b0e50996fdfa021eea5010776c26f739adba73957af519233165ebbe5 -SIZE (seabios-1.9.2.tar.gz) = 570726 +TIMESTAMP = 1467646492 +SHA256 (seabios-1.9.3.tar.gz) = 1ae85dc049cdee1ca953612e9ab4cec3941a4a4e744b7036624c308781b0678d +SIZE (seabios-1.9.3.tar.gz) = 571224 From owner-svn-ports-all@freebsd.org Wed Jul 6 14:30:46 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 0BE6DB7512F; Wed, 6 Jul 2016 14:30:46 +0000 (UTC) (envelope-from gahr@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id D0DA81BEE; Wed, 6 Jul 2016 14:30: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 u66EUjtO045620; Wed, 6 Jul 2016 14:30:45 GMT (envelope-from gahr@FreeBSD.org) Received: (from gahr@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u66EUj7l045619; Wed, 6 Jul 2016 14:30:45 GMT (envelope-from gahr@FreeBSD.org) Message-Id: <201607061430.u66EUj7l045619@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: gahr set sender to gahr@FreeBSD.org using -f From: Pietro Cerutti Date: Wed, 6 Jul 2016 14:30:45 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418137 - head/irc/epic4 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Jul 2016 14:30:46 -0000 Author: gahr Date: Wed Jul 6 14:30:44 2016 New Revision: 418137 URL: https://svnweb.freebsd.org/changeset/ports/418137 Log: irc/epic4: do not depend on a specific version of Tcl Modified: head/irc/epic4/Makefile Modified: head/irc/epic4/Makefile ============================================================================== --- head/irc/epic4/Makefile Wed Jul 6 14:30:16 2016 (r418136) +++ head/irc/epic4/Makefile Wed Jul 6 14:30:44 2016 (r418137) @@ -3,7 +3,7 @@ PORTNAME= epic4 PORTVERSION= 2.10.5 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= irc ipv6 MASTER_SITES= http://ftp.epicsol.org/pub/epic/EPIC4-PRODUCTION/ \ http://tehran.lain.pl/epic-mirror/EPIC4-PRODUCTION/ \ @@ -36,7 +36,7 @@ CONFIGURE_ARGS+= --without-ipv6 .endif .if ${PORT_OPTIONS:MTCL} -USES+= tcl:84 +USES+= tcl CONFIGURE_ARGS+= --with-tcl .else CONFIGURE_ARGS+= --without-tcl From owner-svn-ports-all@freebsd.org Wed Jul 6 14:49:05 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 37E45B7560F; Wed, 6 Jul 2016 14:49:05 +0000 (UTC) (envelope-from royger@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 0471215C6; Wed, 6 Jul 2016 14:49:04 +0000 (UTC) (envelope-from royger@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u66En478053029; Wed, 6 Jul 2016 14:49:04 GMT (envelope-from royger@FreeBSD.org) Received: (from royger@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u66En4Fd053028; Wed, 6 Jul 2016 14:49:04 GMT (envelope-from royger@FreeBSD.org) Message-Id: <201607061449.u66En4Fd053028@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: royger set sender to royger@FreeBSD.org using -f From: =?UTF-8?Q?Roger_Pau_Monn=c3=a9?= Date: Wed, 6 Jul 2016 14:49:04 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418138 - head/sysutils/xen-tools X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Jul 2016 14:49:05 -0000 Author: royger (src committer) Date: Wed Jul 6 14:49:03 2016 New Revision: 418138 URL: https://svnweb.freebsd.org/changeset/ports/418138 Log: xen-tools: bump PORTREVISION after SeaBIOS update Trigger a xen-tools rebuild after the SeaBIOS update. Sponsored by: Citrix Systems R&D Modified: head/sysutils/xen-tools/Makefile Modified: head/sysutils/xen-tools/Makefile ============================================================================== --- head/sysutils/xen-tools/Makefile Wed Jul 6 14:30:44 2016 (r418137) +++ head/sysutils/xen-tools/Makefile Wed Jul 6 14:49:03 2016 (r418138) @@ -3,7 +3,7 @@ PORTNAME= xen PKGNAMESUFFIX= -tools PORTVERSION= 4.7.0 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= sysutils emulators MASTER_SITES= http://bits.xensource.com/oss-xen/release/${PORTVERSION}/ From owner-svn-ports-all@freebsd.org Wed Jul 6 14:50:25 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 702DFB75670; Wed, 6 Jul 2016 14:50:25 +0000 (UTC) (envelope-from feld@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 2296316B1; Wed, 6 Jul 2016 14:50:25 +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 u66EoO5A053232; Wed, 6 Jul 2016 14:50:24 GMT (envelope-from feld@FreeBSD.org) Received: (from feld@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u66EoO4d053229; Wed, 6 Jul 2016 14:50:24 GMT (envelope-from feld@FreeBSD.org) Message-Id: <201607061450.u66EoO4d053229@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: feld set sender to feld@FreeBSD.org using -f From: Mark Felder Date: Wed, 6 Jul 2016 14:50:24 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418139 - in head/www/redmine-knowledgebase: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Jul 2016 14:50:25 -0000 Author: feld Date: Wed Jul 6 14:50:23 2016 New Revision: 418139 URL: https://svnweb.freebsd.org/changeset/ports/418139 Log: www/redmine-knowledgebase: Update to 3.2.0 This version now fully supports Redmine 3.x. Added: head/www/redmine-knowledgebase/files/patch-Gemfile (contents, props changed) Deleted: head/www/redmine-knowledgebase/files/patch-app_helpers_knowledgebase__helper.rb Modified: head/www/redmine-knowledgebase/Makefile head/www/redmine-knowledgebase/distinfo Modified: head/www/redmine-knowledgebase/Makefile ============================================================================== --- head/www/redmine-knowledgebase/Makefile Wed Jul 6 14:49:03 2016 (r418138) +++ head/www/redmine-knowledgebase/Makefile Wed Jul 6 14:50:23 2016 (r418139) @@ -2,9 +2,9 @@ # $FreeBSD$ PORTNAME= knowledgebase -PORTVERSION= 2.3.0 +PORTVERSION= 3.2.0 DISTVERSIONPREFIX=v -PORTREVISION= 1 +PORTREVISION= 0 CATEGORIES= www PKGNAMEPREFIX= redmine- @@ -21,7 +21,7 @@ GH_PROJECT= redmine_knowledgebase REDMINE_PLUGIN_NAME= redmine_${PORTNAME} -RUN_DEPENDS+= rubygem-redmine_acts_as_taggable_on>0:www/rubygem-redmine_acts_as_taggable_on \ +RUN_DEPENDS+= rubygem-redmine_acts_as_taggable_on>=1.1.0:www/rubygem-redmine_acts_as_taggable_on \ rubygem-ya2yaml>0:textproc/rubygem-ya2yaml \ rubygem-awesome_nested_set>0:databases/rubygem-awesome_nested_set Modified: head/www/redmine-knowledgebase/distinfo ============================================================================== --- head/www/redmine-knowledgebase/distinfo Wed Jul 6 14:49:03 2016 (r418138) +++ head/www/redmine-knowledgebase/distinfo Wed Jul 6 14:50:23 2016 (r418139) @@ -1,2 +1,3 @@ -SHA256 (alexbevi-redmine_knowledgebase-v2.3.0_GH0.tar.gz) = 9d7e050d9851b313a838ded47e8d1bf386741389497c55710a93bea0a85ed320 -SIZE (alexbevi-redmine_knowledgebase-v2.3.0_GH0.tar.gz) = 71659 +TIMESTAMP = 1467051812 +SHA256 (alexbevi-redmine_knowledgebase-v3.2.0_GH0.tar.gz) = 13439381fa60a579282466b99cf231e7563313ae433dc1439f9e37083a215bb9 +SIZE (alexbevi-redmine_knowledgebase-v3.2.0_GH0.tar.gz) = 94262 Added: head/www/redmine-knowledgebase/files/patch-Gemfile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/redmine-knowledgebase/files/patch-Gemfile Wed Jul 6 14:50:23 2016 (r418139) @@ -0,0 +1,7 @@ +--- Gemfile.orig 2016-06-27 20:01:10 UTC ++++ Gemfile +@@ -1,3 +1,3 @@ +-gem 'redmine_acts_as_taggable_on', github: "alexbevi/redmine_acts_as_taggable_on" ++gem 'redmine_acts_as_taggable_on' + gem 'ya2yaml' + gem 'awesome_nested_set' From owner-svn-ports-all@freebsd.org Wed Jul 6 14:52:01 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id E5CCCB757DA; Wed, 6 Jul 2016 14:52:01 +0000 (UTC) (envelope-from feld@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 9C8541ACE; Wed, 6 Jul 2016 14:52:01 +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 u66Eq0Xo056700; Wed, 6 Jul 2016 14:52:00 GMT (envelope-from feld@FreeBSD.org) Received: (from feld@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u66Eq016056697; Wed, 6 Jul 2016 14:52:00 GMT (envelope-from feld@FreeBSD.org) Message-Id: <201607061452.u66Eq016056697@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: feld set sender to feld@FreeBSD.org using -f From: Mark Felder Date: Wed, 6 Jul 2016 14:52:00 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r418140 - branches/2016Q3/www/rubygem-redmine_acts_as_taggable_on X-SVN-Group: ports-branches MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Jul 2016 14:52:02 -0000 Author: feld Date: Wed Jul 6 14:52:00 2016 New Revision: 418140 URL: https://svnweb.freebsd.org/changeset/ports/418140 Log: MFH: r418132 www/rubygem-redmine_acts_as_taggable_on: Update to 1.1.0 This update changes to a different upstream fork where there is now support for Redmine 3.x. This is maintained by the same author who created the Redmine Knowledgebase plugin which requires this gem. PR: 210644 Approved by: maintainer (zi) Approved by: ports-secteam (with hat) Modified: branches/2016Q3/www/rubygem-redmine_acts_as_taggable_on/Makefile branches/2016Q3/www/rubygem-redmine_acts_as_taggable_on/distinfo branches/2016Q3/www/rubygem-redmine_acts_as_taggable_on/pkg-descr Directory Properties: branches/2016Q3/ (props changed) Modified: branches/2016Q3/www/rubygem-redmine_acts_as_taggable_on/Makefile ============================================================================== --- branches/2016Q3/www/rubygem-redmine_acts_as_taggable_on/Makefile Wed Jul 6 14:50:23 2016 (r418139) +++ branches/2016Q3/www/rubygem-redmine_acts_as_taggable_on/Makefile Wed Jul 6 14:52:00 2016 (r418140) @@ -2,10 +2,9 @@ # $FreeBSD$ PORTNAME= redmine_acts_as_taggable_on -PORTVERSION= 1.0.0 -PORTREVISION= 1 +PORTVERSION= 1.1.0 CATEGORIES= www rubygems -MASTER_SITES= RG +MASTER_SITES= LOCAL/feld/rubygems/ MAINTAINER= ruby@FreeBSD.org COMMENT= Allows multiple Redmine plugins to use tags safely Modified: branches/2016Q3/www/rubygem-redmine_acts_as_taggable_on/distinfo ============================================================================== --- branches/2016Q3/www/rubygem-redmine_acts_as_taggable_on/distinfo Wed Jul 6 14:50:23 2016 (r418139) +++ branches/2016Q3/www/rubygem-redmine_acts_as_taggable_on/distinfo Wed Jul 6 14:52:00 2016 (r418140) @@ -1,2 +1,3 @@ -SHA256 (rubygem/redmine_acts_as_taggable_on-1.0.0.gem) = 5a906eaf861f1dc4b51407a2f5dbbf83716d646af59575c6c4a1054e94eef024 -SIZE (rubygem/redmine_acts_as_taggable_on-1.0.0.gem) = 17920 +TIMESTAMP = 1467062550 +SHA256 (rubygem/redmine_acts_as_taggable_on-1.1.0.gem) = 39fc03de3e04812016cbd173e79bd5a89545e6bab450d3c7dc0584891448ca18 +SIZE (rubygem/redmine_acts_as_taggable_on-1.1.0.gem) = 17920 Modified: branches/2016Q3/www/rubygem-redmine_acts_as_taggable_on/pkg-descr ============================================================================== --- branches/2016Q3/www/rubygem-redmine_acts_as_taggable_on/pkg-descr Wed Jul 6 14:50:23 2016 (r418139) +++ branches/2016Q3/www/rubygem-redmine_acts_as_taggable_on/pkg-descr Wed Jul 6 14:52:00 2016 (r418140) @@ -1,3 +1,3 @@ Allows multiple Redmine plugins to use tags safely -WWW: https://github.com/hdgarrood/redmine_acts_as_taggable_on +WWW: https://github.com/alexbevi/redmine_acts_as_taggable_on From owner-svn-ports-all@freebsd.org Wed Jul 6 14:52:30 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 6E304B75863; Wed, 6 Jul 2016 14:52:30 +0000 (UTC) (envelope-from feld@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 32A7C1C3F; Wed, 6 Jul 2016 14:52:30 +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 u66EqTJ4056919; Wed, 6 Jul 2016 14:52:29 GMT (envelope-from feld@FreeBSD.org) Received: (from feld@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u66EqTu9056916; Wed, 6 Jul 2016 14:52:29 GMT (envelope-from feld@FreeBSD.org) Message-Id: <201607061452.u66EqTu9056916@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: feld set sender to feld@FreeBSD.org using -f From: Mark Felder Date: Wed, 6 Jul 2016 14:52:29 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r418141 - in branches/2016Q3/www/redmine-knowledgebase: . files X-SVN-Group: ports-branches MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Jul 2016 14:52:30 -0000 Author: feld Date: Wed Jul 6 14:52:28 2016 New Revision: 418141 URL: https://svnweb.freebsd.org/changeset/ports/418141 Log: MFH: r418139 www/redmine-knowledgebase: Update to 3.2.0 This version now fully supports Redmine 3.x. Approved by: ports-secteam (with hat) Added: branches/2016Q3/www/redmine-knowledgebase/files/patch-Gemfile - copied unchanged from r418139, head/www/redmine-knowledgebase/files/patch-Gemfile Deleted: branches/2016Q3/www/redmine-knowledgebase/files/patch-app_helpers_knowledgebase__helper.rb Modified: branches/2016Q3/www/redmine-knowledgebase/Makefile branches/2016Q3/www/redmine-knowledgebase/distinfo Directory Properties: branches/2016Q3/ (props changed) Modified: branches/2016Q3/www/redmine-knowledgebase/Makefile ============================================================================== --- branches/2016Q3/www/redmine-knowledgebase/Makefile Wed Jul 6 14:52:00 2016 (r418140) +++ branches/2016Q3/www/redmine-knowledgebase/Makefile Wed Jul 6 14:52:28 2016 (r418141) @@ -2,9 +2,9 @@ # $FreeBSD$ PORTNAME= knowledgebase -PORTVERSION= 2.3.0 +PORTVERSION= 3.2.0 DISTVERSIONPREFIX=v -PORTREVISION= 1 +PORTREVISION= 0 CATEGORIES= www PKGNAMEPREFIX= redmine- @@ -21,7 +21,7 @@ GH_PROJECT= redmine_knowledgebase REDMINE_PLUGIN_NAME= redmine_${PORTNAME} -RUN_DEPENDS+= rubygem-redmine_acts_as_taggable_on>0:www/rubygem-redmine_acts_as_taggable_on \ +RUN_DEPENDS+= rubygem-redmine_acts_as_taggable_on>=1.1.0:www/rubygem-redmine_acts_as_taggable_on \ rubygem-ya2yaml>0:textproc/rubygem-ya2yaml \ rubygem-awesome_nested_set>0:databases/rubygem-awesome_nested_set Modified: branches/2016Q3/www/redmine-knowledgebase/distinfo ============================================================================== --- branches/2016Q3/www/redmine-knowledgebase/distinfo Wed Jul 6 14:52:00 2016 (r418140) +++ branches/2016Q3/www/redmine-knowledgebase/distinfo Wed Jul 6 14:52:28 2016 (r418141) @@ -1,2 +1,3 @@ -SHA256 (alexbevi-redmine_knowledgebase-v2.3.0_GH0.tar.gz) = 9d7e050d9851b313a838ded47e8d1bf386741389497c55710a93bea0a85ed320 -SIZE (alexbevi-redmine_knowledgebase-v2.3.0_GH0.tar.gz) = 71659 +TIMESTAMP = 1467051812 +SHA256 (alexbevi-redmine_knowledgebase-v3.2.0_GH0.tar.gz) = 13439381fa60a579282466b99cf231e7563313ae433dc1439f9e37083a215bb9 +SIZE (alexbevi-redmine_knowledgebase-v3.2.0_GH0.tar.gz) = 94262 Copied: branches/2016Q3/www/redmine-knowledgebase/files/patch-Gemfile (from r418139, head/www/redmine-knowledgebase/files/patch-Gemfile) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2016Q3/www/redmine-knowledgebase/files/patch-Gemfile Wed Jul 6 14:52:28 2016 (r418141, copy of r418139, head/www/redmine-knowledgebase/files/patch-Gemfile) @@ -0,0 +1,7 @@ +--- Gemfile.orig 2016-06-27 20:01:10 UTC ++++ Gemfile +@@ -1,3 +1,3 @@ +-gem 'redmine_acts_as_taggable_on', github: "alexbevi/redmine_acts_as_taggable_on" ++gem 'redmine_acts_as_taggable_on' + gem 'ya2yaml' + gem 'awesome_nested_set' From owner-svn-ports-all@freebsd.org Wed Jul 6 18:07:57 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 71659B75432; Wed, 6 Jul 2016 18:07:57 +0000 (UTC) (envelope-from pi@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 280A71773; Wed, 6 Jul 2016 18:07:57 +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 u66I7ul1027231; Wed, 6 Jul 2016 18:07:56 GMT (envelope-from pi@FreeBSD.org) Received: (from pi@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u66I7u4w027228; Wed, 6 Jul 2016 18:07:56 GMT (envelope-from pi@FreeBSD.org) Message-Id: <201607061807.u66I7u4w027228@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pi set sender to pi@FreeBSD.org using -f From: Kurt Jaeger Date: Wed, 6 Jul 2016 18:07:56 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418142 - head/devel/magit X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Jul 2016 18:07:57 -0000 Author: pi Date: Wed Jul 6 18:07:55 2016 New Revision: 418142 URL: https://svnweb.freebsd.org/changeset/ports/418142 Log: devel/magit: 2.5.0 -> 2.7.0 PR: 210383 Changes: https://raw.githubusercontent.com/magit/magit/master/Documentation/RelNotes/2.6.0.txt https://raw.githubusercontent.com/magit/magit/master/Documentation/RelNotes/2.6.1.txt https://raw.githubusercontent.com/magit/magit/master/Documentation/RelNotes/2.6.2.txt https://raw.githubusercontent.com/magit/magit/master/Documentation/RelNotes/2.7.0.txt Submitted by: Yasuhiro Kimura Approved by: kuriyama (maintainer timeout) Modified: head/devel/magit/Makefile head/devel/magit/distinfo head/devel/magit/pkg-plist Modified: head/devel/magit/Makefile ============================================================================== --- head/devel/magit/Makefile Wed Jul 6 14:52:28 2016 (r418141) +++ head/devel/magit/Makefile Wed Jul 6 18:07:55 2016 (r418142) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= magit -PORTVERSION= 2.5.0 +PORTVERSION= 2.7.0 CATEGORIES= devel elisp PKGNAMESUFFIX= -${EMACS_PORT_NAME} Modified: head/devel/magit/distinfo ============================================================================== --- head/devel/magit/distinfo Wed Jul 6 14:52:28 2016 (r418141) +++ head/devel/magit/distinfo Wed Jul 6 18:07:55 2016 (r418142) @@ -1,2 +1,3 @@ -SHA256 (magit-magit-2.5.0_GH0.tar.gz) = 3e2e3f1d915bdf86f04a29380fe3fa8a1802ea04e3a91a443de0315fcb46027c -SIZE (magit-magit-2.5.0_GH0.tar.gz) = 362213 +TIMESTAMP = 1466322281 +SHA256 (magit-magit-2.7.0_GH0.tar.gz) = 2f077800b8db3605e09c4673be6e892295bdcd7ca612fa1089b06f6655558236 +SIZE (magit-magit-2.7.0_GH0.tar.gz) = 385016 Modified: head/devel/magit/pkg-plist ============================================================================== --- head/devel/magit/pkg-plist Wed Jul 6 14:52:28 2016 (r418141) +++ head/devel/magit/pkg-plist Wed Jul 6 18:07:55 2016 (r418142) @@ -41,6 +41,8 @@ %%ELISPDIR%%/magit-stash.elc %%ELISPDIR%%/magit-submodule.el %%ELISPDIR%%/magit-submodule.elc +%%ELISPDIR%%/magit-subtree.el +%%ELISPDIR%%/magit-subtree.elc %%ELISPDIR%%/magit-utils.el %%ELISPDIR%%/magit-utils.elc %%ELISPDIR%%/magit-version.el From owner-svn-ports-all@freebsd.org Wed Jul 6 18:33:19 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id A0470B75C11 for ; Wed, 6 Jul 2016 18:33:19 +0000 (UTC) (envelope-from ravik0@heta.lunariffic.com) Received: from heta.lunariffic.com (heta.lunariffic.com [209.200.244.175]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 767B21803 for ; Wed, 6 Jul 2016 18:33:19 +0000 (UTC) (envelope-from ravik0@heta.lunariffic.com) Received: from heta.lunariffic.com (heta.lunariffic.com [127.0.0.1]) by heta.lunariffic.com (8.13.8/8.13.8) with ESMTP id u66I6hvs005027 for ; Wed, 6 Jul 2016 11:06:43 -0700 Received: (from ravik0@localhost) by heta.lunariffic.com (8.13.8/8.13.8/Submit) id u66I6h1x005024; Wed, 6 Jul 2016 11:06:43 -0700 To: svn-ports-all@freebsd.org Subject: Delivery Notification, ID 00116334 Date: Wed, 6 Jul 2016 18:06:43 +0000 From: "FedEx SmartPost" Reply-To: "FedEx SmartPost" Message-ID: <307fda74b22b1ffa297f6852ecb0499e@nineapps.com> X-Priority: 3 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Content-Filtered-By: Mailman/MimeDel 2.1.22 X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Jul 2016 18:33:19 -0000 Dear Customer, Your parcel has arrived at July 04. Courier was unable to deliver the parcel to you. Please, download Delivery Label attached to this email. Warm regards, Randy Maloney, Station Agent. From owner-svn-ports-all@freebsd.org Wed Jul 6 20:04:01 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id E8313B75E13; Wed, 6 Jul 2016 20:04:01 +0000 (UTC) (envelope-from mat@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 9F83B1E03; Wed, 6 Jul 2016 20:04:01 +0000 (UTC) (envelope-from mat@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u66K40dr071399; Wed, 6 Jul 2016 20:04:00 GMT (envelope-from mat@FreeBSD.org) Received: (from mat@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u66K40PW071393; Wed, 6 Jul 2016 20:04:00 GMT (envelope-from mat@FreeBSD.org) Message-Id: <201607062004.u66K40PW071393@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: mat set sender to mat@FreeBSD.org using -f From: Mathieu Arnold Date: Wed, 6 Jul 2016 20:04:00 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418143 - in head: lang/php55 lang/php56 lang/php70 www/php55-opcache www/php56-opcache www/php70-opcache X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Jul 2016 20:04:02 -0000 Author: mat Date: Wed Jul 6 20:04:00 2016 New Revision: 418143 URL: https://svnweb.freebsd.org/changeset/ports/418143 Log: Fix the opcache ports, the fact that they are zend extensions was ignored. MFH: 2016Q3 Sponsored by: Absolight Modified: head/lang/php55/Makefile (contents, props changed) head/lang/php56/Makefile (contents, props changed) head/lang/php70/Makefile (contents, props changed) head/www/php55-opcache/Makefile (contents, props changed) head/www/php56-opcache/Makefile (contents, props changed) head/www/php70-opcache/Makefile (contents, props changed) Modified: head/lang/php55/Makefile ============================================================================== --- head/lang/php55/Makefile Wed Jul 6 18:07:55 2016 (r418142) +++ head/lang/php55/Makefile Wed Jul 6 20:04:00 2016 (r418143) @@ -13,7 +13,7 @@ COMMENT= PHP Scripting Language LICENSE= PHP301 -USES= tar:bzip2 cpe +USES+= tar:bzip2 cpe CPE_PRODUCT= php NO_OPTIONS_SORT=yes .if !defined(PKGNAMESUFFIX) Modified: head/lang/php56/Makefile ============================================================================== --- head/lang/php56/Makefile Wed Jul 6 18:07:55 2016 (r418142) +++ head/lang/php56/Makefile Wed Jul 6 20:04:00 2016 (r418143) @@ -13,7 +13,7 @@ COMMENT= PHP Scripting Language LICENSE= PHP301 -USES= tar:bzip2 cpe +USES+= tar:bzip2 cpe CPE_PRODUCT= php NO_OPTIONS_SORT=yes .if !defined(PKGNAMESUFFIX) Modified: head/lang/php70/Makefile ============================================================================== --- head/lang/php70/Makefile Wed Jul 6 18:07:55 2016 (r418142) +++ head/lang/php70/Makefile Wed Jul 6 20:04:00 2016 (r418143) @@ -15,7 +15,7 @@ LICENSE= PHP301 BROKEN_powerpc64= Does not build -USES= tar:bzip2 cpe +USES+= tar:bzip2 cpe CPE_PRODUCT= php NO_OPTIONS_SORT=yes .if !defined(PKGNAMESUFFIX) Modified: head/www/php55-opcache/Makefile ============================================================================== --- head/www/php55-opcache/Makefile Wed Jul 6 18:07:55 2016 (r418142) +++ head/www/php55-opcache/Makefile Wed Jul 6 20:04:00 2016 (r418143) @@ -1,6 +1,7 @@ # Created by: Martin Matuska # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= www MASTERDIR= ${.CURDIR}/../../lang/php55 Modified: head/www/php56-opcache/Makefile ============================================================================== --- head/www/php56-opcache/Makefile Wed Jul 6 18:07:55 2016 (r418142) +++ head/www/php56-opcache/Makefile Wed Jul 6 20:04:00 2016 (r418143) @@ -1,6 +1,7 @@ # Created by: Martin Matuska # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= www MASTERDIR= ${.CURDIR}/../../lang/php56 Modified: head/www/php70-opcache/Makefile ============================================================================== --- head/www/php70-opcache/Makefile Wed Jul 6 18:07:55 2016 (r418142) +++ head/www/php70-opcache/Makefile Wed Jul 6 20:04:00 2016 (r418143) @@ -1,6 +1,7 @@ # Created by: Martin Matuska # $FreeBSD$ +PORTREVISION= 2 CATEGORIES= www MASTERDIR= ${.CURDIR}/../../lang/php70 From owner-svn-ports-all@freebsd.org Wed Jul 6 20:06:23 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 81214B75E70; Wed, 6 Jul 2016 20:06:23 +0000 (UTC) (envelope-from mat@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 5EA331F21; Wed, 6 Jul 2016 20:06:23 +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 u66K6MXw071817; Wed, 6 Jul 2016 20:06:22 GMT (envelope-from mat@FreeBSD.org) Received: (from mat@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u66K6MCd071809; Wed, 6 Jul 2016 20:06:22 GMT (envelope-from mat@FreeBSD.org) Message-Id: <201607062006.u66K6MCd071809@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: mat set sender to mat@FreeBSD.org using -f From: Mathieu Arnold Date: Wed, 6 Jul 2016 20:06:22 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r418144 - in branches/2016Q3: lang/php55 lang/php56 lang/php70 www/php55-opcache www/php56-opcache www/php70-opcache X-SVN-Group: ports-branches MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Jul 2016 20:06:23 -0000 Author: mat Date: Wed Jul 6 20:06:21 2016 New Revision: 418144 URL: https://svnweb.freebsd.org/changeset/ports/418144 Log: MFH: r418143 Fix the opcache ports, the fact that they are zend extensions was ignored. Sponsored by: Absolight Modified: branches/2016Q3/lang/php55/Makefile branches/2016Q3/lang/php56/Makefile branches/2016Q3/lang/php70/Makefile branches/2016Q3/www/php55-opcache/Makefile branches/2016Q3/www/php56-opcache/Makefile branches/2016Q3/www/php70-opcache/Makefile Directory Properties: branches/2016Q3/ (props changed) Modified: branches/2016Q3/lang/php55/Makefile ============================================================================== --- branches/2016Q3/lang/php55/Makefile Wed Jul 6 20:04:00 2016 (r418143) +++ branches/2016Q3/lang/php55/Makefile Wed Jul 6 20:06:21 2016 (r418144) @@ -13,7 +13,7 @@ COMMENT= PHP Scripting Language LICENSE= PHP301 -USES= tar:bzip2 cpe +USES+= tar:bzip2 cpe CPE_PRODUCT= php NO_OPTIONS_SORT=yes .if !defined(PKGNAMESUFFIX) Modified: branches/2016Q3/lang/php56/Makefile ============================================================================== --- branches/2016Q3/lang/php56/Makefile Wed Jul 6 20:04:00 2016 (r418143) +++ branches/2016Q3/lang/php56/Makefile Wed Jul 6 20:06:21 2016 (r418144) @@ -13,7 +13,7 @@ COMMENT= PHP Scripting Language LICENSE= PHP301 -USES= tar:bzip2 cpe +USES+= tar:bzip2 cpe CPE_PRODUCT= php NO_OPTIONS_SORT=yes .if !defined(PKGNAMESUFFIX) Modified: branches/2016Q3/lang/php70/Makefile ============================================================================== --- branches/2016Q3/lang/php70/Makefile Wed Jul 6 20:04:00 2016 (r418143) +++ branches/2016Q3/lang/php70/Makefile Wed Jul 6 20:06:21 2016 (r418144) @@ -15,7 +15,7 @@ LICENSE= PHP301 BROKEN_powerpc64= Does not build -USES= tar:bzip2 cpe +USES+= tar:bzip2 cpe CPE_PRODUCT= php NO_OPTIONS_SORT=yes .if !defined(PKGNAMESUFFIX) Modified: branches/2016Q3/www/php55-opcache/Makefile ============================================================================== --- branches/2016Q3/www/php55-opcache/Makefile Wed Jul 6 20:04:00 2016 (r418143) +++ branches/2016Q3/www/php55-opcache/Makefile Wed Jul 6 20:06:21 2016 (r418144) @@ -1,6 +1,7 @@ # Created by: Martin Matuska # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= www MASTERDIR= ${.CURDIR}/../../lang/php55 Modified: branches/2016Q3/www/php56-opcache/Makefile ============================================================================== --- branches/2016Q3/www/php56-opcache/Makefile Wed Jul 6 20:04:00 2016 (r418143) +++ branches/2016Q3/www/php56-opcache/Makefile Wed Jul 6 20:06:21 2016 (r418144) @@ -1,6 +1,7 @@ # Created by: Martin Matuska # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= www MASTERDIR= ${.CURDIR}/../../lang/php56 Modified: branches/2016Q3/www/php70-opcache/Makefile ============================================================================== --- branches/2016Q3/www/php70-opcache/Makefile Wed Jul 6 20:04:00 2016 (r418143) +++ branches/2016Q3/www/php70-opcache/Makefile Wed Jul 6 20:06:21 2016 (r418144) @@ -1,6 +1,7 @@ # Created by: Martin Matuska # $FreeBSD$ +PORTREVISION= 1 CATEGORIES= www MASTERDIR= ${.CURDIR}/../../lang/php70 From owner-svn-ports-all@freebsd.org Wed Jul 6 20:09:17 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id A7F36B75EBD; Wed, 6 Jul 2016 20:09:17 +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 mx1.freebsd.org (Postfix) with ESMTPS id 77CFA1199; Wed, 6 Jul 2016 20:09:17 +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 u66K9GUo071995; Wed, 6 Jul 2016 20:09:16 GMT (envelope-from sbruno@FreeBSD.org) Received: (from sbruno@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u66K9GdU071994; Wed, 6 Jul 2016 20:09:16 GMT (envelope-from sbruno@FreeBSD.org) Message-Id: <201607062009.u66K9GdU071994@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sbruno set sender to sbruno@FreeBSD.org using -f From: Sean Bruno Date: Wed, 6 Jul 2016 20:09:16 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418145 - head/sysutils/smartmontools/files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Jul 2016 20:09:17 -0000 Author: sbruno Date: Wed Jul 6 20:09:16 2016 New Revision: 418145 URL: https://svnweb.freebsd.org/changeset/ports/418145 Log: sysutils/smartmontools - Fix build for o/s releases > 1100110 and #include to pickup the structures definitions used in os_freebsd.cpp. Modified: head/sysutils/smartmontools/files/patch-freebsd_nvme_ioctl.h Modified: head/sysutils/smartmontools/files/patch-freebsd_nvme_ioctl.h ============================================================================== --- head/sysutils/smartmontools/files/patch-freebsd_nvme_ioctl.h Wed Jul 6 20:06:21 2016 (r418144) +++ head/sysutils/smartmontools/files/patch-freebsd_nvme_ioctl.h Wed Jul 6 20:09:16 2016 (r418145) @@ -1,5 +1,5 @@ ---- freebsd_nvme_ioctl.h.orig 2016-03-28 09:25:56.000000000 -0700 -+++ freebsd_nvme_ioctl.h 2016-06-15 20:43:22.389493000 -0700 +--- freebsd_nvme_ioctl.h.orig 2016-03-28 16:25:56 UTC ++++ freebsd_nvme_ioctl.h @@ -31,6 +31,7 @@ #define NVME_PASSTHROUGH_CMD _IOWR('n', 0, struct nvme_pt_command) @@ -8,10 +8,12 @@ struct nvme_command { /* dword 0 */ -@@ -143,6 +144,7 @@ +@@ -143,6 +144,9 @@ struct nvme_pt_command { */ struct mtx * driver_lock; }; ++#else ++#include +#endif #define nvme_completion_is_error(cpl) \ From owner-svn-ports-all@freebsd.org Wed Jul 6 20:52:25 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id A502FB75C06; Wed, 6 Jul 2016 20:52:25 +0000 (UTC) (envelope-from olivierd@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 756981CE5; Wed, 6 Jul 2016 20:52:25 +0000 (UTC) (envelope-from olivierd@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u66KqOaT090201; Wed, 6 Jul 2016 20:52:24 GMT (envelope-from olivierd@FreeBSD.org) Received: (from olivierd@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u66KqOrs090199; Wed, 6 Jul 2016 20:52:24 GMT (envelope-from olivierd@FreeBSD.org) Message-Id: <201607062052.u66KqOrs090199@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: olivierd set sender to olivierd@FreeBSD.org using -f From: Olivier Duchateau Date: Wed, 6 Jul 2016 20:52:24 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418146 - head/x11-themes/greybird-theme X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Jul 2016 20:52:25 -0000 Author: olivierd Date: Wed Jul 6 20:52:24 2016 New Revision: 418146 URL: https://svnweb.freebsd.org/changeset/ports/418146 Log: Update to 3.18.0 Modified: head/x11-themes/greybird-theme/Makefile head/x11-themes/greybird-theme/distinfo Modified: head/x11-themes/greybird-theme/Makefile ============================================================================== --- head/x11-themes/greybird-theme/Makefile Wed Jul 6 20:09:16 2016 (r418145) +++ head/x11-themes/greybird-theme/Makefile Wed Jul 6 20:52:24 2016 (r418146) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= greybird -PORTVERSION= 1.6.2 +PORTVERSION= 3.18.0 DISTVERSIONPREFIX= v CATEGORIES= x11-themes xfce PKGNAMESUFFIX= -theme Modified: head/x11-themes/greybird-theme/distinfo ============================================================================== --- head/x11-themes/greybird-theme/distinfo Wed Jul 6 20:09:16 2016 (r418145) +++ head/x11-themes/greybird-theme/distinfo Wed Jul 6 20:52:24 2016 (r418146) @@ -1,2 +1,3 @@ -SHA256 (shimmerproject-Greybird-v1.6.2_GH0.tar.gz) = 473a38b379381311b68dcc579005c0d5bbfbabefe1de7107d897c68b81e6b460 -SIZE (shimmerproject-Greybird-v1.6.2_GH0.tar.gz) = 134804 +TIMESTAMP = 1467844871 +SHA256 (shimmerproject-Greybird-v3.18.0_GH0.tar.gz) = 85a2d6bb73c32fb1caba2e5881dcf604af5b394bb8818058df874398e6dfe96f +SIZE (shimmerproject-Greybird-v3.18.0_GH0.tar.gz) = 133088 From owner-svn-ports-all@freebsd.org Wed Jul 6 21:01:26 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 8B7E0B75D33; Wed, 6 Jul 2016 21:01:26 +0000 (UTC) (envelope-from olivierd@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 580C11F23; Wed, 6 Jul 2016 21:01:26 +0000 (UTC) (envelope-from olivierd@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u66L1PN0093328; Wed, 6 Jul 2016 21:01:25 GMT (envelope-from olivierd@FreeBSD.org) Received: (from olivierd@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u66L1PZf093325; Wed, 6 Jul 2016 21:01:25 GMT (envelope-from olivierd@FreeBSD.org) Message-Id: <201607062101.u66L1PZf093325@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: olivierd set sender to olivierd@FreeBSD.org using -f From: Olivier Duchateau Date: Wed, 6 Jul 2016 21:01:25 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418147 - head/audio/py-mutagen X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Jul 2016 21:01:26 -0000 Author: olivierd Date: Wed Jul 6 21:01:25 2016 New Revision: 418147 URL: https://svnweb.freebsd.org/changeset/ports/418147 Log: - Update to 1.33.2 - Adjust WWW entry, project moved to GitHub Modified: head/audio/py-mutagen/Makefile head/audio/py-mutagen/distinfo head/audio/py-mutagen/pkg-descr Modified: head/audio/py-mutagen/Makefile ============================================================================== --- head/audio/py-mutagen/Makefile Wed Jul 6 20:52:24 2016 (r418146) +++ head/audio/py-mutagen/Makefile Wed Jul 6 21:01:25 2016 (r418147) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= mutagen -PORTVERSION= 1.33.1 +PORTVERSION= 1.33.2 CATEGORIES= audio python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} Modified: head/audio/py-mutagen/distinfo ============================================================================== --- head/audio/py-mutagen/distinfo Wed Jul 6 20:52:24 2016 (r418146) +++ head/audio/py-mutagen/distinfo Wed Jul 6 21:01:25 2016 (r418147) @@ -1,3 +1,3 @@ -TIMESTAMP = 1467479087 -SHA256 (mutagen-1.33.1.tar.gz) = 2055813b8a4db8b74dd96fc0c804f40322726881f810fb5e7e84e7a4fb420c32 -SIZE (mutagen-1.33.1.tar.gz) = 863868 +TIMESTAMP = 1467845508 +SHA256 (mutagen-1.33.2.tar.gz) = 2ad8b968b05fdc02bdfd115ba619f81d1cabecb7f82892806242fd1924a718e5 +SIZE (mutagen-1.33.2.tar.gz) = 863803 Modified: head/audio/py-mutagen/pkg-descr ============================================================================== --- head/audio/py-mutagen/pkg-descr Wed Jul 6 20:52:24 2016 (r418146) +++ head/audio/py-mutagen/pkg-descr Wed Jul 6 21:01:25 2016 (r418147) @@ -7,4 +7,4 @@ bitrate and length of MP3s. ID3 and APEv regardless of audio format. It can also manipulate Ogg streams on an individual packet/page level. -WWW: https://bitbucket.org/lazka/mutagen +WWW: https://github.com/quodlibet/mutagen From owner-svn-ports-all@freebsd.org Wed Jul 6 21:40:05 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id DCD6DB7557E; Wed, 6 Jul 2016 21:40:05 +0000 (UTC) (envelope-from bapt@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id A070411D0; Wed, 6 Jul 2016 21:40:05 +0000 (UTC) (envelope-from bapt@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u66Le40m005695; Wed, 6 Jul 2016 21:40:04 GMT (envelope-from bapt@FreeBSD.org) Received: (from bapt@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u66Le4Mw005690; Wed, 6 Jul 2016 21:40:04 GMT (envelope-from bapt@FreeBSD.org) Message-Id: <201607062140.u66Le4Mw005690@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: bapt set sender to bapt@FreeBSD.org using -f From: Baptiste Daroussin Date: Wed, 6 Jul 2016 21:40:04 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418148 - in head/x11: . xcb-util-xrm X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Jul 2016 21:40:06 -0000 Author: bapt Date: Wed Jul 6 21:40:04 2016 New Revision: 418148 URL: https://svnweb.freebsd.org/changeset/ports/418148 Log: Add xcb-util-xrm: XCB utility functions for the X resource manager Added: head/x11/xcb-util-xrm/ head/x11/xcb-util-xrm/Makefile (contents, props changed) head/x11/xcb-util-xrm/distinfo (contents, props changed) head/x11/xcb-util-xrm/pkg-descr (contents, props changed) head/x11/xcb-util-xrm/pkg-plist (contents, props changed) Modified: head/x11/Makefile Modified: head/x11/Makefile ============================================================================== --- head/x11/Makefile Wed Jul 6 21:01:25 2016 (r418147) +++ head/x11/Makefile Wed Jul 6 21:40:04 2016 (r418148) @@ -335,6 +335,7 @@ SUBDIR += xcb-util-keysyms SUBDIR += xcb-util-renderutil SUBDIR += xcb-util-wm + SUBDIR += xcb-util-xrm SUBDIR += xcbautolock SUBDIR += xclip SUBDIR += xclipboard Added: head/x11/xcb-util-xrm/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/x11/xcb-util-xrm/Makefile Wed Jul 6 21:40:04 2016 (r418148) @@ -0,0 +1,23 @@ +# $FreeBSD$ + +PORTNAME= xcb-util-xrm +PORTVERSION= 1.0 +CATEGORIES= x11 devel +MASTER_SITES= http://github.com/Airblader/xcb-util-xrm/releases/download/v${PORTVERSION}/ \ + https://github.com/Airblader/xcb-util-xrm/releases/download/v${PORTVERSION}/ + +MAINTAINER= x11@FreeBSD.org +COMMENT= XCB utility functions for the X resource manager + +LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/COPYING + +LIB_DEPENDS= libxcb-util.so:x11/xcb-util + +USES= libtool pathfix pkgconfig tar:bzip2 +INSTALL_TARGET= install-strip +GNU_CONFIGURE= yes +USE_XORG= xcb +USE_LDCONFIG= yes + +.include Added: head/x11/xcb-util-xrm/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/x11/xcb-util-xrm/distinfo Wed Jul 6 21:40:04 2016 (r418148) @@ -0,0 +1,3 @@ +TIMESTAMP = 1467840722 +SHA256 (xcb-util-xrm-1.0.tar.bz2) = 9400ac1ecefdb469b2f6ef6bf0460643b6c252fb8406e91377b89dd12eefbbc0 +SIZE (xcb-util-xrm-1.0.tar.bz2) = 327196 Added: head/x11/xcb-util-xrm/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/x11/xcb-util-xrm/pkg-descr Wed Jul 6 21:40:04 2016 (r418148) @@ -0,0 +1,3 @@ +XCB utility functions for the X resource manager + +WWW: https://github.com/Airblader/xcb-util-xrm Added: head/x11/xcb-util-xrm/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/x11/xcb-util-xrm/pkg-plist Wed Jul 6 21:40:04 2016 (r418148) @@ -0,0 +1,6 @@ +include/xcb/xcb_xrm.h +lib/libxcb-xrm.a +lib/libxcb-xrm.so +lib/libxcb-xrm.so.0 +lib/libxcb-xrm.so.0.0.0 +libdata/pkgconfig/xcb-xrm.pc From owner-svn-ports-all@freebsd.org Wed Jul 6 21:45:55 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id BACCDB75730; Wed, 6 Jul 2016 21:45:55 +0000 (UTC) (envelope-from bapt@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 8BCCF15F6; Wed, 6 Jul 2016 21:45:55 +0000 (UTC) (envelope-from bapt@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u66Ljs3b009318; Wed, 6 Jul 2016 21:45:54 GMT (envelope-from bapt@FreeBSD.org) Received: (from bapt@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u66Ljs1A009316; Wed, 6 Jul 2016 21:45:54 GMT (envelope-from bapt@FreeBSD.org) Message-Id: <201607062145.u66Ljs1A009316@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: bapt set sender to bapt@FreeBSD.org using -f From: Baptiste Daroussin Date: Wed, 6 Jul 2016 21:45:54 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418149 - head/x11-servers/xorg-nestserver X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Jul 2016 21:45:55 -0000 Author: bapt Date: Wed Jul 6 21:45:54 2016 New Revision: 418149 URL: https://svnweb.freebsd.org/changeset/ports/418149 Log: Update to 1.18.3 Modified: head/x11-servers/xorg-nestserver/Makefile head/x11-servers/xorg-nestserver/distinfo Modified: head/x11-servers/xorg-nestserver/Makefile ============================================================================== --- head/x11-servers/xorg-nestserver/Makefile Wed Jul 6 21:40:04 2016 (r418148) +++ head/x11-servers/xorg-nestserver/Makefile Wed Jul 6 21:45:54 2016 (r418149) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= xorg-nestserver -PORTVERSION= 1.18.0 +PORTVERSION= 1.18.3 PORTEPOCH= 1 CATEGORIES= x11-servers MASTER_SITES= XORG/individual/xserver Modified: head/x11-servers/xorg-nestserver/distinfo ============================================================================== --- head/x11-servers/xorg-nestserver/distinfo Wed Jul 6 21:40:04 2016 (r418148) +++ head/x11-servers/xorg-nestserver/distinfo Wed Jul 6 21:45:54 2016 (r418149) @@ -1,2 +1,3 @@ -SHA256 (xorg/xserver/xorg-server-1.18.0.tar.bz2) = 195670819695d9cedd8dde95fbe069be0d0f488a77797a2d409f9f702daf312e -SIZE (xorg/xserver/xorg-server-1.18.0.tar.bz2) = 5818703 +TIMESTAMP = 1467841438 +SHA256 (xorg/xserver/xorg-server-1.18.3.tar.bz2) = ea739c22517cdbe2b5f7c0a5fd05fe8a10ac0629003e71c0c7862f4bb60142cd +SIZE (xorg/xserver/xorg-server-1.18.3.tar.bz2) = 5867330 From owner-svn-ports-all@freebsd.org Wed Jul 6 21:49:29 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 4BB2AB7577B; Wed, 6 Jul 2016 21:49:29 +0000 (UTC) (envelope-from bapt@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 10E9F172E; Wed, 6 Jul 2016 21:49:29 +0000 (UTC) (envelope-from bapt@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u66LnSiq009532; Wed, 6 Jul 2016 21:49:28 GMT (envelope-from bapt@FreeBSD.org) Received: (from bapt@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u66LnSkj009531; Wed, 6 Jul 2016 21:49:28 GMT (envelope-from bapt@FreeBSD.org) Message-Id: <201607062149.u66LnSkj009531@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: bapt set sender to bapt@FreeBSD.org using -f From: Baptiste Daroussin Date: Wed, 6 Jul 2016 21:49:28 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418150 - head/x11-servers/xorg-nestserver X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Jul 2016 21:49:29 -0000 Author: bapt Date: Wed Jul 6 21:49:28 2016 New Revision: 418150 URL: https://svnweb.freebsd.org/changeset/ports/418150 Log: Use INSTALL_WRKSRC instead of home made equivalent Modified: head/x11-servers/xorg-nestserver/Makefile Modified: head/x11-servers/xorg-nestserver/Makefile ============================================================================== --- head/x11-servers/xorg-nestserver/Makefile Wed Jul 6 21:45:54 2016 (r418149) +++ head/x11-servers/xorg-nestserver/Makefile Wed Jul 6 21:49:28 2016 (r418150) @@ -15,6 +15,7 @@ COMMENT= Nesting X server from X.Org LIB_DEPENDS= libxcb-keysyms.so:x11/xcb-util-keysyms USES= tar:bzip2 pkgconfig +INSTALL_WRKSRC= ${WRKSRC}/hw/xnest GNU_CONFIGURE= yes CONFIGURE_ARGS= --disable-dmx \ --disable-xephyr \ @@ -53,8 +54,4 @@ USE_XORG= x11 xf86driproto glproto randr PLIST_FILES= bin/Xnest \ man/man1/Xnest.1.gz -do-install: - ${INSTALL_PROGRAM} ${WRKSRC}/hw/xnest/Xnest ${STAGEDIR}${PREFIX}/bin/ - ${INSTALL_MAN} ${WRKSRC}/hw/xnest/man/Xnest.1 ${STAGEDIR}${PREFIX}/man/man1/ - .include From owner-svn-ports-all@freebsd.org Wed Jul 6 21:50:00 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id DA378B757C2; Wed, 6 Jul 2016 21:50:00 +0000 (UTC) (envelope-from bapt@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id AABE01821; Wed, 6 Jul 2016 21:50:00 +0000 (UTC) (envelope-from bapt@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u66LnxKo009658; Wed, 6 Jul 2016 21:49:59 GMT (envelope-from bapt@FreeBSD.org) Received: (from bapt@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u66LnxTI009656; Wed, 6 Jul 2016 21:49:59 GMT (envelope-from bapt@FreeBSD.org) Message-Id: <201607062149.u66LnxTI009656@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: bapt set sender to bapt@FreeBSD.org using -f From: Baptiste Daroussin Date: Wed, 6 Jul 2016 21:49:59 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418151 - head/x11-servers/xorg-vfbserver X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Jul 2016 21:50:01 -0000 Author: bapt Date: Wed Jul 6 21:49:59 2016 New Revision: 418151 URL: https://svnweb.freebsd.org/changeset/ports/418151 Log: Update to 1.18.3 Use INSTALL_WRKSRC instead of home made equivalent Modified: head/x11-servers/xorg-vfbserver/Makefile head/x11-servers/xorg-vfbserver/distinfo Modified: head/x11-servers/xorg-vfbserver/Makefile ============================================================================== --- head/x11-servers/xorg-vfbserver/Makefile Wed Jul 6 21:49:28 2016 (r418150) +++ head/x11-servers/xorg-vfbserver/Makefile Wed Jul 6 21:49:59 2016 (r418151) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= xorg-vfbserver -PORTVERSION= 1.18.0 +PORTVERSION= 1.18.3 PORTEPOCH= 1 CATEGORIES= x11-servers MASTER_SITES= XORG/individual/xserver @@ -13,6 +13,7 @@ MAINTAINER= x11@FreeBSD.org COMMENT= X virtual framebuffer server from X.Org USES= tar:bzip2 pkgconfig +INSTALL_WRKSRC= ${WRKSRC}/hw/vfb GNU_CONFIGURE= yes CONFIGURE_ARGS= --disable-dmx \ --disable-xephyr \ @@ -49,7 +50,4 @@ USE_XORG= pixman x11 fixesproto damagepr PLIST_FILES= bin/Xvfb \ man/man1/Xvfb.1.gz -do-install: - cd ${WRKSRC}/hw/vfb; DESTDIR=${STAGEDIR} ${MAKE} install - .include Modified: head/x11-servers/xorg-vfbserver/distinfo ============================================================================== --- head/x11-servers/xorg-vfbserver/distinfo Wed Jul 6 21:49:28 2016 (r418150) +++ head/x11-servers/xorg-vfbserver/distinfo Wed Jul 6 21:49:59 2016 (r418151) @@ -1,2 +1,3 @@ -SHA256 (xorg/xserver/xorg-server-1.18.0.tar.bz2) = 195670819695d9cedd8dde95fbe069be0d0f488a77797a2d409f9f702daf312e -SIZE (xorg/xserver/xorg-server-1.18.0.tar.bz2) = 5818703 +TIMESTAMP = 1467841568 +SHA256 (xorg/xserver/xorg-server-1.18.3.tar.bz2) = ea739c22517cdbe2b5f7c0a5fd05fe8a10ac0629003e71c0c7862f4bb60142cd +SIZE (xorg/xserver/xorg-server-1.18.3.tar.bz2) = 5867330 From owner-svn-ports-all@freebsd.org Wed Jul 6 22:00:45 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 87834B75A97; Wed, 6 Jul 2016 22:00:45 +0000 (UTC) (envelope-from antoine@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 636141C82; Wed, 6 Jul 2016 22:00:45 +0000 (UTC) (envelope-from antoine@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u66M0iCp013469; Wed, 6 Jul 2016 22:00:44 GMT (envelope-from antoine@FreeBSD.org) Received: (from antoine@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u66M0i8B013465; Wed, 6 Jul 2016 22:00:44 GMT (envelope-from antoine@FreeBSD.org) Message-Id: <201607062200.u66M0i8B013465@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: antoine set sender to antoine@FreeBSD.org using -f From: Antoine Brodin Date: Wed, 6 Jul 2016 22:00:44 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418152 - in head/devel/icu: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Jul 2016 22:00:45 -0000 Author: antoine Date: Wed Jul 6 22:00:44 2016 New Revision: 418152 URL: https://svnweb.freebsd.org/changeset/ports/418152 Log: Revert update to version 57.1, it wasn't tested PR: 205120 With hat: portmgr Modified: head/devel/icu/Makefile head/devel/icu/distinfo head/devel/icu/files/patch-config__mh-bsd-gcc head/devel/icu/pkg-plist Modified: head/devel/icu/Makefile ============================================================================== --- head/devel/icu/Makefile Wed Jul 6 21:49:59 2016 (r418151) +++ head/devel/icu/Makefile Wed Jul 6 22:00:44 2016 (r418152) @@ -2,7 +2,8 @@ # $FreeBSD$ PORTNAME= icu -PORTVERSION= 57.1 +PORTVERSION= 55.1 +PORTEPOCH= 1 CATEGORIES= devel MASTER_SITES= http://download.icu-project.org/files/icu4c/${PORTVERSION}/ \ SF/${PORTNAME}/ICU4C/${PORTVERSION}/ @@ -36,6 +37,7 @@ CONFIGURE_ARGS+= --with-data-packaging=l CONFIGURE_ARGS+= --with-cross-build .endif + USES= gmake pathfix ICUMAJOR= ${PORTVERSION:C/\..*//} @@ -75,6 +77,6 @@ post-stage: @${STRIP_CMD} ${STAGEDIR}${PREFIX}/sbin/* @${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/libicuda*.so.* -do-test regression-test: iotest cintltst intltest +test regression-test: iotest cintltst intltest .include Modified: head/devel/icu/distinfo ============================================================================== --- head/devel/icu/distinfo Wed Jul 6 21:49:59 2016 (r418151) +++ head/devel/icu/distinfo Wed Jul 6 22:00:44 2016 (r418152) @@ -1,3 +1,2 @@ -TIMESTAMP = 1464596691 -SHA256 (icu4c-57_1-src.tgz) = ff8c67cb65949b1e7808f2359f2b80f722697048e90e7cfc382ec1fe229e9581 -SIZE (icu4c-57_1-src.tgz) = 22360664 +SHA256 (icu4c-55_1-src.tgz) = e16b22cbefdd354bec114541f7849a12f8fc2015320ca5282ee4fd787571457b +SIZE (icu4c-55_1-src.tgz) = 25600847 Modified: head/devel/icu/files/patch-config__mh-bsd-gcc ============================================================================== --- head/devel/icu/files/patch-config__mh-bsd-gcc Wed Jul 6 21:49:59 2016 (r418151) +++ head/devel/icu/files/patch-config__mh-bsd-gcc Wed Jul 6 22:00:44 2016 (r418152) @@ -1,6 +1,6 @@ ---- config/mh-bsd-gcc.orig 2016-03-23 20:50:50 UTC -+++ config/mh-bsd-gcc -@@ -23,9 +23,6 @@ LD_RPATH_PRE= -Wl,-rpath, +--- ./config/mh-bsd-gcc.orig 2011-10-19 01:13:00.000000000 +0200 ++++ ./config/mh-bsd-gcc 2012-01-14 21:01:17.083384507 +0100 +@@ -23,9 +23,6 @@ ## Compiler switch to embed a library name LD_SONAME = -Wl,-soname -Wl,$(notdir $(MIDDLE_SO_TARGET)) Modified: head/devel/icu/pkg-plist ============================================================================== --- head/devel/icu/pkg-plist Wed Jul 6 21:49:59 2016 (r418151) +++ head/devel/icu/pkg-plist Wed Jul 6 22:00:44 2016 (r418152) @@ -132,7 +132,6 @@ include/unicode/schriter.h include/unicode/scientificnumberformatter.h include/unicode/search.h include/unicode/selfmt.h -include/unicode/simpleformatter.h include/unicode/simpletz.h include/unicode/smpdtfmt.h include/unicode/sortkey.h @@ -203,7 +202,6 @@ include/unicode/uobject.h include/unicode/upluralrules.h include/unicode/uregex.h include/unicode/uregion.h -include/unicode/ureldatefmt.h include/unicode/urename.h include/unicode/urep.h include/unicode/ures.h @@ -257,5 +255,5 @@ man/man8/gencmn.8.gz man/man8/gensprep.8.gz man/man8/icupkg.8.gz %%DATADIR%%/%%ICUVER%%/mkinstalldirs -%%DATADIR%%/%%ICUVER%%/LICENSE +%%DATADIR%%/%%ICUVER%%/license.html %%DATADIR%%/%%ICUVER%%/config/mh-bsd-gcc From owner-svn-ports-all@freebsd.org Wed Jul 6 22:10:23 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id B6ECEB75B6B; Wed, 6 Jul 2016 22:10:23 +0000 (UTC) (envelope-from mat@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 6E2621179; Wed, 6 Jul 2016 22:10:23 +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 u66MAMO9018251; Wed, 6 Jul 2016 22:10:22 GMT (envelope-from mat@FreeBSD.org) Received: (from mat@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u66MAEmh018175; Wed, 6 Jul 2016 22:10:14 GMT (envelope-from mat@FreeBSD.org) Message-Id: <201607062210.u66MAEmh018175@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: mat set sender to mat@FreeBSD.org using -f From: Mathieu Arnold Date: Wed, 6 Jul 2016 22:10:14 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418153 - in head: astro/osmium audio/musicpd chinese/fcitx chinese/tin databases/couchdb databases/firebird25-server databases/postgresql91-server databases/postgresql92-server databas... X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Jul 2016 22:10:23 -0000 Author: mat Date: Wed Jul 6 22:10:14 2016 New Revision: 418153 URL: https://svnweb.freebsd.org/changeset/ports/418153 Log: Bump PORTREVISION for the icu revert. This time not bumping lang/php70, but devel/php70-intl which is the one really depending on icu. PR: 205120 With hat: portmgr Sponsored by: Absolight Modified: head/astro/osmium/Makefile (contents, props changed) head/audio/musicpd/Makefile (contents, props changed) head/chinese/fcitx/Makefile (contents, props changed) head/chinese/tin/Makefile (contents, props changed) head/databases/couchdb/Makefile (contents, props changed) head/databases/firebird25-server/Makefile (contents, props changed) head/databases/postgresql91-server/Makefile (contents, props changed) head/databases/postgresql92-server/Makefile (contents, props changed) head/databases/sqlite3/Makefile (contents, props changed) head/deskutils/calibre/Makefile (contents, props changed) head/devel/boost-libs/Makefile (contents, props changed) head/devel/dee/Makefile (contents, props changed) head/devel/glib20/Makefile (contents, props changed) head/devel/hs-text-icu/Makefile (contents, props changed) head/devel/objecthash/Makefile (contents, props changed) head/devel/pecl-intl/Makefile (contents, props changed) head/devel/php70-intl/Makefile (contents, props changed) head/devel/py-pyicu/Makefile (contents, props changed) head/devel/qt4-corelib/Makefile (contents, props changed) head/devel/qt5-core/Makefile (contents, props changed) head/dns/bundy/Makefile (contents, props changed) head/dns/libpsl/Makefile (contents, props changed) head/editors/libreoffice/Makefile.common (contents, props changed) head/editors/libreoffice4/Makefile (contents, props changed) head/emulators/open-vm-tools/Makefile (contents, props changed) head/emulators/xcpc/Makefile (contents, props changed) head/graphics/libcdr01/Makefile (contents, props changed) head/graphics/libfreehand/Makefile (contents, props changed) head/graphics/mapnik/Makefile (contents, props changed) head/irc/znc/Makefile (contents, props changed) head/lang/gnustep-base/Makefile (contents, props changed) head/lang/parrot/Makefile (contents, props changed) head/lang/phantomjs/Makefile (contents, props changed) head/lang/swift/Makefile (contents, props changed) head/lang/v8-devel/Makefile (contents, props changed) head/mail/dovecot2/Makefile (contents, props changed) head/mail/postfix-current/Makefile (contents, props changed) head/mail/postfix/Makefile (contents, props changed) head/mail/thunderbird/Makefile (contents, props changed) head/math/R/Makefile (contents, props changed) head/misc/sword/Makefile (contents, props changed) head/multimedia/aegisub/Makefile (contents, props changed) head/multimedia/subtitlecomposer-kde4/Makefile (contents, props changed) head/net-p2p/twister/Makefile (contents, props changed) head/net/yaz/Makefile (contents, props changed) head/news/tin/Makefile (contents, props changed) head/print/harfbuzz/Makefile (contents, props changed) head/print/libmspub01/Makefile (contents, props changed) head/print/tex-xetex/Makefile (contents, props changed) head/print/texlive-base/Makefile (contents, props changed) head/sysutils/gdisk/Makefile (contents, props changed) head/sysutils/osquery/Makefile (contents, props changed) head/sysutils/tracker/Makefile (contents, props changed) head/textproc/R-cran-stringi/Makefile (contents, props changed) head/textproc/dwdiff/Makefile (contents, props changed) head/textproc/ibus-qt/Makefile (contents, props changed) head/textproc/libe-book/Makefile (contents, props changed) head/textproc/liblrdf/Makefile (contents, props changed) head/textproc/libvisio01/Makefile (contents, props changed) head/textproc/raptor2/Makefile (contents, props changed) head/textproc/rubygem-charlock_holmes/Makefile (contents, props changed) head/textproc/zorba/Makefile (contents, props changed) head/www/chromium/Makefile (contents, props changed) head/www/cppcms/Makefile (contents, props changed) head/www/firefox-esr/Makefile (contents, props changed) head/www/firefox/Makefile (contents, props changed) head/www/libxul/Makefile (contents, props changed) head/www/node/Makefile (contents, props changed) head/www/node4/Makefile (contents, props changed) head/www/seamonkey/Makefile (contents, props changed) head/www/webkit-gtk2/Makefile (contents, props changed) head/www/webkit-gtk3/Makefile (contents, props changed) head/www/webkit-qt5/Makefile (contents, props changed) head/www/webkit2-gtk3/Makefile (contents, props changed) Modified: head/astro/osmium/Makefile ============================================================================== --- head/astro/osmium/Makefile Wed Jul 6 22:00:44 2016 (r418152) +++ head/astro/osmium/Makefile Wed Jul 6 22:10:14 2016 (r418153) @@ -3,7 +3,7 @@ PORTNAME= osmium PORTVERSION= git20130522 -PORTREVISION= 11 +PORTREVISION= 12 CATEGORIES= astro geography devel MAINTAINER= amdmi3@FreeBSD.org Modified: head/audio/musicpd/Makefile ============================================================================== --- head/audio/musicpd/Makefile Wed Jul 6 22:00:44 2016 (r418152) +++ head/audio/musicpd/Makefile Wed Jul 6 22:10:14 2016 (r418153) @@ -2,7 +2,7 @@ PORTNAME= musicpd PORTVERSION= 0.19.15 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= audio ipv6 MASTER_SITES= http://www.musicpd.org/download/mpd/${PORTVERSION:R}/ DISTNAME= mpd-${PORTVERSION} Modified: head/chinese/fcitx/Makefile ============================================================================== --- head/chinese/fcitx/Makefile Wed Jul 6 22:00:44 2016 (r418152) +++ head/chinese/fcitx/Makefile Wed Jul 6 22:10:14 2016 (r418153) @@ -3,7 +3,7 @@ PORTNAME= fcitx PORTVERSION= 4.2.8.6 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= chinese x11 MASTER_SITES= http://download.fcitx-im.org/fcitx/:fcitx \ http://download.fcitx-im.org/data/:data Modified: head/chinese/tin/Makefile ============================================================================== --- head/chinese/tin/Makefile Wed Jul 6 22:00:44 2016 (r418152) +++ head/chinese/tin/Makefile Wed Jul 6 22:10:14 2016 (r418153) @@ -2,7 +2,7 @@ # $FreeBSD$ # Don't reset PORTREVISION and keep bumping it even if PORTVERSION is changed. -PORTREVISION= 7 +PORTREVISION= 8 CATEGORIES= chinese MAINTAINER= ports@FreeBSD.org Modified: head/databases/couchdb/Makefile ============================================================================== --- head/databases/couchdb/Makefile Wed Jul 6 22:00:44 2016 (r418152) +++ head/databases/couchdb/Makefile Wed Jul 6 22:10:14 2016 (r418153) @@ -3,7 +3,7 @@ PORTNAME= couchdb PORTVERSION= 1.6.1 -PORTREVISION= 5 +PORTREVISION= 6 PORTEPOCH= 2 CATEGORIES= databases MASTER_SITES= APACHE/couchdb/source/${PORTVERSION} Modified: head/databases/firebird25-server/Makefile ============================================================================== --- head/databases/firebird25-server/Makefile Wed Jul 6 22:00:44 2016 (r418152) +++ head/databases/firebird25-server/Makefile Wed Jul 6 22:10:14 2016 (r418153) @@ -3,7 +3,7 @@ PORTNAME= firebird PORTVERSION= 2.5.4 -PORTREVISION= 6 +PORTREVISION= 7 CATEGORIES?= databases MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/${PORTVERSION:S/.0//}-Release/ PKGNAMESUFFIX?= ${PORTVERSION:R:S/.//}-server Modified: head/databases/postgresql91-server/Makefile ============================================================================== --- head/databases/postgresql91-server/Makefile Wed Jul 6 22:00:44 2016 (r418152) +++ head/databases/postgresql91-server/Makefile Wed Jul 6 22:10:14 2016 (r418153) @@ -3,7 +3,7 @@ PORTNAME?= postgresql DISTVERSION?= 9.1.22 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES?= databases MASTER_SITES= PGSQL/source/v${DISTVERSION} PKGNAMESUFFIX?= ${DISTVERSION:R:S/.//}${COMPONENT} Modified: head/databases/postgresql92-server/Makefile ============================================================================== --- head/databases/postgresql92-server/Makefile Wed Jul 6 22:00:44 2016 (r418152) +++ head/databases/postgresql92-server/Makefile Wed Jul 6 22:10:14 2016 (r418153) @@ -3,7 +3,7 @@ PORTNAME?= postgresql DISTVERSION?= 9.2.17 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES?= databases MASTER_SITES= PGSQL/source/v${DISTVERSION} PKGNAMESUFFIX?= ${DISTVERSION:R:S/.//}${COMPONENT} Modified: head/databases/sqlite3/Makefile ============================================================================== --- head/databases/sqlite3/Makefile Wed Jul 6 22:00:44 2016 (r418152) +++ head/databases/sqlite3/Makefile Wed Jul 6 22:10:14 2016 (r418153) @@ -3,7 +3,7 @@ PORTNAME= sqlite3 PORTVERSION= 3.13.0 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= databases MASTER_SITES= https://www.sqlite.org/2016/ http://www2.sqlite.org/2016/ http://www3.sqlite.org/2016/ DISTNAME= sqlite-autoconf-${PORTVERSION:C/\.([[:digit:]])[[:>:]]/0\1/g:S/.//g}00 Modified: head/deskutils/calibre/Makefile ============================================================================== --- head/deskutils/calibre/Makefile Wed Jul 6 22:00:44 2016 (r418152) +++ head/deskutils/calibre/Makefile Wed Jul 6 22:10:14 2016 (r418153) @@ -3,7 +3,7 @@ PORTNAME= calibre PORTVERSION= 2.61.0 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= deskutils python MASTER_SITES= http://download.calibre-ebook.com/${PORTVERSION}/ Modified: head/devel/boost-libs/Makefile ============================================================================== --- head/devel/boost-libs/Makefile Wed Jul 6 22:00:44 2016 (r418152) +++ head/devel/boost-libs/Makefile Wed Jul 6 22:10:14 2016 (r418153) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= boost-libs -PORTREVISION= 11 +PORTREVISION= 12 COMMENT= Free portable C++ libraries (without Boost.Python) Modified: head/devel/dee/Makefile ============================================================================== --- head/devel/dee/Makefile Wed Jul 6 22:00:44 2016 (r418152) +++ head/devel/dee/Makefile Wed Jul 6 22:10:14 2016 (r418153) @@ -3,7 +3,7 @@ PORTNAME= dee PORTVERSION= 1.2.7 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= devel MASTER_SITES= https://launchpadlibrarian.net/151383425/ \ https://launchpad.net/${PORTNAME}/1.0/${PORTVERSION}/+download/ Modified: head/devel/glib20/Makefile ============================================================================== --- head/devel/glib20/Makefile Wed Jul 6 22:00:44 2016 (r418152) +++ head/devel/glib20/Makefile Wed Jul 6 22:10:14 2016 (r418153) @@ -3,7 +3,7 @@ PORTNAME= glib PORTVERSION= 2.46.2 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= devel MASTER_SITES= GNOME DIST_SUBDIR= gnome2 Modified: head/devel/hs-text-icu/Makefile ============================================================================== --- head/devel/hs-text-icu/Makefile Wed Jul 6 22:00:44 2016 (r418152) +++ head/devel/hs-text-icu/Makefile Wed Jul 6 22:10:14 2016 (r418153) @@ -2,7 +2,7 @@ PORTNAME= text-icu PORTVERSION= 0.7.0.1 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= devel haskell MAINTAINER= haskell@FreeBSD.org Modified: head/devel/objecthash/Makefile ============================================================================== --- head/devel/objecthash/Makefile Wed Jul 6 22:00:44 2016 (r418152) +++ head/devel/objecthash/Makefile Wed Jul 6 22:10:14 2016 (r418153) @@ -3,7 +3,7 @@ PORTNAME= objecthash PORTVERSION= 20160121 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= devel MAINTAINER= ports@FreeBSD.org Modified: head/devel/pecl-intl/Makefile ============================================================================== --- head/devel/pecl-intl/Makefile Wed Jul 6 22:00:44 2016 (r418152) +++ head/devel/pecl-intl/Makefile Wed Jul 6 22:10:14 2016 (r418153) @@ -3,7 +3,7 @@ PORTNAME= intl PORTVERSION= 3.0.0 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= devel pear MASTER_SITES= http://pecl.php.net/get/ PKGNAMEPREFIX= pecl- Modified: head/devel/php70-intl/Makefile ============================================================================== --- head/devel/php70-intl/Makefile Wed Jul 6 22:00:44 2016 (r418152) +++ head/devel/php70-intl/Makefile Wed Jul 6 22:10:14 2016 (r418153) @@ -1,6 +1,7 @@ # Created by: Alex Dupre # $FreeBSD$ +PORTREVISION= 2 CATEGORIES= devel MASTERDIR= ${.CURDIR}/../../lang/php70 Modified: head/devel/py-pyicu/Makefile ============================================================================== --- head/devel/py-pyicu/Makefile Wed Jul 6 22:00:44 2016 (r418152) +++ head/devel/py-pyicu/Makefile Wed Jul 6 22:10:14 2016 (r418153) @@ -3,7 +3,7 @@ PORTNAME= pyicu PORTVERSION= 1.8 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= devel python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} Modified: head/devel/qt4-corelib/Makefile ============================================================================== --- head/devel/qt4-corelib/Makefile Wed Jul 6 22:00:44 2016 (r418152) +++ head/devel/qt4-corelib/Makefile Wed Jul 6 22:10:14 2016 (r418153) @@ -3,7 +3,7 @@ PORTNAME= corelib DISTVERSION= ${QT4_VERSION} -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= devel PKGNAMEPREFIX= qt4- Modified: head/devel/qt5-core/Makefile ============================================================================== --- head/devel/qt5-core/Makefile Wed Jul 6 22:00:44 2016 (r418152) +++ head/devel/qt5-core/Makefile Wed Jul 6 22:10:14 2016 (r418153) @@ -2,7 +2,7 @@ PORTNAME= core DISTVERSION= ${QT5_VERSION} -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= devel PKGNAMEPREFIX= qt5- Modified: head/dns/bundy/Makefile ============================================================================== --- head/dns/bundy/Makefile Wed Jul 6 22:00:44 2016 (r418152) +++ head/dns/bundy/Makefile Wed Jul 6 22:10:14 2016 (r418153) @@ -3,7 +3,7 @@ PORTNAME= bundy PORTVERSION= 0.20160125 -PORTREVISION= 4 +PORTREVISION= 5 CATEGORIES= dns MASTER_SITES= LOCAL/mat/bundy SF/boost/boost/1.55.0:boost DISTFILES+= boost_1_55_0.tar.bz2:boost Modified: head/dns/libpsl/Makefile ============================================================================== --- head/dns/libpsl/Makefile Wed Jul 6 22:00:44 2016 (r418152) +++ head/dns/libpsl/Makefile Wed Jul 6 22:10:14 2016 (r418153) @@ -3,7 +3,7 @@ PORTNAME= libpsl PORTVERSION= 0.13.0 -PORTREVISION= 1 +PORTREVISION= 2 DISTVERSIONPREFIX= ${PORTNAME}- CATEGORIES= dns Modified: head/editors/libreoffice/Makefile.common ============================================================================== --- head/editors/libreoffice/Makefile.common Wed Jul 6 22:00:44 2016 (r418152) +++ head/editors/libreoffice/Makefile.common Wed Jul 6 22:10:14 2016 (r418153) @@ -2,7 +2,7 @@ PORTNAME= libreoffice PORTVERSION= 5.0.6 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES+= editors MAINTAINER= office@FreeBSD.org Modified: head/editors/libreoffice4/Makefile ============================================================================== --- head/editors/libreoffice4/Makefile Wed Jul 6 22:00:44 2016 (r418152) +++ head/editors/libreoffice4/Makefile Wed Jul 6 22:10:14 2016 (r418153) @@ -2,7 +2,7 @@ PORTNAME= libreoffice PORTVERSION= 4.3.7 -PORTREVISION= 4 +PORTREVISION= 5 CATEGORIES= editors MASTER_SITES= http://download.documentfoundation.org/libreoffice/ \ http://dev-www.libreoffice.org/extern/:ext \ Modified: head/emulators/open-vm-tools/Makefile ============================================================================== --- head/emulators/open-vm-tools/Makefile Wed Jul 6 22:00:44 2016 (r418152) +++ head/emulators/open-vm-tools/Makefile Wed Jul 6 22:10:14 2016 (r418153) @@ -3,7 +3,7 @@ PORTNAME= open-vm-tools PORTVERSION= ${BUILD_VER} -PORTREVISION= 13 +PORTREVISION= 14 PORTEPOCH= 1 CATEGORIES= emulators MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/stable-9.4.x Modified: head/emulators/xcpc/Makefile ============================================================================== --- head/emulators/xcpc/Makefile Wed Jul 6 22:00:44 2016 (r418152) +++ head/emulators/xcpc/Makefile Wed Jul 6 22:10:14 2016 (r418153) @@ -3,7 +3,7 @@ PORTNAME= xcpc PORTVERSION= 20070122 -PORTREVISION= 12 +PORTREVISION= 13 CATEGORIES= emulators MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/${PORTNAME}-${PORTVERSION} Modified: head/graphics/libcdr01/Makefile ============================================================================== --- head/graphics/libcdr01/Makefile Wed Jul 6 22:00:44 2016 (r418152) +++ head/graphics/libcdr01/Makefile Wed Jul 6 22:10:14 2016 (r418153) @@ -2,7 +2,7 @@ PORTNAME= libcdr PORTVERSION= 0.1.2 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= graphics devel MASTER_SITES= LODEV PKGNAMESUFFIX= 01 Modified: head/graphics/libfreehand/Makefile ============================================================================== --- head/graphics/libfreehand/Makefile Wed Jul 6 22:00:44 2016 (r418152) +++ head/graphics/libfreehand/Makefile Wed Jul 6 22:10:14 2016 (r418153) @@ -2,7 +2,7 @@ PORTNAME= libfreehand PORTVERSION= 0.1.1 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= graphics MASTER_SITES= LODEV Modified: head/graphics/mapnik/Makefile ============================================================================== --- head/graphics/mapnik/Makefile Wed Jul 6 22:00:44 2016 (r418152) +++ head/graphics/mapnik/Makefile Wed Jul 6 22:10:14 2016 (r418153) @@ -4,7 +4,7 @@ PORTNAME= mapnik PORTVERSION= 3.0.9 DISTVERSIONPREFIX= v -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= graphics geography MASTER_SITES= http://mapnik.s3.amazonaws.com/dist/v${PORTVERSION}/ Modified: head/irc/znc/Makefile ============================================================================== --- head/irc/znc/Makefile Wed Jul 6 22:00:44 2016 (r418152) +++ head/irc/znc/Makefile Wed Jul 6 22:10:14 2016 (r418153) @@ -3,7 +3,7 @@ PORTNAME= znc PORTVERSION= 1.6.3 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= irc ipv6 MASTER_SITES= http://znc.in/releases/ \ http://znc.in/releases/archive/ Modified: head/lang/gnustep-base/Makefile ============================================================================== --- head/lang/gnustep-base/Makefile Wed Jul 6 22:00:44 2016 (r418152) +++ head/lang/gnustep-base/Makefile Wed Jul 6 22:10:14 2016 (r418153) @@ -3,7 +3,7 @@ PORTNAME= gnustep-base PORTVERSION= 1.24.8 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= lang devel gnustep MASTER_SITES= GNUSTEP/core Modified: head/lang/parrot/Makefile ============================================================================== --- head/lang/parrot/Makefile Wed Jul 6 22:00:44 2016 (r418152) +++ head/lang/parrot/Makefile Wed Jul 6 22:10:14 2016 (r418153) @@ -3,7 +3,7 @@ PORTNAME= parrot PORTVERSION= 8.1.0 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= lang MASTER_SITES= ftp://ftp.parrot.org/pub/parrot/releases/supported/${PORTVERSION}/ \ LOCAL/sunpoet Modified: head/lang/phantomjs/Makefile ============================================================================== --- head/lang/phantomjs/Makefile Wed Jul 6 22:00:44 2016 (r418152) +++ head/lang/phantomjs/Makefile Wed Jul 6 22:10:14 2016 (r418153) @@ -2,7 +2,7 @@ PORTNAME= phantomjs PORTVERSION= 2.0.0 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= lang MASTER_SITES= https://bitbucket.org/ariya/phantomjs/downloads/ DISTNAME= ${PORTNAME}-${PORTVERSION}-source Modified: head/lang/swift/Makefile ============================================================================== --- head/lang/swift/Makefile Wed Jul 6 22:00:44 2016 (r418152) +++ head/lang/swift/Makefile Wed Jul 6 22:10:14 2016 (r418153) @@ -2,7 +2,7 @@ PORTNAME= swift PORTVERSION= 2.2.1 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= lang MAINTAINER= swills@FreeBSD.org Modified: head/lang/v8-devel/Makefile ============================================================================== --- head/lang/v8-devel/Makefile Wed Jul 6 22:00:44 2016 (r418152) +++ head/lang/v8-devel/Makefile Wed Jul 6 22:10:14 2016 (r418153) @@ -3,7 +3,7 @@ PORTNAME= v8 PORTVERSION= 3.27.7 -PORTREVISION= 4 +PORTREVISION= 5 CATEGORIES= lang MASTER_SITES= LOCAL/vanilla PKGNAMESUFFIX= -devel Modified: head/mail/dovecot2/Makefile ============================================================================== --- head/mail/dovecot2/Makefile Wed Jul 6 22:00:44 2016 (r418152) +++ head/mail/dovecot2/Makefile Wed Jul 6 22:10:14 2016 (r418153) @@ -14,7 +14,7 @@ PORTNAME= dovecot PORTVERSION= 2.2.25 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= mail ipv6 MASTER_SITES= http://www.dovecot.org/releases/${PORTVERSION:R}/ PKGNAMESUFFIX= 2 Modified: head/mail/postfix-current/Makefile ============================================================================== --- head/mail/postfix-current/Makefile Wed Jul 6 22:00:44 2016 (r418152) +++ head/mail/postfix-current/Makefile Wed Jul 6 22:10:14 2016 (r418153) @@ -3,7 +3,7 @@ PORTNAME= postfix DISTVERSION= 3.2-20160625 -PORTREVISION= 1 +PORTREVISION= 2 PORTEPOCH= 4 CATEGORIES= mail ipv6 MASTER_SITES= ftp://ftp.porcupine.org/mirrors/postfix-release/ \ Modified: head/mail/postfix/Makefile ============================================================================== --- head/mail/postfix/Makefile Wed Jul 6 22:00:44 2016 (r418152) +++ head/mail/postfix/Makefile Wed Jul 6 22:10:14 2016 (r418153) @@ -3,7 +3,7 @@ PORTNAME= postfix PORTVERSION= 3.1.1 -PORTREVISION= 1 +PORTREVISION= 2 PORTEPOCH= 1 CATEGORIES= mail ipv6 MASTER_SITES= ftp://ftp.porcupine.org/mirrors/postfix-release/ \ Modified: head/mail/thunderbird/Makefile ============================================================================== --- head/mail/thunderbird/Makefile Wed Jul 6 22:00:44 2016 (r418152) +++ head/mail/thunderbird/Makefile Wed Jul 6 22:10:14 2016 (r418153) @@ -3,7 +3,7 @@ PORTNAME= thunderbird DISTVERSION= 45.1.1 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= mail news net-im ipv6 MASTER_SITES= MOZILLA/${PORTNAME}/releases/${DISTVERSION}/source \ MOZILLA/${PORTNAME}/candidates/${DISTVERSION}-candidates/build1/source Modified: head/math/R/Makefile ============================================================================== --- head/math/R/Makefile Wed Jul 6 22:00:44 2016 (r418152) +++ head/math/R/Makefile Wed Jul 6 22:10:14 2016 (r418153) @@ -3,7 +3,7 @@ PORTNAME?= R PORTVERSION= 3.3.1 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= math lang MASTER_SITES= http://cran.r-project.org/%SUBDIR%/ \ ftp://cran.r-project.org/pub/R/%SUBDIR%/ \ Modified: head/misc/sword/Makefile ============================================================================== --- head/misc/sword/Makefile Wed Jul 6 22:00:44 2016 (r418152) +++ head/misc/sword/Makefile Wed Jul 6 22:10:14 2016 (r418153) @@ -3,7 +3,7 @@ PORTNAME= sword PORTVERSION= 1.7.4 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= misc MASTER_SITES= ftp://ftp.crosswire.org/pub/sword/source/v${PORTVERSION:R}/ \ http://crosswire.org/ftpmirror/pub/sword/source/v${PORTVERSION:R}/ Modified: head/multimedia/aegisub/Makefile ============================================================================== --- head/multimedia/aegisub/Makefile Wed Jul 6 22:00:44 2016 (r418152) +++ head/multimedia/aegisub/Makefile Wed Jul 6 22:10:14 2016 (r418153) @@ -3,7 +3,7 @@ PORTNAME= aegisub PORTVERSION= 3.2.2 -PORTREVISION= 4 +PORTREVISION= 5 CATEGORIES= multimedia MASTER_SITES= http://ftp.aegisub.org/pub/archives/releases/source/ \ ftp://ftp.aegisub.org/pub/archives/releases/source/ \ Modified: head/multimedia/subtitlecomposer-kde4/Makefile ============================================================================== --- head/multimedia/subtitlecomposer-kde4/Makefile Wed Jul 6 22:00:44 2016 (r418152) +++ head/multimedia/subtitlecomposer-kde4/Makefile Wed Jul 6 22:10:14 2016 (r418153) @@ -3,7 +3,7 @@ PORTNAME= subtitlecomposer PORTVERSION= 0.5.7 DISTVERSIONPREFIX= v -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= multimedia kde MAINTAINER= makc@FreeBSD.org Modified: head/net-p2p/twister/Makefile ============================================================================== --- head/net-p2p/twister/Makefile Wed Jul 6 22:00:44 2016 (r418152) +++ head/net-p2p/twister/Makefile Wed Jul 6 22:10:14 2016 (r418153) @@ -3,7 +3,7 @@ PORTNAME= twister-core PORTVERSION= 0.9.34 -PORTREVISION= 1 +PORTREVISION= 2 DISTVERSIONPREFIX= v PORTEPOCH= 1 CATEGORIES= net-p2p Modified: head/net/yaz/Makefile ============================================================================== --- head/net/yaz/Makefile Wed Jul 6 22:00:44 2016 (r418152) +++ head/net/yaz/Makefile Wed Jul 6 22:10:14 2016 (r418153) @@ -3,7 +3,7 @@ PORTNAME= yaz PORTVERSION= 5.16.0 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= net MASTER_SITES= http://ftp.indexdata.dk/pub/yaz/ Modified: head/news/tin/Makefile ============================================================================== --- head/news/tin/Makefile Wed Jul 6 22:00:44 2016 (r418152) +++ head/news/tin/Makefile Wed Jul 6 22:10:14 2016 (r418153) @@ -3,7 +3,7 @@ PORTNAME= tin PORTVERSION= 2.3.4 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES+= news ipv6 MASTER_SITES= ftp://ftp.tin.org/pub/news/clients/tin/v${PORTVERSION:R}/ \ ftp://ftp.sunet.se/pub/news/readers/tin/v${PORTVERSION:R}/ \ Modified: head/print/harfbuzz/Makefile ============================================================================== --- head/print/harfbuzz/Makefile Wed Jul 6 22:00:44 2016 (r418152) +++ head/print/harfbuzz/Makefile Wed Jul 6 22:10:14 2016 (r418153) @@ -3,7 +3,7 @@ PORTNAME= harfbuzz PORTVERSION= 1.2.3 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= print MASTER_SITES= http://www.freedesktop.org/software/harfbuzz/release/ Modified: head/print/libmspub01/Makefile ============================================================================== --- head/print/libmspub01/Makefile Wed Jul 6 22:00:44 2016 (r418152) +++ head/print/libmspub01/Makefile Wed Jul 6 22:10:14 2016 (r418153) @@ -2,7 +2,7 @@ PORTNAME= libmspub PORTVERSION= 0.1.2 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= print graphics devel MASTER_SITES= http://dev-www.libreoffice.org/src/${PORTNAME}/ PKGNAMESUFFIX= 01 Modified: head/print/tex-xetex/Makefile ============================================================================== --- head/print/tex-xetex/Makefile Wed Jul 6 22:00:44 2016 (r418152) +++ head/print/tex-xetex/Makefile Wed Jul 6 22:10:14 2016 (r418153) @@ -2,7 +2,7 @@ PORTNAME= xetex PORTVERSION= 0.99992 -PORTREVISION= 4 +PORTREVISION= 5 CATEGORIES= print MASTER_SITES= ftp://tug.org/historic/systems/texlive/2015/ PKGNAMEPREFIX= tex- Modified: head/print/texlive-base/Makefile ============================================================================== --- head/print/texlive-base/Makefile Wed Jul 6 22:00:44 2016 (r418152) +++ head/print/texlive-base/Makefile Wed Jul 6 22:10:14 2016 (r418153) @@ -2,7 +2,7 @@ PORTNAME= texlive PORTVERSION= 20150521 -PORTREVISION= 9 +PORTREVISION= 10 CATEGORIES= print MASTER_SITES= TEX_CTAN/systems/texlive/Source/ PKGNAMESUFFIX= -base Modified: head/sysutils/gdisk/Makefile ============================================================================== --- head/sysutils/gdisk/Makefile Wed Jul 6 22:00:44 2016 (r418152) +++ head/sysutils/gdisk/Makefile Wed Jul 6 22:10:14 2016 (r418153) @@ -3,7 +3,7 @@ PORTNAME= gdisk PORTVERSION= 0.8.10 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= sysutils MASTER_SITES= SF/gptfdisk/gptfdisk/${PORTVERSION} DISTNAME= gptfdisk-${PORTVERSION} Modified: head/sysutils/osquery/Makefile ============================================================================== --- head/sysutils/osquery/Makefile Wed Jul 6 22:00:44 2016 (r418152) +++ head/sysutils/osquery/Makefile Wed Jul 6 22:10:14 2016 (r418153) @@ -3,7 +3,7 @@ PORTNAME= osquery PORTVERSION= 1.4.7 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= sysutils MAINTAINER= zi@FreeBSD.org Modified: head/sysutils/tracker/Makefile ============================================================================== --- head/sysutils/tracker/Makefile Wed Jul 6 22:00:44 2016 (r418152) +++ head/sysutils/tracker/Makefile Wed Jul 6 22:10:14 2016 (r418153) @@ -3,7 +3,7 @@ PORTNAME= tracker PORTVERSION= 1.6.1 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= sysutils gnome MASTER_SITES= GNOME Modified: head/textproc/R-cran-stringi/Makefile ============================================================================== --- head/textproc/R-cran-stringi/Makefile Wed Jul 6 22:00:44 2016 (r418152) +++ head/textproc/R-cran-stringi/Makefile Wed Jul 6 22:10:14 2016 (r418153) @@ -3,7 +3,7 @@ PORTNAME= stringi DISTVERSION= 1.1.1 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= textproc DISTNAME= ${PORTNAME}_${DISTVERSION} Modified: head/textproc/dwdiff/Makefile ============================================================================== --- head/textproc/dwdiff/Makefile Wed Jul 6 22:00:44 2016 (r418152) +++ head/textproc/dwdiff/Makefile Wed Jul 6 22:10:14 2016 (r418153) @@ -3,7 +3,7 @@ PORTNAME= dwdiff PORTVERSION= 2.0.9 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= textproc MASTER_SITES= http://os.ghalkes.nl/dist/ \ http://fossies.org/unix/privat/ Modified: head/textproc/ibus-qt/Makefile ============================================================================== --- head/textproc/ibus-qt/Makefile Wed Jul 6 22:00:44 2016 (r418152) +++ head/textproc/ibus-qt/Makefile Wed Jul 6 22:10:14 2016 (r418153) @@ -3,7 +3,7 @@ PORTNAME= ibus-qt PORTVERSION= 1.3.3 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= textproc MASTER_SITES= https://github.com/${GH_ACCOUNT}/${PORTNAME}/releases/download/${PORTVERSION}/ \ http://github.com/${GH_ACCOUNT}/${PORTNAME}/releases/download/${PORTVERSION}/ Modified: head/textproc/libe-book/Makefile ============================================================================== --- head/textproc/libe-book/Makefile Wed Jul 6 22:00:44 2016 (r418152) +++ head/textproc/libe-book/Makefile Wed Jul 6 22:10:14 2016 (r418153) @@ -2,7 +2,7 @@ PORTNAME= libe-book PORTVERSION= 0.1.2 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= textproc MASTER_SITES= SF/libebook/${PORTNAME}-${PORTVERSION}/ Modified: head/textproc/liblrdf/Makefile ============================================================================== --- head/textproc/liblrdf/Makefile Wed Jul 6 22:00:44 2016 (r418152) +++ head/textproc/liblrdf/Makefile Wed Jul 6 22:10:14 2016 (r418153) @@ -3,7 +3,7 @@ PORTNAME= liblrdf PORTVERSION= 0.5.0 -PORTREVISION= 8 +PORTREVISION= 9 CATEGORIES= textproc MASTER_SITES= GENTOO Modified: head/textproc/libvisio01/Makefile ============================================================================== --- head/textproc/libvisio01/Makefile Wed Jul 6 22:00:44 2016 (r418152) +++ head/textproc/libvisio01/Makefile Wed Jul 6 22:10:14 2016 (r418153) @@ -2,7 +2,7 @@ PORTNAME= libvisio PORTVERSION= 0.1.5 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= textproc devel MASTER_SITES= http://dev-www.libreoffice.org/src/${PORTNAME}/ PKGNAMESUFFIX= 01 Modified: head/textproc/raptor2/Makefile ============================================================================== --- head/textproc/raptor2/Makefile Wed Jul 6 22:00:44 2016 (r418152) +++ head/textproc/raptor2/Makefile Wed Jul 6 22:10:14 2016 (r418153) @@ -3,7 +3,7 @@ PORTNAME= raptor2 PORTVERSION= 2.0.15 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= textproc MASTER_SITES= http://download.librdf.org/source/ \ SF/librdf/${PORTNAME}/${PORTVERSION} Modified: head/textproc/rubygem-charlock_holmes/Makefile ============================================================================== --- head/textproc/rubygem-charlock_holmes/Makefile Wed Jul 6 22:00:44 2016 (r418152) +++ head/textproc/rubygem-charlock_holmes/Makefile Wed Jul 6 22:10:14 2016 (r418153) @@ -2,7 +2,7 @@ PORTNAME= charlock_holmes PORTVERSION= 0.7.3 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= textproc rubygems MASTER_SITES= RG Modified: head/textproc/zorba/Makefile ============================================================================== --- head/textproc/zorba/Makefile Wed Jul 6 22:00:44 2016 (r418152) +++ head/textproc/zorba/Makefile Wed Jul 6 22:10:14 2016 (r418153) @@ -3,7 +3,7 @@ PORTNAME= zorba PORTVERSION= 2.7.0 -PORTREVISION= 9 +PORTREVISION= 10 CATEGORIES= textproc MASTER_SITES= https://launchpadlibrarian.net/119058962/ DISTNAME= ${PORTNAME}-src-${PORTVERSION} Modified: head/www/chromium/Makefile ============================================================================== --- head/www/chromium/Makefile Wed Jul 6 22:00:44 2016 (r418152) +++ head/www/chromium/Makefile Wed Jul 6 22:10:14 2016 (r418153) @@ -3,7 +3,7 @@ PORTNAME= chromium PORTVERSION= 51.0.2704.106 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= www MASTER_SITES= http://commondatastorage.googleapis.com/chromium-browser-official/ DISTFILES= ${DISTNAME}${EXTRACT_SUFX} # default, but needed to get distinfo correct if TEST is on Modified: head/www/cppcms/Makefile ============================================================================== --- head/www/cppcms/Makefile Wed Jul 6 22:00:44 2016 (r418152) +++ head/www/cppcms/Makefile Wed Jul 6 22:10:14 2016 (r418153) @@ -2,7 +2,7 @@ PORTNAME= cppcms PORTVERSION= 1.0.5 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= www MASTER_SITES= SF/cppcms/${PORTNAME}/${PORTVERSION} Modified: head/www/firefox-esr/Makefile ============================================================================== --- head/www/firefox-esr/Makefile Wed Jul 6 22:00:44 2016 (r418152) +++ head/www/firefox-esr/Makefile Wed Jul 6 22:10:14 2016 (r418153) @@ -3,7 +3,7 @@ PORTNAME= firefox DISTVERSION= 45.2.0 -PORTREVISION= 1 +PORTREVISION= 2 DISTVERSIONSUFFIX=esr.source PORTEPOCH= 1 CATEGORIES= www ipv6 Modified: head/www/firefox/Makefile ============================================================================== --- head/www/firefox/Makefile Wed Jul 6 22:00:44 2016 (r418152) +++ head/www/firefox/Makefile Wed Jul 6 22:10:14 2016 (r418153) @@ -3,7 +3,7 @@ PORTNAME= firefox DISTVERSION= 47.0.1 -PORTREVISION= 1 +PORTREVISION= 2 DISTVERSIONSUFFIX=.source PORTEPOCH= 1 CATEGORIES= www ipv6 Modified: head/www/libxul/Makefile ============================================================================== --- head/www/libxul/Makefile Wed Jul 6 22:00:44 2016 (r418152) +++ head/www/libxul/Makefile Wed Jul 6 22:10:14 2016 (r418153) @@ -3,7 +3,7 @@ PORTNAME= libxul DISTVERSION= 45.2.0 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES?= www devel MASTER_SITES= MOZILLA/firefox/releases/${DISTVERSION}esr/source \ MOZILLA/firefox/candidates/${DISTVERSION}esr-candidates/build2/source Modified: head/www/node/Makefile ============================================================================== --- head/www/node/Makefile Wed Jul 6 22:00:44 2016 (r418152) +++ head/www/node/Makefile Wed Jul 6 22:10:14 2016 (r418153) @@ -2,7 +2,7 @@ PORTNAME= node PORTVERSION= 6.2.2 -PORTREVISION= 1 +PORTREVISION= 2 DISTVERSIONPREFIX= v CATEGORIES= www MASTER_SITES= http://nodejs.org/dist/v${PORTVERSION}/ Modified: head/www/node4/Makefile ============================================================================== --- head/www/node4/Makefile Wed Jul 6 22:00:44 2016 (r418152) +++ head/www/node4/Makefile Wed Jul 6 22:10:14 2016 (r418153) @@ -3,7 +3,7 @@ PORTNAME= node PORTVERSION= 4.4.7 -PORTREVISION= 1 +PORTREVISION= 2 DISTVERSIONPREFIX= v CATEGORIES= www MASTER_SITES= http://nodejs.org/dist/v${PORTVERSION}/ Modified: head/www/seamonkey/Makefile ============================================================================== --- head/www/seamonkey/Makefile Wed Jul 6 22:00:44 2016 (r418152) +++ head/www/seamonkey/Makefile Wed Jul 6 22:10:14 2016 (r418153) @@ -4,7 +4,7 @@ PORTNAME= seamonkey DISTVERSION= 2.39 MOZILLA_VER= 42 # above + 3 -PORTREVISION= 9 +PORTREVISION= 10 CATEGORIES?= www mail news editors irc ipv6 MASTER_SITES= MOZILLA/${PORTNAME}/releases/${DISTVERSION}/source \ MOZILLA/${PORTNAME}/candidates/${DISTVERSION}-candidates/build1/source Modified: head/www/webkit-gtk2/Makefile ============================================================================== --- head/www/webkit-gtk2/Makefile Wed Jul 6 22:00:44 2016 (r418152) +++ head/www/webkit-gtk2/Makefile Wed Jul 6 22:10:14 2016 (r418153) @@ -3,7 +3,7 @@ PORTNAME= webkit PORTVERSION= 2.4.11 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= www MASTER_SITES= http://webkitgtk.org/releases/ PKGNAMESUFFIX= -gtk2 Modified: head/www/webkit-gtk3/Makefile ============================================================================== --- head/www/webkit-gtk3/Makefile Wed Jul 6 22:00:44 2016 (r418152) +++ head/www/webkit-gtk3/Makefile Wed Jul 6 22:10:14 2016 (r418153) @@ -3,7 +3,7 @@ PORTNAME= webkit PORTVERSION= 2.4.11 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= www MASTER_SITES= http://webkitgtk.org/releases/ PKGNAMESUFFIX= -gtk3 Modified: head/www/webkit-qt5/Makefile ============================================================================== --- head/www/webkit-qt5/Makefile Wed Jul 6 22:00:44 2016 (r418152) +++ head/www/webkit-qt5/Makefile Wed Jul 6 22:10:14 2016 (r418153) @@ -2,7 +2,7 @@ PORTNAME= webkit DISTVERSION= ${QT5_VERSION} -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= www PKGNAMEPREFIX= qt5- Modified: head/www/webkit2-gtk3/Makefile ============================================================================== --- head/www/webkit2-gtk3/Makefile Wed Jul 6 22:00:44 2016 (r418152) +++ head/www/webkit2-gtk3/Makefile Wed Jul 6 22:10:14 2016 (r418153) @@ -3,7 +3,7 @@ PORTNAME= webkit PORTVERSION= 2.8.5 -PORTREVISION= 4 +PORTREVISION= 5 CATEGORIES= www MASTER_SITES= http://webkitgtk.org/releases/ PKGNAMESUFFIX= 2-gtk3 From owner-svn-ports-all@freebsd.org Thu Jul 7 01:32:04 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id BFCB3B21C97; Thu, 7 Jul 2016 01:32:04 +0000 (UTC) (envelope-from danfe@freebsd.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) by mx1.freebsd.org (Postfix) with ESMTP id B34E0151A; Thu, 7 Jul 2016 01:32:04 +0000 (UTC) (envelope-from danfe@freebsd.org) Received: by freefall.freebsd.org (Postfix, from userid 1033) id B1C321A13; Thu, 7 Jul 2016 01:32:04 +0000 (UTC) Date: Thu, 7 Jul 2016 01:32:04 +0000 From: Alexey Dokuchaev To: Guido Falsi Cc: Mathieu Arnold , Baptiste Daroussin , ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: Re: svn commit: r417895 - in head/net: ndpi ntopng Message-ID: <20160707013204.GA96368@FreeBSD.org> References: <201607011649.u61Gn9fh068891@repo.freebsd.org> <20160701165811.7bcj7applsqmtsvr@ivaldir.etoilebsd.net> <3980A22FBF4119291DE71664@atuin.in.mat.cc> <448ef6e0-5ea1-343a-7660-211ee9831b56@FreeBSD.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <448ef6e0-5ea1-343a-7660-211ee9831b56@FreeBSD.org> User-Agent: Mutt/1.6.1 (2016-04-27) X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 07 Jul 2016 01:32:04 -0000 On Sun, Jul 03, 2016 at 09:16:40AM +0200, Guido Falsi wrote: > On 07/02/16 22:01, Mathieu Arnold wrote: > > ... > > If this is not 1.8, it should not be called 1.8 but 1.8.1 or similar. > > The upstream did not create a new version, which is something I cannot > do. I would just lie by marking the port as 1.8.1 if there is no 1.8.1 > release upstream. Correct, and lying is bad. > The commit I am taking is just a few commits ahead of the 1.8 tag and > contains fixes which I could have imported as patches i files, like we > are doing all the time (I mean importing upstream patches), I did prefer > to just move ahead on the upstream repository for coherence with their > sources. Correct, it should be version 1.8 just like you did. > Apart from talking to the upstream and ask them to tag minor releases > (which I'm going to do BTW, I just need time ti coordinate about this) I > have these options(in random order): > > - add a date to the ndpi version (like 1.8.2016.07.02) to differentiate > from the 1.8 tag (imho this is overkill for just a few small > modifications from upstream) Rationale in parentheses is valid; it *is* an overkill for little benefit. > - revert my last commit opn ndpi and disengage the ntopng port from it, > using a statically linked ndpi in it like upstream is doing (which would > anyway come from the same sources ndpi port is using a t present) > > - maybe create a ndpi-stable port? this would definitely be overkill. > > - point the port at the tag and cherry pick some fixes from upstream as > local patches in files. This would be just formally different from what > I'm doing now. There's nothing to fix as nothing is broken. Move along. ;-) ./danfe From owner-svn-ports-all@freebsd.org Thu Jul 7 01:44:25 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 1A654B751BD; Thu, 7 Jul 2016 01:44:25 +0000 (UTC) (envelope-from junovitch@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id C34B51D49; Thu, 7 Jul 2016 01:44:24 +0000 (UTC) (envelope-from junovitch@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u671iNwo098048; Thu, 7 Jul 2016 01:44:23 GMT (envelope-from junovitch@FreeBSD.org) Received: (from junovitch@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u671iNPa098047; Thu, 7 Jul 2016 01:44:23 GMT (envelope-from junovitch@FreeBSD.org) Message-Id: <201607070144.u671iNPa098047@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: junovitch set sender to junovitch@FreeBSD.org using -f From: Jason Unovitch Date: Thu, 7 Jul 2016 01:44:23 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418154 - head/security/vuxml X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 07 Jul 2016 01:44:25 -0000 Author: junovitch Date: Thu Jul 7 01:44:23 2016 New Revision: 418154 URL: https://svnweb.freebsd.org/changeset/ports/418154 Log: Document remote denial of service in quassel PR: 209218 Security: CVE-2016-4414 Security: https://vuxml.FreeBSD.org/freebsd/7d64d00c-43e3-11e6-ab34-002590263bf5.html Modified: head/security/vuxml/vuln.xml Modified: head/security/vuxml/vuln.xml ============================================================================== --- head/security/vuxml/vuln.xml Wed Jul 6 22:10:14 2016 (r418153) +++ head/security/vuxml/vuln.xml Thu Jul 7 01:44:23 2016 (r418154) @@ -58,6 +58,37 @@ Notes: * Do not forget port variants (linux-f10-libxml2, libxml2, etc.) --> + + quassel -- remote denial of service + + + quassel + 0.12.4 + + + + +

Mitre reports:

+
+

The onReadyRead function in core/coreauthhandler.cpp in Quassel + before 0.12.4 allows remote attackers to cause a denial of service + (NULL pointer dereference and crash) via invalid handshake data.

+
+ +
+ + CVE-2016-4414 + http://quassel-irc.org/node/129 + https://github.com/quassel/quassel/commit/e678873 + http://www.openwall.com/lists/oss-security/2016/04/30/2 + http://www.openwall.com/lists/oss-security/2016/04/30/4 + + + 2016-04-24 + 2016-07-07 + +
+ apache24 -- X509 Client certificate based authentication can be bypassed when HTTP/2 is used From owner-svn-ports-all@freebsd.org Thu Jul 7 01:44:33 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id E585DB751F2; Thu, 7 Jul 2016 01:44:33 +0000 (UTC) (envelope-from junovitch@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 9AF721E1F; Thu, 7 Jul 2016 01:44:33 +0000 (UTC) (envelope-from junovitch@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u671iWC5098195; Thu, 7 Jul 2016 01:44:32 GMT (envelope-from junovitch@FreeBSD.org) Received: (from junovitch@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u671iWfG098192; Thu, 7 Jul 2016 01:44:32 GMT (envelope-from junovitch@FreeBSD.org) Message-Id: <201607070144.u671iWfG098192@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: junovitch set sender to junovitch@FreeBSD.org using -f From: Jason Unovitch Date: Thu, 7 Jul 2016 01:44:32 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418155 - head/irc/quassel X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 07 Jul 2016 01:44:34 -0000 Author: junovitch Date: Thu Jul 7 01:44:32 2016 New Revision: 418155 URL: https://svnweb.freebsd.org/changeset/ports/418155 Log: irc/quassel: update 0.12.3 -> 0.12.4 PR: 209218 Approved by: makc (maintainer timeout, 2 months) Security: CVE-2016-4414 Security: https://vuxml.FreeBSD.org/freebsd/7d64d00c-43e3-11e6-ab34-002590263bf5.html MFH: 2016Q3 Modified: head/irc/quassel/Makefile head/irc/quassel/distinfo head/irc/quassel/pkg-plist Modified: head/irc/quassel/Makefile ============================================================================== --- head/irc/quassel/Makefile Thu Jul 7 01:44:23 2016 (r418154) +++ head/irc/quassel/Makefile Thu Jul 7 01:44:32 2016 (r418155) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= quassel -PORTVERSION= 0.12.3 +PORTVERSION= 0.12.4 CATEGORIES= irc MASTER_SITES= http://www.quassel-irc.org/pub/ Modified: head/irc/quassel/distinfo ============================================================================== --- head/irc/quassel/distinfo Thu Jul 7 01:44:23 2016 (r418154) +++ head/irc/quassel/distinfo Thu Jul 7 01:44:32 2016 (r418155) @@ -1,2 +1,3 @@ -SHA256 (quassel-0.12.3.tar.bz2) = 4d3ee91b85cce3d8df62faf55ad35bebd6fc45085ed6248b8a41d2858de3d434 -SIZE (quassel-0.12.3.tar.bz2) = 3687078 +TIMESTAMP = 1467574566 +SHA256 (quassel-0.12.4.tar.bz2) = 93e4e54cb3743cbe2e5684c2fcba94fd2bc2cd739f7672dee14341b49c29444d +SIZE (quassel-0.12.4.tar.bz2) = 3742639 Modified: head/irc/quassel/pkg-plist ============================================================================== --- head/irc/quassel/pkg-plist Thu Jul 7 01:44:23 2016 (r418154) +++ head/irc/quassel/pkg-plist Thu Jul 7 01:44:32 2016 (r418155) @@ -383,6 +383,7 @@ %%NLS%%%%DATADIR%%/translations/en_US.qm %%NLS%%%%DATADIR%%/translations/eo.qm %%NLS%%%%DATADIR%%/translations/es.qm +%%NLS%%%%DATADIR%%/translations/es_AR.qm %%NLS%%%%DATADIR%%/translations/et.qm %%NLS%%%%DATADIR%%/translations/et_EE.qm %%NLS%%%%DATADIR%%/translations/fi.qm From owner-svn-ports-all@freebsd.org Thu Jul 7 01:45:19 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 99E6DB752B1; Thu, 7 Jul 2016 01:45:19 +0000 (UTC) (envelope-from junovitch@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 525431F9F; Thu, 7 Jul 2016 01:45:19 +0000 (UTC) (envelope-from junovitch@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u671jIM6098421; Thu, 7 Jul 2016 01:45:18 GMT (envelope-from junovitch@FreeBSD.org) Received: (from junovitch@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u671jIIh098417; Thu, 7 Jul 2016 01:45:18 GMT (envelope-from junovitch@FreeBSD.org) Message-Id: <201607070145.u671jIIh098417@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: junovitch set sender to junovitch@FreeBSD.org using -f From: Jason Unovitch Date: Thu, 7 Jul 2016 01:45:18 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r418156 - branches/2016Q3/irc/quassel X-SVN-Group: ports-branches MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 07 Jul 2016 01:45:19 -0000 Author: junovitch Date: Thu Jul 7 01:45:18 2016 New Revision: 418156 URL: https://svnweb.freebsd.org/changeset/ports/418156 Log: MFH: r418155 irc/quassel: update 0.12.3 -> 0.12.4 PR: 209218 Approved by: makc (maintainer timeout, 2 months) Approved by: ports-secteam (with hat) Security: CVE-2016-4414 Security: https://vuxml.FreeBSD.org/freebsd/7d64d00c-43e3-11e6-ab34-002590263bf5.html Modified: branches/2016Q3/irc/quassel/Makefile branches/2016Q3/irc/quassel/distinfo branches/2016Q3/irc/quassel/pkg-plist Directory Properties: branches/2016Q3/ (props changed) Modified: branches/2016Q3/irc/quassel/Makefile ============================================================================== --- branches/2016Q3/irc/quassel/Makefile Thu Jul 7 01:44:32 2016 (r418155) +++ branches/2016Q3/irc/quassel/Makefile Thu Jul 7 01:45:18 2016 (r418156) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= quassel -PORTVERSION= 0.12.3 +PORTVERSION= 0.12.4 CATEGORIES= irc MASTER_SITES= http://www.quassel-irc.org/pub/ Modified: branches/2016Q3/irc/quassel/distinfo ============================================================================== --- branches/2016Q3/irc/quassel/distinfo Thu Jul 7 01:44:32 2016 (r418155) +++ branches/2016Q3/irc/quassel/distinfo Thu Jul 7 01:45:18 2016 (r418156) @@ -1,2 +1,3 @@ -SHA256 (quassel-0.12.3.tar.bz2) = 4d3ee91b85cce3d8df62faf55ad35bebd6fc45085ed6248b8a41d2858de3d434 -SIZE (quassel-0.12.3.tar.bz2) = 3687078 +TIMESTAMP = 1467574566 +SHA256 (quassel-0.12.4.tar.bz2) = 93e4e54cb3743cbe2e5684c2fcba94fd2bc2cd739f7672dee14341b49c29444d +SIZE (quassel-0.12.4.tar.bz2) = 3742639 Modified: branches/2016Q3/irc/quassel/pkg-plist ============================================================================== --- branches/2016Q3/irc/quassel/pkg-plist Thu Jul 7 01:44:32 2016 (r418155) +++ branches/2016Q3/irc/quassel/pkg-plist Thu Jul 7 01:45:18 2016 (r418156) @@ -383,6 +383,7 @@ %%NLS%%%%DATADIR%%/translations/en_US.qm %%NLS%%%%DATADIR%%/translations/eo.qm %%NLS%%%%DATADIR%%/translations/es.qm +%%NLS%%%%DATADIR%%/translations/es_AR.qm %%NLS%%%%DATADIR%%/translations/et.qm %%NLS%%%%DATADIR%%/translations/et_EE.qm %%NLS%%%%DATADIR%%/translations/fi.qm From owner-svn-ports-all@freebsd.org Thu Jul 7 02:22:03 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 86B84B75C78; Thu, 7 Jul 2016 02:22:03 +0000 (UTC) (envelope-from danfe@freebsd.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) by mx1.freebsd.org (Postfix) with ESMTP id 7C71911BB; Thu, 7 Jul 2016 02:22:03 +0000 (UTC) (envelope-from danfe@freebsd.org) Received: by freefall.freebsd.org (Postfix, from userid 1033) id 7AEA31611; Thu, 7 Jul 2016 02:22:03 +0000 (UTC) Date: Thu, 7 Jul 2016 02:22:03 +0000 From: Alexey Dokuchaev To: Mathieu Arnold Cc: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: Re: svn commit: r418022 - in head/games/tuxtype: . files Message-ID: <20160707022203.GA12835@FreeBSD.org> References: <201607041324.u64DOQ1V005489@repo.freebsd.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <201607041324.u64DOQ1V005489@repo.freebsd.org> User-Agent: Mutt/1.6.1 (2016-04-27) X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 07 Jul 2016 02:22:03 -0000 On Mon, Jul 04, 2016 at 01:24:26PM +0000, Mathieu Arnold wrote: > New Revision: 418022 > URL: https://svnweb.freebsd.org/changeset/ports/418022 > > Log: > Update to 1.8.3. > > PR: 210792 > Submitted by: tkato432 yahoo com > Sponsored by: Absolight (Replying to one of the commits in this batch) Mathieu, These changes span well beyond "Update to 1.8.3." message. Could you please try a little harder and write sensible (complete) commit logs? It's really a PITA to browse the history when shitload of changes is described as being just an update. Thank you, ./danfe From owner-svn-ports-all@freebsd.org Thu Jul 7 02:34:53 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 51EB3B75F38; Thu, 7 Jul 2016 02:34:53 +0000 (UTC) (envelope-from vanilla@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 1EDC817A4; Thu, 7 Jul 2016 02:34:53 +0000 (UTC) (envelope-from vanilla@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u672YqQE016875; Thu, 7 Jul 2016 02:34:52 GMT (envelope-from vanilla@FreeBSD.org) Received: (from vanilla@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u672YqKb016873; Thu, 7 Jul 2016 02:34:52 GMT (envelope-from vanilla@FreeBSD.org) Message-Id: <201607070234.u672YqKb016873@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: vanilla set sender to vanilla@FreeBSD.org using -f From: "Vanilla I. Shu" Date: Thu, 7 Jul 2016 02:34:52 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418157 - head/chinese/bsdconv-opencc X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 07 Jul 2016 02:34:53 -0000 Author: vanilla Date: Thu Jul 7 02:34:51 2016 New Revision: 418157 URL: https://svnweb.freebsd.org/changeset/ports/418157 Log: Update to 11.5 PR: 210840 Submitted by: Iblis Lin Approved by: maintainer Modified: head/chinese/bsdconv-opencc/Makefile head/chinese/bsdconv-opencc/distinfo Modified: head/chinese/bsdconv-opencc/Makefile ============================================================================== --- head/chinese/bsdconv-opencc/Makefile Thu Jul 7 01:45:18 2016 (r418156) +++ head/chinese/bsdconv-opencc/Makefile Thu Jul 7 02:34:51 2016 (r418157) @@ -2,14 +2,14 @@ # $FreeBSD$ PORTNAME= opencc -PORTVERSION= 11.3 +PORTVERSION= 11.5 CATEGORIES= chinese converters PKGNAMEPREFIX= bsdconv- MAINTAINER= buganini@gmail.com COMMENT= OpenCC conversion module for bsdconv -LICENSE= ISCL +LICENSE= BSD2CLAUSE BUILD_DEPENDS= ${LOCALBASE}/bin/bsdconv-mktable:converters/bsdconv LIB_DEPENDS= libbsdconv.so:converters/bsdconv \ Modified: head/chinese/bsdconv-opencc/distinfo ============================================================================== --- head/chinese/bsdconv-opencc/distinfo Thu Jul 7 01:45:18 2016 (r418156) +++ head/chinese/bsdconv-opencc/distinfo Thu Jul 7 02:34:51 2016 (r418157) @@ -1,2 +1,3 @@ -SHA256 (buganini-bsdconv-opencc-11.3_GH0.tar.gz) = d4520a1c49b367cacee1aa4c370271f9dadd34705ccf822fdf00db9e96eb50e2 -SIZE (buganini-bsdconv-opencc-11.3_GH0.tar.gz) = 2973 +TIMESTAMP = 1467712452 +SHA256 (buganini-bsdconv-opencc-11.5_GH0.tar.gz) = f0207c66202f8d64f1a80ba920a47255c16694dc0e754c29d260cbba4175c4e0 +SIZE (buganini-bsdconv-opencc-11.5_GH0.tar.gz) = 3226 From owner-svn-ports-all@freebsd.org Thu Jul 7 03:27:42 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 887ACB75AE7; Thu, 7 Jul 2016 03:27:42 +0000 (UTC) (envelope-from stephen@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 482121EC7; Thu, 7 Jul 2016 03:27:42 +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 u673RfNb035855; Thu, 7 Jul 2016 03:27:41 GMT (envelope-from stephen@FreeBSD.org) Received: (from stephen@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u673Rfhu035853; Thu, 7 Jul 2016 03:27:41 GMT (envelope-from stephen@FreeBSD.org) Message-Id: <201607070327.u673Rfhu035853@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: stephen set sender to stephen@FreeBSD.org using -f From: Stephen Montgomery-Smith Date: Thu, 7 Jul 2016 03:27:41 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418158 - head/math/octave-forge-zeromq X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 07 Jul 2016 03:27:42 -0000 Author: stephen Date: Thu Jul 7 03:27:41 2016 New Revision: 418158 URL: https://svnweb.freebsd.org/changeset/ports/418158 Log: - Update to 1.2.1. Modified: head/math/octave-forge-zeromq/Makefile head/math/octave-forge-zeromq/distinfo Modified: head/math/octave-forge-zeromq/Makefile ============================================================================== --- head/math/octave-forge-zeromq/Makefile Thu Jul 7 02:34:51 2016 (r418157) +++ head/math/octave-forge-zeromq/Makefile Thu Jul 7 03:27:41 2016 (r418158) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= octave-forge-zeromq -PORTVERSION= 1.1.0 -PORTREVISION= 1 +PORTVERSION= 1.2.1 CATEGORIES= math MAINTAINER= stephen@FreeBSD.org Modified: head/math/octave-forge-zeromq/distinfo ============================================================================== --- head/math/octave-forge-zeromq/distinfo Thu Jul 7 02:34:51 2016 (r418157) +++ head/math/octave-forge-zeromq/distinfo Thu Jul 7 03:27:41 2016 (r418158) @@ -1,2 +1,3 @@ -SHA256 (octave-forge/zeromq-1.1.0.tar.gz) = 33fc872fd6c45d0d2b72a82c2f07f9fe300e0b21045adadf82aa03124a31a77f -SIZE (octave-forge/zeromq-1.1.0.tar.gz) = 59559 +TIMESTAMP = 1467861794 +SHA256 (octave-forge/zeromq-1.2.1.tar.gz) = a6df51500a2fec5842118934537a6040f1a95b0cb975e2fc693a17fafee3c07b +SIZE (octave-forge/zeromq-1.2.1.tar.gz) = 61215 From owner-svn-ports-all@freebsd.org Thu Jul 7 03:36:52 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 022D4B75D04; Thu, 7 Jul 2016 03:36:52 +0000 (UTC) (envelope-from lwhsu@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id C7B68156C; Thu, 7 Jul 2016 03:36:51 +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 u673aoaV039548; Thu, 7 Jul 2016 03:36:50 GMT (envelope-from lwhsu@FreeBSD.org) Received: (from lwhsu@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u673aoH0039547; Thu, 7 Jul 2016 03:36:50 GMT (envelope-from lwhsu@FreeBSD.org) Message-Id: <201607070336.u673aoH0039547@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: lwhsu set sender to lwhsu@FreeBSD.org using -f From: Li-Wen Hsu Date: Thu, 7 Jul 2016 03:36:50 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418159 - head/security/vuxml X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 07 Jul 2016 03:36:52 -0000 Author: lwhsu Date: Thu Jul 7 03:36:50 2016 New Revision: 418159 URL: https://svnweb.freebsd.org/changeset/ports/418159 Log: - Fix affected versions of qemu and qemu-devel Reviewed by: junovitch Modified: head/security/vuxml/vuln.xml Modified: head/security/vuxml/vuln.xml ============================================================================== --- head/security/vuxml/vuln.xml Thu Jul 7 03:27:41 2016 (r418158) +++ head/security/vuxml/vuln.xml Thu Jul 7 03:36:50 2016 (r418159) @@ -10697,7 +10697,7 @@ Notes: qemu qemu-devel - 0 + 2.5.50 qemu-sbruno @@ -10732,7 +10732,7 @@ Notes: 2015-12-28 2016-01-03 - 2016-02-13 + 2016-07-06 @@ -10742,7 +10742,7 @@ Notes: qemu qemu-devel - 2.5.0 + 2.5.50 qemu-sbruno @@ -10773,6 +10773,7 @@ Notes: 2015-11-19 2016-01-03 + 2016-07-06
@@ -10782,7 +10783,7 @@ Notes: qemu qemu-devel - 0 + 2.5.0 qemu-sbruno @@ -10815,7 +10816,7 @@ Notes: 2015-12-23 2016-01-03 - 2016-02-13 + 2016-07-06
@@ -10825,7 +10826,7 @@ Notes: qemu qemu-devel - 0 + 2.5.0 qemu-sbruno @@ -10857,7 +10858,7 @@ Notes: 2015-12-21 2016-01-03 - 2016-02-13 + 2016-07-06
@@ -10867,7 +10868,7 @@ Notes: qemu qemu-devel - 0 + 2.5.0 qemu-sbruno @@ -10900,7 +10901,7 @@ Notes: 2015-12-15 2016-01-03 - 2016-02-13 + 2016-07-06 @@ -10910,7 +10911,7 @@ Notes: qemu qemu-devel - 0 + 2.5.0 qemu-sbruno @@ -11093,7 +11094,7 @@ Notes: qemu qemu-devel - 0 + 2.5.50 qemu-sbruno @@ -11128,7 +11129,7 @@ Notes: 2015-10-16 2016-01-03 - 2016-02-13 + 2016-07-06 From owner-svn-ports-all@freebsd.org Thu Jul 7 05:01:35 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 85B59B756ED; Thu, 7 Jul 2016 05:01: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 mx1.freebsd.org (Postfix) with ESMTPS id 3D06C1E61; Thu, 7 Jul 2016 05:01: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 u6751YQZ068983; Thu, 7 Jul 2016 05:01:34 GMT (envelope-from pi@FreeBSD.org) Received: (from pi@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u6751Ykm068978; Thu, 7 Jul 2016 05:01:34 GMT (envelope-from pi@FreeBSD.org) Message-Id: <201607070501.u6751Ykm068978@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pi set sender to pi@FreeBSD.org using -f From: Kurt Jaeger Date: Thu, 7 Jul 2016 05:01:34 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418160 - in head/devel: . rubygem-schash X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 07 Jul 2016 05:01:35 -0000 Author: pi Date: Thu Jul 7 05:01:33 2016 New Revision: 418160 URL: https://svnweb.freebsd.org/changeset/ports/418160 Log: New port: devel/rubygem-schash Ruby hash validator WWW: https://github.com/itamae-kitchen/itamae PR: 210047 Submitted by: naito.yuichiro@gmail.com Added: head/devel/rubygem-schash/ head/devel/rubygem-schash/Makefile (contents, props changed) head/devel/rubygem-schash/distinfo (contents, props changed) head/devel/rubygem-schash/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Thu Jul 7 03:36:50 2016 (r418159) +++ head/devel/Makefile Thu Jul 7 05:01:33 2016 (r418160) @@ -5137,6 +5137,7 @@ SUBDIR += rubygem-runt SUBDIR += rubygem-ruport SUBDIR += rubygem-safe_yaml + SUBDIR += rubygem-schash SUBDIR += rubygem-sdoc SUBDIR += rubygem-semantic_puppet SUBDIR += rubygem-semi_semantic Added: head/devel/rubygem-schash/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/rubygem-schash/Makefile Thu Jul 7 05:01:33 2016 (r418160) @@ -0,0 +1,18 @@ +# Created by: Yuichiro NAITO +# $FreeBSD$ + +PORTNAME= schash +PORTVERSION= 0.1.2 +CATEGORIES= devel rubygems +MASTER_SITES= RG + +MAINTAINER= naito.yuichiro@gmail.com +COMMENT= Ruby hash validator + +LICENSE= MIT + +NO_ARCH= yes +USE_RUBY= yes +USES= gem + +.include Added: head/devel/rubygem-schash/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/rubygem-schash/distinfo Thu Jul 7 05:01:33 2016 (r418160) @@ -0,0 +1,2 @@ +SHA256 (rubygem/schash-0.1.2.gem) = 4da17d5c839f0ced08a5d8a2f306f4cccaa5f82c7b3c6e3cf17d5e5362174645 +SIZE (rubygem/schash-0.1.2.gem) = 8704 Added: head/devel/rubygem-schash/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/rubygem-schash/pkg-descr Thu Jul 7 05:01:33 2016 (r418160) @@ -0,0 +1,3 @@ +Ruby hash validator + +WWW: https://github.com/itamae-kitchen/itamae From owner-svn-ports-all@freebsd.org Thu Jul 7 05:04:20 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 3B511B758D3; Thu, 7 Jul 2016 05:04: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 mx1.freebsd.org (Postfix) with ESMTPS id EF3671397; Thu, 7 Jul 2016 05:04:19 +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 u6754Jht072509; Thu, 7 Jul 2016 05:04:19 GMT (envelope-from pi@FreeBSD.org) Received: (from pi@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u6754Iqj072501; Thu, 7 Jul 2016 05:04:18 GMT (envelope-from pi@FreeBSD.org) Message-Id: <201607070504.u6754Iqj072501@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pi set sender to pi@FreeBSD.org using -f From: Kurt Jaeger Date: Thu, 7 Jul 2016 05:04:18 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418161 - in head/sysutils: . rubygem-specinfra rubygem-specinfra/files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 07 Jul 2016 05:04:20 -0000 Author: pi Date: Thu Jul 7 05:04:18 2016 New Revision: 418161 URL: https://svnweb.freebsd.org/changeset/ports/418161 Log: New port: sysutils/rubygem-specinfra A test suit for server configration. WWW: https://github.com/mizzy/specinfra PR: 210047 Submitted by: Yuichiro NAITO Added: head/sysutils/rubygem-specinfra/ head/sysutils/rubygem-specinfra/Makefile (contents, props changed) head/sysutils/rubygem-specinfra/distinfo (contents, props changed) head/sysutils/rubygem-specinfra/files/ head/sysutils/rubygem-specinfra/files/patch-lib_specinfra_backend_exec.rb (contents, props changed) head/sysutils/rubygem-specinfra/files/patch-specinfra.gemspec (contents, props changed) head/sysutils/rubygem-specinfra/pkg-descr (contents, props changed) Modified: head/sysutils/Makefile Modified: head/sysutils/Makefile ============================================================================== --- head/sysutils/Makefile Thu Jul 7 05:01:33 2016 (r418160) +++ head/sysutils/Makefile Thu Jul 7 05:04:18 2016 (r418161) @@ -948,6 +948,7 @@ SUBDIR += rubygem-smart_proxy_dynflow SUBDIR += rubygem-smart_proxy_remote_execution_ssh SUBDIR += rubygem-smart_proxy_salt + SUBDIR += rubygem-specinfra SUBDIR += rubygem-sys-admin SUBDIR += rubygem-sys-cpu SUBDIR += rubygem-sys-filesystem Added: head/sysutils/rubygem-specinfra/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/rubygem-specinfra/Makefile Thu Jul 7 05:04:18 2016 (r418161) @@ -0,0 +1,22 @@ +# Created by: Yuichiro NAITO +# $FreeBSD$ + +PORTNAME= specinfra +PORTVERSION= 2.59.5 +CATEGORIES= sysutils rubygems +MASTER_SITES= RG + +MAINTAINER= naito.yuichiro@gmail.com +COMMENT= Test suite for server configuration + +LICENSE= MIT + +RUN_DEPENDS= \ + rubygem-net-scp>=0:security/rubygem-net-scp \ + rubygem-net-ssh>=2.7:security/rubygem-net-ssh + +NO_ARCH= yes +USE_RUBY= yes +USES= gem + +.include Added: head/sysutils/rubygem-specinfra/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/rubygem-specinfra/distinfo Thu Jul 7 05:04:18 2016 (r418161) @@ -0,0 +1,3 @@ +TIMESTAMP = 1467747152 +SHA256 (rubygem/specinfra-2.59.5.gem) = ed04dc01439156d67f5b359d270271938d40f9f8e8adfffddf49a06b1bcbea5d +SIZE (rubygem/specinfra-2.59.5.gem) = 79872 Added: head/sysutils/rubygem-specinfra/files/patch-lib_specinfra_backend_exec.rb ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/rubygem-specinfra/files/patch-lib_specinfra_backend_exec.rb Thu Jul 7 05:04:18 2016 (r418161) @@ -0,0 +1,10 @@ +--- lib/specinfra/backend/exec.rb.orig 2016-06-08 01:29:29 UTC ++++ lib/specinfra/backend/exec.rb +@@ -1,7 +1,6 @@ + require 'singleton' + require 'fileutils' + require 'shellwords' +-require 'sfl' + + module Specinfra + module Backend Added: head/sysutils/rubygem-specinfra/files/patch-specinfra.gemspec ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/rubygem-specinfra/files/patch-specinfra.gemspec Thu Jul 7 05:04:18 2016 (r418161) @@ -0,0 +1,29 @@ +--- specinfra.gemspec.orig 2016-07-06 07:27:32 UTC ++++ specinfra.gemspec +@@ -24,8 +24,6 @@ Gem::Specification.new do |s| + if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then + s.add_runtime_dependency(%q.freeze, [">= 0"]) + s.add_runtime_dependency(%q.freeze, ["< 4.0", ">= 2.7"]) +- s.add_runtime_dependency(%q.freeze, [">= 0"]) +- s.add_runtime_dependency(%q.freeze, [">= 0"]) + s.add_development_dependency(%q.freeze, ["~> 1.3"]) + s.add_development_dependency(%q.freeze, ["~> 10.1.1"]) + s.add_development_dependency(%q.freeze, [">= 0"]) +@@ -33,8 +31,6 @@ Gem::Specification.new do |s| + else + s.add_dependency(%q.freeze, [">= 0"]) + s.add_dependency(%q.freeze, ["< 4.0", ">= 2.7"]) +- s.add_dependency(%q.freeze, [">= 0"]) +- s.add_dependency(%q.freeze, [">= 0"]) + s.add_dependency(%q.freeze, ["~> 1.3"]) + s.add_dependency(%q.freeze, ["~> 10.1.1"]) + s.add_dependency(%q.freeze, [">= 0"]) +@@ -43,8 +39,6 @@ Gem::Specification.new do |s| + else + s.add_dependency(%q.freeze, [">= 0"]) + s.add_dependency(%q.freeze, ["< 4.0", ">= 2.7"]) +- s.add_dependency(%q.freeze, [">= 0"]) +- s.add_dependency(%q.freeze, [">= 0"]) + s.add_dependency(%q.freeze, ["~> 1.3"]) + s.add_dependency(%q.freeze, ["~> 10.1.1"]) + s.add_dependency(%q.freeze, [">= 0"]) Added: head/sysutils/rubygem-specinfra/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/rubygem-specinfra/pkg-descr Thu Jul 7 05:04:18 2016 (r418161) @@ -0,0 +1,3 @@ +A test suit for server configration. + +WWW: https://github.com/mizzy/specinfra From owner-svn-ports-all@freebsd.org Thu Jul 7 05:06:01 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id C3554B75A19; Thu, 7 Jul 2016 05:06:01 +0000 (UTC) (envelope-from pi@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 856BF1711; Thu, 7 Jul 2016 05:06:01 +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 u67560HX072793; Thu, 7 Jul 2016 05:06:00 GMT (envelope-from pi@FreeBSD.org) Received: (from pi@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u675604e072789; Thu, 7 Jul 2016 05:06:00 GMT (envelope-from pi@FreeBSD.org) Message-Id: <201607070506.u675604e072789@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pi set sender to pi@FreeBSD.org using -f From: Kurt Jaeger Date: Thu, 7 Jul 2016 05:06:00 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418162 - in head/sysutils: . rubygem-itamae X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 07 Jul 2016 05:06:01 -0000 Author: pi Date: Thu Jul 7 05:06:00 2016 New Revision: 418162 URL: https://svnweb.freebsd.org/changeset/ports/418162 Log: New port: sysutils/rubygem-itamae Simple and lightweight configuration management tool inspired by Chef. (Itamae means a chef in Japanese.) WWW: https://github.com/itamae-kitchen/itamae PR: 210047 Submitted by: Yuichiro NAITO Added: head/sysutils/rubygem-itamae/ head/sysutils/rubygem-itamae/Makefile (contents, props changed) head/sysutils/rubygem-itamae/distinfo (contents, props changed) head/sysutils/rubygem-itamae/pkg-descr (contents, props changed) Modified: head/sysutils/Makefile Modified: head/sysutils/Makefile ============================================================================== --- head/sysutils/Makefile Thu Jul 7 05:04:18 2016 (r418161) +++ head/sysutils/Makefile Thu Jul 7 05:06:00 2016 (r418162) @@ -931,6 +931,7 @@ SUBDIR += rubygem-hiera-file SUBDIR += rubygem-hiera1 SUBDIR += rubygem-hieracles + SUBDIR += rubygem-itamae SUBDIR += rubygem-librarian-puppet SUBDIR += rubygem-log4r SUBDIR += rubygem-logify Added: head/sysutils/rubygem-itamae/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/rubygem-itamae/Makefile Thu Jul 7 05:06:00 2016 (r418162) @@ -0,0 +1,27 @@ +# Created by: Yuichiro NAITO +# $FreeBSD$ + +PORTNAME= itamae +PORTVERSION= 1.9.6 +CATEGORIES= sysutils rubygems +MASTER_SITES= RG + +MAINTAINER= naito.yuichiro@gmail.com +COMMENT= Simple and lightweight configuration management tool + +LICENSE= MIT + +RUN_DEPENDS= \ + rubygem-thor>=0:devel/rubygem-thor \ + rubygem-specinfra>=2.37.0:sysutils/rubygem-specinfra \ + rubygem-hashie>=0:devel/rubygem-hashie \ + rubygem-ansi>=0:devel/rubygem-ansi \ + rubygem-schash>=0.1.0:devel/rubygem-schash + +NO_ARCH= yes +USE_RUBY= yes +USES= gem + +PLIST_FILES= bin/itamae + +.include Added: head/sysutils/rubygem-itamae/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/rubygem-itamae/distinfo Thu Jul 7 05:06:00 2016 (r418162) @@ -0,0 +1,2 @@ +SHA256 (rubygem/itamae-1.9.6.gem) = 890e3b5419b97f39798d44e87e5d88c191a35758a54d8ee3fae32bdeeaefc324 +SIZE (rubygem/itamae-1.9.6.gem) = 38400 Added: head/sysutils/rubygem-itamae/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/rubygem-itamae/pkg-descr Thu Jul 7 05:06:00 2016 (r418162) @@ -0,0 +1,4 @@ +Simple and lightweight configuration management tool inspired by Chef. +(Itamae means a chef in Japanese.) + +WWW: https://github.com/itamae-kitchen/itamae From owner-svn-ports-all@freebsd.org Thu Jul 7 05:12:01 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 17897B75C5A; Thu, 7 Jul 2016 05:12:01 +0000 (UTC) (envelope-from gordon@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id DC12B1B5E; Thu, 7 Jul 2016 05:12:00 +0000 (UTC) (envelope-from gordon@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u675C0x4076346; Thu, 7 Jul 2016 05:12:00 GMT (envelope-from gordon@FreeBSD.org) Received: (from gordon@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u675C0rl076342; Thu, 7 Jul 2016 05:12:00 GMT (envelope-from gordon@FreeBSD.org) Message-Id: <201607070512.u675C0rl076342@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: gordon set sender to gordon@FreeBSD.org using -f From: Gordon Tetlow Date: Thu, 7 Jul 2016 05:12:00 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418163 - head/devel/p4ftpd X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 07 Jul 2016 05:12:01 -0000 Author: gordon Date: Thu Jul 7 05:11:59 2016 New Revision: 418163 URL: https://svnweb.freebsd.org/changeset/ports/418163 Log: Update missed distinfo for devel/p4ftpd. Pointyhat to: gordon@ Modified: head/devel/p4ftpd/distinfo.freebsd100x86 Modified: head/devel/p4ftpd/distinfo.freebsd100x86 ============================================================================== --- head/devel/p4ftpd/distinfo.freebsd100x86 Thu Jul 7 05:06:00 2016 (r418162) +++ head/devel/p4ftpd/distinfo.freebsd100x86 Thu Jul 7 05:11:59 2016 (r418163) @@ -1,2 +1,3 @@ -SHA256 (perforce/2015.1.1384697/bin.freebsd100x86/p4ftpd) = ae68ed35dcce72afa2e50ae550c33d71b3afb792a803db1b585ed78f6db8024d -SIZE (perforce/2015.1.1384697/bin.freebsd100x86/p4ftpd) = 2582272 +TIMESTAMP = 1467868251 +SHA256 (perforce/2016.1.1387479/bin.freebsd100x86/p4ftpd) = 0b65a6d7e09d229a71bb3a47d51abda6daeadaeca098f59b8417653b5b194b3c +SIZE (perforce/2016.1.1387479/bin.freebsd100x86/p4ftpd) = 2633452 From owner-svn-ports-all@freebsd.org Thu Jul 7 06:51:27 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 62DCEB75C9F; Thu, 7 Jul 2016 06:51:27 +0000 (UTC) (envelope-from kevlo@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 26CEB126B; Thu, 7 Jul 2016 06:51:27 +0000 (UTC) (envelope-from kevlo@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u676pQbK013004; Thu, 7 Jul 2016 06:51:26 GMT (envelope-from kevlo@FreeBSD.org) Received: (from kevlo@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u676pPGd012998; Thu, 7 Jul 2016 06:51:25 GMT (envelope-from kevlo@FreeBSD.org) Message-Id: <201607070651.u676pPGd012998@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: kevlo set sender to kevlo@FreeBSD.org using -f From: Kevin Lo Date: Thu, 7 Jul 2016 06:51:25 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418164 - in head/sysutils/freefilesync: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 07 Jul 2016 06:51:27 -0000 Author: kevlo Date: Thu Jul 7 06:51:25 2016 New Revision: 418164 URL: https://svnweb.freebsd.org/changeset/ports/418164 Log: Update to 8.2 Modified: head/sysutils/freefilesync/Makefile head/sysutils/freefilesync/distinfo head/sysutils/freefilesync/files/patch-Makefile head/sysutils/freefilesync/files/patch-ui_version__check.cpp head/sysutils/freefilesync/pkg-plist Modified: head/sysutils/freefilesync/Makefile ============================================================================== --- head/sysutils/freefilesync/Makefile Thu Jul 7 05:11:59 2016 (r418163) +++ head/sysutils/freefilesync/Makefile Thu Jul 7 06:51:25 2016 (r418164) @@ -1,9 +1,9 @@ # $FreeBSD$ PORTNAME= freefilesync -PORTVERSION= 7.9 +PORTVERSION= 8.2 CATEGORIES= sysutils -MASTER_SITES= http://www.freefilesync.org/download/2o5osm21vcjbobv/ \ +MASTER_SITES= http://www.freefilesync.org/download/ \ http://www.freefilesync.org/archive/ DISTNAME= FreeFileSync_${PORTVERSION}_Source @@ -12,6 +12,8 @@ COMMENT= Backup software to synchronize LICENSE= GPLv3 +BROKEN_FreeBSD_9= does not build on FreeBSD < 10.x + BUILD_DEPENDS= ${LOCALBASE}/include/zenxml/xml.h:textproc/zenxml LIB_DEPENDS= libboost_system.so:devel/boost-libs \ libnotify.so:devel/libnotify Modified: head/sysutils/freefilesync/distinfo ============================================================================== --- head/sysutils/freefilesync/distinfo Thu Jul 7 05:11:59 2016 (r418163) +++ head/sysutils/freefilesync/distinfo Thu Jul 7 06:51:25 2016 (r418164) @@ -1,2 +1,3 @@ -SHA256 (FreeFileSync_7.9_Source.zip) = 68a80960b4ac5a0cef94e504a46ac97aa0c2a9be2e012a11b090621d1fd6dec1 -SIZE (FreeFileSync_7.9_Source.zip) = 2991263 +TIMESTAMP = 1467264390 +SHA256 (FreeFileSync_8.2_Source.zip) = 11ab0a8daf529ca43415d8a2cf91ad5f938fbf2674fdc9a82cb06a6e373479fc +SIZE (FreeFileSync_8.2_Source.zip) = 3012924 Modified: head/sysutils/freefilesync/files/patch-Makefile ============================================================================== --- head/sysutils/freefilesync/files/patch-Makefile Thu Jul 7 05:11:59 2016 (r418163) +++ head/sysutils/freefilesync/files/patch-Makefile Thu Jul 7 06:51:25 2016 (r418164) @@ -1,5 +1,5 @@ ---- Makefile.orig 2016-03-09 22:42:49.363968000 +0800 -+++ Makefile 2016-03-09 22:51:51.270475000 +0800 +--- Makefile.orig 2016-04-21 22:53:00.000000000 +0800 ++++ Makefile 2016-06-30 13:33:16.633078000 +0800 @@ -1,14 +1,14 @@ APPNAME = FreeFileSync -prefix = /usr @@ -11,14 +11,14 @@ CXXFLAGS = -std=c++14 -pipe -DWXINTL_NO_GETTEXT_MACRO -I../.. -I../../zenXml -include "zen/i18n.h" -include "zen/warn_static.h" -Wall \ --O3 -DNDEBUG `wx-config --cxxflags --debug=no` -DZEN_LINUX -pthread -+-DNDEBUG `${WX_CONFIG} --cxxflags --debug=no` -DZEN_LINUX -pthread ++-O3 -DNDEBUG `${WX_CONFIG} --cxxflags --debug=no` -DZEN_LINUX -pthread -LINKFLAGS = -s `wx-config --libs std, aui --debug=no` -lboost_thread -lboost_chrono -lboost_system -lz -pthread +LINKFLAGS = -s `${WX_CONFIG} --libs std, aui --debug=no` -lboost_thread -lboost_chrono -lboost_system -lz -pthread #Gtk - support recycler/icon loading/no button border/grid scrolling CXXFLAGS += `pkg-config --cflags gtk+-2.0` -@@ -96,10 +96,10 @@ +@@ -97,10 +97,10 @@ ../Obj/FFS_GCC_Make_Release/ffs/src/%.o : %.cpp mkdir -p $(dir $@) @@ -31,7 +31,7 @@ clean: rm -rf ../Obj/FFS_GCC_Make_Release -@@ -108,16 +108,12 @@ +@@ -109,7 +109,7 @@ install: mkdir -p $(BINDIR) @@ -40,10 +40,8 @@ mkdir -p $(APPSHAREDIR) cp -R ../Build/Languages/ \ - ../Build/Help/ \ -- ../Build/Sync_Complete.wav \ +@@ -120,6 +120,3 @@ ../Build/Resources.zip \ - ../Build/styles.gtk_rc \ $(APPSHAREDIR) - mkdir -p $(DOCSHAREDIR) Modified: head/sysutils/freefilesync/files/patch-ui_version__check.cpp ============================================================================== --- head/sysutils/freefilesync/files/patch-ui_version__check.cpp Thu Jul 7 05:11:59 2016 (r418163) +++ head/sysutils/freefilesync/files/patch-ui_version__check.cpp Thu Jul 7 06:51:25 2016 (r418164) @@ -1,23 +1,22 @@ ---- ui/version_check.cpp.orig 2016-03-09 02:07:44 UTC -+++ ui/version_check.cpp -@@ -112,17 +112,10 @@ std::string geHttpPostParameters() //mus +--- ui/version_check.cpp.orig 2016-06-30 13:33:44.614966000 +0800 ++++ ui/version_check.cpp 2016-06-30 13:36:17.540454000 +0800 +@@ -104,16 +104,10 @@ const auto osvMinor = getOsVersion().minor; #elif defined ZEN_LINUX -- params += "&os_name=Linux"; -- assert(std::this_thread::get_id() == mainThreadId); -- +- params.emplace_back("os_name", "Linux"); ++ params.emplace_back("os_name", "FreeBSD"); + - const wxLinuxDistributionInfo distribInfo = wxGetLinuxDistributionInfo(); - assert(contains(distribInfo.Release, L'.')); - std::vector digits = split(distribInfo.Release, L'.'); //e.g. "15.04" - digits.resize(2); - //distribInfo.Id //e.g. "Ubuntu" -+ params += "&os_name=FreeBSD"; - +- - const int osvMajor = stringTo(digits[0]); - const int osvMinor = stringTo(digits[1]); + const int osvMajor = 0; + const int osvMinor = 0; #elif defined ZEN_MAC - params += "&os_name=Mac"; + params.emplace_back("os_name", "Mac"); Modified: head/sysutils/freefilesync/pkg-plist ============================================================================== --- head/sysutils/freefilesync/pkg-plist Thu Jul 7 05:11:59 2016 (r418163) +++ head/sysutils/freefilesync/pkg-plist Thu Jul 7 06:51:25 2016 (r418164) @@ -9,12 +9,15 @@ share/FreeFileSync/chinese_traditional.l share/FreeFileSync/croatian.lng share/FreeFileSync/czech.lng share/FreeFileSync/danish.lng +share/FreeFileSync/ding.wav share/FreeFileSync/dutch.lng share/FreeFileSync/english_uk.lng share/FreeFileSync/finnish.lng share/FreeFileSync/french.lng share/FreeFileSync/german.lng +share/FreeFileSync/gong.wav share/FreeFileSync/greek.lng +share/FreeFileSync/harp.wav share/FreeFileSync/hebrew.lng share/FreeFileSync/hindi.lng share/FreeFileSync/html/base.css @@ -29,6 +32,7 @@ share/FreeFileSync/html/macros.html share/FreeFileSync/html/realtimesync.html share/FreeFileSync/html/run-as-service.html share/FreeFileSync/html/schedule-a-batch-job.html +share/FreeFileSync/html/synchronization-settings.html share/FreeFileSync/html/synchronize-with-sftp.html share/FreeFileSync/html/tips-and-tricks.html share/FreeFileSync/html/variable-drive-letters.html @@ -76,8 +80,10 @@ share/FreeFileSync/images/setup-batch-jo share/FreeFileSync/images/sftp-login.png share/FreeFileSync/images/show-thumbnails.png share/FreeFileSync/images/sync-settings-context.png +share/FreeFileSync/images/synchronization-settings.png share/FreeFileSync/images/synchronization-variant-double-click.png share/FreeFileSync/images/two-folder-drop.png +share/FreeFileSync/images/versioning.png share/FreeFileSync/images/view-filter-default.png share/FreeFileSync/images/windows-scheduler.png share/FreeFileSync/images/xp-scheduler.png @@ -86,16 +92,15 @@ share/FreeFileSync/japanese.lng share/FreeFileSync/korean.lng share/FreeFileSync/lithuanian.lng share/FreeFileSync/outdated/norwegian.lng -share/FreeFileSync/outdated/scottish_gaelic.lng share/FreeFileSync/polish.lng share/FreeFileSync/portuguese.lng share/FreeFileSync/portuguese_br.lng share/FreeFileSync/romanian.lng share/FreeFileSync/russian.lng share/FreeFileSync/serbian.lng +share/FreeFileSync/slovak.lng share/FreeFileSync/slovenian.lng share/FreeFileSync/spanish.lng -share/FreeFileSync/styles.gtk_rc share/FreeFileSync/swedish.lng share/FreeFileSync/turkish.lng share/FreeFileSync/ukrainian.lng From owner-svn-ports-all@freebsd.org Thu Jul 7 08:42:57 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 49299B76B08; Thu, 7 Jul 2016 08:42:57 +0000 (UTC) (envelope-from tijl@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 0034B1E17; Thu, 7 Jul 2016 08:42:56 +0000 (UTC) (envelope-from tijl@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u678gtJH053081; Thu, 7 Jul 2016 08:42:55 GMT (envelope-from tijl@FreeBSD.org) Received: (from tijl@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u678gtj9053080; Thu, 7 Jul 2016 08:42:55 GMT (envelope-from tijl@FreeBSD.org) Message-Id: <201607070842.u678gtj9053080@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tijl set sender to tijl@FreeBSD.org using -f From: Tijl Coosemans Date: Thu, 7 Jul 2016 08:42:55 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418165 - head/ftp/linux-c6-curl X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 07 Jul 2016 08:42:57 -0000 Author: tijl Date: Thu Jul 7 08:42:55 2016 New Revision: 418165 URL: https://svnweb.freebsd.org/changeset/ports/418165 Log: Remove unused pkg-descr. PR: 210875 Submitted by: Piotr Kubaj Deleted: head/ftp/linux-c6-curl/pkg-descr From owner-svn-ports-all@freebsd.org Thu Jul 7 08:46:14 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id C8244B76C5D; Thu, 7 Jul 2016 08:46:14 +0000 (UTC) (envelope-from bapt@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 9AEC31244; Thu, 7 Jul 2016 08:46:14 +0000 (UTC) (envelope-from bapt@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u678kDea053318; Thu, 7 Jul 2016 08:46:13 GMT (envelope-from bapt@FreeBSD.org) Received: (from bapt@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u678kD3b053317; Thu, 7 Jul 2016 08:46:13 GMT (envelope-from bapt@FreeBSD.org) Message-Id: <201607070846.u678kD3b053317@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: bapt set sender to bapt@FreeBSD.org using -f From: Baptiste Daroussin Date: Thu, 7 Jul 2016 08:46:13 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418166 - head/x11/xcb-util-xrm X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 07 Jul 2016 08:46:14 -0000 Author: bapt Date: Thu Jul 7 08:46:13 2016 New Revision: 418166 URL: https://svnweb.freebsd.org/changeset/ports/418166 Log: Fix .pc path Reported by: Herbert J. Skuhra Pointyhat to: bapt Modified: head/x11/xcb-util-xrm/Makefile Modified: head/x11/xcb-util-xrm/Makefile ============================================================================== --- head/x11/xcb-util-xrm/Makefile Thu Jul 7 08:42:55 2016 (r418165) +++ head/x11/xcb-util-xrm/Makefile Thu Jul 7 08:46:13 2016 (r418166) @@ -14,10 +14,13 @@ LICENSE_FILE= ${WRKSRC}/COPYING LIB_DEPENDS= libxcb-util.so:x11/xcb-util -USES= libtool pathfix pkgconfig tar:bzip2 +USES= libtool pkgconfig tar:bzip2 INSTALL_TARGET= install-strip GNU_CONFIGURE= yes USE_XORG= xcb USE_LDCONFIG= yes +post-patch: + @${REINPLACE_CMD} -e "s,/pkgconfig,data/pkgconfig,g" ${WRKSRC}/configure + .include From owner-svn-ports-all@freebsd.org Thu Jul 7 09:00:09 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 6D4BFB76FF3; Thu, 7 Jul 2016 09:00:09 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 3A07E19B8; Thu, 7 Jul 2016 09:00:09 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u67908DD057159; Thu, 7 Jul 2016 09:00:08 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u67908l8057158; Thu, 7 Jul 2016 09:00:08 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201607070900.u67908l8057158@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Thu, 7 Jul 2016 09:00:08 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418167 - head/net/radiusd-cistron X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 07 Jul 2016 09:00:09 -0000 Author: amdmi3 Date: Thu Jul 7 09:00:08 2016 New Revision: 418167 URL: https://svnweb.freebsd.org/changeset/ports/418167 Log: - Switch to options helpers - Add LICENSE Modified: head/net/radiusd-cistron/Makefile Modified: head/net/radiusd-cistron/Makefile ============================================================================== --- head/net/radiusd-cistron/Makefile Thu Jul 7 08:46:13 2016 (r418166) +++ head/net/radiusd-cistron/Makefile Thu Jul 7 09:00:08 2016 (r418167) @@ -10,13 +10,15 @@ MASTER_SITES= ftp://ftp.radius.cistron.n MAINTAINER= ports@FreeBSD.org COMMENT= RADIUS-compliant remote authentication and accounting server +LICENSE= GPLv2+ + CONFLICTS?= freeradius-0.* gnu-radius-1.* openradius-0.* USES= shebangfix SHEBANG_FILES= src/checkrad.pl MAKEFILE= Makefile.BSD RADIUS_DIR= ${PREFIX}/etc/raddb -MAKE_ENV+= RADIUS_DIR="${RADIUS_DIR}" DESTROOT="${STAGEDIR}" +MAKE_ENV= RADIUS_DIR="${RADIUS_DIR}" DESTROOT="${STAGEDIR}" BUILD_WRKSRC= ${WRKSRC}/src INSTALL_WRKSRC= ${WRKSRC}/src MAKE_JOBS_UNSAFE= yes @@ -26,13 +28,15 @@ DOCFILES= COPYRIGHT INSTALL doc/ChangeLo doc/README.cisco doc/README.pam doc/README.proxy \ doc/README.simul doc/README.usersfile -OPTIONS_DEFINE= PAM DOCS +OPTIONS_DEFINE= PAM DOCS # PAM is used in pkg-plist OPTIONS_DEFAULT=PAM OPTIONS_SUB= yes post-install: - ${MKDIR} ${STAGEDIR}${DOCSDIR} + @${MKDIR} ${STAGEDIR}/var/log/radacct + +post-install-DOCS-on: + @${MKDIR} ${STAGEDIR}${DOCSDIR} ${INSTALL_DATA} ${DOCFILES:S,^,${WRKSRC}/,} ${STAGEDIR}${DOCSDIR} - ${MKDIR} ${STAGEDIR}/var/log/radacct .include From owner-svn-ports-all@freebsd.org Thu Jul 7 10:50:17 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 16F05B75A6B; Thu, 7 Jul 2016 10:50:17 +0000 (UTC) (envelope-from olgeni@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id E0E3F1B35; Thu, 7 Jul 2016 10:50:16 +0000 (UTC) (envelope-from olgeni@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u67AoG5w098021; Thu, 7 Jul 2016 10:50:16 GMT (envelope-from olgeni@FreeBSD.org) Received: (from olgeni@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u67AoFM6098017; Thu, 7 Jul 2016 10:50:15 GMT (envelope-from olgeni@FreeBSD.org) Message-Id: <201607071050.u67AoFM6098017@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: olgeni set sender to olgeni@FreeBSD.org using -f From: Jimmy Olgeni Date: Thu, 7 Jul 2016 10:50:15 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418168 - head/net/rabbitmq X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 07 Jul 2016 10:50:17 -0000 Author: olgeni Date: Thu Jul 7 10:50:15 2016 New Revision: 418168 URL: https://svnweb.freebsd.org/changeset/ports/418168 Log: Update net/rabbitmq version 3.6.3. Modified: head/net/rabbitmq/Makefile head/net/rabbitmq/distinfo head/net/rabbitmq/pkg-plist Modified: head/net/rabbitmq/Makefile ============================================================================== --- head/net/rabbitmq/Makefile Thu Jul 7 09:00:08 2016 (r418167) +++ head/net/rabbitmq/Makefile Thu Jul 7 10:50:15 2016 (r418168) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= rabbitmq -PORTVERSION= 3.6.2 +PORTVERSION= 3.6.3 CATEGORIES= net MASTER_SITES= http://www.rabbitmq.com/releases/rabbitmq-server/v${PORTVERSION}/ DISTNAME= ${PORTNAME}-server-${PORTVERSION} Modified: head/net/rabbitmq/distinfo ============================================================================== --- head/net/rabbitmq/distinfo Thu Jul 7 09:00:08 2016 (r418167) +++ head/net/rabbitmq/distinfo Thu Jul 7 10:50:15 2016 (r418168) @@ -1,3 +1,3 @@ -TIMESTAMP = 1463730606 -SHA256 (rabbitmq-server-3.6.2.tar.xz) = b09eadd91244115e50856d1423e4659e46313f1545c69b434021e1afa1b60216 -SIZE (rabbitmq-server-3.6.2.tar.xz) = 2937204 +TIMESTAMP = 1467881933 +SHA256 (rabbitmq-server-3.6.3.tar.xz) = 053b22ab1cdfddf1d3975f16d22a182d0bab673ab1b4a88f7a390f0b2a47648f +SIZE (rabbitmq-server-3.6.3.tar.xz) = 3027212 Modified: head/net/rabbitmq/pkg-plist ============================================================================== --- head/net/rabbitmq/pkg-plist Thu Jul 7 09:00:08 2016 (r418167) +++ head/net/rabbitmq/pkg-plist Thu Jul 7 10:50:15 2016 (r418168) @@ -135,6 +135,7 @@ lib/erlang/lib/rabbitmq_server-%%VERSION lib/erlang/lib/rabbitmq_server-%%VERSION%%/ebin/worker_pool_sup.beam lib/erlang/lib/rabbitmq_server-%%VERSION%%/ebin/worker_pool_worker.beam lib/erlang/lib/rabbitmq_server-%%VERSION%%/include/gm_specs.hrl +lib/erlang/lib/rabbitmq_server-%%VERSION%%/include/old_builtin_types.hrl lib/erlang/lib/rabbitmq_server-%%VERSION%%/include/rabbit.hrl lib/erlang/lib/rabbitmq_server-%%VERSION%%/include/rabbit_cli.hrl lib/erlang/lib/rabbitmq_server-%%VERSION%%/include/rabbit_framing.hrl @@ -153,6 +154,7 @@ lib/erlang/lib/rabbitmq_server-%%VERSION lib/erlang/lib/rabbitmq_server-%%VERSION%%/plugins/rabbitmq_event_exchange-%%VERSION%%.ez lib/erlang/lib/rabbitmq_server-%%VERSION%%/plugins/rabbitmq_federation-%%VERSION%%.ez lib/erlang/lib/rabbitmq_server-%%VERSION%%/plugins/rabbitmq_federation_management-%%VERSION%%.ez +lib/erlang/lib/rabbitmq_server-%%VERSION%%/plugins/rabbitmq_jms_topic_exchange-%%VERSION%%.ez lib/erlang/lib/rabbitmq_server-%%VERSION%%/plugins/rabbitmq_management-%%VERSION%%.ez lib/erlang/lib/rabbitmq_server-%%VERSION%%/plugins/rabbitmq_management_agent-%%VERSION%%.ez lib/erlang/lib/rabbitmq_server-%%VERSION%%/plugins/rabbitmq_management_visualiser-%%VERSION%%.ez @@ -162,7 +164,9 @@ lib/erlang/lib/rabbitmq_server-%%VERSION lib/erlang/lib/rabbitmq_server-%%VERSION%%/plugins/rabbitmq_shovel-%%VERSION%%.ez lib/erlang/lib/rabbitmq_server-%%VERSION%%/plugins/rabbitmq_shovel_management-%%VERSION%%.ez lib/erlang/lib/rabbitmq_server-%%VERSION%%/plugins/rabbitmq_stomp-%%VERSION%%.ez +lib/erlang/lib/rabbitmq_server-%%VERSION%%/plugins/rabbitmq_top-%%VERSION%%.ez lib/erlang/lib/rabbitmq_server-%%VERSION%%/plugins/rabbitmq_tracing-%%VERSION%%.ez +lib/erlang/lib/rabbitmq_server-%%VERSION%%/plugins/rabbitmq_trust_store-%%VERSION%%.ez lib/erlang/lib/rabbitmq_server-%%VERSION%%/plugins/rabbitmq_web_dispatch-%%VERSION%%.ez lib/erlang/lib/rabbitmq_server-%%VERSION%%/plugins/rabbitmq_web_stomp-%%VERSION%%.ez lib/erlang/lib/rabbitmq_server-%%VERSION%%/plugins/rabbitmq_web_stomp_examples-%%VERSION%%.ez From owner-svn-ports-all@freebsd.org Thu Jul 7 11:17:53 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id AED1AB7615B; Thu, 7 Jul 2016 11:17:53 +0000 (UTC) (envelope-from bapt@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 5F1E017DD; Thu, 7 Jul 2016 11:17:53 +0000 (UTC) (envelope-from bapt@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u67BHqGh009073; Thu, 7 Jul 2016 11:17:52 GMT (envelope-from bapt@FreeBSD.org) Received: (from bapt@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u67BHqt0009071; Thu, 7 Jul 2016 11:17:52 GMT (envelope-from bapt@FreeBSD.org) Message-Id: <201607071117.u67BHqt0009071@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: bapt set sender to bapt@FreeBSD.org using -f From: Baptiste Daroussin Date: Thu, 7 Jul 2016 11:17:52 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418169 - head/textproc/en-hunspell X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 07 Jul 2016 11:17:53 -0000 Author: bapt Date: Thu Jul 7 11:17:52 2016 New Revision: 418169 URL: https://svnweb.freebsd.org/changeset/ports/418169 Log: Update to 2016.06.26 Modified: head/textproc/en-hunspell/Makefile head/textproc/en-hunspell/distinfo Modified: head/textproc/en-hunspell/Makefile ============================================================================== --- head/textproc/en-hunspell/Makefile Thu Jul 7 10:50:15 2016 (r418168) +++ head/textproc/en-hunspell/Makefile Thu Jul 7 11:17:52 2016 (r418169) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= hunspell -PORTVERSION= 2016.01.19 +PORTVERSION= 2016.06.26 CATEGORIES= textproc MASTER_SITES= SF/wordlist/speller/${PORTVERSION}/ PKGNAMEPREFIX= en- Modified: head/textproc/en-hunspell/distinfo ============================================================================== --- head/textproc/en-hunspell/distinfo Thu Jul 7 10:50:15 2016 (r418168) +++ head/textproc/en-hunspell/distinfo Thu Jul 7 11:17:52 2016 (r418169) @@ -1,14 +1,7 @@ -SHA256 (hunspell/hunspell-en_CA-2016.01.19.zip) = f59b120b43ab444ee33e018a6416f3be70f867a928956fe4a1750245fd57a341 -SIZE (hunspell/hunspell-en_CA-2016.01.19.zip) = 196294 -SHA256 (hunspell/hunspell-en_CA-large-2016.01.19.zip) = 04fd5dcfdca048e18640a1d420077473ab105431fc14ebe307bda452732abf6c -SIZE (hunspell/hunspell-en_CA-large-2016.01.19.zip) = 312039 -SHA256 (hunspell/hunspell-en_GB-ise-2016.01.19.zip) = d17486b550fa22e2da31f647daceec84ab6354289b99d5088e12f63d88a9a027 -SIZE (hunspell/hunspell-en_GB-ise-2016.01.19.zip) = 196436 -SHA256 (hunspell/hunspell-en_GB-ize-2016.01.19.zip) = 52804f35c1dc44adabaf86fc0316181c2bed28c857880fa624aea248a23d677f -SIZE (hunspell/hunspell-en_GB-ize-2016.01.19.zip) = 196388 -SHA256 (hunspell/hunspell-en_GB-large-2016.01.19.zip) = edcca9b78ae8923e6209db523355b4a91ac6d9daad94df12413498b4e5069719 -SIZE (hunspell/hunspell-en_GB-large-2016.01.19.zip) = 314577 -SHA256 (hunspell/hunspell-en_US-2016.01.19.zip) = fe0c48084bfd534f244ecd12836ae5e0b27fc10dab28879fdafece892267a674 -SIZE (hunspell/hunspell-en_US-2016.01.19.zip) = 195799 -SHA256 (hunspell/hunspell-en_US-large-2016.01.19.zip) = 1c8a7a5a993313620a7d96e74e5c45f4df7ab9ad0141764ffeea66db9bfc089f -SIZE (hunspell/hunspell-en_US-large-2016.01.19.zip) = 310556 +TIMESTAMP = 1467890198 +SHA256 (hunspell/hunspell-en_US-2016.06.26.zip) = fd3827f91a609a4e9d3d0dbcf4b1d450667af26d15199de4812eeb88304dcd3f +SIZE (hunspell/hunspell-en_US-2016.06.26.zip) = 196039 +SHA256 (hunspell/hunspell-en_CA-2016.06.26.zip) = 5ea189fe8159d16b4acdf1a2fef5a27fb62a3c861c62555a995c4b056a9c766a +SIZE (hunspell/hunspell-en_CA-2016.06.26.zip) = 196542 +SHA256 (hunspell/hunspell-en_GB-ise-2016.06.26.zip) = f6d78e0be076efca0de0dff4e97c3cfd0872367a4cea0cc2ce6ade20de689e2a +SIZE (hunspell/hunspell-en_GB-ise-2016.06.26.zip) = 196673 From owner-svn-ports-all@freebsd.org Thu Jul 7 11:18:54 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 97453B761AA; Thu, 7 Jul 2016 11:18:54 +0000 (UTC) (envelope-from bapt@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 69C9918E7; Thu, 7 Jul 2016 11:18:54 +0000 (UTC) (envelope-from bapt@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u67BIrLf009215; Thu, 7 Jul 2016 11:18:53 GMT (envelope-from bapt@FreeBSD.org) Received: (from bapt@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u67BIrwb009213; Thu, 7 Jul 2016 11:18:53 GMT (envelope-from bapt@FreeBSD.org) Message-Id: <201607071118.u67BIrwb009213@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: bapt set sender to bapt@FreeBSD.org using -f From: Baptiste Daroussin Date: Thu, 7 Jul 2016 11:18:53 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418170 - head/portuguese/hunspell X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 07 Jul 2016 11:18:54 -0000 Author: bapt Date: Thu Jul 7 11:18:53 2016 New Revision: 418170 URL: https://svnweb.freebsd.org/changeset/ports/418170 Log: Update to 20160624 Modified: head/portuguese/hunspell/Makefile head/portuguese/hunspell/distinfo Modified: head/portuguese/hunspell/Makefile ============================================================================== --- head/portuguese/hunspell/Makefile Thu Jul 7 11:17:52 2016 (r418169) +++ head/portuguese/hunspell/Makefile Thu Jul 7 11:18:53 2016 (r418170) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= hunspell -PORTVERSION= 20160206 +PORTVERSION= 20160624 CATEGORIES= portuguese textproc MASTER_SITES= http://natura.di.uminho.pt/download/sources/Dictionaries/hunspell/:PT \ http://www.broffice.org/files/:BR \ Modified: head/portuguese/hunspell/distinfo ============================================================================== --- head/portuguese/hunspell/distinfo Thu Jul 7 11:17:52 2016 (r418169) +++ head/portuguese/hunspell/distinfo Thu Jul 7 11:18:53 2016 (r418170) @@ -1,4 +1,5 @@ -SHA256 (hunspell/hunspell-pt_PT-20160206.tar.gz) = 3135586d42bffa71905071282f46cf18b3bfa45662d71ba7b6d2d8ee7aebd652 -SIZE (hunspell/hunspell-pt_PT-20160206.tar.gz) = 255803 +TIMESTAMP = 1467890312 +SHA256 (hunspell/hunspell-pt_PT-20160624.tar.gz) = d0711975be8fd3241e8f090dc68e42b9ad5146d3f4cabea88520f3cbcfdfea61 +SIZE (hunspell/hunspell-pt_PT-20160624.tar.gz) = 255846 SHA256 (hunspell/pt_BR-2012-06-09AOC.zip) = 883d616f2f302a34802e8a60e17c2d6d292c9d125022c0f79ab4a60870c73f4f SIZE (hunspell/pt_BR-2012-06-09AOC.zip) = 1362087 From owner-svn-ports-all@freebsd.org Thu Jul 7 11:27:15 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 120F0B762DA; Thu, 7 Jul 2016 11:27:15 +0000 (UTC) (envelope-from bapt@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id D342B1CBE; Thu, 7 Jul 2016 11:27:14 +0000 (UTC) (envelope-from bapt@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u67BRDxK012867; Thu, 7 Jul 2016 11:27:13 GMT (envelope-from bapt@FreeBSD.org) Received: (from bapt@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u67BRDIZ012865; Thu, 7 Jul 2016 11:27:13 GMT (envelope-from bapt@FreeBSD.org) Message-Id: <201607071127.u67BRDIZ012865@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: bapt set sender to bapt@FreeBSD.org using -f From: Baptiste Daroussin Date: Thu, 7 Jul 2016 11:27:13 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418171 - head/textproc/libebml X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 07 Jul 2016 11:27:15 -0000 Author: bapt Date: Thu Jul 7 11:27:13 2016 New Revision: 418171 URL: https://svnweb.freebsd.org/changeset/ports/418171 Log: Update to 1.3.4 Modified: head/textproc/libebml/Makefile head/textproc/libebml/distinfo Modified: head/textproc/libebml/Makefile ============================================================================== --- head/textproc/libebml/Makefile Thu Jul 7 11:18:53 2016 (r418170) +++ head/textproc/libebml/Makefile Thu Jul 7 11:27:13 2016 (r418171) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= libebml -PORTVERSION= 1.3.3 +PORTVERSION= 1.3.4 CATEGORIES= textproc MASTER_SITES= http://dl.matroska.org/downloads/libebml/ \ http://www.bunkus.org/videotools/mkvtoolnix/sources/ Modified: head/textproc/libebml/distinfo ============================================================================== --- head/textproc/libebml/distinfo Thu Jul 7 11:18:53 2016 (r418170) +++ head/textproc/libebml/distinfo Thu Jul 7 11:27:13 2016 (r418171) @@ -1,2 +1,3 @@ -SHA256 (libebml-1.3.3.tar.bz2) = 35fb44daa41961f94a0ac1b8f06801e88cc9bf2ad6f562ced8ab7c1f1a875499 -SIZE (libebml-1.3.3.tar.bz2) = 588607 +TIMESTAMP = 1467890644 +SHA256 (libebml-1.3.4.tar.bz2) = c50d3ecf133742c6549c0669c3873f968e11a365a5ba17b2f4dc339bbe51f387 +SIZE (libebml-1.3.4.tar.bz2) = 606205 From owner-svn-ports-all@freebsd.org Thu Jul 7 11:30:09 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 48919B7632B; Thu, 7 Jul 2016 11:30:09 +0000 (UTC) (envelope-from bapt@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 120EC1DC7; Thu, 7 Jul 2016 11:30:09 +0000 (UTC) (envelope-from bapt@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u67BU86n013116; Thu, 7 Jul 2016 11:30:08 GMT (envelope-from bapt@FreeBSD.org) Received: (from bapt@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u67BU8pk013113; Thu, 7 Jul 2016 11:30:08 GMT (envelope-from bapt@FreeBSD.org) Message-Id: <201607071130.u67BU8pk013113@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: bapt set sender to bapt@FreeBSD.org using -f From: Baptiste Daroussin Date: Thu, 7 Jul 2016 11:30:08 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418172 - head/textproc/libmwaw03 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 07 Jul 2016 11:30:09 -0000 Author: bapt Date: Thu Jul 7 11:30:07 2016 New Revision: 418172 URL: https://svnweb.freebsd.org/changeset/ports/418172 Log: Update to 0.3.8 Modified: head/textproc/libmwaw03/Makefile head/textproc/libmwaw03/distinfo head/textproc/libmwaw03/pkg-plist Modified: head/textproc/libmwaw03/Makefile ============================================================================== --- head/textproc/libmwaw03/Makefile Thu Jul 7 11:27:13 2016 (r418171) +++ head/textproc/libmwaw03/Makefile Thu Jul 7 11:30:07 2016 (r418172) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= libmwaw -PORTVERSION= 0.3.7 +PORTVERSION= 0.3.8 CATEGORIES= textproc MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/${PORTNAME}-${PORTVERSION} PKGNAMESUFFIX= 03 Modified: head/textproc/libmwaw03/distinfo ============================================================================== --- head/textproc/libmwaw03/distinfo Thu Jul 7 11:27:13 2016 (r418171) +++ head/textproc/libmwaw03/distinfo Thu Jul 7 11:30:07 2016 (r418172) @@ -1,2 +1,3 @@ -SHA256 (libmwaw-0.3.7.tar.xz) = 057611e871c279a28fcbede78dda11e500b9d5b341ab7064d6dce470f6fee8f9 -SIZE (libmwaw-0.3.7.tar.xz) = 1167156 +TIMESTAMP = 1467890393 +SHA256 (libmwaw-0.3.8.tar.xz) = 6afcbb250b6bed042149cd4dfb3ba7b4be796b11fe2322dfcdebd121199a3b05 +SIZE (libmwaw-0.3.8.tar.xz) = 1200052 Modified: head/textproc/libmwaw03/pkg-plist ============================================================================== --- head/textproc/libmwaw03/pkg-plist Thu Jul 7 11:27:13 2016 (r418171) +++ head/textproc/libmwaw03/pkg-plist Thu Jul 7 11:30:07 2016 (r418172) @@ -9,5 +9,5 @@ include/libmwaw-0.3/libmwaw/MWAWDocument include/libmwaw-0.3/libmwaw/libmwaw.hxx lib/libmwaw-0.3.so lib/libmwaw-0.3.so.3 -lib/libmwaw-0.3.so.3.0.7 +lib/libmwaw-0.3.so.3.0.8 libdata/pkgconfig/libmwaw-0.3.pc From owner-svn-ports-all@freebsd.org Thu Jul 7 11:31:18 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 3E7DCB76390; Thu, 7 Jul 2016 11:31:18 +0000 (UTC) (envelope-from bapt@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 07C2C1F43; Thu, 7 Jul 2016 11:31:17 +0000 (UTC) (envelope-from bapt@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u67BVHWD013856; Thu, 7 Jul 2016 11:31:17 GMT (envelope-from bapt@FreeBSD.org) Received: (from bapt@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u67BVHS6013854; Thu, 7 Jul 2016 11:31:17 GMT (envelope-from bapt@FreeBSD.org) Message-Id: <201607071131.u67BVHS6013854@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: bapt set sender to bapt@FreeBSD.org using -f From: Baptiste Daroussin Date: Thu, 7 Jul 2016 11:31:17 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418173 - head/multimedia/libmatroska X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 07 Jul 2016 11:31:18 -0000 Author: bapt Date: Thu Jul 7 11:31:16 2016 New Revision: 418173 URL: https://svnweb.freebsd.org/changeset/ports/418173 Log: Update to 1.4.5 Remove dependency on gmake Modified: head/multimedia/libmatroska/Makefile head/multimedia/libmatroska/distinfo Modified: head/multimedia/libmatroska/Makefile ============================================================================== --- head/multimedia/libmatroska/Makefile Thu Jul 7 11:30:07 2016 (r418172) +++ head/multimedia/libmatroska/Makefile Thu Jul 7 11:31:16 2016 (r418173) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= libmatroska -PORTVERSION= 1.4.4 +PORTVERSION= 1.4.5 CATEGORIES= multimedia audio MASTER_SITES= http://dl.matroska.org/downloads/libmatroska/ \ http://www.bunkus.org/videotools/mkvtoolnix/sources/ @@ -14,7 +14,7 @@ LICENSE= LGPL21 LIB_DEPENDS= libebml.so:textproc/libebml -USES= gmake libtool pathfix pkgconfig tar:bzip2 +USES= libtool pathfix pkgconfig tar:bzip2 USE_LDCONFIG= yes GNU_CONFIGURE= yes Modified: head/multimedia/libmatroska/distinfo ============================================================================== --- head/multimedia/libmatroska/distinfo Thu Jul 7 11:30:07 2016 (r418172) +++ head/multimedia/libmatroska/distinfo Thu Jul 7 11:31:16 2016 (r418173) @@ -1,2 +1,3 @@ -SHA256 (libmatroska-1.4.4.tar.bz2) = d3efaa9f6d3964351a05bea0f848a8d5dc570e4791f179816ce9a93730296bd7 -SIZE (libmatroska-1.4.4.tar.bz2) = 604396 +TIMESTAMP = 1467890856 +SHA256 (libmatroska-1.4.5.tar.bz2) = 79023fa46901e5562b27d93a9dd168278fa101361d7fd11a35e84e58e11557bc +SIZE (libmatroska-1.4.5.tar.bz2) = 612987 From owner-svn-ports-all@freebsd.org Thu Jul 7 11:35:05 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 1FA46B765AF; Thu, 7 Jul 2016 11:35:05 +0000 (UTC) (envelope-from olgeni@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id EB65013F0; Thu, 7 Jul 2016 11:35:04 +0000 (UTC) (envelope-from olgeni@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u67BZ4IX016756; Thu, 7 Jul 2016 11:35:04 GMT (envelope-from olgeni@FreeBSD.org) Received: (from olgeni@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u67BZ339016753; Thu, 7 Jul 2016 11:35:03 GMT (envelope-from olgeni@FreeBSD.org) Message-Id: <201607071135.u67BZ339016753@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: olgeni set sender to olgeni@FreeBSD.org using -f From: Jimmy Olgeni Date: Thu, 7 Jul 2016 11:35:03 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418174 - head/textproc/elixir-earmark X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 07 Jul 2016 11:35:05 -0000 Author: olgeni Date: Thu Jul 7 11:35:03 2016 New Revision: 418174 URL: https://svnweb.freebsd.org/changeset/ports/418174 Log: Update textproc/elixir-earmark version 1.0. Modified: head/textproc/elixir-earmark/Makefile head/textproc/elixir-earmark/distinfo head/textproc/elixir-earmark/pkg-plist Modified: head/textproc/elixir-earmark/Makefile ============================================================================== --- head/textproc/elixir-earmark/Makefile Thu Jul 7 11:31:16 2016 (r418173) +++ head/textproc/elixir-earmark/Makefile Thu Jul 7 11:35:03 2016 (r418174) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= earmark -PORTVERSION= 0.2.0 +PORTVERSION= 1.0 DISTVERSIONPREFIX= v CATEGORIES= textproc PKGNAMEPREFIX= elixir- Modified: head/textproc/elixir-earmark/distinfo ============================================================================== --- head/textproc/elixir-earmark/distinfo Thu Jul 7 11:31:16 2016 (r418173) +++ head/textproc/elixir-earmark/distinfo Thu Jul 7 11:35:03 2016 (r418174) @@ -1,2 +1,3 @@ -SHA256 (pragdave-earmark-v0.2.0_GH0.tar.gz) = 08184cd163e1bbf1567f69b7791f402cdff5dee19ca2f431e991ba066eebd33a -SIZE (pragdave-earmark-v0.2.0_GH0.tar.gz) = 55491 +TIMESTAMP = 1467889505 +SHA256 (pragdave-earmark-v1.0_GH0.tar.gz) = 880ca846d3014bd95487766d78567ab25d8b49e1eb6b325d54974180c1cd1eb6 +SIZE (pragdave-earmark-v1.0_GH0.tar.gz) = 67845 Modified: head/textproc/elixir-earmark/pkg-plist ============================================================================== --- head/textproc/elixir-earmark/pkg-plist Thu Jul 7 11:31:16 2016 (r418173) +++ head/textproc/elixir-earmark/pkg-plist Thu Jul 7 11:35:03 2016 (r418174) @@ -15,6 +15,9 @@ lib/elixir/lib/earmark/ebin/Elixir.Earma lib/elixir/lib/earmark/ebin/Elixir.Earmark.Block.beam lib/elixir/lib/earmark/ebin/Elixir.Earmark.CLI.beam lib/elixir/lib/earmark/ebin/Elixir.Earmark.Context.beam +lib/elixir/lib/earmark/ebin/Elixir.Earmark.Helpers.LineHelpers.beam +lib/elixir/lib/earmark/ebin/Elixir.Earmark.Helpers.LookaheadHelpers.beam +lib/elixir/lib/earmark/ebin/Elixir.Earmark.Helpers.StringHelpers.beam lib/elixir/lib/earmark/ebin/Elixir.Earmark.Helpers.beam lib/elixir/lib/earmark/ebin/Elixir.Earmark.HtmlRenderer.EarmarkError.beam lib/elixir/lib/earmark/ebin/Elixir.Earmark.HtmlRenderer.beam @@ -39,15 +42,38 @@ lib/elixir/lib/earmark/ebin/Elixir.Earma lib/elixir/lib/earmark/ebin/Elixir.Earmark.Line.beam lib/elixir/lib/earmark/ebin/Elixir.Earmark.Options.beam lib/elixir/lib/earmark/ebin/Elixir.Earmark.Parser.beam +lib/elixir/lib/earmark/ebin/Elixir.Earmark.Scanner.Backtix.beam +lib/elixir/lib/earmark/ebin/Elixir.Earmark.Scanner.Blockquote.beam +lib/elixir/lib/earmark/ebin/Elixir.Earmark.Scanner.CodeFence.beam +lib/elixir/lib/earmark/ebin/Elixir.Earmark.Scanner.Headline.beam +lib/elixir/lib/earmark/ebin/Elixir.Earmark.Scanner.IdClose.beam +lib/elixir/lib/earmark/ebin/Elixir.Earmark.Scanner.IdOpen.beam +lib/elixir/lib/earmark/ebin/Elixir.Earmark.Scanner.Indent.beam +lib/elixir/lib/earmark/ebin/Elixir.Earmark.Scanner.ListItem.beam +lib/elixir/lib/earmark/ebin/Elixir.Earmark.Scanner.RulerFat.beam +lib/elixir/lib/earmark/ebin/Elixir.Earmark.Scanner.RulerMedium.beam +lib/elixir/lib/earmark/ebin/Elixir.Earmark.Scanner.RulerThin.beam +lib/elixir/lib/earmark/ebin/Elixir.Earmark.Scanner.Text.beam +lib/elixir/lib/earmark/ebin/Elixir.Earmark.Scanner.UnderHeadline.beam +lib/elixir/lib/earmark/ebin/Elixir.Earmark.Scanner.beam +lib/elixir/lib/earmark/ebin/Elixir.Earmark.Types.beam lib/elixir/lib/earmark/ebin/Elixir.Earmark.beam lib/elixir/lib/earmark/ebin/earmark.app +lib/elixir/lib/earmark/ebin/string_lexer.beam lib/elixir/lib/earmark/lib/earmark.ex +lib/elixir/lib/earmark/lib/earmark/alt_parser.ex lib/elixir/lib/earmark/lib/earmark/block.ex lib/elixir/lib/earmark/lib/earmark/cli.ex lib/elixir/lib/earmark/lib/earmark/context.ex lib/elixir/lib/earmark/lib/earmark/helpers.ex +lib/elixir/lib/earmark/lib/earmark/helpers/line_helpers.ex +lib/elixir/lib/earmark/lib/earmark/helpers/lookahead_helpers.ex +lib/elixir/lib/earmark/lib/earmark/helpers/string_helpers.ex lib/elixir/lib/earmark/lib/earmark/html_renderer.ex lib/elixir/lib/earmark/lib/earmark/inline.ex lib/elixir/lib/earmark/lib/earmark/line.ex +lib/elixir/lib/earmark/lib/earmark/options.ex lib/elixir/lib/earmark/lib/earmark/parser.ex +lib/elixir/lib/earmark/lib/earmark/scanner.ex +lib/elixir/lib/earmark/lib/earmark/types.ex %%PORTDOCS%%%%DOCSDIR%%/README.md From owner-svn-ports-all@freebsd.org Thu Jul 7 11:35:39 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 7B5A1B765F8; Thu, 7 Jul 2016 11:35:39 +0000 (UTC) (envelope-from olgeni@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 34F05152C; Thu, 7 Jul 2016 11:35:39 +0000 (UTC) (envelope-from olgeni@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u67BZcHN016903; Thu, 7 Jul 2016 11:35:38 GMT (envelope-from olgeni@FreeBSD.org) Received: (from olgeni@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u67BZcVX016899; Thu, 7 Jul 2016 11:35:38 GMT (envelope-from olgeni@FreeBSD.org) Message-Id: <201607071135.u67BZcVX016899@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: olgeni set sender to olgeni@FreeBSD.org using -f From: Jimmy Olgeni Date: Thu, 7 Jul 2016 11:35:38 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418175 - in head/devel/erlang-cuttlefish: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 07 Jul 2016 11:35:39 -0000 Author: olgeni Date: Thu Jul 7 11:35:38 2016 New Revision: 418175 URL: https://svnweb.freebsd.org/changeset/ports/418175 Log: Update devel/erlang-cuttlefish version 2.0.7. Modified: head/devel/erlang-cuttlefish/Makefile head/devel/erlang-cuttlefish/distinfo head/devel/erlang-cuttlefish/files/patch-rebar.config Modified: head/devel/erlang-cuttlefish/Makefile ============================================================================== --- head/devel/erlang-cuttlefish/Makefile Thu Jul 7 11:35:03 2016 (r418174) +++ head/devel/erlang-cuttlefish/Makefile Thu Jul 7 11:35:38 2016 (r418175) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= cuttlefish -PORTVERSION= 2.0.6 +PORTVERSION= 2.0.7 CATEGORIES= devel PKGNAMEPREFIX= erlang- Modified: head/devel/erlang-cuttlefish/distinfo ============================================================================== --- head/devel/erlang-cuttlefish/distinfo Thu Jul 7 11:35:03 2016 (r418174) +++ head/devel/erlang-cuttlefish/distinfo Thu Jul 7 11:35:38 2016 (r418175) @@ -1,2 +1,3 @@ -SHA256 (basho-cuttlefish-2.0.6_GH0.tar.gz) = ca869b6dd34ca2b9dae84ce648a2734323466c25c505836e812eb73d79a7115b -SIZE (basho-cuttlefish-2.0.6_GH0.tar.gz) = 231470 +TIMESTAMP = 1467889276 +SHA256 (basho-cuttlefish-2.0.7_GH0.tar.gz) = 366fdc16f709d5c8f3d513b0a67ce889272a60afe95359938b5b21eb0ec9fdc0 +SIZE (basho-cuttlefish-2.0.7_GH0.tar.gz) = 231460 Modified: head/devel/erlang-cuttlefish/files/patch-rebar.config ============================================================================== --- head/devel/erlang-cuttlefish/files/patch-rebar.config Thu Jul 7 11:35:03 2016 (r418174) +++ head/devel/erlang-cuttlefish/files/patch-rebar.config Thu Jul 7 11:35:38 2016 (r418175) @@ -1,11 +1,11 @@ ---- rebar.config.orig 2015-10-14 03:13:59 UTC +--- rebar.config.orig 2016-07-07 11:03:52 UTC +++ rebar.config @@ -12,9 +12,6 @@ {xref_queries, [{"(XC - UC) || (XU - X - B - \"(rebar.*|mustache)\" : Mod)", []}]}. {deps, [ - {getopt, ".*", {git, "git://github.com/jcomellas/getopt.git", {tag, "v0.8.2"}}}, -- {lager, "(2.0|2.1|2.2).*", {git, "git://github.com/basho/lager.git", {tag, "2.2.0"}}}, +- {lager, "(2.0|2.1|2.2).*", {git, "git://github.com/basho/lager.git", {tag, "2.2.3"}}}, - {neotoma, "1.7.3", {git, "git://github.com/seancribbs/neotoma.git", {tag, "1.7.3"}}} ]}. From owner-svn-ports-all@freebsd.org Thu Jul 7 11:36:04 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 119F1B7662D; Thu, 7 Jul 2016 11:36:04 +0000 (UTC) (envelope-from olgeni@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id BD88E1623; Thu, 7 Jul 2016 11:36:03 +0000 (UTC) (envelope-from olgeni@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u67Ba21R017058; Thu, 7 Jul 2016 11:36:02 GMT (envelope-from olgeni@FreeBSD.org) Received: (from olgeni@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u67Ba2M2017054; Thu, 7 Jul 2016 11:36:02 GMT (envelope-from olgeni@FreeBSD.org) Message-Id: <201607071136.u67Ba2M2017054@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: olgeni set sender to olgeni@FreeBSD.org using -f From: Jimmy Olgeni Date: Thu, 7 Jul 2016 11:36:02 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418176 - in head/devel/erlang-clique: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 07 Jul 2016 11:36:04 -0000 Author: olgeni Date: Thu Jul 7 11:36:02 2016 New Revision: 418176 URL: https://svnweb.freebsd.org/changeset/ports/418176 Log: Update devel/erlang-clique version 0.3.6. Modified: head/devel/erlang-clique/Makefile head/devel/erlang-clique/distinfo head/devel/erlang-clique/files/patch-rebar.config Modified: head/devel/erlang-clique/Makefile ============================================================================== --- head/devel/erlang-clique/Makefile Thu Jul 7 11:35:38 2016 (r418175) +++ head/devel/erlang-clique/Makefile Thu Jul 7 11:36:02 2016 (r418176) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= clique -PORTVERSION= 0.3.5 +PORTVERSION= 0.3.6 CATEGORIES= devel PKGNAMEPREFIX= erlang- Modified: head/devel/erlang-clique/distinfo ============================================================================== --- head/devel/erlang-clique/distinfo Thu Jul 7 11:35:38 2016 (r418175) +++ head/devel/erlang-clique/distinfo Thu Jul 7 11:36:02 2016 (r418176) @@ -1,2 +1,3 @@ -SHA256 (basho-clique-0.3.5_GH0.tar.gz) = 11ec104f2410485c9710781ee307a68f4849cf89be88bc8de172902502080cd6 -SIZE (basho-clique-0.3.5_GH0.tar.gz) = 179470 +TIMESTAMP = 1467888733 +SHA256 (basho-clique-0.3.6_GH0.tar.gz) = a5eb9cb6ab6f270b44ddf0d474164e3f80e97d90a5d17188998af872ea969246 +SIZE (basho-clique-0.3.6_GH0.tar.gz) = 179469 Modified: head/devel/erlang-clique/files/patch-rebar.config ============================================================================== --- head/devel/erlang-clique/files/patch-rebar.config Thu Jul 7 11:35:38 2016 (r418175) +++ head/devel/erlang-clique/files/patch-rebar.config Thu Jul 7 11:36:02 2016 (r418176) @@ -1,8 +1,8 @@ ---- rebar.config.orig 2015-10-22 18:25:14 UTC +--- rebar.config.orig 2016-07-07 11:00:51 UTC +++ rebar.config @@ -12,5 +12,4 @@ ]}. {deps, [ -- {cuttlefish, ".*", {git, "git://github.com/basho/cuttlefish.git", {tag, "2.0.5"}}} +- {cuttlefish, ".*", {git, "git://github.com/basho/cuttlefish.git", {tag, "2.0.7"}}} ]}. From owner-svn-ports-all@freebsd.org Thu Jul 7 11:38:38 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id DEE50B766C1; Thu, 7 Jul 2016 11:38:38 +0000 (UTC) (envelope-from bapt@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id ABDFB173E; Thu, 7 Jul 2016 11:38:38 +0000 (UTC) (envelope-from bapt@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u67BcbED017239; Thu, 7 Jul 2016 11:38:37 GMT (envelope-from bapt@FreeBSD.org) Received: (from bapt@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u67BcbXQ017238; Thu, 7 Jul 2016 11:38:37 GMT (envelope-from bapt@FreeBSD.org) Message-Id: <201607071138.u67BcbXQ017238@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: bapt set sender to bapt@FreeBSD.org using -f From: Baptiste Daroussin Date: Thu, 7 Jul 2016 11:38:37 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418177 - head/multimedia/linux-realplayer X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 07 Jul 2016 11:38:39 -0000 Author: bapt Date: Thu Jul 7 11:38:37 2016 New Revision: 418177 URL: https://svnweb.freebsd.org/changeset/ports/418177 Log: Deprecate RealPlayer it has security issues, is not maintained anymore and better alternative are available Modified: head/multimedia/linux-realplayer/Makefile Modified: head/multimedia/linux-realplayer/Makefile ============================================================================== --- head/multimedia/linux-realplayer/Makefile Thu Jul 7 11:36:02 2016 (r418176) +++ head/multimedia/linux-realplayer/Makefile Thu Jul 7 11:38:37 2016 (r418177) @@ -23,6 +23,9 @@ LICENSE_NAME= Helix DNA Technology Binar LICENSE_FILE= ${WRKSRC}/LICENSE LICENSE_PERMS= auto-accept +DEPRECATED= Not maintained upstream, better alternative are available +EXPIRATION_DATE= 2016-08-07 + WRKSRC= ${WRKDIR}/usr/local/RealPlayer ONLY_FOR_ARCHS= i386 amd64 USES= webplugin:linux From owner-svn-ports-all@freebsd.org Thu Jul 7 11:43:13 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 0F9AFB76844; Thu, 7 Jul 2016 11:43:13 +0000 (UTC) (envelope-from bapt@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id D07051B16; Thu, 7 Jul 2016 11:43:12 +0000 (UTC) (envelope-from bapt@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u67BhBms020823; Thu, 7 Jul 2016 11:43:11 GMT (envelope-from bapt@FreeBSD.org) Received: (from bapt@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u67BhBmp020822; Thu, 7 Jul 2016 11:43:11 GMT (envelope-from bapt@FreeBSD.org) Message-Id: <201607071143.u67BhBmp020822@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: bapt set sender to bapt@FreeBSD.org using -f From: Baptiste Daroussin Date: Thu, 7 Jul 2016 11:43:11 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418178 - head/multimedia/linux-realplayer X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 07 Jul 2016 11:43:13 -0000 Author: bapt Date: Thu Jul 7 11:43:11 2016 New Revision: 418178 URL: https://svnweb.freebsd.org/changeset/ports/418178 Log: Clearly say in the deprecation message it containes security issues Modified: head/multimedia/linux-realplayer/Makefile Modified: head/multimedia/linux-realplayer/Makefile ============================================================================== --- head/multimedia/linux-realplayer/Makefile Thu Jul 7 11:38:37 2016 (r418177) +++ head/multimedia/linux-realplayer/Makefile Thu Jul 7 11:43:11 2016 (r418178) @@ -23,7 +23,7 @@ LICENSE_NAME= Helix DNA Technology Binar LICENSE_FILE= ${WRKSRC}/LICENSE LICENSE_PERMS= auto-accept -DEPRECATED= Not maintained upstream, better alternative are available +DEPRECATED= Not maintained upstream, contains security issues EXPIRATION_DATE= 2016-08-07 WRKSRC= ${WRKDIR}/usr/local/RealPlayer From owner-svn-ports-all@freebsd.org Thu Jul 7 11:43:46 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 3B0A4B7687A; Thu, 7 Jul 2016 11:43:46 +0000 (UTC) (envelope-from bapt@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 07DD61C1A; Thu, 7 Jul 2016 11:43:45 +0000 (UTC) (envelope-from bapt@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u67BhjRQ020940; Thu, 7 Jul 2016 11:43:45 GMT (envelope-from bapt@FreeBSD.org) Received: (from bapt@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u67BhjgD020939; Thu, 7 Jul 2016 11:43:45 GMT (envelope-from bapt@FreeBSD.org) Message-Id: <201607071143.u67BhjgD020939@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: bapt set sender to bapt@FreeBSD.org using -f From: Baptiste Daroussin Date: Thu, 7 Jul 2016 11:43:45 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418179 - head/multimedia/linux-xmovie X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 07 Jul 2016 11:43:46 -0000 Author: bapt Date: Thu Jul 7 11:43:44 2016 New Revision: 418179 URL: https://svnweb.freebsd.org/changeset/ports/418179 Log: Deprecate: abandonware containing security issues Better alternative are available Modified: head/multimedia/linux-xmovie/Makefile Modified: head/multimedia/linux-xmovie/Makefile ============================================================================== --- head/multimedia/linux-xmovie/Makefile Thu Jul 7 11:43:11 2016 (r418178) +++ head/multimedia/linux-xmovie/Makefile Thu Jul 7 11:43:44 2016 (r418179) @@ -12,6 +12,9 @@ EXTRACT_SUFX= .i386.rpm MAINTAINER= multimedia@FreeBSD.org COMMENT= Movie player for AVI, MPEG-2/4, and MOV movies +DEPRECATED= Not maintained upstream, contains security issues +EXPIRATION_DATE= 2016-08-07 + ONLY_FOR_ARCHS= i386 amd64 USE_LINUX= yes USE_LINUX_APPS= xorglibs From owner-svn-ports-all@freebsd.org Thu Jul 7 11:50:27 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 54CC1B769B5; Thu, 7 Jul 2016 11:50:27 +0000 (UTC) (envelope-from baptiste.daroussin@gmail.com) Received: from mail-wm0-x231.google.com (mail-wm0-x231.google.com [IPv6:2a00:1450:400c:c09::231]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id EDFCA1DCE; Thu, 7 Jul 2016 11:50:26 +0000 (UTC) (envelope-from baptiste.daroussin@gmail.com) Received: by mail-wm0-x231.google.com with SMTP id a66so28683982wme.0; Thu, 07 Jul 2016 04:50:26 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=sender:date:from:to:cc:subject:message-id:references:mime-version :content-disposition:in-reply-to:user-agent; bh=nAW+pbMHhs3MMz9xqZ0lU6qVuQrGwu/ucK0w3mDdZMo=; b=tipagI6Byiqw8WSrSqyBXBnzOy6HJ5mZDcfdLpK74bS7Y+jBzDMz/vWvtQqolgmBZd iZdLp2t94bBE36NrdTi6pugh7XkoBiv6GhqUq1caR9rIWgF/+XWkWPqMBdI/VXyjQ4Wx I+xvfcxUQlOki1F8y/hX2LfsYWtHKQZPzTYRgZnFgQajGYZq8hAJ0xxBrsb6tM2QpyWI 2l4/7hW2u2wzGjzhh7nS2AtQogxIww2MmNzsHLKn/eqSsq9QKHbthq2LPSa0HwuolUsi NU/EubO/J+lOKZm7gr29ggm5vWVmJwNLdLBgd+OUI5ykOwzkP0vjjBEllc37Xvc/zN6y pv3g== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:sender:date:from:to:cc:subject:message-id :references:mime-version:content-disposition:in-reply-to:user-agent; bh=nAW+pbMHhs3MMz9xqZ0lU6qVuQrGwu/ucK0w3mDdZMo=; b=AHz1rjTpzna8GFqRnGFeJEHOEjGWr6frwwf8o+H4LrXpv6Qvk8CnabitNkLD3PneIp BdlKyAuvetkwJfObN/0alcNn5kXtnOr/f3ARfIGvGQ6EVuK8HSbtNiFRIsTK/JOkGtVT DCesjKSbR9VP4YMJH6SFCna4c8GEuNH4jAmdKdNOn0wNSKgSL+Ub11Ym5VIxBelBvljq wV16sBUi2Q7tfzu+xNIQakGIOPdTITyPMooxEbq9ZSqzsYmf/XFU90Oqi3krCR6keoqc n/rleyikfievEoiTZ2B7XX5oMMBLSEMnQR5yaHGL0bICJ0XB8sHNlyutFhT8VjClG97Q zkXw== X-Gm-Message-State: ALyK8tKFZcA3DCacvdYViltnLxyX0KOSbNLOVvCNWk9dDXYYLTdrrgkU555uw79xkqfdQg== X-Received: by 10.194.192.38 with SMTP id hd6mr23908931wjc.129.1467892225098; Thu, 07 Jul 2016 04:50:25 -0700 (PDT) Received: from ivaldir.etoilebsd.net ([2001:41d0:8:db4c::1]) by smtp.gmail.com with ESMTPSA id b2sm3200800wjy.1.2016.07.07.04.50.24 (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Thu, 07 Jul 2016 04:50:24 -0700 (PDT) Sender: Baptiste Daroussin Date: Thu, 7 Jul 2016 13:50:23 +0200 From: Baptiste Daroussin To: Cy Schubert Cc: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: Re: svn commit: r418116 - head/net/vnc Message-ID: <20160707115023.tqmy6h3lwppyulgr@ivaldir.etoilebsd.net> References: <201607060435.u664ZHok025868@repo.freebsd.org> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha256; protocol="application/pgp-signature"; boundary="pa3hk4ttdo4p3bmb" Content-Disposition: inline In-Reply-To: <201607060435.u664ZHok025868@repo.freebsd.org> User-Agent: Mutt/1.6.1-neo (2016-06-11) X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 07 Jul 2016 11:50:27 -0000 --pa3hk4ttdo4p3bmb Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Wed, Jul 06, 2016 at 04:35:17AM +0000, Cy Schubert wrote: > Author: cy > Date: Wed Jul 6 04:35:17 2016 > New Revision: 418116 > URL: https://svnweb.freebsd.org/changeset/ports/418116 >=20 > Log: > Rehost distfiles, making them fetchable again. >=20 > Modified: > head/net/vnc/Makefile >=20 > Modified: head/net/vnc/Makefile > =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D > --- head/net/vnc/Makefile Wed Jul 6 00:39:12 2016 (r418115) > +++ head/net/vnc/Makefile Wed Jul 6 04:35:17 2016 (r418116) > @@ -5,9 +5,10 @@ PORTNAME=3D vnc > PORTVERSION=3D 4.1.3 > PORTREVISION=3D 10 > CATEGORIES=3D net ipv6 > -MASTER_SITES=3D http://home.bluelife.at/ports/distfiles/${DIST_SUBDIR}/:= vnc > +MASTER_SITES=3D http://www.cschubert.com/distfiles/xc/ \ > + http://people.freebsd.org/~cy/distfiles/xc/ > DISTNAME=3D vnc-4_1_3-unixsrc > -DISTFILES=3D ${DISTNAME}${EXTRACT_SUFX}:vnc > +DISTFILES=3D ${DISTNAME}${EXTRACT_SUFX} > DIST_SUBDIR=3D xc > =20 > MAINTAINER=3D cy@FreeBSD.org > @@ -42,10 +43,9 @@ BROKEN=3D Does not compile on arm > .endif > =20 > .if ${PORT_OPTIONS:MSERVER} > -MASTER_SITES+=3D XORG/4.3.0/:x > -DISTFILES+=3D X430src-1.tgz:x \ > - X430src-2.tgz:x \ > - X430src-3.tgz:x > +DISTFILES+=3D X430src-1.tgz \ > + X430src-2.tgz \ > + X430src-3.tgz > =20 FTR: my concern about keeping that software around is X 4.3.0 is pretty old, lots of security issues has been found and fixed since, no idea how many of= them are applicable to the code used by the vnc server here. But I just feel unconfortable with that... I may be too paranoid Bapt --pa3hk4ttdo4p3bmb Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- Version: GnuPG v2 iQIcBAEBCAAGBQJXfkH/AAoJEGOJi9zxtz5alvQQAOdTAqAV8ahGKOpIvXB9SCyQ U25rqREGUUgRDJCPyGlsipHfornQeoJtDuyWa7XNWMfuCzAbihy60ml2y3xMjGvC czS7nbW/1G4mzMntn4IwjNAMx7hrnCzyY6s3txAjfqUBeRfv/tFQjsbOa3M48tNd TRJ3FHWvKcXoeia4qLdqUkzWoIMGoE5O8Li6UVtwT9xgc88wtl5biogGpeDsKJeK 1XyLX2yWx6nRk/WWRD3Iz9dxVBkAuTdZI/zpLuM8L5Dh74zpUq/C/PdwkPJxhI/R Ay2TbYCkN//BX5NESjpn2XR7iTdI+LXkXWZFUyWwCKPRQJ5+hX3HSe/3PWzLXiFi Cop+4tAPUwkYCxPr3H8o4TjwLNbVONaUBCmebUt2vCfJPnrLkDpQeTqvayyx+BEC lxRiJ6lIgr5MiFwi6OYq6NJBiHwVvuKiBZoPINAb0XRUa+xF+PBU58j3CA/SHixD ByNrSg0HpHcumC5wcxgt9Rf+WJ04RHBgKVpm+pd+q591kw5HdKOO+/yCxlxMgAWa 27ZDPrW4BsDvi6Ns0mx5hkDqiQLywEVCO90PKjKm0xoIjaLCR1uLegx0MoIOwWRe lOKzWAgipG4gizqTpzjKEorvaOqrBg+OeOAvkXDnNB2UNz58ppbC7e/HfH2U6AF3 CHU8u6DvLk7XCNaqE6yk =4jcx -----END PGP SIGNATURE----- --pa3hk4ttdo4p3bmb-- From owner-svn-ports-all@freebsd.org Thu Jul 7 12:44:51 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 65595B80E72; Thu, 7 Jul 2016 12:44:51 +0000 (UTC) (envelope-from gahr@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 317FC1AE0; Thu, 7 Jul 2016 12:44:51 +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 u67CioI9043261; Thu, 7 Jul 2016 12:44:50 GMT (envelope-from gahr@FreeBSD.org) Received: (from gahr@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u67Cioap043259; Thu, 7 Jul 2016 12:44:50 GMT (envelope-from gahr@FreeBSD.org) Message-Id: <201607071244.u67Cioap043259@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: gahr set sender to gahr@FreeBSD.org using -f From: Pietro Cerutti Date: Thu, 7 Jul 2016 12:44:50 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418180 - head/databases/speedtables X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 07 Jul 2016 12:44:51 -0000 Author: gahr Date: Thu Jul 7 12:44:50 2016 New Revision: 418180 URL: https://svnweb.freebsd.org/changeset/ports/418180 Log: databases/speedtables: update to 1.10.0 Modified: head/databases/speedtables/Makefile head/databases/speedtables/distinfo Modified: head/databases/speedtables/Makefile ============================================================================== --- head/databases/speedtables/Makefile Thu Jul 7 11:43:44 2016 (r418179) +++ head/databases/speedtables/Makefile Thu Jul 7 12:44:50 2016 (r418180) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= speedtables -PORTVERSION= 1.9.4 +PORTVERSION= 1.10.0 DISTVERSIONPREFIX= v CATEGORIES= databases Modified: head/databases/speedtables/distinfo ============================================================================== --- head/databases/speedtables/distinfo Thu Jul 7 11:43:44 2016 (r418179) +++ head/databases/speedtables/distinfo Thu Jul 7 12:44:50 2016 (r418180) @@ -1,3 +1,3 @@ -TIMESTAMP = 1467363301 -SHA256 (flightaware-speedtables-v1.9.4_GH0.tar.gz) = a788fdc3c55f478438790cf31c6dd9117209ab266fb3220c26aa74187cf40559 -SIZE (flightaware-speedtables-v1.9.4_GH0.tar.gz) = 710757 +TIMESTAMP = 1467891263 +SHA256 (flightaware-speedtables-v1.10.0_GH0.tar.gz) = fd89a9fb10d24f9e52d81d9a7a9709647e91626a0f4532132b0ea3c54dc44033 +SIZE (flightaware-speedtables-v1.10.0_GH0.tar.gz) = 712376 From owner-svn-ports-all@freebsd.org Thu Jul 7 13:29:46 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id E0E6AB21BFE; Thu, 7 Jul 2016 13:29:46 +0000 (UTC) (envelope-from pi@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id B1FF612FF; Thu, 7 Jul 2016 13:29:46 +0000 (UTC) (envelope-from pi@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u67DTjHX058098; Thu, 7 Jul 2016 13:29:45 GMT (envelope-from pi@FreeBSD.org) Received: (from pi@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u67DTjtx058096; Thu, 7 Jul 2016 13:29:45 GMT (envelope-from pi@FreeBSD.org) Message-Id: <201607071329.u67DTjtx058096@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pi set sender to pi@FreeBSD.org using -f From: Kurt Jaeger Date: Thu, 7 Jul 2016 13:29:45 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418181 - head/devel/lfcbase X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 07 Jul 2016 13:29:47 -0000 Author: pi Date: Thu Jul 7 13:29:45 2016 New Revision: 418181 URL: https://svnweb.freebsd.org/changeset/ports/418181 Log: devel/lfcbase: 1.8.3 -> 1.8.4 - mproved exception handling in class Chain for type conversion methods Submitted by: Bjoern Lemke Modified: head/devel/lfcbase/Makefile head/devel/lfcbase/distinfo Modified: head/devel/lfcbase/Makefile ============================================================================== --- head/devel/lfcbase/Makefile Thu Jul 7 12:44:50 2016 (r418180) +++ head/devel/lfcbase/Makefile Thu Jul 7 13:29:45 2016 (r418181) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= lfcbase -PORTVERSION= 1.8.3 +PORTVERSION= 1.8.4 CATEGORIES= devel MASTER_SITES= http://www.lemke-it.com/ Modified: head/devel/lfcbase/distinfo ============================================================================== --- head/devel/lfcbase/distinfo Thu Jul 7 12:44:50 2016 (r418180) +++ head/devel/lfcbase/distinfo Thu Jul 7 13:29:45 2016 (r418181) @@ -1,3 +1,3 @@ -TIMESTAMP = 1463386125 -SHA256 (lfcbase-1.8.3.tar.gz) = 21c71e140fd38e45400859d210710222ff66ed905892279fd32ae44c58d1afdd -SIZE (lfcbase-1.8.3.tar.gz) = 606926 +TIMESTAMP = 1467897922 +SHA256 (lfcbase-1.8.4.tar.gz) = 6e4167f7b0b7968ec596efcc8c6f6f0f203cf95353234bcd07a414a7e60a4dc7 +SIZE (lfcbase-1.8.4.tar.gz) = 607009 From owner-svn-ports-all@freebsd.org Thu Jul 7 13:30:55 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 4AF59B21CAC; Thu, 7 Jul 2016 13:30: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 mx1.freebsd.org (Postfix) with ESMTPS id 1AB5814E4; Thu, 7 Jul 2016 13:30: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 u67DUsFx060430; Thu, 7 Jul 2016 13:30:54 GMT (envelope-from pi@FreeBSD.org) Received: (from pi@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u67DUsAB060428; Thu, 7 Jul 2016 13:30:54 GMT (envelope-from pi@FreeBSD.org) Message-Id: <201607071330.u67DUsAB060428@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pi set sender to pi@FreeBSD.org using -f From: Kurt Jaeger Date: Thu, 7 Jul 2016 13:30:54 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418182 - head/databases/cego X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 07 Jul 2016 13:30:55 -0000 Author: pi Date: Thu Jul 7 13:30:54 2016 New Revision: 418182 URL: https://svnweb.freebsd.org/changeset/ports/418182 Log: databases/cego: 2.30.12 -> 2.30.14 - Added alter table modify command just for default values. alter table t1 modify column a default 42; - Improvement for hash calculation in CegoBufferPool::calcSegement. For a better page spreading, the segment calculation was changed to a more linear approach - Added more cast cases to CegoField::castTo, still not completed - Cast handling in CegoFieldValue::castTo completed. This allows an any to any value casting, except lob values and some unsupported datetime casts ( e.g. bool to datetime really makes no sense ) - Fix in CegoBufferPool::poolInfo, the spread rate calculation was not done correctly Submitted by: Bjoern Lemke Modified: head/databases/cego/Makefile head/databases/cego/distinfo Modified: head/databases/cego/Makefile ============================================================================== --- head/databases/cego/Makefile Thu Jul 7 13:29:45 2016 (r418181) +++ head/databases/cego/Makefile Thu Jul 7 13:30:54 2016 (r418182) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= cego -PORTVERSION= 2.30.12 +PORTVERSION= 2.30.14 CATEGORIES= databases MASTER_SITES= http://www.lemke-it.com/ Modified: head/databases/cego/distinfo ============================================================================== --- head/databases/cego/distinfo Thu Jul 7 13:29:45 2016 (r418181) +++ head/databases/cego/distinfo Thu Jul 7 13:30:54 2016 (r418182) @@ -1,3 +1,3 @@ -TIMESTAMP = 1467005489 -SHA256 (cego-2.30.12.tar.gz) = 73bdceea9e7cd40032b64c99cf4795f400b8518634ed7a4cfd548e380f7aa6b8 -SIZE (cego-2.30.12.tar.gz) = 1399988 +TIMESTAMP = 1467896783 +SHA256 (cego-2.30.14.tar.gz) = f37fcd7ab9063937e44ff28ddae5c3f24352c8891e0a3a0e826173d2b14d2cea +SIZE (cego-2.30.14.tar.gz) = 1406196 From owner-svn-ports-all@freebsd.org Thu Jul 7 13:55:22 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 80987B743B7; Thu, 7 Jul 2016 13:55:22 +0000 (UTC) (envelope-from skreuzer@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 5E4EE1238; Thu, 7 Jul 2016 13:55:22 +0000 (UTC) (envelope-from skreuzer@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u67DtLll069347; Thu, 7 Jul 2016 13:55:21 GMT (envelope-from skreuzer@FreeBSD.org) Received: (from skreuzer@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u67DtLKf069341; Thu, 7 Jul 2016 13:55:21 GMT (envelope-from skreuzer@FreeBSD.org) Message-Id: <201607071355.u67DtLKf069341@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: skreuzer set sender to skreuzer@FreeBSD.org using -f From: Steven Kreuzer Date: Thu, 7 Jul 2016 13:55:21 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418183 - in head/archivers: . lzfse X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 07 Jul 2016 13:55:22 -0000 Author: skreuzer Date: Thu Jul 7 13:55:20 2016 New Revision: 418183 URL: https://svnweb.freebsd.org/changeset/ports/418183 Log: This is a reference C implementation of the LZFSE compressor introduced in the Compression library with OS X 10.11 and iOS 9. LZFSE is a Lempel-Ziv style data compression algorithm using Finite State Entropy coding. It targets similar compression rates at higher compression and decompression speed compared to deflate using zlib. WWW: https://github.com/lzfse/lzfse Added: head/archivers/lzfse/ head/archivers/lzfse/Makefile (contents, props changed) head/archivers/lzfse/distinfo (contents, props changed) head/archivers/lzfse/pkg-descr (contents, props changed) head/archivers/lzfse/pkg-plist (contents, props changed) Modified: head/archivers/Makefile Modified: head/archivers/Makefile ============================================================================== --- head/archivers/Makefile Thu Jul 7 13:30:54 2016 (r418182) +++ head/archivers/Makefile Thu Jul 7 13:55:20 2016 (r418183) @@ -72,6 +72,7 @@ SUBDIR += linux-f10-ucl SUBDIR += linux-f10-upx SUBDIR += lrzip + SUBDIR += lzfse SUBDIR += lzip SUBDIR += lzlib SUBDIR += lzma Added: head/archivers/lzfse/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/archivers/lzfse/Makefile Thu Jul 7 13:55:20 2016 (r418183) @@ -0,0 +1,18 @@ +# Created by: Steven Kreuzer +# $FreeBSD$ + +PORTNAME= lzfse +PORTVERSION= 20160707 +CATEGORIES= archivers + +MAINTAINER= skreuzer@FreeBSD.org +COMMENT= Lempel-Ziv style data compression algorithm + +USE_GITHUB= yes +GH_ACCOUNT= lzfse +GH_TAGNAME= 4591228 + +USES= gmake +MAKE_ARGS+= INSTALL_PREFIX="${STAGEDIR}${PREFIX}" + +.include Added: head/archivers/lzfse/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/archivers/lzfse/distinfo Thu Jul 7 13:55:20 2016 (r418183) @@ -0,0 +1,3 @@ +TIMESTAMP = 1467897116 +SHA256 (lzfse-lzfse-20160707-4591228_GH0.tar.gz) = a6b8609947ed610d52f8438ad67c3fd6589f0ae831feae2ef10c2cfc2568d11f +SIZE (lzfse-lzfse-20160707-4591228_GH0.tar.gz) = 45414 Added: head/archivers/lzfse/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/archivers/lzfse/pkg-descr Thu Jul 7 13:55:20 2016 (r418183) @@ -0,0 +1,8 @@ +This is a reference C implementation of the LZFSE compressor introduced in the +Compression library with OS X 10.11 and iOS 9. + +LZFSE is a Lempel-Ziv style data compression algorithm using Finite State +Entropy coding. It targets similar compression rates at higher compression and +decompression speed compared to deflate using zlib. + +WWW: https://github.com/lzfse/lzfse Added: head/archivers/lzfse/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/archivers/lzfse/pkg-plist Thu Jul 7 13:55:20 2016 (r418183) @@ -0,0 +1,4 @@ +@comment $FreeBSD$ +include/lzfse.h +lib/liblzfse.a +bin/lzfse From owner-svn-ports-all@freebsd.org Thu Jul 7 14:08:04 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 501AFB74995; Thu, 7 Jul 2016 14:08:04 +0000 (UTC) (envelope-from mat@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 1C9B71D01; Thu, 7 Jul 2016 14:08:04 +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 u67E83fj073153; Thu, 7 Jul 2016 14:08:03 GMT (envelope-from mat@FreeBSD.org) Received: (from mat@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u67E82Cl073149; Thu, 7 Jul 2016 14:08:02 GMT (envelope-from mat@FreeBSD.org) Message-Id: <201607071408.u67E82Cl073149@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: mat set sender to mat@FreeBSD.org using -f From: Mathieu Arnold Date: Thu, 7 Jul 2016 14:08:02 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418184 - in head: archivers/lzfse comms/nmealib dns/libasr math/openlibm X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 07 Jul 2016 14:08:04 -0000 Author: mat Date: Thu Jul 7 14:08:02 2016 New Revision: 418184 URL: https://svnweb.freebsd.org/changeset/ports/418184 Log: Remove @comment $FreeBSD$ from pkg-plist files. Sponsored by: Absolight Modified: head/archivers/lzfse/pkg-plist (contents, props changed) head/comms/nmealib/pkg-plist (contents, props changed) head/dns/libasr/pkg-plist (contents, props changed) head/math/openlibm/pkg-plist (contents, props changed) Modified: head/archivers/lzfse/pkg-plist ============================================================================== --- head/archivers/lzfse/pkg-plist Thu Jul 7 13:55:20 2016 (r418183) +++ head/archivers/lzfse/pkg-plist Thu Jul 7 14:08:02 2016 (r418184) @@ -1,4 +1,3 @@ -@comment $FreeBSD$ include/lzfse.h lib/liblzfse.a bin/lzfse Modified: head/comms/nmealib/pkg-plist ============================================================================== --- head/comms/nmealib/pkg-plist Thu Jul 7 13:55:20 2016 (r418183) +++ head/comms/nmealib/pkg-plist Thu Jul 7 14:08:02 2016 (r418184) @@ -1,4 +1,3 @@ -@comment $FreeBSD$ include/nmea/config.h include/nmea/context.h include/nmea/generate.h Modified: head/dns/libasr/pkg-plist ============================================================================== --- head/dns/libasr/pkg-plist Thu Jul 7 13:55:20 2016 (r418183) +++ head/dns/libasr/pkg-plist Thu Jul 7 14:08:02 2016 (r418184) @@ -1,4 +1,3 @@ -@comment $FreeBSD$ include/asr.h lib/libasr.a lib/libasr.so Modified: head/math/openlibm/pkg-plist ============================================================================== --- head/math/openlibm/pkg-plist Thu Jul 7 13:55:20 2016 (r418183) +++ head/math/openlibm/pkg-plist Thu Jul 7 14:08:02 2016 (r418184) @@ -1,4 +1,3 @@ -@comment $FreeBSD$ include/openlibm/aarch64_fpmath.h include/openlibm/amd64_fpmath.h include/openlibm/bsd_cdefs.h From owner-svn-ports-all@freebsd.org Thu Jul 7 14:25:53 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id D92D1B74F38; Thu, 7 Jul 2016 14:25:53 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id A98661709; Thu, 7 Jul 2016 14:25: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 u67EPqmZ080369; Thu, 7 Jul 2016 14:25:52 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u67EPqUT080367; Thu, 7 Jul 2016 14:25:52 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201607071425.u67EPqUT080367@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Thu, 7 Jul 2016 14:25:52 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418185 - head/databases/mongodb32 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 07 Jul 2016 14:25:53 -0000 Author: amdmi3 Date: Thu Jul 7 14:25:52 2016 New Revision: 418185 URL: https://svnweb.freebsd.org/changeset/ports/418185 Log: - Update to 3.2.7 PR: 210489 Submitted by: numisemis@yahoo.com Approved by: maintainer timeout (brendan+freebsd@bbqsrc.net, 2 weeks) Modified: head/databases/mongodb32/Makefile head/databases/mongodb32/distinfo Modified: head/databases/mongodb32/Makefile ============================================================================== --- head/databases/mongodb32/Makefile Thu Jul 7 14:08:02 2016 (r418184) +++ head/databases/mongodb32/Makefile Thu Jul 7 14:25:52 2016 (r418185) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= mongodb32 -PORTVERSION= 3.2.6 +PORTVERSION= 3.2.7 DISTVERSIONPREFIX= r CATEGORIES= databases net MASTER_SITES= https://fastdl.mongodb.org/src/ \ Modified: head/databases/mongodb32/distinfo ============================================================================== --- head/databases/mongodb32/distinfo Thu Jul 7 14:08:02 2016 (r418184) +++ head/databases/mongodb32/distinfo Thu Jul 7 14:25:52 2016 (r418185) @@ -1,2 +1,3 @@ -SHA256 (mongodb-src-r3.2.6.tar.gz) = 0415a9b503f62e40d2ba87f555b553757a14fac281d1d6a583d8d880b8720921 -SIZE (mongodb-src-r3.2.6.tar.gz) = 29750170 +TIMESTAMP = 1465819287 +SHA256 (mongodb-src-r3.2.7.tar.gz) = cd89676af6f97561700a08b599c287fb638f14a6a1019ef9167cf55ed6a3952a +SIZE (mongodb-src-r3.2.7.tar.gz) = 28494513 From owner-svn-ports-all@freebsd.org Thu Jul 7 15:45:52 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id BD23DB75298; Thu, 7 Jul 2016 15:45:52 +0000 (UTC) (envelope-from nemysis@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 89BDD1E7F; Thu, 7 Jul 2016 15:45:52 +0000 (UTC) (envelope-from nemysis@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u67FjpdD010219; Thu, 7 Jul 2016 15:45:51 GMT (envelope-from nemysis@FreeBSD.org) Received: (from nemysis@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u67FjpuN010218; Thu, 7 Jul 2016 15:45:51 GMT (envelope-from nemysis@FreeBSD.org) Message-Id: <201607071545.u67FjpuN010218@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: nemysis set sender to nemysis@FreeBSD.org using -f From: Rusmir Dusko Date: Thu, 7 Jul 2016 15:45:51 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418186 - head/irc/py-fishcrypt X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 07 Jul 2016 15:45:52 -0000 Author: nemysis Date: Thu Jul 7 15:45:51 2016 New Revision: 418186 URL: https://svnweb.freebsd.org/changeset/ports/418186 Log: - Add PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} , forgotten in previous commit [1] PR: 209925 Submitted by: mat [1] Reported by: koobs Modified: head/irc/py-fishcrypt/Makefile Modified: head/irc/py-fishcrypt/Makefile ============================================================================== --- head/irc/py-fishcrypt/Makefile Thu Jul 7 14:25:52 2016 (r418185) +++ head/irc/py-fishcrypt/Makefile Thu Jul 7 15:45:51 2016 (r418186) @@ -4,6 +4,7 @@ PORTNAME= fishcrypt DISTVERSION= 5.31 CATEGORIES= irc security +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} DIST_SUBDIR= python MAINTAINER= nemysis@FreeBSD.org From owner-svn-ports-all@freebsd.org Thu Jul 7 15:46:14 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 06856B752DF; Thu, 7 Jul 2016 15:46:14 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id C75331F6F; Thu, 7 Jul 2016 15:46: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 u67FkCwi010361; Thu, 7 Jul 2016 15:46:12 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u67FkCSN010359; Thu, 7 Jul 2016 15:46:12 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201607071546.u67FkCSN010359@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Thu, 7 Jul 2016 15:46:12 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418187 - head/biology/diamond X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 07 Jul 2016 15:46:14 -0000 Author: amdmi3 Date: Thu Jul 7 15:46:12 2016 New Revision: 418187 URL: https://svnweb.freebsd.org/changeset/ports/418187 Log: - Update to 0.8.11 PR: 210877 Submitted by: jrm@ftfl.ca (maintainer) Modified: head/biology/diamond/Makefile head/biology/diamond/distinfo Modified: head/biology/diamond/Makefile ============================================================================== --- head/biology/diamond/Makefile Thu Jul 7 15:45:51 2016 (r418186) +++ head/biology/diamond/Makefile Thu Jul 7 15:46:12 2016 (r418187) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= diamond -PORTVERSION= 0.8.9 +PORTVERSION= 0.8.11 DISTVERSIONPREFIX= v CATEGORIES= biology @@ -23,7 +23,7 @@ GH_ACCOUNT= bbuchfink PLIST_FILES= bin/diamond .if ! defined(PACKAGE_BUILDING) -CXXFLAGS+=-march=native +CXXFLAGS+= -march=native .endif .include Modified: head/biology/diamond/distinfo ============================================================================== --- head/biology/diamond/distinfo Thu Jul 7 15:45:51 2016 (r418186) +++ head/biology/diamond/distinfo Thu Jul 7 15:46:12 2016 (r418187) @@ -1,3 +1,3 @@ -TIMESTAMP = 1467229640 -SHA256 (bbuchfink-diamond-v0.8.9_GH0.tar.gz) = a417cd38c7e4fe92b0f2915e172b2f7c3d00f7ba10cc0509b81591ce301112bc -SIZE (bbuchfink-diamond-v0.8.9_GH0.tar.gz) = 211105 +TIMESTAMP = 1467828702 +SHA256 (bbuchfink-diamond-v0.8.11_GH0.tar.gz) = 285dd0066d08be670c9ef6c8960c31c3589b5d0e40646f84c0479ee453b6d775 +SIZE (bbuchfink-diamond-v0.8.11_GH0.tar.gz) = 216230 From owner-svn-ports-all@freebsd.org Thu Jul 7 15:50:31 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 1C303B754A1; Thu, 7 Jul 2016 15:50:31 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id DC9C81316; Thu, 7 Jul 2016 15:50: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 u67FoUll010649; Thu, 7 Jul 2016 15:50:30 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u67FoTeZ010647; Thu, 7 Jul 2016 15:50:29 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201607071550.u67FoTeZ010647@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Thu, 7 Jul 2016 15:50:29 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418188 - head/security/govpn X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 07 Jul 2016 15:50:31 -0000 Author: amdmi3 Date: Thu Jul 7 15:50:29 2016 New Revision: 418188 URL: https://svnweb.freebsd.org/changeset/ports/418188 Log: - Update to 5.9 - While here, clarify LICENSE and add LICENSE_FILE PR: 210887 Submitted by: stargrave@stargrave.org (maintainer) Modified: head/security/govpn/Makefile head/security/govpn/distinfo Modified: head/security/govpn/Makefile ============================================================================== --- head/security/govpn/Makefile Thu Jul 7 15:46:12 2016 (r418187) +++ head/security/govpn/Makefile Thu Jul 7 15:50:29 2016 (r418188) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= govpn -PORTVERSION= 5.8 +PORTVERSION= 5.9 CATEGORIES= security MASTER_SITES= http://www.cypherpunks.ru/govpn/download/ \ http://sourceforge.net/projects/govpn/files/ @@ -10,7 +10,8 @@ MASTER_SITES= http://www.cypherpunks.ru/ MAINTAINER= stargrave@stargrave.org COMMENT= Simple secure, DPI-resistant VPN daemon -LICENSE= GPLv3 +LICENSE= GPLv3+ +LICENSE_FILE= ${WRKSRC}/COPYING BUILD_DEPENDS= go:lang/go Modified: head/security/govpn/distinfo ============================================================================== --- head/security/govpn/distinfo Thu Jul 7 15:46:12 2016 (r418187) +++ head/security/govpn/distinfo Thu Jul 7 15:50:29 2016 (r418188) @@ -1,2 +1,2 @@ -SHA256 (govpn-5.8.tar.xz) = a730dc3bbb97bc412a80f529b0f3043e70d011387f5d579cbd2e29964ddf94f4 -SIZE (govpn-5.8.tar.xz) = 320448 +SHA256 (govpn-5.9.tar.xz) = ff6afd2a9ef51a3c6640a33c63b060490f7d9460220307c4cb7e2f6226497945 +SIZE (govpn-5.9.tar.xz) = 323488 From owner-svn-ports-all@freebsd.org Thu Jul 7 16:28:38 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id D2C8BB75C08; Thu, 7 Jul 2016 16:28:38 +0000 (UTC) (envelope-from rakuco@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id A2CBC1485; Thu, 7 Jul 2016 16:28:38 +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 u67GSbpX025236; Thu, 7 Jul 2016 16:28:37 GMT (envelope-from rakuco@FreeBSD.org) Received: (from rakuco@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u67GSbht025234; Thu, 7 Jul 2016 16:28:37 GMT (envelope-from rakuco@FreeBSD.org) Message-Id: <201607071628.u67GSbht025234@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: rakuco set sender to rakuco@FreeBSD.org using -f From: Raphael Kubo da Costa Date: Thu, 7 Jul 2016 16:28:37 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-svnadmin@freebsd.org Subject: svn commit: r418189 - svnadmin/conf X-SVN-Group: ports-svnadmin MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 07 Jul 2016 16:28:38 -0000 Author: rakuco Date: Thu Jul 7 16:28:37 2016 New Revision: 418189 URL: https://svnweb.freebsd.org/changeset/ports/418189 Log: At long last, I welcome Tobias Berner (tcberner)! Tobias has been one of the driving forces behind kde@ for years now, so it is high time we punished him with a commit bit. He's also one of the most sought-after mentees I've ever seen, with at least 3 other committers also volunteering to mentor him :-) mat@ is co-mentoring him with me. Approved by: portmgr (implicit) Modified: svnadmin/conf/access svnadmin/conf/mentors Modified: svnadmin/conf/access ============================================================================== --- svnadmin/conf/access Thu Jul 7 15:50:29 2016 (r418188) +++ svnadmin/conf/access Thu Jul 7 16:28:37 2016 (r418189) @@ -170,6 +170,7 @@ stephen sunpoet swills tabthorpe +tcberner tdb theraven thierry Modified: svnadmin/conf/mentors ============================================================================== --- svnadmin/conf/mentors Thu Jul 7 15:50:29 2016 (r418188) +++ svnadmin/conf/mentors Thu Jul 7 16:28:37 2016 (r418189) @@ -26,5 +26,6 @@ jmg mat kami cs Co-mentor: koobs olivier jadawin Co-mentor: tabthorpe rpaulo bapt Co-mentor: swills +tcberner rakuco Co-mentor: mat tz junovitch Co-mentor: pi, swills woodsb02 adamw Co-mentor: koobs, mat From owner-svn-ports-all@freebsd.org Thu Jul 7 16:49:28 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id BAE39B821E5; Thu, 7 Jul 2016 16:49:28 +0000 (UTC) (envelope-from gordon@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 6D6C41CC4; Thu, 7 Jul 2016 16:49:28 +0000 (UTC) (envelope-from gordon@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u67GnRrm032672; Thu, 7 Jul 2016 16:49:27 GMT (envelope-from gordon@FreeBSD.org) Received: (from gordon@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u67GnRfj032670; Thu, 7 Jul 2016 16:49:27 GMT (envelope-from gordon@FreeBSD.org) Message-Id: <201607071649.u67GnRfj032670@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: gordon set sender to gordon@FreeBSD.org using -f From: Gordon Tetlow Date: Thu, 7 Jul 2016 16:49:27 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418190 - head/devel/p4api X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 07 Jul 2016 16:49:28 -0000 Author: gordon Date: Thu Jul 7 16:49:27 2016 New Revision: 418190 URL: https://svnweb.freebsd.org/changeset/ports/418190 Log: Update incorrect distinfo for devel/p4api. Modified: head/devel/p4api/distinfo.freebsd100x86 head/devel/p4api/distinfo.freebsd100x86_64 Modified: head/devel/p4api/distinfo.freebsd100x86 ============================================================================== --- head/devel/p4api/distinfo.freebsd100x86 Thu Jul 7 16:28:37 2016 (r418189) +++ head/devel/p4api/distinfo.freebsd100x86 Thu Jul 7 16:49:27 2016 (r418190) @@ -1,4 +1,5 @@ -SHA256 (perforce/2015.1.1384697/bin.freebsd100x86/p4api.tgz) = f070bf6501854316a81787dd125f4bbf349c1cd51ed6bd975b03da75d68b7c7b -SIZE (perforce/2015.1.1384697/bin.freebsd100x86/p4api.tgz) = 1434822 -SHA256 (perforce/2015.1.1384697/bin.freebsd100x86/p4api.pdf) = 16e6e6548fe4e51210239cc643b08f07ed97159f004a7ef513cfd6f16403e1bd -SIZE (perforce/2015.1.1384697/bin.freebsd100x86/p4api.pdf) = 1623596 +TIMESTAMP = 1467910125 +SHA256 (perforce/2016.1.1404799/bin.freebsd100x86/p4api.tgz) = 5b09d62cfe83e990c32e8420486c4252f405e8b807c868f77744ac5d620b0a9e +SIZE (perforce/2016.1.1404799/bin.freebsd100x86/p4api.tgz) = 3901848 +SHA256 (perforce/2016.1.1404799/bin.freebsd100x86/p4api.pdf) = 601bc053b9b5316b71981449df76b32b9ca318a99752d3d5f46b46327bdc67b8 +SIZE (perforce/2016.1.1404799/bin.freebsd100x86/p4api.pdf) = 1908708 Modified: head/devel/p4api/distinfo.freebsd100x86_64 ============================================================================== --- head/devel/p4api/distinfo.freebsd100x86_64 Thu Jul 7 16:28:37 2016 (r418189) +++ head/devel/p4api/distinfo.freebsd100x86_64 Thu Jul 7 16:49:27 2016 (r418190) @@ -1,5 +1,5 @@ -TIMESTAMP = 1467701207 -SHA256 (perforce/2016.1.1396108/bin.freebsd100x86_64/p4api.tgz) = 61be48a1809a5fea6d7069721abb5762dc57b2557e55dd4726ae961c21a44d22 -SIZE (perforce/2016.1.1396108/bin.freebsd100x86_64/p4api.tgz) = 4164647 -SHA256 (perforce/2016.1.1396108/bin.freebsd100x86_64/p4api.pdf) = 601bc053b9b5316b71981449df76b32b9ca318a99752d3d5f46b46327bdc67b8 -SIZE (perforce/2016.1.1396108/bin.freebsd100x86_64/p4api.pdf) = 1908708 +TIMESTAMP = 1467910118 +SHA256 (perforce/2016.1.1404799/bin.freebsd100x86_64/p4api.tgz) = 61be48a1809a5fea6d7069721abb5762dc57b2557e55dd4726ae961c21a44d22 +SIZE (perforce/2016.1.1404799/bin.freebsd100x86_64/p4api.tgz) = 4164647 +SHA256 (perforce/2016.1.1404799/bin.freebsd100x86_64/p4api.pdf) = 601bc053b9b5316b71981449df76b32b9ca318a99752d3d5f46b46327bdc67b8 +SIZE (perforce/2016.1.1404799/bin.freebsd100x86_64/p4api.pdf) = 1908708 From owner-svn-ports-all@freebsd.org Thu Jul 7 17:39:38 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 6F1BEB82961; Thu, 7 Jul 2016 17:39:38 +0000 (UTC) (envelope-from riggs@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 3EC631356; Thu, 7 Jul 2016 17:39:38 +0000 (UTC) (envelope-from riggs@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u67HdbiW050947; Thu, 7 Jul 2016 17:39:37 GMT (envelope-from riggs@FreeBSD.org) Received: (from riggs@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u67HdbiW050946; Thu, 7 Jul 2016 17:39:37 GMT (envelope-from riggs@FreeBSD.org) Message-Id: <201607071739.u67HdbiW050946@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: riggs set sender to riggs@FreeBSD.org using -f From: Thomas Zander Date: Thu, 7 Jul 2016 17:39:37 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418191 - head/multimedia/mkvtoolnix X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 07 Jul 2016 17:39:38 -0000 Author: riggs Date: Thu Jul 7 17:39:37 2016 New Revision: 418191 URL: https://svnweb.freebsd.org/changeset/ports/418191 Log: Take maintainership Details: mkvtoolnix shows spurious build issues due to a gcc-internal segfault on the build cluster on 9.x. However, this is not perfectly reproducible and on other hardware setups it builds reliably, so we don't want to mark it broken on 9.x. Taking maintainership so pkg-fallout won't continue spam the multimedia@ mailing list. Modified: head/multimedia/mkvtoolnix/Makefile Modified: head/multimedia/mkvtoolnix/Makefile ============================================================================== --- head/multimedia/mkvtoolnix/Makefile Thu Jul 7 16:49:27 2016 (r418190) +++ head/multimedia/mkvtoolnix/Makefile Thu Jul 7 17:39:37 2016 (r418191) @@ -7,7 +7,7 @@ CATEGORIES= multimedia audio MASTER_SITES= http://www.bunkus.org/videotools/mkvtoolnix/sources/ \ https://mkvtoolnix.download/sources/ -MAINTAINER= multimedia@FreeBSD.org +MAINTAINER= riggs@FreeBSD.org COMMENT= Tools to extract from/get info about/create Matroska media streams LICENSE= GPLv2 From owner-svn-ports-all@freebsd.org Thu Jul 7 17:42:26 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 7FA49B82AFA; Thu, 7 Jul 2016 17:42:26 +0000 (UTC) (envelope-from marcus@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 3671718C2; Thu, 7 Jul 2016 17:42:26 +0000 (UTC) (envelope-from marcus@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u67HgPRX054383; Thu, 7 Jul 2016 17:42:25 GMT (envelope-from marcus@FreeBSD.org) Received: (from marcus@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u67HgPQa054381; Thu, 7 Jul 2016 17:42:25 GMT (envelope-from marcus@FreeBSD.org) Message-Id: <201607071742.u67HgPQa054381@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: marcus set sender to marcus@FreeBSD.org using -f From: Joe Marcus Clarke Date: Thu, 7 Jul 2016 17:42:25 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418192 - in head/ports-mgmt/portlint: . src X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 07 Jul 2016 17:42:26 -0000 Author: marcus Date: Thu Jul 7 17:42:25 2016 New Revision: 418192 URL: https://svnweb.freebsd.org/changeset/ports/418192 Log: Update to 2.17.3. This release fixes a bug in newer versions of Perl where '{' and '}' caused regexp compilation to fail. PR: 210809 Submitted by: mat Modified: head/ports-mgmt/portlint/Makefile head/ports-mgmt/portlint/src/portlint.pl Modified: head/ports-mgmt/portlint/Makefile ============================================================================== --- head/ports-mgmt/portlint/Makefile Thu Jul 7 17:39:37 2016 (r418191) +++ head/ports-mgmt/portlint/Makefile Thu Jul 7 17:42:25 2016 (r418192) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= portlint -PORTVERSION= 2.17.2 +PORTVERSION= 2.17.3 CATEGORIES= ports-mgmt MASTER_SITES= # none DISTFILES= # none Modified: head/ports-mgmt/portlint/src/portlint.pl ============================================================================== --- head/ports-mgmt/portlint/src/portlint.pl Thu Jul 7 17:39:37 2016 (r418191) +++ head/ports-mgmt/portlint/src/portlint.pl Thu Jul 7 17:42:25 2016 (r418192) @@ -15,7 +15,7 @@ # was removed. # # $FreeBSD$ -# $MCom: portlint/portlint.pl,v 1.388 2016/05/15 18:42:34 jclarke Exp $ +# $MCom: portlint/portlint.pl,v 1.390 2016/07/07 17:40:43 jclarke Exp $ # use strict; @@ -50,7 +50,7 @@ $portdir = '.'; # version variables my $major = 2; my $minor = 17; -my $micro = 2; +my $micro = 3; # default setting - for FreeBSD my $portsdir = '/usr/ports'; @@ -2005,8 +2005,8 @@ xargs xmkmf my %pathnames = (); print "OK: checking for paths that have macro replacements.\n" if ($verbose); - $pathnames{'${PREFIX}/share/java/classes'} = 'JAVADIR'; - $pathnames{'${PREFIX}/share/java'} = 'JAVASHAREDIR'; + $pathnames{'$\{PREFIX\}/share/java/classes'} = 'JAVADIR'; + $pathnames{'$\{PREFIX\}/share/java'} = 'JAVASHAREDIR'; foreach my $i (keys %pathnames) { my $lineno = &linenumber($`); if ($j =~ m|$i|gm) { From owner-svn-ports-all@freebsd.org Thu Jul 7 18:31:19 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 422FFB75611; Thu, 7 Jul 2016 18:31:19 +0000 (UTC) (envelope-from brd@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 0F40D11B9; Thu, 7 Jul 2016 18:31:18 +0000 (UTC) (envelope-from brd@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u67IVIYh070453; Thu, 7 Jul 2016 18:31:18 GMT (envelope-from brd@FreeBSD.org) Received: (from brd@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u67IVIMR070452; Thu, 7 Jul 2016 18:31:18 GMT (envelope-from brd@FreeBSD.org) Message-Id: <201607071831.u67IVIMR070452@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: brd set sender to brd@FreeBSD.org using -f From: Brad Davis Date: Thu, 7 Jul 2016 18:31:18 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418193 - head/misc/raspbsd-led X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 07 Jul 2016 18:31:19 -0000 Author: brd Date: Thu Jul 7 18:31:17 2016 New Revision: 418193 URL: https://svnweb.freebsd.org/changeset/ports/418193 Log: Set PORTREVISION properly. Approved by: bdrewery (mentor) Modified: head/misc/raspbsd-led/Makefile Modified: head/misc/raspbsd-led/Makefile ============================================================================== --- head/misc/raspbsd-led/Makefile Thu Jul 7 17:42:25 2016 (r418192) +++ head/misc/raspbsd-led/Makefile Thu Jul 7 18:31:17 2016 (r418193) @@ -1,7 +1,8 @@ # $FreeBSD$ PORTNAME= raspbsd-led -PORTVERSION= 0.2_1 +PORTVERSION= 0.2 +PORTREVISION= 1 DISTVERSIONPREFIX= v CATEGORIES= misc From owner-svn-ports-all@freebsd.org Thu Jul 7 19:12:12 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id D76DEB822AD; Thu, 7 Jul 2016 19:12:12 +0000 (UTC) (envelope-from adamw@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id A7D12175A; Thu, 7 Jul 2016 19:12:12 +0000 (UTC) (envelope-from adamw@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u67JCBkn088059; Thu, 7 Jul 2016 19:12:11 GMT (envelope-from adamw@FreeBSD.org) Received: (from adamw@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u67JCBAa088058; Thu, 7 Jul 2016 19:12:11 GMT (envelope-from adamw@FreeBSD.org) Message-Id: <201607071912.u67JCBAa088058@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: adamw set sender to adamw@FreeBSD.org using -f From: Adam Weinberger Date: Thu, 7 Jul 2016 19:12:11 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418194 - head/mail/dovecot2-pigeonhole X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 07 Jul 2016 19:12:12 -0000 Author: adamw Date: Thu Jul 7 19:12:11 2016 New Revision: 418194 URL: https://svnweb.freebsd.org/changeset/ports/418194 Log: Add USES=compiler:c11 to fix build on 9.x. While altering USES, switch from USE_OPENSSL to USES=ssl. Approved by: maintainer (Larry Rosenman) Modified: head/mail/dovecot2-pigeonhole/Makefile Modified: head/mail/dovecot2-pigeonhole/Makefile ============================================================================== --- head/mail/dovecot2-pigeonhole/Makefile Thu Jul 7 18:31:17 2016 (r418193) +++ head/mail/dovecot2-pigeonhole/Makefile Thu Jul 7 19:12:11 2016 (r418194) @@ -25,9 +25,8 @@ CONFIGURE_ARGS= --exec-prefix=${PREFIX} --with-dovecot="${LOCALBASE}/lib/dovecot" LDFLAGS+= -L${LOCALBASE}/lib INSTALL_TARGET= install-strip -USES= libtool +USES= compiler:c11 libtool ssl USE_LDCONFIG= ${PREFIX}/lib/dovecot -USE_OPENSSL= yes OPTIONS_DEFINE= DOCS LDAP MANAGESIEVE OPTIONS_DEFAULT=MANAGESIEVE From owner-svn-ports-all@freebsd.org Thu Jul 7 19:26:56 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id C88BEB824AC; Thu, 7 Jul 2016 19:26:56 +0000 (UTC) (envelope-from cy.schubert@komquats.com) Received: from smtp-out-no.shaw.ca (smtp-out-no.shaw.ca [64.59.134.12]) (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 BD19E1C87; Thu, 7 Jul 2016 19:26:55 +0000 (UTC) (envelope-from cy.schubert@komquats.com) Received: from spqr.komquats.com ([96.50.22.10]) by shaw.ca with SMTP id LEwgbcnYikqLbLEwhbqk2Q; Thu, 07 Jul 2016 13:26:48 -0600 X-Authority-Analysis: v=2.2 cv=UoshDK4B c=1 sm=1 tr=0 a=jvE2nwUzI0ECrNeyr98KWA==:117 a=jvE2nwUzI0ECrNeyr98KWA==:17 a=L9H7d07YOLsA:10 a=9cW_t1CCXrUA:10 a=s5jvgZ67dGcA:10 a=cAmyUtKerLwA:10 a=sol3VE4AAAAA:8 a=6I5d2MoRAAAA:8 a=jJSEoD67AAAA:8 a=YxBL1-UpAAAA:8 a=7-nNqgiJImdFGyhBdJgA:9 a=OpeU2goXl_1Y2kLAtfwV:22 a=IjZwj45LgO3ly-622nXo:22 a=XYRPOkugSPYE58mp8SVz:22 a=Ia-lj3WSrqcvXOmTRaiG:22 Received: from slippy.cwsent.com (slippy8 [10.2.2.6]) by spqr.komquats.com (Postfix) with ESMTPS id A14C413754; Thu, 7 Jul 2016 12:26:45 -0700 (PDT) Received: from slippy (localhost [127.0.0.1]) by slippy.cwsent.com (8.15.2/8.15.2) with ESMTP id u67JQdJm032072; Thu, 7 Jul 2016 12:26:39 -0700 (PDT) (envelope-from Cy.Schubert@cschubert.com) Message-Id: <201607071926.u67JQdJm032072@slippy.cwsent.com> X-Mailer: exmh version 2.8.0 04/21/2012 with nmh-1.6 Reply-to: Cy Schubert From: Cy Schubert X-os: FreeBSD X-Sender: cy@cwsent.com X-URL: http://www.cschubert.com/ To: Baptiste Daroussin cc: Cy Schubert , ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: Re: svn commit: r418116 - head/net/vnc In-Reply-To: Message from Baptiste Daroussin of "Thu, 07 Jul 2016 13:50:23 +0200." <20160707115023.tqmy6h3lwppyulgr@ivaldir.etoilebsd.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Thu, 07 Jul 2016 12:26:39 -0700 X-CMAE-Envelope: MS4wfDmB4j3vwy+7V2lvGPc5EVuJGKd9LWeNAvFKcVNaB0DrfDNBFNx9d8TkfZdbIT5jwMH65L/7R5t2biaVBd0D5UvvV498ijKUYnsM/FAOIbod4Zg641zK w/Der4ukoQaofXZcOZ0rjRExlOnJV3lwKKx7v/ie6F8DGjMxhd1BUTXihApPeNVnior4I5FMF4cTvOmyXNChy6nYuAbiQkuddpLG2k1oiSiQgQWvY3H/Pe27 2jzcaB9oYw5eHeDkt3KvQWHu+b6+RELX335F7Qd3J03m1WNvYA4tzIn4a+3nAJOWga2FKt1xbL2KeV6+vOWkog== X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 07 Jul 2016 19:26:56 -0000 In message <20160707115023.tqmy6h3lwppyulgr@ivaldir.etoilebsd.net>, Baptiste Da roussin writes: > > > --pa3hk4ttdo4p3bmb > Content-Type: text/plain; charset=us-ascii > Content-Disposition: inline > Content-Transfer-Encoding: quoted-printable > > On Wed, Jul 06, 2016 at 04:35:17AM +0000, Cy Schubert wrote: > > Author: cy > > Date: Wed Jul 6 04:35:17 2016 > > New Revision: 418116 > > URL: https://svnweb.freebsd.org/changeset/ports/418116 > >=20 > > Log: > > Rehost distfiles, making them fetchable again. > >=20 > > Modified: > > head/net/vnc/Makefile > >=20 > > Modified: head/net/vnc/Makefile > > =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= > =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= > =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= > =3D=3D=3D=3D > > --- head/net/vnc/Makefile Wed Jul 6 00:39:12 2016 (r418115) > > +++ head/net/vnc/Makefile Wed Jul 6 04:35:17 2016 (r418116) > > @@ -5,9 +5,10 @@ PORTNAME=3D vnc > > PORTVERSION=3D 4.1.3 > > PORTREVISION=3D 10 > > CATEGORIES=3D net ipv6 > > -MASTER_SITES=3D http://home.bluelife.at/ports/distfiles/${DIST_SUBDIR}/ > := > vnc > > +MASTER_SITES=3D http://www.cschubert.com/distfiles/xc/ \ > > + http://people.freebsd.org/~cy/distfiles/xc/ > > DISTNAME=3D vnc-4_1_3-unixsrc > > -DISTFILES=3D ${DISTNAME}${EXTRACT_SUFX}:vnc > > +DISTFILES=3D ${DISTNAME}${EXTRACT_SUFX} > > DIST_SUBDIR=3D xc > > =20 > > MAINTAINER=3D cy@FreeBSD.org > > @@ -42,10 +43,9 @@ BROKEN=3D Does not compile on arm > > .endif > > =20 > > .if ${PORT_OPTIONS:MSERVER} > > -MASTER_SITES+=3D XORG/4.3.0/:x > > -DISTFILES+=3D X430src-1.tgz:x \ > > - X430src-2.tgz:x \ > > - X430src-3.tgz:x > > +DISTFILES+=3D X430src-1.tgz \ > > + X430src-2.tgz \ > > + X430src-3.tgz > > =20 > > FTR: my concern about keeping that software around is X 4.3.0 is pretty old, > lots of security issues has been found and fixed since, no idea how many of= > them > are applicable to the code used by the vnc server here. But I just feel > unconfortable with that... I may be too paranoid After contemplating it this morning, you're probably right. Getting it to work with a recent Xorg server would pretty much make me the upline maintainer and that's not the position I want to be in, especially considering all the other projects I have on the go and have planned. It should be deprecated. -- 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-all@freebsd.org Thu Jul 7 19:30:37 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 742E0B8254A; Thu, 7 Jul 2016 19:30:37 +0000 (UTC) (envelope-from cy@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 43EEE1DF1; Thu, 7 Jul 2016 19:30:37 +0000 (UTC) (envelope-from cy@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u67JUaGG092178; Thu, 7 Jul 2016 19:30:36 GMT (envelope-from cy@FreeBSD.org) Received: (from cy@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u67JUaLq092177; Thu, 7 Jul 2016 19:30:36 GMT (envelope-from cy@FreeBSD.org) Message-Id: <201607071930.u67JUaLq092177@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: cy set sender to cy@FreeBSD.org using -f From: Cy Schubert Date: Thu, 7 Jul 2016 19:30:36 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418195 - head/net/vnc X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 07 Jul 2016 19:30:37 -0000 Author: cy Date: Thu Jul 7 19:30:36 2016 New Revision: 418195 URL: https://svnweb.freebsd.org/changeset/ports/418195 Log: Deprecate this port. The sources are only available after registration and XFree86 4.3.0 is no longer available. Reworking this port to use a more recent xorg-server would be fair bit of work. Suggested by: bapt Modified: head/net/vnc/Makefile Modified: head/net/vnc/Makefile ============================================================================== --- head/net/vnc/Makefile Thu Jul 7 19:12:11 2016 (r418194) +++ head/net/vnc/Makefile Thu Jul 7 19:30:36 2016 (r418195) @@ -13,6 +13,8 @@ DIST_SUBDIR= xc MAINTAINER= cy@FreeBSD.org COMMENT= Display X and Win32 desktops on remote X/Win32/Java displays +DEPRECATED= Distfiles no longer available. +EXPIRATION_DATE= 2016-09-01 RUN_DEPENDS= xorg-fonts>=7.2:x11-fonts/xorg-fonts \ showrgb:x11/rgb \ From owner-svn-ports-all@freebsd.org Thu Jul 7 19:33:38 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 74048B82665; Thu, 7 Jul 2016 19:33:38 +0000 (UTC) (envelope-from cy@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 404801262; Thu, 7 Jul 2016 19:33:38 +0000 (UTC) (envelope-from cy@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u67JXbOZ095618; Thu, 7 Jul 2016 19:33:37 GMT (envelope-from cy@FreeBSD.org) Received: (from cy@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u67JXblf095615; Thu, 7 Jul 2016 19:33:37 GMT (envelope-from cy@FreeBSD.org) Message-Id: <201607071933.u67JXblf095615@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: cy set sender to cy@FreeBSD.org using -f From: Cy Schubert Date: Thu, 7 Jul 2016 19:33:37 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418196 - in head/net: tightvnc tridiavnc vnc X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 07 Jul 2016 19:33:38 -0000 Author: cy Date: Thu Jul 7 19:33:37 2016 New Revision: 418196 URL: https://svnweb.freebsd.org/changeset/ports/418196 Log: Register tigervnc conflict. Modified: head/net/tightvnc/Makefile head/net/tridiavnc/Makefile head/net/vnc/Makefile Modified: head/net/tightvnc/Makefile ============================================================================== --- head/net/tightvnc/Makefile Thu Jul 7 19:30:36 2016 (r418195) +++ head/net/tightvnc/Makefile Thu Jul 7 19:33:37 2016 (r418196) @@ -19,7 +19,7 @@ RUN_DEPENDS= showrgb:x11/rgb \ xorg-fonts>=7.2:x11-fonts/xorg-fonts MAKE_JOBS_UNSAFE= yes -CONFLICTS= tridiavnc-[0-9]* vnc-[0-9]* +CONFLICTS= tridiavnc-[0-9]* vnc-[0-9]* tigervnc-* WRKSRC= ${WRKDIR}/vnc_unixsrc USES= cpe imake jpeg shebangfix perl5 tar:bzip2 SHEBANG_FILES= vncserver Modified: head/net/tridiavnc/Makefile ============================================================================== --- head/net/tridiavnc/Makefile Thu Jul 7 19:30:36 2016 (r418195) +++ head/net/tridiavnc/Makefile Thu Jul 7 19:33:37 2016 (r418196) @@ -21,7 +21,7 @@ ALL_TARGET= World XFREE86_HTML_MAN= no MAKE_JOBS_UNSAFE=yes -CONFLICTS= tightvnc-[0-9]* vnc-[0-9]* +CONFLICTS= tightvnc-[0-9]* vnc-[0-9]* tigervnc-* # .ifdef(TRIDIAVNC_BASE) # PREFIX=${TRIDIAVNC_BASE} Modified: head/net/vnc/Makefile ============================================================================== --- head/net/vnc/Makefile Thu Jul 7 19:30:36 2016 (r418195) +++ head/net/vnc/Makefile Thu Jul 7 19:33:37 2016 (r418196) @@ -28,7 +28,7 @@ USE_XORG= x11 xext xpm xext xtst sm ice WRKSRC= ${WRKDIR}/${DISTNAME}/unix PLIST= ${WRKDIR}/pkg-plist -CONFLICTS= tightvnc-[0-9]* tridiavnc-[0-9]* +CONFLICTS= tightvnc-[0-9]* tridiavnc-[0-9]* tigervnc-* OPTIONS_DEFINE= SERVER OPTIONS_DEFAULT= SERVER From owner-svn-ports-all@freebsd.org Thu Jul 7 19:41:32 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id CD25FB8285E; Thu, 7 Jul 2016 19:41:32 +0000 (UTC) (envelope-from feld@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 8F6E31568; Thu, 7 Jul 2016 19:41:32 +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 u67JfVS1098017; Thu, 7 Jul 2016 19:41:31 GMT (envelope-from feld@FreeBSD.org) Received: (from feld@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u67JfVrF098014; Thu, 7 Jul 2016 19:41:31 GMT (envelope-from feld@FreeBSD.org) Message-Id: <201607071941.u67JfVrF098014@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: feld set sender to feld@FreeBSD.org using -f From: Mark Felder Date: Thu, 7 Jul 2016 19:41:31 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418197 - in head/net-mgmt/nfsen: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 07 Jul 2016 19:41:32 -0000 Author: feld Date: Thu Jul 7 19:41:31 2016 New Revision: 418197 URL: https://svnweb.freebsd.org/changeset/ports/418197 Log: net-mgmt/nfsen: Improve default directory permissions Also make it easier to install/run as another user. PR: 210368 Modified: head/net-mgmt/nfsen/Makefile head/net-mgmt/nfsen/files/nfsen.in head/net-mgmt/nfsen/pkg-plist Modified: head/net-mgmt/nfsen/Makefile ============================================================================== --- head/net-mgmt/nfsen/Makefile Thu Jul 7 19:33:37 2016 (r418196) +++ head/net-mgmt/nfsen/Makefile Thu Jul 7 19:41:31 2016 (r418197) @@ -3,7 +3,7 @@ PORTNAME= nfsen PORTVERSION= 1.3.7 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= net-mgmt MASTER_SITES= SF/${PORTNAME}/stable/${PORTNAME}-${PORTVERSION} \ http://nfsen.sourceforge.net/ @@ -25,7 +25,9 @@ CPE_PRODUCT= nfsen USE_PHP= session pcre sockets NO_BUILD= yes NO_ARCH= yes +NFSENOWN?= www PLIST_SUB+= PORTNAME=${PORTNAME} +PLIST_SUB+= NFSENOWN=${NFSENOWN} USE_RC_SUBR= nfsen perl_OLD_CMD= %%PERL%% SHEBANG_FILES= bin/testPlugin bin/RebuildHierarchy.pl bin/nfsen bin/nfsend libexec/NfSenRRD.pm \ @@ -40,6 +42,7 @@ SUB_LIST+= "PORTVERSION=${PORTVERSION}" SUB_LIST+= "PREFIX=${PREFIX}" SUB_LIST+= "WWWDIR=${WWWDIR}" SUB_LIST+= "PORTNAME=${PORTNAME}" +SUB_LIST+= "NFSENOWN=${NFSENOWN}" post-patch: .for nfsenfile in ${REINPLACE_LIST} @@ -52,6 +55,8 @@ post-patch: @${REINPLACE_CMD} ${_SUB_LIST_TEMP} ${WRKSRC}/conf.php @${REINPLACE_CMD} "s|/usr/bin/perl|${perl_CMD}|" ${WRKSRC}/libexec/Nfcomm.pm +FIND_EXPR= ! -name \._* -prune + do-install: ${INSTALL} -d ${STAGEDIR}/${PREFIX}/var/${PORTNAME}/profiles-data/live ${INSTALL} -d ${STAGEDIR}/${PREFIX}/var/${PORTNAME}/profiles-stat/live @@ -62,10 +67,10 @@ do-install: ${INSTALL} -d ${STAGEDIR}/${WWWDIR}/plugins (cd ${WRKSRC}/bin && ${INSTALL_SCRIPT} * ${STAGEDIR}/${PREFIX}/bin/) ${INSTALL_DATA} ${WRKSRC}/etc/nfsen-dist.conf ${STAGEDIR}/${PREFIX}/etc/ - (cd ${WRKSRC}/html && ${COPYTREE_SHARE} . ${STAGEDIR}/${WWWDIR}/) - (cd ${WRKSRC}/plugins/frontend/ && ${COPYTREE_SHARE} . ${STAGEDIR}/${WWWDIR}/plugins/) + (cd ${WRKSRC}/html && ${COPYTREE_SHARE} . ${STAGEDIR}/${WWWDIR}/ "${FIND_EXPR}") + (cd ${WRKSRC}/plugins/frontend/ && ${COPYTREE_SHARE} . ${STAGEDIR}/${WWWDIR}/plugins/ "${FIND_EXPR}") (cd ${WRKSRC}/libexec && ${INSTALL_SCRIPT} * ${STAGEDIR}/${PREFIX}/libexec/${PORTNAME}/) - (cd ${WRKSRC}/plugins/backend && ${COPYTREE_SHARE} . ${STAGEDIR}/${PREFIX}/libexec/${PORTNAME}/plugins/) + (cd ${WRKSRC}/plugins/backend && ${COPYTREE_SHARE} . ${STAGEDIR}/${PREFIX}/libexec/${PORTNAME}/plugins/ "${FIND_EXPR}") ${INSTALL_DATA} ${WRKSRC}/installer-items/CopyRecursive.pm ${STAGEDIR}/${PREFIX}/libexec/${PORTNAME}/ ${INSTALL_DATA} ${WRKSRC}/installer-items/RRDconvertv1.pm ${STAGEDIR}/${PREFIX}/libexec/${PORTNAME}/ ${INSTALL_DATA} ${WRKSRC}/conf.php ${STAGEDIR}/${WWWDIR} Modified: head/net-mgmt/nfsen/files/nfsen.in ============================================================================== --- head/net-mgmt/nfsen/files/nfsen.in Thu Jul 7 19:33:37 2016 (r418196) +++ head/net-mgmt/nfsen/files/nfsen.in Thu Jul 7 19:41:31 2016 (r418197) @@ -15,6 +15,7 @@ load_rc_config $name nfsen_enable=${nfsen_enable-"NO"} #nfsen_flags=${nfsen_flags-""} +nfsen_user=${nfsen_user-"%%NFSENOWN%%"} command="%%PREFIX%%/bin/nfsen" start_cmd="%%PREFIX%%/bin/nfsen start" @@ -34,6 +35,7 @@ nfsen_start_precmd() if [ ! -e %%PREFIX%%/var/nfsen/profiles-stat/live/profile.dat ]; then time=$(/bin/date +%s); timeu=$(/bin/expr $time - 300); + profile_dat=%%PREFIX%%/var/nfsen/profiles-stat/live/profile.dat /usr/bin/printf "name = live group = . tbegin = $time @@ -47,7 +49,8 @@ nfsen_start_precmd() type = 0 locked = 0 status = OK - version = 130" | /usr/bin/tr -d '\011' > %%PREFIX%%/var/nfsen/profiles-stat/live/profile.dat; + version = 130" | /usr/bin/tr -d '\011' > ${profile_dat} + chown ${nfsen_user} ${profile_dat} fi } Modified: head/net-mgmt/nfsen/pkg-plist ============================================================================== --- head/net-mgmt/nfsen/pkg-plist Thu Jul 7 19:33:37 2016 (r418196) +++ head/net-mgmt/nfsen/pkg-plist Thu Jul 7 19:41:31 2016 (r418197) @@ -74,13 +74,13 @@ libexec/%%PORTNAME%%/AbuseWhois.pm %%WWWDIR%%/colour_picker.html %%WWWDIR%%/colour_palette.html %%WWWDIR%%/alerting.php -@dir var/%%PORTNAME%%/run -@dir var/%%PORTNAME%%/profiles-stat/live -@dir var/%%PORTNAME%%/profiles-stat -@dir var/%%PORTNAME%%/profiles-data/live -@dir var/%%PORTNAME%%/profiles-data -@dir var/%%PORTNAME%%/profiles/live -@dir var/%%PORTNAME%%/profiles -@dir var/%%PORTNAME%%/filters -@dir var/%%PORTNAME%% +@dir(%%NFSENOWN%%,,) var/%%PORTNAME%%/run +@dir(%%NFSENOWN%%,,) var/%%PORTNAME%%/profiles-stat/live +@dir(%%NFSENOWN%%,,) var/%%PORTNAME%%/profiles-stat +@dir(%%NFSENOWN%%,,) var/%%PORTNAME%%/profiles-data/live +@dir(%%NFSENOWN%%,,) var/%%PORTNAME%%/profiles-data +@dir(%%NFSENOWN%%,,) var/%%PORTNAME%%/profiles/live +@dir(%%NFSENOWN%%,,) var/%%PORTNAME%%/profiles +@dir(%%NFSENOWN%%,,) var/%%PORTNAME%%/filters +@dir(%%NFSENOWN%%,,) var/%%PORTNAME%% @dir var From owner-svn-ports-all@freebsd.org Thu Jul 7 19:42:21 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 268F7B82897; Thu, 7 Jul 2016 19:42:21 +0000 (UTC) (envelope-from feld@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id D984917AA; Thu, 7 Jul 2016 19:42:20 +0000 (UTC) (envelope-from feld@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u67JgKaI099452; Thu, 7 Jul 2016 19:42:20 GMT (envelope-from feld@FreeBSD.org) Received: (from feld@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u67JgJwB099449; Thu, 7 Jul 2016 19:42:19 GMT (envelope-from feld@FreeBSD.org) Message-Id: <201607071942.u67JgJwB099449@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: feld set sender to feld@FreeBSD.org using -f From: Mark Felder Date: Thu, 7 Jul 2016 19:42:19 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r418198 - in branches/2016Q3/net-mgmt/nfsen: . files X-SVN-Group: ports-branches MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 07 Jul 2016 19:42:21 -0000 Author: feld Date: Thu Jul 7 19:42:19 2016 New Revision: 418198 URL: https://svnweb.freebsd.org/changeset/ports/418198 Log: MFH: r418197 net-mgmt/nfsen: Improve default directory permissions Also make it easier to install/run as another user. PR: 210368 Approved by: ports-secteam (with hat) Modified: branches/2016Q3/net-mgmt/nfsen/Makefile branches/2016Q3/net-mgmt/nfsen/files/nfsen.in branches/2016Q3/net-mgmt/nfsen/pkg-plist Directory Properties: branches/2016Q3/ (props changed) Modified: branches/2016Q3/net-mgmt/nfsen/Makefile ============================================================================== --- branches/2016Q3/net-mgmt/nfsen/Makefile Thu Jul 7 19:41:31 2016 (r418197) +++ branches/2016Q3/net-mgmt/nfsen/Makefile Thu Jul 7 19:42:19 2016 (r418198) @@ -3,7 +3,7 @@ PORTNAME= nfsen PORTVERSION= 1.3.7 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= net-mgmt MASTER_SITES= SF/${PORTNAME}/stable/${PORTNAME}-${PORTVERSION} \ http://nfsen.sourceforge.net/ @@ -25,7 +25,9 @@ CPE_PRODUCT= nfsen USE_PHP= session pcre sockets NO_BUILD= yes NO_ARCH= yes +NFSENOWN?= www PLIST_SUB+= PORTNAME=${PORTNAME} +PLIST_SUB+= NFSENOWN=${NFSENOWN} USE_RC_SUBR= nfsen perl_OLD_CMD= %%PERL%% SHEBANG_FILES= bin/testPlugin bin/RebuildHierarchy.pl bin/nfsen bin/nfsend libexec/NfSenRRD.pm \ @@ -40,6 +42,7 @@ SUB_LIST+= "PORTVERSION=${PORTVERSION}" SUB_LIST+= "PREFIX=${PREFIX}" SUB_LIST+= "WWWDIR=${WWWDIR}" SUB_LIST+= "PORTNAME=${PORTNAME}" +SUB_LIST+= "NFSENOWN=${NFSENOWN}" post-patch: .for nfsenfile in ${REINPLACE_LIST} @@ -52,6 +55,8 @@ post-patch: @${REINPLACE_CMD} ${_SUB_LIST_TEMP} ${WRKSRC}/conf.php @${REINPLACE_CMD} "s|/usr/bin/perl|${perl_CMD}|" ${WRKSRC}/libexec/Nfcomm.pm +FIND_EXPR= ! -name \._* -prune + do-install: ${INSTALL} -d ${STAGEDIR}/${PREFIX}/var/${PORTNAME}/profiles-data/live ${INSTALL} -d ${STAGEDIR}/${PREFIX}/var/${PORTNAME}/profiles-stat/live @@ -62,10 +67,10 @@ do-install: ${INSTALL} -d ${STAGEDIR}/${WWWDIR}/plugins (cd ${WRKSRC}/bin && ${INSTALL_SCRIPT} * ${STAGEDIR}/${PREFIX}/bin/) ${INSTALL_DATA} ${WRKSRC}/etc/nfsen-dist.conf ${STAGEDIR}/${PREFIX}/etc/ - (cd ${WRKSRC}/html && ${COPYTREE_SHARE} . ${STAGEDIR}/${WWWDIR}/) - (cd ${WRKSRC}/plugins/frontend/ && ${COPYTREE_SHARE} . ${STAGEDIR}/${WWWDIR}/plugins/) + (cd ${WRKSRC}/html && ${COPYTREE_SHARE} . ${STAGEDIR}/${WWWDIR}/ "${FIND_EXPR}") + (cd ${WRKSRC}/plugins/frontend/ && ${COPYTREE_SHARE} . ${STAGEDIR}/${WWWDIR}/plugins/ "${FIND_EXPR}") (cd ${WRKSRC}/libexec && ${INSTALL_SCRIPT} * ${STAGEDIR}/${PREFIX}/libexec/${PORTNAME}/) - (cd ${WRKSRC}/plugins/backend && ${COPYTREE_SHARE} . ${STAGEDIR}/${PREFIX}/libexec/${PORTNAME}/plugins/) + (cd ${WRKSRC}/plugins/backend && ${COPYTREE_SHARE} . ${STAGEDIR}/${PREFIX}/libexec/${PORTNAME}/plugins/ "${FIND_EXPR}") ${INSTALL_DATA} ${WRKSRC}/installer-items/CopyRecursive.pm ${STAGEDIR}/${PREFIX}/libexec/${PORTNAME}/ ${INSTALL_DATA} ${WRKSRC}/installer-items/RRDconvertv1.pm ${STAGEDIR}/${PREFIX}/libexec/${PORTNAME}/ ${INSTALL_DATA} ${WRKSRC}/conf.php ${STAGEDIR}/${WWWDIR} Modified: branches/2016Q3/net-mgmt/nfsen/files/nfsen.in ============================================================================== --- branches/2016Q3/net-mgmt/nfsen/files/nfsen.in Thu Jul 7 19:41:31 2016 (r418197) +++ branches/2016Q3/net-mgmt/nfsen/files/nfsen.in Thu Jul 7 19:42:19 2016 (r418198) @@ -15,6 +15,7 @@ load_rc_config $name nfsen_enable=${nfsen_enable-"NO"} #nfsen_flags=${nfsen_flags-""} +nfsen_user=${nfsen_user-"%%NFSENOWN%%"} command="%%PREFIX%%/bin/nfsen" start_cmd="%%PREFIX%%/bin/nfsen start" @@ -34,6 +35,7 @@ nfsen_start_precmd() if [ ! -e %%PREFIX%%/var/nfsen/profiles-stat/live/profile.dat ]; then time=$(/bin/date +%s); timeu=$(/bin/expr $time - 300); + profile_dat=%%PREFIX%%/var/nfsen/profiles-stat/live/profile.dat /usr/bin/printf "name = live group = . tbegin = $time @@ -47,7 +49,8 @@ nfsen_start_precmd() type = 0 locked = 0 status = OK - version = 130" | /usr/bin/tr -d '\011' > %%PREFIX%%/var/nfsen/profiles-stat/live/profile.dat; + version = 130" | /usr/bin/tr -d '\011' > ${profile_dat} + chown ${nfsen_user} ${profile_dat} fi } Modified: branches/2016Q3/net-mgmt/nfsen/pkg-plist ============================================================================== --- branches/2016Q3/net-mgmt/nfsen/pkg-plist Thu Jul 7 19:41:31 2016 (r418197) +++ branches/2016Q3/net-mgmt/nfsen/pkg-plist Thu Jul 7 19:42:19 2016 (r418198) @@ -74,13 +74,13 @@ libexec/%%PORTNAME%%/AbuseWhois.pm %%WWWDIR%%/colour_picker.html %%WWWDIR%%/colour_palette.html %%WWWDIR%%/alerting.php -@dir var/%%PORTNAME%%/run -@dir var/%%PORTNAME%%/profiles-stat/live -@dir var/%%PORTNAME%%/profiles-stat -@dir var/%%PORTNAME%%/profiles-data/live -@dir var/%%PORTNAME%%/profiles-data -@dir var/%%PORTNAME%%/profiles/live -@dir var/%%PORTNAME%%/profiles -@dir var/%%PORTNAME%%/filters -@dir var/%%PORTNAME%% +@dir(%%NFSENOWN%%,,) var/%%PORTNAME%%/run +@dir(%%NFSENOWN%%,,) var/%%PORTNAME%%/profiles-stat/live +@dir(%%NFSENOWN%%,,) var/%%PORTNAME%%/profiles-stat +@dir(%%NFSENOWN%%,,) var/%%PORTNAME%%/profiles-data/live +@dir(%%NFSENOWN%%,,) var/%%PORTNAME%%/profiles-data +@dir(%%NFSENOWN%%,,) var/%%PORTNAME%%/profiles/live +@dir(%%NFSENOWN%%,,) var/%%PORTNAME%%/profiles +@dir(%%NFSENOWN%%,,) var/%%PORTNAME%%/filters +@dir(%%NFSENOWN%%,,) var/%%PORTNAME%% @dir var From owner-svn-ports-all@freebsd.org Thu Jul 7 20:58:25 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 8B5A6B758BC; Thu, 7 Jul 2016 20:58:25 +0000 (UTC) (envelope-from feld@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 3D0171F7C; Thu, 7 Jul 2016 20:58:25 +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 u67KwODC026027; Thu, 7 Jul 2016 20:58:24 GMT (envelope-from feld@FreeBSD.org) Received: (from feld@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u67KwNVR026017; Thu, 7 Jul 2016 20:58:23 GMT (envelope-from feld@FreeBSD.org) Message-Id: <201607072058.u67KwNVR026017@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: feld set sender to feld@FreeBSD.org using -f From: Mark Felder Date: Thu, 7 Jul 2016 20:58:23 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418199 - in head: . sysutils sysutils/moosefs-cgi sysutils/moosefs-cgiserv sysutils/moosefs-chunkserver sysutils/moosefs-cli sysutils/moosefs-client sysutils/moosefs-master sysutils/mo... X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 07 Jul 2016 20:58:25 -0000 Author: feld Date: Thu Jul 7 20:58:23 2016 New Revision: 418199 URL: https://svnweb.freebsd.org/changeset/ports/418199 Log: Move moosefs ports to moosefs2 This makes room for moosefs3-* and moosefs4-* ports. We do not want end users blindly upgrading moosefs across major and have issues or data loss. PR: 210306 Added: head/sysutils/moosefs2-cgi/ - copied from r418198, head/sysutils/moosefs-cgi/ head/sysutils/moosefs2-cgiserv/ - copied from r418198, head/sysutils/moosefs-cgiserv/ head/sysutils/moosefs2-chunkserver/ - copied from r418198, head/sysutils/moosefs-chunkserver/ head/sysutils/moosefs2-cli/ - copied from r418198, head/sysutils/moosefs-cli/ head/sysutils/moosefs2-client/ - copied from r418198, head/sysutils/moosefs-client/ head/sysutils/moosefs2-master/ - copied from r418198, head/sysutils/moosefs-master/ head/sysutils/moosefs2-metalogger/ - copied from r418198, head/sysutils/moosefs-metalogger/ head/sysutils/moosefs2-netdump/ - copied from r418198, head/sysutils/moosefs-netdump/ Deleted: head/sysutils/moosefs-cgi/ head/sysutils/moosefs-cgiserv/ head/sysutils/moosefs-chunkserver/ head/sysutils/moosefs-cli/ head/sysutils/moosefs-client/ head/sysutils/moosefs-master/ head/sysutils/moosefs-metalogger/ head/sysutils/moosefs-netdump/ Modified: head/MOVED head/sysutils/Makefile head/sysutils/moosefs2-cgi/Makefile head/sysutils/moosefs2-cgiserv/Makefile head/sysutils/moosefs2-chunkserver/Makefile head/sysutils/moosefs2-cli/Makefile head/sysutils/moosefs2-client/Makefile head/sysutils/moosefs2-master/Makefile head/sysutils/moosefs2-metalogger/Makefile head/sysutils/moosefs2-netdump/Makefile Modified: head/MOVED ============================================================================== --- head/MOVED Thu Jul 7 19:42:19 2016 (r418198) +++ head/MOVED Thu Jul 7 20:58:23 2016 (r418199) @@ -8600,3 +8600,11 @@ games/freetennis||2016-07-05|Depends on graphics/ocaml-images||2016-07-05|Has expired: Depends on expiring devel/omake devel/omake||2016-07-05|Has expired: Broken for more than 6 months www/yahoo-ui||2016-07-05|Has expired: Broken for more than 6 months +sysutils/moosefs-cgi|sysutils/moosefs2-cgi|2016-07-07|Moved to a numbered port name +sysutils/moosefs-cgiserv|sysutils/moosefs2-cgiserv|2016-07-07|Moved to a numbered port name +sysutils/moosefs-chunkserver|sysutils/moosefs2-chunkserver|2016-07-07|Moved to a numbered port name +sysutils/moosefs-cli|sysutils/moosefs2-cli|2016-07-07|Moved to a numbered port name +sysutils/moosefs-client|sysutils/moosefs2-client|2016-07-07|Moved to a numbered port name +sysutils/moosefs-master|sysutils/moosefs2-master|2016-07-07|Moved to a numbered port name +sysutils/moosefs-metalogger|sysutils/moosefs2-metalogger|2016-07-07|Moved to a numbered port name +sysutils/moosefs-netdump|sysutils/moosefs2-netdump|2016-07-07|Moved to a numbered port name Modified: head/sysutils/Makefile ============================================================================== --- head/sysutils/Makefile Thu Jul 7 19:42:19 2016 (r418198) +++ head/sysutils/Makefile Thu Jul 7 20:58:23 2016 (r418199) @@ -593,14 +593,14 @@ SUBDIR += monitord SUBDIR += monitorix SUBDIR += mono-kmod - SUBDIR += moosefs-cgi - SUBDIR += moosefs-cgiserv - SUBDIR += moosefs-chunkserver - SUBDIR += moosefs-cli - SUBDIR += moosefs-client - SUBDIR += moosefs-master - SUBDIR += moosefs-metalogger - SUBDIR += moosefs-netdump + SUBDIR += moosefs2-cgi + SUBDIR += moosefs2-cgiserv + SUBDIR += moosefs2-chunkserver + SUBDIR += moosefs2-cli + SUBDIR += moosefs2-client + SUBDIR += moosefs2-master + SUBDIR += moosefs2-metalogger + SUBDIR += moosefs2-netdump SUBDIR += moreutils SUBDIR += most SUBDIR += mount.app Modified: head/sysutils/moosefs2-cgi/Makefile ============================================================================== --- head/sysutils/moosefs-cgi/Makefile Thu Jul 7 19:42:19 2016 (r418198) +++ head/sysutils/moosefs2-cgi/Makefile Thu Jul 7 20:58:23 2016 (r418199) @@ -9,6 +9,6 @@ LICENSE= GPLv2 MFS_COMPONENT= cgi -MASTERDIR= ${.CURDIR}/../moosefs-master +MASTERDIR= ${.CURDIR}/../moosefs2-master .include "${MASTERDIR}/Makefile" Modified: head/sysutils/moosefs2-cgiserv/Makefile ============================================================================== --- head/sysutils/moosefs-cgiserv/Makefile Thu Jul 7 19:42:19 2016 (r418198) +++ head/sysutils/moosefs2-cgiserv/Makefile Thu Jul 7 20:58:23 2016 (r418199) @@ -9,6 +9,6 @@ LICENSE= GPLv2 MFS_COMPONENT= cgiserv -MASTERDIR= ${.CURDIR}/../moosefs-master +MASTERDIR= ${.CURDIR}/../moosefs2-master .include "${MASTERDIR}/Makefile" Modified: head/sysutils/moosefs2-chunkserver/Makefile ============================================================================== --- head/sysutils/moosefs-chunkserver/Makefile Thu Jul 7 19:42:19 2016 (r418198) +++ head/sysutils/moosefs2-chunkserver/Makefile Thu Jul 7 20:58:23 2016 (r418199) @@ -9,6 +9,6 @@ LICENSE= GPLv2 MFS_COMPONENT= chunkserver -MASTERDIR= ${.CURDIR}/../moosefs-master +MASTERDIR= ${.CURDIR}/../moosefs2-master .include "${MASTERDIR}/Makefile" Modified: head/sysutils/moosefs2-cli/Makefile ============================================================================== --- head/sysutils/moosefs-cli/Makefile Thu Jul 7 19:42:19 2016 (r418198) +++ head/sysutils/moosefs2-cli/Makefile Thu Jul 7 20:58:23 2016 (r418199) @@ -9,6 +9,6 @@ LICENSE= GPLv2 MFS_COMPONENT= cli -MASTERDIR= ${.CURDIR}/../moosefs-master +MASTERDIR= ${.CURDIR}/../moosefs2-master .include "${MASTERDIR}/Makefile" Modified: head/sysutils/moosefs2-client/Makefile ============================================================================== --- head/sysutils/moosefs-client/Makefile Thu Jul 7 19:42:19 2016 (r418198) +++ head/sysutils/moosefs2-client/Makefile Thu Jul 7 20:58:23 2016 (r418199) @@ -9,6 +9,6 @@ LICENSE= GPLv2 MFS_COMPONENT= client -MASTERDIR= ${.CURDIR}/../moosefs-master +MASTERDIR= ${.CURDIR}/../moosefs2-master .include "${MASTERDIR}/Makefile" Modified: head/sysutils/moosefs2-master/Makefile ============================================================================== --- head/sysutils/moosefs-master/Makefile Thu Jul 7 19:42:19 2016 (r418198) +++ head/sysutils/moosefs2-master/Makefile Thu Jul 7 20:58:23 2016 (r418199) @@ -1,12 +1,12 @@ # Created by: Jakub Kruszona-Zawadzki ; Based on port created by: Chifeng Qu # $FreeBSD$ -PORTNAME= moosefs +PORTNAME= moosefs2 PORTVERSION= 2.0.89 CATEGORIES= sysutils MASTER_SITES= http://ppa.moosefs.com/src/ PKGNAMESUFFIX?= -master -DISTNAME= ${PORTNAME}-${PORTVERSION}-1 +DISTNAME= moosefs-${PORTVERSION}-1 MAINTAINER= freebsd@moosefs.com COMMENT?= Fault-tolerant distributed filesystem @@ -15,7 +15,7 @@ LICENSE= GPLv2 USES= python:build GNU_CONFIGURE= yes -WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION} +WRKSRC= ${WRKDIR}/moosefs-${PORTVERSION} PLIST= ${.CURDIR}/pkg-plist DESCR= ${.CURDIR}/pkg-descr @@ -49,7 +49,7 @@ PKGMESSAGE= ${WRKDIR}/pkg-message-cgise PLIST_SUB+= MFS_WORKDIR="${MFS_WORKDIR}" CONFIGURE_ARGS+= --enable-mfscgiserv \ --with-mfscgiserv-dir=${MFS_CGISERVDIR} -RUN_DEPENDS= moosefs-cgi>0:sysutils/moosefs-cgi +RUN_DEPENDS= moosefs2-cgi>0:sysutils/moosefs2-cgi .else CONFIGURE_ARGS+= --disable-mfscgiserv .endif Modified: head/sysutils/moosefs2-metalogger/Makefile ============================================================================== --- head/sysutils/moosefs-metalogger/Makefile Thu Jul 7 19:42:19 2016 (r418198) +++ head/sysutils/moosefs2-metalogger/Makefile Thu Jul 7 20:58:23 2016 (r418199) @@ -9,6 +9,6 @@ LICENSE= GPLv2 MFS_COMPONENT= metalogger -MASTERDIR= ${.CURDIR}/../moosefs-master +MASTERDIR= ${.CURDIR}/../moosefs2-master .include "${MASTERDIR}/Makefile" Modified: head/sysutils/moosefs2-netdump/Makefile ============================================================================== --- head/sysutils/moosefs-netdump/Makefile Thu Jul 7 19:42:19 2016 (r418198) +++ head/sysutils/moosefs2-netdump/Makefile Thu Jul 7 20:58:23 2016 (r418199) @@ -9,6 +9,6 @@ LICENSE= GPLv2 MFS_COMPONENT= netdump -MASTERDIR= ${.CURDIR}/../moosefs-master +MASTERDIR= ${.CURDIR}/../moosefs2-master .include "${MASTERDIR}/Makefile" From owner-svn-ports-all@freebsd.org Thu Jul 7 22:15:37 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id D57CFB8275C; Thu, 7 Jul 2016 22:15:37 +0000 (UTC) (envelope-from jkim@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id AD3951452; Thu, 7 Jul 2016 22:15:37 +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 u67MFaDV055501; Thu, 7 Jul 2016 22:15:36 GMT (envelope-from jkim@FreeBSD.org) Received: (from jkim@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u67MFZEx055491; Thu, 7 Jul 2016 22:15:35 GMT (envelope-from jkim@FreeBSD.org) Message-Id: <201607072215.u67MFZEx055491@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jkim set sender to jkim@FreeBSD.org using -f From: Jung-uk Kim Date: Thu, 7 Jul 2016 22:15:35 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418200 - in head: . security security/otpw security/otpw/files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 07 Jul 2016 22:15:37 -0000 Author: jkim Date: Thu Jul 7 22:15:35 2016 New Revision: 418200 URL: https://svnweb.freebsd.org/changeset/ports/418200 Log: OTPW is a one-time password system which is robust against the password list being stolen and race for the last digit attacks. WWW: https://www.cl.cam.ac.uk/~mgk25/otpw.html Added: head/security/otpw/ head/security/otpw/Makefile (contents, props changed) head/security/otpw/distinfo (contents, props changed) head/security/otpw/files/ head/security/otpw/files/patch-Makefile (contents, props changed) head/security/otpw/files/patch-otpw.c (contents, props changed) head/security/otpw/files/patch-pam__otpw.c (contents, props changed) head/security/otpw/pkg-descr (contents, props changed) head/security/otpw/pkg-plist (contents, props changed) Modified: head/GIDs head/UIDs head/security/Makefile Modified: head/GIDs ============================================================================== --- head/GIDs Thu Jul 7 20:58:23 2016 (r418199) +++ head/GIDs Thu Jul 7 22:15:35 2016 (r418200) @@ -105,6 +105,7 @@ polipo:*:173: flowtools:*:174: twms:*:175: mlvpn:*:176: +otpw:*:178: gdnsd:*:179: rt:*:180: nagios:*:181: Modified: head/UIDs ============================================================================== --- head/UIDs Thu Jul 7 20:58:23 2016 (r418199) +++ head/UIDs Thu Jul 7 22:15:35 2016 (r418200) @@ -111,6 +111,7 @@ polipo:*:173:173::0:0:polipo web cache:/ flowtools:*:174:174::0:0:Flow-tools collector pseudo-user:/nonexistent:/usr/sbin/nologin twms:*:175:175::0:0:tWMS pseudo-user:/nonexistent:/usr/sbin/nologin mlvpn:*:176:176::0:0:mlVPN pseudo-user:/var/run/mlvpn:/usr/sbin/nologin +otpw:*:178:178::0:0:OTPW pseudouser:/var/lib/otpw:/usr/sbin/nologin gdnsd:*:179:179::0:0:gDNSd pseudo-user:/nonexistent:/usr/sbin/nologin nagios:*:181:181::0:0:Nagios pseudo-user:/var/spool/nagios:/usr/sbin/nologin noc:*:182:182::0:0:NOC pseudo-user:/usr/local/noc:/bin/sh Modified: head/security/Makefile ============================================================================== --- head/security/Makefile Thu Jul 7 20:58:23 2016 (r418199) +++ head/security/Makefile Thu Jul 7 22:15:35 2016 (r418200) @@ -430,6 +430,7 @@ SUBDIR += ossec-hids-local SUBDIR += ossec-hids-server SUBDIR += osslsigncode + SUBDIR += otpw SUBDIR += outguess SUBDIR += p11-kit SUBDIR += p5-Apache-Htpasswd Added: head/security/otpw/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/otpw/Makefile Thu Jul 7 22:15:35 2016 (r418200) @@ -0,0 +1,28 @@ +# $FreeBSD$ + +PORTNAME= otpw +PORTVERSION= 1.5 +CATEGORIES= security +MASTER_SITES= https://www.cl.cam.ac.uk/~mgk25/download/ \ + LOCAL/jkim + +MAINTAINER= jkim@FreeBSD.org +COMMENT= One-time password login package by Markus Kuhn + +LICENSE= GPLv2+ + +GROUPS= ${PORTNAME} +USERS= ${PORTNAME} + +MAKE_ARGS= CC="${CC}" +USES= gmake + +do-install: + ${INSTALL_PROGRAM} ${WRKSRC}/otpw-gen ${STAGEDIR}${PREFIX}/bin + ${INSTALL_LIB} ${WRKSRC}/pam_otpw.so ${STAGEDIR}${PREFIX}/lib + ${INSTALL_MAN} ${WRKSRC}/otpw-gen.1.gz \ + ${STAGEDIR}${MANPREFIX}/man/man1 + ${INSTALL_MAN} ${WRKSRC}/pam_otpw.8.gz \ + ${STAGEDIR}${MANPREFIX}/man/man8 + +.include Added: head/security/otpw/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/otpw/distinfo Thu Jul 7 22:15:35 2016 (r418200) @@ -0,0 +1,3 @@ +TIMESTAMP = 1467921387 +SHA256 (otpw-1.5.tar.gz) = 98aca38a61c7713677b96f24426ca7053480c0fd077d91b1e99bc9f92ccb832a +SIZE (otpw-1.5.tar.gz) = 45725 Added: head/security/otpw/files/patch-Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/otpw/files/patch-Makefile Thu Jul 7 22:15:35 2016 (r418200) @@ -0,0 +1,26 @@ +--- Makefile.orig 2014-08-07 19:21:15 UTC ++++ Makefile +@@ -7,12 +7,12 @@ + VERSION=1.5 + + CC=gcc +-CFLAGS=-O -ggdb -W -Wall -Wno-unused-result -fPIC ++CFLAGS+=-fPIC + + %.gz: % + gzip -9c $< >$@ + +-TARGETS=otpw-gen demologin pam_otpw.so pam_otpw.8.gz otpw-gen.1.gz ++TARGETS=otpw-gen pam_otpw.so pam_otpw.8.gz otpw-gen.1.gz + + all: $(TARGETS) + +@@ -28,7 +28,7 @@ rmd160.o: rmd160.c rmd160.h + otpw-l.o: otpw-l.c otpw.c otpw.h md.h + pam_otpw.o: pam_otpw.c otpw.h md.h + pam_otpw.so: pam_otpw.o otpw-l.o rmd160.o md.o +- ld --shared -o $@ $+ -lcrypt -lpam -lpam_misc ++ ${LD} --shared -o $@ $+ -lcrypt -lpam + + distribution: + git archive --prefix otpw-$(VERSION)/ -o otpw-$(VERSION).tar.gz v$(VERSION) Added: head/security/otpw/files/patch-otpw.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/otpw/files/patch-otpw.c Thu Jul 7 22:15:35 2016 (r418200) @@ -0,0 +1,11 @@ +--- otpw.c.orig 2014-08-07 19:21:15 UTC ++++ otpw.c +@@ -68,7 +68,7 @@ static struct otpw_pwdbuf *otpw_malloc_p + + buflen = sysconf(_SC_GETPW_R_SIZE_MAX); /* typical value: 1024 */ + /* fprintf(stderr, "_SC_GETPW_R_SIZE_MAX = %ld\n", buflen); */ +- if (buflen < 0) return NULL; ++ if (buflen < 0) buflen = 1024; + p = (struct otpw_pwdbuf *) malloc(sizeof(struct otpw_pwdbuf) + buflen); + if (p) p->buflen = buflen; + return p; Added: head/security/otpw/files/patch-pam__otpw.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/otpw/files/patch-pam__otpw.c Thu Jul 7 22:15:35 2016 (r418200) @@ -0,0 +1,26 @@ +--- pam_otpw.c.orig 2014-08-07 19:21:15 UTC ++++ pam_otpw.c +@@ -25,6 +25,9 @@ + #define PAM_SM_AUTH + #define PAM_SM_SESSION + #include ++#ifdef OPENPAM ++#include ++#endif + + #include "otpw.h" + +@@ -226,8 +229,13 @@ PAM_EXTERN int pam_sm_authenticate(pam_h + + /* get user name */ + retval = pam_get_user(pamh, &username, "login: "); ++#ifdef OPENPAM ++ if (retval == PAM_CONV_ERR) ++ return PAM_CONV_ERR; ++#else + if (retval == PAM_CONV_AGAIN) + return PAM_INCOMPLETE; ++#endif + else if (retval != PAM_SUCCESS) { + log_message(LOG_NOTICE, pamh, "no username provided"); + return PAM_USER_UNKNOWN; Added: head/security/otpw/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/otpw/pkg-descr Thu Jul 7 22:15:35 2016 (r418200) @@ -0,0 +1,4 @@ +OTPW is a one-time password system which is robust against the password +list being stolen and race for the last digit attacks. + +WWW: https://www.cl.cam.ac.uk/~mgk25/otpw.html Added: head/security/otpw/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/otpw/pkg-plist Thu Jul 7 22:15:35 2016 (r418200) @@ -0,0 +1,4 @@ +@(otpw,otpw,4555) bin/otpw-gen +lib/pam_otpw.so +man/man1/otpw-gen.1.gz +man/man8/pam_otpw.8.gz From owner-svn-ports-all@freebsd.org Thu Jul 7 22:28:11 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 17436B828E3; Thu, 7 Jul 2016 22:28:11 +0000 (UTC) (envelope-from jkim@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id C9E9F18E6; Thu, 7 Jul 2016 22:28:10 +0000 (UTC) (envelope-from jkim@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u67MS9jd059246; Thu, 7 Jul 2016 22:28:09 GMT (envelope-from jkim@FreeBSD.org) Received: (from jkim@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u67MS98k059245; Thu, 7 Jul 2016 22:28:09 GMT (envelope-from jkim@FreeBSD.org) Message-Id: <201607072228.u67MS98k059245@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jkim set sender to jkim@FreeBSD.org using -f From: Jung-uk Kim Date: Thu, 7 Jul 2016 22:28:09 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418201 - head X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 07 Jul 2016 22:28:11 -0000 Author: jkim Date: Thu Jul 7 22:28:09 2016 New Revision: 418201 URL: https://svnweb.freebsd.org/changeset/ports/418201 Log: Spell pseudo-user consistently. Modified: head/UIDs Modified: head/UIDs ============================================================================== --- head/UIDs Thu Jul 7 22:15:35 2016 (r418200) +++ head/UIDs Thu Jul 7 22:28:09 2016 (r418201) @@ -111,7 +111,7 @@ polipo:*:173:173::0:0:polipo web cache:/ flowtools:*:174:174::0:0:Flow-tools collector pseudo-user:/nonexistent:/usr/sbin/nologin twms:*:175:175::0:0:tWMS pseudo-user:/nonexistent:/usr/sbin/nologin mlvpn:*:176:176::0:0:mlVPN pseudo-user:/var/run/mlvpn:/usr/sbin/nologin -otpw:*:178:178::0:0:OTPW pseudouser:/var/lib/otpw:/usr/sbin/nologin +otpw:*:178:178::0:0:OTPW pseudo-user:/var/lib/otpw:/usr/sbin/nologin gdnsd:*:179:179::0:0:gDNSd pseudo-user:/nonexistent:/usr/sbin/nologin nagios:*:181:181::0:0:Nagios pseudo-user:/var/spool/nagios:/usr/sbin/nologin noc:*:182:182::0:0:NOC pseudo-user:/usr/local/noc:/bin/sh From owner-svn-ports-all@freebsd.org Thu Jul 7 22:33:22 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 70B39B82AF2; Thu, 7 Jul 2016 22:33:22 +0000 (UTC) (envelope-from bapt@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 24E001DEF; Thu, 7 Jul 2016 22:33:22 +0000 (UTC) (envelope-from bapt@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u67MXL8n062753; Thu, 7 Jul 2016 22:33:21 GMT (envelope-from bapt@FreeBSD.org) Received: (from bapt@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u67MXLxw062752; Thu, 7 Jul 2016 22:33:21 GMT (envelope-from bapt@FreeBSD.org) Message-Id: <201607072233.u67MXLxw062752@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: bapt set sender to bapt@FreeBSD.org using -f From: Baptiste Daroussin Date: Thu, 7 Jul 2016 22:33:21 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418202 - head/textproc/en-hunspell X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 07 Jul 2016 22:33:22 -0000 Author: bapt Date: Thu Jul 7 22:33:21 2016 New Revision: 418202 URL: https://svnweb.freebsd.org/changeset/ports/418202 Log: Fix distinfo after r418169 PR: 210896 Submitted by: lightside@gmx.com Pointyhat to: bapt Modified: head/textproc/en-hunspell/distinfo Modified: head/textproc/en-hunspell/distinfo ============================================================================== --- head/textproc/en-hunspell/distinfo Thu Jul 7 22:28:09 2016 (r418201) +++ head/textproc/en-hunspell/distinfo Thu Jul 7 22:33:21 2016 (r418202) @@ -1,7 +1,15 @@ TIMESTAMP = 1467890198 -SHA256 (hunspell/hunspell-en_US-2016.06.26.zip) = fd3827f91a609a4e9d3d0dbcf4b1d450667af26d15199de4812eeb88304dcd3f -SIZE (hunspell/hunspell-en_US-2016.06.26.zip) = 196039 +SHA256 (hunspell/hunspell-en_CA-large-2016.06.26.zip) = 823a4375515e52ca4c3331a70b1de0dd032c3292adb94a700ba84b065c6d744b +SIZE (hunspell/hunspell-en_CA-large-2016.06.26.zip) = 312211 SHA256 (hunspell/hunspell-en_CA-2016.06.26.zip) = 5ea189fe8159d16b4acdf1a2fef5a27fb62a3c861c62555a995c4b056a9c766a SIZE (hunspell/hunspell-en_CA-2016.06.26.zip) = 196542 SHA256 (hunspell/hunspell-en_GB-ise-2016.06.26.zip) = f6d78e0be076efca0de0dff4e97c3cfd0872367a4cea0cc2ce6ade20de689e2a SIZE (hunspell/hunspell-en_GB-ise-2016.06.26.zip) = 196673 +SHA256 (hunspell/hunspell-en_GB-ize-2016.06.26.zip) = 7e9abe563ce9e2465f837f3278a74415517c8022fd273fa1d6ddc4a2ac1596e1 +SIZE (hunspell/hunspell-en_GB-ize-2016.06.26.zip) = 196623 +SHA256 (hunspell/hunspell-en_GB-large-2016.06.26.zip) = 68c0035d6ee49eef8dee4869818b8088817250ec61a22bd1b48979994818241f +SIZE (hunspell/hunspell-en_GB-large-2016.06.26.zip) = 314738 +SHA256 (hunspell/hunspell-en_US-2016.06.26.zip) = fd3827f91a609a4e9d3d0dbcf4b1d450667af26d15199de4812eeb88304dcd3f +SIZE (hunspell/hunspell-en_US-2016.06.26.zip) = 196039 +SHA256 (hunspell/hunspell-en_US-large-2016.06.26.zip) = 16a431777e6ed6c471d521defe11cdc492da0322b8b90d9f2ea3aef7d8284408 +SIZE (hunspell/hunspell-en_US-large-2016.06.26.zip) = 310721 From owner-svn-ports-all@freebsd.org Thu Jul 7 22:50:25 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 51000B82E07; Thu, 7 Jul 2016 22:50:25 +0000 (UTC) (envelope-from adamw@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 061A1170F; Thu, 7 Jul 2016 22:50:24 +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 u67MoOTo066740; Thu, 7 Jul 2016 22:50:24 GMT (envelope-from adamw@FreeBSD.org) Received: (from adamw@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u67MoOTd066738; Thu, 7 Jul 2016 22:50:24 GMT (envelope-from adamw@FreeBSD.org) Message-Id: <201607072250.u67MoOTd066738@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: adamw set sender to adamw@FreeBSD.org using -f From: Adam Weinberger Date: Thu, 7 Jul 2016 22:50:24 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418203 - head/mail/dovecot2-pigeonhole X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 07 Jul 2016 22:50:25 -0000 Author: adamw Date: Thu Jul 7 22:50:23 2016 New Revision: 418203 URL: https://svnweb.freebsd.org/changeset/ports/418203 Log: Update to 0.4.15. * vacation extension: The sieve_user_email setting is now used in the check for implicit delivery. - imapsieve plugin: For any mail transaction, the mailbox was opened a second time, even if no mailbox rule matched. This was unintentional, useless and caused problems when the imapsieve plugin was used with other plugins like acl. - extprograms plugin: Significantly improved error handling. No stream errors were logged. - extprograms plugin: Fixed bug in handling of result code from remote program (script service). - extprograms plugin: Connection to remote program service was not retried. - Several small fixes based on static analysis. - Fixed handling of quoted string localparts in email addresses. PR: 210905 Submitted by: maintainer (Larry Rosenman) Modified: head/mail/dovecot2-pigeonhole/Makefile head/mail/dovecot2-pigeonhole/distinfo Modified: head/mail/dovecot2-pigeonhole/Makefile ============================================================================== --- head/mail/dovecot2-pigeonhole/Makefile Thu Jul 7 22:33:21 2016 (r418202) +++ head/mail/dovecot2-pigeonhole/Makefile Thu Jul 7 22:50:23 2016 (r418203) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= dovecot-pigeonhole -PORTVERSION= 0.4.14 -PORTREVISION= 2 +PORTVERSION= 0.4.15 CATEGORIES= mail MASTER_SITES= http://pigeonhole.dovecot.org/releases/${DOVECOTVERSION}/ DISTNAME= ${PORTNAME:C/-/-${DOVECOTVERSION}-/}-${PORTVERSION} Modified: head/mail/dovecot2-pigeonhole/distinfo ============================================================================== --- head/mail/dovecot2-pigeonhole/distinfo Thu Jul 7 22:33:21 2016 (r418202) +++ head/mail/dovecot2-pigeonhole/distinfo Thu Jul 7 22:50:23 2016 (r418203) @@ -1,2 +1,3 @@ -SHA256 (dovecot-2.2-pigeonhole-0.4.14.tar.gz) = dff30a636c1516158f3e159c669a254569c9dabaa6ecfa3669379101ea5b3300 -SIZE (dovecot-2.2-pigeonhole-0.4.14.tar.gz) = 1752101 +TIMESTAMP = 1467930412 +SHA256 (dovecot-2.2-pigeonhole-0.4.15.tar.gz) = c99ace6ead310c6c3b639922da618f90d846307da4fe252d994e5e51bf8a3de3 +SIZE (dovecot-2.2-pigeonhole-0.4.15.tar.gz) = 1755980 From owner-svn-ports-all@freebsd.org Thu Jul 7 22:54:34 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 4EFB6B82F9B; Thu, 7 Jul 2016 22:54: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 mx1.freebsd.org (Postfix) with ESMTPS id 1F5CB1AB5; Thu, 7 Jul 2016 22:54:34 +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 u67MsX0C070191; Thu, 7 Jul 2016 22:54:33 GMT (envelope-from stephen@FreeBSD.org) Received: (from stephen@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u67MsXuW070189; Thu, 7 Jul 2016 22:54:33 GMT (envelope-from stephen@FreeBSD.org) Message-Id: <201607072254.u67MsXuW070189@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: stephen set sender to stephen@FreeBSD.org using -f From: Stephen Montgomery-Smith Date: Thu, 7 Jul 2016 22:54:33 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418204 - head/math/octave-forge-io X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 07 Jul 2016 22:54:34 -0000 Author: stephen Date: Thu Jul 7 22:54:33 2016 New Revision: 418204 URL: https://svnweb.freebsd.org/changeset/ports/418204 Log: Update to 2.4.2. Modified: head/math/octave-forge-io/Makefile head/math/octave-forge-io/distinfo Modified: head/math/octave-forge-io/Makefile ============================================================================== --- head/math/octave-forge-io/Makefile Thu Jul 7 22:50:23 2016 (r418203) +++ head/math/octave-forge-io/Makefile Thu Jul 7 22:54:33 2016 (r418204) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= octave-forge-io -PORTVERSION= 2.4.1 +PORTVERSION= 2.4.2 PORTEPOCH= 1 CATEGORIES= math Modified: head/math/octave-forge-io/distinfo ============================================================================== --- head/math/octave-forge-io/distinfo Thu Jul 7 22:50:23 2016 (r418203) +++ head/math/octave-forge-io/distinfo Thu Jul 7 22:54:33 2016 (r418204) @@ -1,2 +1,3 @@ -SHA256 (octave-forge/io-2.4.1.tar.gz) = 18b2717355516ec9951d0abe909732ea3fef2aadcb76ee17cf22118f3e347408 -SIZE (octave-forge/io-2.4.1.tar.gz) = 202602 +TIMESTAMP = 1467931651 +SHA256 (octave-forge/io-2.4.2.tar.gz) = 24f57d9f226e0a95daad9c53ff021ec8c17ebcb2098acf040042e1a2a8503a47 +SIZE (octave-forge/io-2.4.2.tar.gz) = 203600 From owner-svn-ports-all@freebsd.org Thu Jul 7 23:20:15 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 8AE5FB82497; Thu, 7 Jul 2016 23:20:15 +0000 (UTC) (envelope-from junovitch@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 5BBFF17F5; Thu, 7 Jul 2016 23:20:15 +0000 (UTC) (envelope-from junovitch@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u67NKEoX077941; Thu, 7 Jul 2016 23:20:14 GMT (envelope-from junovitch@FreeBSD.org) Received: (from junovitch@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u67NKEia077938; Thu, 7 Jul 2016 23:20:14 GMT (envelope-from junovitch@FreeBSD.org) Message-Id: <201607072320.u67NKEia077938@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: junovitch set sender to junovitch@FreeBSD.org using -f From: Jason Unovitch Date: Thu, 7 Jul 2016 23:20:14 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418205 - head/www/kanboard X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 07 Jul 2016 23:20:15 -0000 Author: junovitch Date: Thu Jul 7 23:20:14 2016 New Revision: 418205 URL: https://svnweb.freebsd.org/changeset/ports/418205 Log: www/kanboard: update 1.0.29 -> 1.0.31 Changes: https://kanboard.net/news/version-1.0.30 https://kanboard.net/news/version-1.0.31 PR: 210818 Submitted by: Bart Wrobel (maintainer) Modified: head/www/kanboard/Makefile head/www/kanboard/distinfo head/www/kanboard/pkg-plist Modified: head/www/kanboard/Makefile ============================================================================== --- head/www/kanboard/Makefile Thu Jul 7 22:54:33 2016 (r418204) +++ head/www/kanboard/Makefile Thu Jul 7 23:20:14 2016 (r418205) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= kanboard -PORTVERSION= 1.0.29 +PORTVERSION= 1.0.31 CATEGORIES= www MASTER_SITES= http://kanboard.net/ \ https://bitbucket.org/if0/kanboard-archives/downloads/ \ Modified: head/www/kanboard/distinfo ============================================================================== --- head/www/kanboard/distinfo Thu Jul 7 22:54:33 2016 (r418204) +++ head/www/kanboard/distinfo Thu Jul 7 23:20:14 2016 (r418205) @@ -1,3 +1,3 @@ TIMESTAMP = 1466282100 -SHA256 (kanboard-1.0.29.zip) = adf012a502f2f9fb7d4ed31fba949f4aa36a2c069c0cf9faddf0055f96e3db6f -SIZE (kanboard-1.0.29.zip) = 4703226 +SHA256 (kanboard-1.0.31.zip) = 85bda7cec439a2c854eb70d1a204df9ccacca6dda111e71fb6ff8e340e1bc644 +SIZE (kanboard-1.0.31.zip) = 4907308 Modified: head/www/kanboard/pkg-plist ============================================================================== --- head/www/kanboard/pkg-plist Thu Jul 7 22:54:33 2016 (r418204) +++ head/www/kanboard/pkg-plist Thu Jul 7 23:20:14 2016 (r418205) @@ -1,4 +1,3 @@ -@owner %%KANBOARD_USERNAME%% @group %%KANBOARD_GROUPNAME%% %%WWWDIR%%/.htaccess %%WWWDIR%%/ChangeLog @@ -37,26 +36,40 @@ %%WWWDIR%%/app/Analytic/EstimatedTimeComparisonAnalytic.php %%WWWDIR%%/app/Analytic/TaskDistributionAnalytic.php %%WWWDIR%%/app/Analytic/UserDistributionAnalytic.php -%%WWWDIR%%/app/Api/ActionApi.php -%%WWWDIR%%/app/Api/AppApi.php -%%WWWDIR%%/app/Api/BaseApi.php -%%WWWDIR%%/app/Api/BoardApi.php -%%WWWDIR%%/app/Api/CategoryApi.php -%%WWWDIR%%/app/Api/ColumnApi.php -%%WWWDIR%%/app/Api/CommentApi.php -%%WWWDIR%%/app/Api/FileApi.php -%%WWWDIR%%/app/Api/GroupApi.php -%%WWWDIR%%/app/Api/GroupMemberApi.php -%%WWWDIR%%/app/Api/LinkApi.php -%%WWWDIR%%/app/Api/MeApi.php -%%WWWDIR%%/app/Api/Middleware/AuthenticationApiMiddleware.php -%%WWWDIR%%/app/Api/ProjectApi.php -%%WWWDIR%%/app/Api/ProjectPermissionApi.php -%%WWWDIR%%/app/Api/SubtaskApi.php -%%WWWDIR%%/app/Api/SwimlaneApi.php -%%WWWDIR%%/app/Api/TaskApi.php -%%WWWDIR%%/app/Api/TaskLinkApi.php -%%WWWDIR%%/app/Api/UserApi.php +%%WWWDIR%%/app/Api/Authorization/ActionAuthorization.php +%%WWWDIR%%/app/Api/Authorization/CategoryAuthorization.php +%%WWWDIR%%/app/Api/Authorization/ColumnAuthorization.php +%%WWWDIR%%/app/Api/Authorization/CommentAuthorization.php +%%WWWDIR%%/app/Api/Authorization/ProcedureAuthorization.php +%%WWWDIR%%/app/Api/Authorization/ProjectAuthorization.php +%%WWWDIR%%/app/Api/Authorization/SubtaskAuthorization.php +%%WWWDIR%%/app/Api/Authorization/TaskAuthorization.php +%%WWWDIR%%/app/Api/Authorization/TaskFileAuthorization.php +%%WWWDIR%%/app/Api/Authorization/TaskLinkAuthorization.php +%%WWWDIR%%/app/Api/Authorization/UserAuthorization.php +%%WWWDIR%%/app/Api/Middleware/AuthenticationMiddleware.php +%%WWWDIR%%/app/Api/Procedure/ActionProcedure.php +%%WWWDIR%%/app/Api/Procedure/AppProcedure.php +%%WWWDIR%%/app/Api/Procedure/BaseProcedure.php +%%WWWDIR%%/app/Api/Procedure/BoardProcedure.php +%%WWWDIR%%/app/Api/Procedure/CategoryProcedure.php +%%WWWDIR%%/app/Api/Procedure/ColumnProcedure.php +%%WWWDIR%%/app/Api/Procedure/CommentProcedure.php +%%WWWDIR%%/app/Api/Procedure/GroupMemberProcedure.php +%%WWWDIR%%/app/Api/Procedure/GroupProcedure.php +%%WWWDIR%%/app/Api/Procedure/LinkProcedure.php +%%WWWDIR%%/app/Api/Procedure/MeProcedure.php +%%WWWDIR%%/app/Api/Procedure/ProjectFileProcedure.php +%%WWWDIR%%/app/Api/Procedure/ProjectPermissionProcedure.php +%%WWWDIR%%/app/Api/Procedure/ProjectProcedure.php +%%WWWDIR%%/app/Api/Procedure/SubtaskProcedure.php +%%WWWDIR%%/app/Api/Procedure/SubtaskTimeTrackingProcedure.php +%%WWWDIR%%/app/Api/Procedure/SwimlaneProcedure.php +%%WWWDIR%%/app/Api/Procedure/TaskExternalLinkProcedure.php +%%WWWDIR%%/app/Api/Procedure/TaskFileProcedure.php +%%WWWDIR%%/app/Api/Procedure/TaskLinkProcedure.php +%%WWWDIR%%/app/Api/Procedure/TaskProcedure.php +%%WWWDIR%%/app/Api/Procedure/UserProcedure.php %%WWWDIR%%/app/Auth/DatabaseAuth.php %%WWWDIR%%/app/Auth/LdapAuth.php %%WWWDIR%%/app/Auth/RememberMeAuth.php @@ -122,6 +135,7 @@ %%WWWDIR%%/app/Controller/ProjectOverviewController.php %%WWWDIR%%/app/Controller/ProjectPermissionController.php %%WWWDIR%%/app/Controller/ProjectStatusController.php +%%WWWDIR%%/app/Controller/ProjectTagController.php %%WWWDIR%%/app/Controller/ProjectUserOverviewController.php %%WWWDIR%%/app/Controller/ProjectViewController.php %%WWWDIR%%/app/Controller/SearchController.php @@ -130,6 +144,7 @@ %%WWWDIR%%/app/Controller/SubtaskRestrictionController.php %%WWWDIR%%/app/Controller/SubtaskStatusController.php %%WWWDIR%%/app/Controller/SwimlaneController.php +%%WWWDIR%%/app/Controller/TagController.php %%WWWDIR%%/app/Controller/TaskAjaxController.php %%WWWDIR%%/app/Controller/TaskBulkController.php %%WWWDIR%%/app/Controller/TaskCreationController.php @@ -305,11 +320,15 @@ %%WWWDIR%%/app/Filter/TaskStatusFilter.php %%WWWDIR%%/app/Filter/TaskSubtaskAssigneeFilter.php %%WWWDIR%%/app/Filter/TaskSwimlaneFilter.php +%%WWWDIR%%/app/Filter/TaskTagFilter.php %%WWWDIR%%/app/Filter/TaskTitleFilter.php %%WWWDIR%%/app/Filter/UserNameFilter.php %%WWWDIR%%/app/Formatter/BaseFormatter.php %%WWWDIR%%/app/Formatter/BaseTaskCalendarFormatter.php +%%WWWDIR%%/app/Formatter/BoardColumnFormatter.php %%WWWDIR%%/app/Formatter/BoardFormatter.php +%%WWWDIR%%/app/Formatter/BoardSwimlaneFormatter.php +%%WWWDIR%%/app/Formatter/BoardTaskFormatter.php %%WWWDIR%%/app/Formatter/GroupAutoCompleteFormatter.php %%WWWDIR%%/app/Formatter/ProjectActivityEventFormatter.php %%WWWDIR%%/app/Formatter/ProjectGanttFormatter.php @@ -413,12 +432,16 @@ %%WWWDIR%%/app/Model/ProjectNotificationModel.php %%WWWDIR%%/app/Model/ProjectNotificationTypeModel.php %%WWWDIR%%/app/Model/ProjectPermissionModel.php +%%WWWDIR%%/app/Model/ProjectTaskDuplicationModel.php +%%WWWDIR%%/app/Model/ProjectTaskPriorityModel.php %%WWWDIR%%/app/Model/ProjectUserRoleModel.php %%WWWDIR%%/app/Model/RememberMeSessionModel.php %%WWWDIR%%/app/Model/SettingModel.php %%WWWDIR%%/app/Model/SubtaskModel.php %%WWWDIR%%/app/Model/SubtaskTimeTrackingModel.php %%WWWDIR%%/app/Model/SwimlaneModel.php +%%WWWDIR%%/app/Model/TagDuplicationModel.php +%%WWWDIR%%/app/Model/TagModel.php %%WWWDIR%%/app/Model/TaskAnalyticModel.php %%WWWDIR%%/app/Model/TaskCreationModel.php %%WWWDIR%%/app/Model/TaskDuplicationModel.php @@ -430,7 +453,11 @@ %%WWWDIR%%/app/Model/TaskModel.php %%WWWDIR%%/app/Model/TaskModificationModel.php %%WWWDIR%%/app/Model/TaskPositionModel.php +%%WWWDIR%%/app/Model/TaskProjectDuplicationModel.php +%%WWWDIR%%/app/Model/TaskProjectMoveModel.php +%%WWWDIR%%/app/Model/TaskRecurrenceModel.php %%WWWDIR%%/app/Model/TaskStatusModel.php +%%WWWDIR%%/app/Model/TaskTagModel.php %%WWWDIR%%/app/Model/TimezoneModel.php %%WWWDIR%%/app/Model/TransitionModel.php %%WWWDIR%%/app/Model/UserLockingModel.php @@ -648,6 +675,10 @@ %%WWWDIR%%/app/Template/project_status/disable.php %%WWWDIR%%/app/Template/project_status/enable.php %%WWWDIR%%/app/Template/project_status/remove.php +%%WWWDIR%%/app/Template/project_tag/create.php +%%WWWDIR%%/app/Template/project_tag/edit.php +%%WWWDIR%%/app/Template/project_tag/index.php +%%WWWDIR%%/app/Template/project_tag/remove.php %%WWWDIR%%/app/Template/project_user_overview/layout.php %%WWWDIR%%/app/Template/project_user_overview/roles.php %%WWWDIR%%/app/Template/project_user_overview/sidebar.php @@ -675,9 +706,12 @@ %%WWWDIR%%/app/Template/swimlane/index.php %%WWWDIR%%/app/Template/swimlane/remove.php %%WWWDIR%%/app/Template/swimlane/table.php +%%WWWDIR%%/app/Template/tag/create.php +%%WWWDIR%%/app/Template/tag/edit.php +%%WWWDIR%%/app/Template/tag/index.php +%%WWWDIR%%/app/Template/tag/remove.php %%WWWDIR%%/app/Template/task/analytics.php %%WWWDIR%%/app/Template/task/changes.php -%%WWWDIR%%/app/Template/task/color_picker.php %%WWWDIR%%/app/Template/task/description.php %%WWWDIR%%/app/Template/task/details.php %%WWWDIR%%/app/Template/task/dropdown.php @@ -716,10 +750,7 @@ %%WWWDIR%%/app/Template/task_internal_link/show.php %%WWWDIR%%/app/Template/task_internal_link/table.php %%WWWDIR%%/app/Template/task_list/show.php -%%WWWDIR%%/app/Template/task_modification/edit_description.php -%%WWWDIR%%/app/Template/task_modification/edit_task.php -%%WWWDIR%%/app/Template/task_popover/change_assignee.php -%%WWWDIR%%/app/Template/task_popover/change_category.php +%%WWWDIR%%/app/Template/task_modification/show.php %%WWWDIR%%/app/Template/task_recurrence/edit.php %%WWWDIR%%/app/Template/task_recurrence/info.php %%WWWDIR%%/app/Template/task_status/close.php @@ -774,6 +805,7 @@ %%WWWDIR%%/app/Validator/ProjectValidator.php %%WWWDIR%%/app/Validator/SubtaskValidator.php %%WWWDIR%%/app/Validator/SwimlaneValidator.php +%%WWWDIR%%/app/Validator/TagValidator.php %%WWWDIR%%/app/Validator/TaskLinkValidator.php %%WWWDIR%%/app/Validator/TaskValidator.php %%WWWDIR%%/app/Validator/UserValidator.php @@ -903,16 +935,20 @@ %%WWWDIR%%/doc/api-column-procedures.markdown %%WWWDIR%%/doc/api-comment-procedures.markdown %%WWWDIR%%/doc/api-examples.markdown -%%WWWDIR%%/doc/api-file-procedures.markdown +%%WWWDIR%%/doc/api-external-task-link-procedures.markdown %%WWWDIR%%/doc/api-group-member-procedures.markdown %%WWWDIR%%/doc/api-group-procedures.markdown +%%WWWDIR%%/doc/api-internal-task-link-procedures.markdown %%WWWDIR%%/doc/api-json-rpc.markdown %%WWWDIR%%/doc/api-link-procedures.markdown %%WWWDIR%%/doc/api-me-procedures.markdown +%%WWWDIR%%/doc/api-project-file-procedures.markdown %%WWWDIR%%/doc/api-project-permission-procedures.markdown %%WWWDIR%%/doc/api-project-procedures.markdown %%WWWDIR%%/doc/api-subtask-procedures.markdown +%%WWWDIR%%/doc/api-subtask-time-tracking-procedures.markdown %%WWWDIR%%/doc/api-swimlane-procedures.markdown +%%WWWDIR%%/doc/api-task-file-procedures.markdown %%WWWDIR%%/doc/api-task-procedures.markdown %%WWWDIR%%/doc/api-user-procedures.markdown %%WWWDIR%%/doc/application-configuration.markdown @@ -944,69 +980,75 @@ %%WWWDIR%%/doc/editing-projects.markdown %%WWWDIR%%/doc/email-configuration.markdown %%WWWDIR%%/doc/env.markdown +%%WWWDIR%%/doc/es_ES/calendar-configuration.markdown +%%WWWDIR%%/doc/es_ES/email-configuration.markdown +%%WWWDIR%%/doc/es_ES/kanban-vs-todo-and-scrum.markdown %%WWWDIR%%/doc/faq.markdown -%%WWWDIR%%/doc/fr/2fa.markdown -%%WWWDIR%%/doc/fr/analytics-tasks.markdown -%%WWWDIR%%/doc/fr/analytics.markdown -%%WWWDIR%%/doc/fr/application-configuration.markdown -%%WWWDIR%%/doc/fr/application-configuration.markup -%%WWWDIR%%/doc/fr/automatic-actions.markdown -%%WWWDIR%%/doc/fr/board-collapsed-expanded.markdown -%%WWWDIR%%/doc/fr/board-configuration.markdown -%%WWWDIR%%/doc/fr/board-horizontal-scrolling-and-compact-view.markdown -%%WWWDIR%%/doc/fr/board-show-hide-columns.markdown -%%WWWDIR%%/doc/fr/calendar-configuration.markdown -%%WWWDIR%%/doc/fr/calendar.markdown -%%WWWDIR%%/doc/fr/closing-tasks.markdown -%%WWWDIR%%/doc/fr/create-tasks-by-email.markdown -%%WWWDIR%%/doc/fr/creating-projects.markdown -%%WWWDIR%%/doc/fr/creating-tasks.markdown -%%WWWDIR%%/doc/fr/currency-rate.markdown -%%WWWDIR%%/doc/fr/duplicate-move-tasks.markdown -%%WWWDIR%%/doc/fr/editing-projects.markdown -%%WWWDIR%%/doc/fr/gantt-chart-projects.markdown -%%WWWDIR%%/doc/fr/gantt-chart-tasks.markdown -%%WWWDIR%%/doc/fr/index.markdown -%%WWWDIR%%/doc/fr/kanban-vs-todo-and-scrum.markdown -%%WWWDIR%%/doc/fr/keyboard-shortcuts.markdown -%%WWWDIR%%/doc/fr/link-labels.markdown -%%WWWDIR%%/doc/fr/notifications.markdown -%%WWWDIR%%/doc/fr/project-configuration.markdown -%%WWWDIR%%/doc/fr/project-permissions.markdown -%%WWWDIR%%/doc/fr/project-types.markdown -%%WWWDIR%%/doc/fr/project-views.markdown -%%WWWDIR%%/doc/fr/recurring-tasks.markdown -%%WWWDIR%%/doc/fr/roles.markdown -%%WWWDIR%%/doc/fr/screenshots.markdown -%%WWWDIR%%/doc/fr/screenshots/automatic-action-creation.png -%%WWWDIR%%/doc/fr/screenshots/board-collapsed-mode.png -%%WWWDIR%%/doc/fr/screenshots/board-compact-mode.png -%%WWWDIR%%/doc/fr/screenshots/board-expanded-mode.png -%%WWWDIR%%/doc/fr/screenshots/board-task-limit.png -%%WWWDIR%%/doc/fr/screenshots/board-view.png -%%WWWDIR%%/doc/fr/screenshots/calendar-view.png -%%WWWDIR%%/doc/fr/screenshots/gantt-view.png -%%WWWDIR%%/doc/fr/screenshots/hide-column.png -%%WWWDIR%%/doc/fr/screenshots/list-view.png -%%WWWDIR%%/doc/fr/screenshots/new-project.png -%%WWWDIR%%/doc/fr/screenshots/new-user.png -%%WWWDIR%%/doc/fr/screenshots/project-disable-sharing.png -%%WWWDIR%%/doc/fr/screenshots/project-edition.png -%%WWWDIR%%/doc/fr/screenshots/project-enable-sharing.png -%%WWWDIR%%/doc/fr/screenshots/project-permissions.png -%%WWWDIR%%/doc/fr/screenshots/project-view.png -%%WWWDIR%%/doc/fr/screenshots/show-column.png -%%WWWDIR%%/doc/fr/screenshots/swimlane-configuration.png -%%WWWDIR%%/doc/fr/screenshots/swimlanes.png -%%WWWDIR%%/doc/fr/sharing-projects.markdown -%%WWWDIR%%/doc/fr/subtasks.markdown -%%WWWDIR%%/doc/fr/swimlanes.markdown -%%WWWDIR%%/doc/fr/task-links.markdown -%%WWWDIR%%/doc/fr/time-tracking.markdown -%%WWWDIR%%/doc/fr/transitions.markdown -%%WWWDIR%%/doc/fr/usage-examples.markdown -%%WWWDIR%%/doc/fr/user-management.markdown -%%WWWDIR%%/doc/fr/what-is-kanban.markdown +%%WWWDIR%%/doc/fr_FR/2fa.markdown +%%WWWDIR%%/doc/fr_FR/analytics-tasks.markdown +%%WWWDIR%%/doc/fr_FR/analytics.markdown +%%WWWDIR%%/doc/fr_FR/application-configuration.markdown +%%WWWDIR%%/doc/fr_FR/application-configuration.markup +%%WWWDIR%%/doc/fr_FR/automatic-actions.markdown +%%WWWDIR%%/doc/fr_FR/board-collapsed-expanded.markdown +%%WWWDIR%%/doc/fr_FR/board-configuration.markdown +%%WWWDIR%%/doc/fr_FR/board-horizontal-scrolling-and-compact-view.markdown +%%WWWDIR%%/doc/fr_FR/board-show-hide-columns.markdown +%%WWWDIR%%/doc/fr_FR/calendar-configuration.markdown +%%WWWDIR%%/doc/fr_FR/calendar.markdown +%%WWWDIR%%/doc/fr_FR/closing-tasks.markdown +%%WWWDIR%%/doc/fr_FR/create-tasks-by-email.markdown +%%WWWDIR%%/doc/fr_FR/creating-projects.markdown +%%WWWDIR%%/doc/fr_FR/creating-tasks.markdown +%%WWWDIR%%/doc/fr_FR/currency-rate.markdown +%%WWWDIR%%/doc/fr_FR/duplicate-move-tasks.markdown +%%WWWDIR%%/doc/fr_FR/editing-projects.markdown +%%WWWDIR%%/doc/fr_FR/gantt-chart-projects.markdown +%%WWWDIR%%/doc/fr_FR/gantt-chart-tasks.markdown +%%WWWDIR%%/doc/fr_FR/index.markdown +%%WWWDIR%%/doc/fr_FR/kanban-vs-todo-and-scrum.markdown +%%WWWDIR%%/doc/fr_FR/keyboard-shortcuts.markdown +%%WWWDIR%%/doc/fr_FR/link-labels.markdown +%%WWWDIR%%/doc/fr_FR/notifications.markdown +%%WWWDIR%%/doc/fr_FR/project-configuration.markdown +%%WWWDIR%%/doc/fr_FR/project-permissions.markdown +%%WWWDIR%%/doc/fr_FR/project-types.markdown +%%WWWDIR%%/doc/fr_FR/project-views.markdown +%%WWWDIR%%/doc/fr_FR/recurring-tasks.markdown +%%WWWDIR%%/doc/fr_FR/removing-projects.markdown +%%WWWDIR%%/doc/fr_FR/roles.markdown +%%WWWDIR%%/doc/fr_FR/screenshots.markdown +%%WWWDIR%%/doc/fr_FR/screenshots/automatic-action-creation.png +%%WWWDIR%%/doc/fr_FR/screenshots/board-collapsed-mode.png +%%WWWDIR%%/doc/fr_FR/screenshots/board-compact-mode.png +%%WWWDIR%%/doc/fr_FR/screenshots/board-expanded-mode.png +%%WWWDIR%%/doc/fr_FR/screenshots/board-task-limit.png +%%WWWDIR%%/doc/fr_FR/screenshots/board-view.png +%%WWWDIR%%/doc/fr_FR/screenshots/calendar-view.png +%%WWWDIR%%/doc/fr_FR/screenshots/gantt-view.png +%%WWWDIR%%/doc/fr_FR/screenshots/hide-column.png +%%WWWDIR%%/doc/fr_FR/screenshots/list-view.png +%%WWWDIR%%/doc/fr_FR/screenshots/new-project.png +%%WWWDIR%%/doc/fr_FR/screenshots/new-user.png +%%WWWDIR%%/doc/fr_FR/screenshots/project-disable-sharing.png +%%WWWDIR%%/doc/fr_FR/screenshots/project-edition.png +%%WWWDIR%%/doc/fr_FR/screenshots/project-enable-sharing.png +%%WWWDIR%%/doc/fr_FR/screenshots/project-permissions.png +%%WWWDIR%%/doc/fr_FR/screenshots/project-view.png +%%WWWDIR%%/doc/fr_FR/screenshots/show-column.png +%%WWWDIR%%/doc/fr_FR/screenshots/swimlane-configuration.png +%%WWWDIR%%/doc/fr_FR/screenshots/swimlanes.png +%%WWWDIR%%/doc/fr_FR/screenshots/task-creation-board.png +%%WWWDIR%%/doc/fr_FR/screenshots/task-creation-form.png +%%WWWDIR%%/doc/fr_FR/sharing-projects.markdown +%%WWWDIR%%/doc/fr_FR/subtasks.markdown +%%WWWDIR%%/doc/fr_FR/swimlanes.markdown +%%WWWDIR%%/doc/fr_FR/task-links.markdown +%%WWWDIR%%/doc/fr_FR/time-tracking.markdown +%%WWWDIR%%/doc/fr_FR/transitions.markdown +%%WWWDIR%%/doc/fr_FR/usage-examples.markdown +%%WWWDIR%%/doc/fr_FR/user-management.markdown +%%WWWDIR%%/doc/fr_FR/what-is-kanban.markdown %%WWWDIR%%/doc/freebsd-installation.markdown %%WWWDIR%%/doc/gantt-chart-projects.markdown %%WWWDIR%%/doc/gantt-chart-tasks.markdown @@ -1054,6 +1096,7 @@ %%WWWDIR%%/doc/project-types.markdown %%WWWDIR%%/doc/project-views.markdown %%WWWDIR%%/doc/recurring-tasks.markdown +%%WWWDIR%%/doc/removing-projects.markdown %%WWWDIR%%/doc/requirements.markdown %%WWWDIR%%/doc/reverse-proxy-authentication.markdown %%WWWDIR%%/doc/roles.markdown @@ -1077,10 +1120,18 @@ %%WWWDIR%%/doc/screenshots/project-edition.png %%WWWDIR%%/doc/screenshots/project-enable-sharing.png %%WWWDIR%%/doc/screenshots/project-permissions.png +%%WWWDIR%%/doc/screenshots/project-remove.png %%WWWDIR%%/doc/screenshots/project-view.png %%WWWDIR%%/doc/screenshots/show-column.png %%WWWDIR%%/doc/screenshots/swimlane-configuration.png %%WWWDIR%%/doc/screenshots/swimlanes.png +%%WWWDIR%%/doc/screenshots/tags-board.png +%%WWWDIR%%/doc/screenshots/tags-global.png +%%WWWDIR%%/doc/screenshots/tags-projects.png +%%WWWDIR%%/doc/screenshots/tags-search.png +%%WWWDIR%%/doc/screenshots/tags-task.png +%%WWWDIR%%/doc/screenshots/task-creation-board.png +%%WWWDIR%%/doc/screenshots/task-creation-form.png %%WWWDIR%%/doc/search.markdown %%WWWDIR%%/doc/sharing-projects.markdown %%WWWDIR%%/doc/sqlite-database.markdown @@ -1088,6 +1139,7 @@ %%WWWDIR%%/doc/suse-installation.markdown %%WWWDIR%%/doc/swimlanes.markdown %%WWWDIR%%/doc/syntax-guide.markdown +%%WWWDIR%%/doc/tags.markdown %%WWWDIR%%/doc/task-links.markdown %%WWWDIR%%/doc/tests.markdown %%WWWDIR%%/doc/time-tracking.markdown @@ -1132,7 +1184,9 @@ %%WWWDIR%%/vendor/composer/autoload_real.php %%WWWDIR%%/vendor/composer/autoload_static.php %%WWWDIR%%/vendor/composer/installed.json +%%WWWDIR%%/vendor/eluceo/ical/.php_cs %%WWWDIR%%/vendor/eluceo/ical/.scrutinizer.yml +%%WWWDIR%%/vendor/eluceo/ical/CHANGELOG.md %%WWWDIR%%/vendor/eluceo/ical/LICENSE %%WWWDIR%%/vendor/eluceo/ical/UPGRADE.md %%WWWDIR%%/vendor/eluceo/ical/examples/example1.php @@ -1141,6 +1195,8 @@ %%WWWDIR%%/vendor/eluceo/ical/examples/example4.php %%WWWDIR%%/vendor/eluceo/ical/examples/example5.php %%WWWDIR%%/vendor/eluceo/ical/examples/example6.php +%%WWWDIR%%/vendor/eluceo/ical/examples/example7.php +%%WWWDIR%%/vendor/eluceo/ical/phpunit.xml.dist %%WWWDIR%%/vendor/eluceo/ical/src/Eluceo/iCal/Component.php %%WWWDIR%%/vendor/eluceo/ical/src/Eluceo/iCal/Component/Alarm.php %%WWWDIR%%/vendor/eluceo/ical/src/Eluceo/iCal/Component/Calendar.php @@ -1151,13 +1207,17 @@ %%WWWDIR%%/vendor/eluceo/ical/src/Eluceo/iCal/Property.php %%WWWDIR%%/vendor/eluceo/ical/src/Eluceo/iCal/Property/ArrayValue.php %%WWWDIR%%/vendor/eluceo/ical/src/Eluceo/iCal/Property/DateTimeProperty.php +%%WWWDIR%%/vendor/eluceo/ical/src/Eluceo/iCal/Property/DateTimesProperty.php %%WWWDIR%%/vendor/eluceo/ical/src/Eluceo/iCal/Property/Event/Attendees.php +%%WWWDIR%%/vendor/eluceo/ical/src/Eluceo/iCal/Property/Event/Description.php %%WWWDIR%%/vendor/eluceo/ical/src/Eluceo/iCal/Property/Event/Organizer.php +%%WWWDIR%%/vendor/eluceo/ical/src/Eluceo/iCal/Property/Event/RecurrenceId.php %%WWWDIR%%/vendor/eluceo/ical/src/Eluceo/iCal/Property/Event/RecurrenceRule.php %%WWWDIR%%/vendor/eluceo/ical/src/Eluceo/iCal/Property/StringValue.php %%WWWDIR%%/vendor/eluceo/ical/src/Eluceo/iCal/Property/ValueInterface.php %%WWWDIR%%/vendor/eluceo/ical/src/Eluceo/iCal/PropertyBag.php %%WWWDIR%%/vendor/eluceo/ical/src/Eluceo/iCal/Util/ComponentUtil.php +%%WWWDIR%%/vendor/eluceo/ical/src/Eluceo/iCal/Util/DateUtil.php %%WWWDIR%%/vendor/eluceo/ical/src/Eluceo/iCal/Util/PropertyValueUtil.php %%WWWDIR%%/vendor/erusev/parsedown/LICENSE.txt %%WWWDIR%%/vendor/erusev/parsedown/Parsedown.php @@ -1232,6 +1292,7 @@ %%WWWDIR%%/vendor/fguillot/simple-validator/src/SimpleValidator/Validators/Length.php %%WWWDIR%%/vendor/fguillot/simple-validator/src/SimpleValidator/Validators/MaxLength.php %%WWWDIR%%/vendor/fguillot/simple-validator/src/SimpleValidator/Validators/MinLength.php +%%WWWDIR%%/vendor/fguillot/simple-validator/src/SimpleValidator/Validators/NotEmpty.php %%WWWDIR%%/vendor/fguillot/simple-validator/src/SimpleValidator/Validators/NotEquals.php %%WWWDIR%%/vendor/fguillot/simple-validator/src/SimpleValidator/Validators/NotInArray.php %%WWWDIR%%/vendor/fguillot/simple-validator/src/SimpleValidator/Validators/Numeric.php @@ -1592,6 +1653,8 @@ %%WWWDIR%%/vendor/symfony/console/Tests/Fixtures/FoobarCommand.php %%WWWDIR%%/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/command/command_0.php %%WWWDIR%%/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/command/command_1.php +%%WWWDIR%%/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/command/command_10.php +%%WWWDIR%%/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/command/command_11.php %%WWWDIR%%/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/command/command_2.php %%WWWDIR%%/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/command/command_3.php %%WWWDIR%%/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/command/command_4.php @@ -1599,8 +1662,11 @@ %%WWWDIR%%/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/command/command_6.php %%WWWDIR%%/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/command/command_7.php %%WWWDIR%%/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/command/command_8.php +%%WWWDIR%%/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/command/command_9.php %%WWWDIR%%/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/output/output_0.txt %%WWWDIR%%/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/output/output_1.txt +%%WWWDIR%%/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/output/output_10.txt +%%WWWDIR%%/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/output/output_11.txt %%WWWDIR%%/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/output/output_2.txt %%WWWDIR%%/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/output/output_3.txt %%WWWDIR%%/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/output/output_4.txt @@ -1608,6 +1674,7 @@ %%WWWDIR%%/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/output/output_6.txt %%WWWDIR%%/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/output/output_7.txt %%WWWDIR%%/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/output/output_8.txt +%%WWWDIR%%/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/output/output_9.txt %%WWWDIR%%/vendor/symfony/console/Tests/Fixtures/TestCommand.php %%WWWDIR%%/vendor/symfony/console/Tests/Fixtures/application_1.json %%WWWDIR%%/vendor/symfony/console/Tests/Fixtures/application_1.md From owner-svn-ports-all@freebsd.org Thu Jul 7 23:40:33 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 90A7EB8281D; Thu, 7 Jul 2016 23:40:33 +0000 (UTC) (envelope-from cpm@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 622551003; Thu, 7 Jul 2016 23:40:33 +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 u67NeW9c085426; Thu, 7 Jul 2016 23:40:32 GMT (envelope-from cpm@FreeBSD.org) Received: (from cpm@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u67NeWFM085424; Thu, 7 Jul 2016 23:40:32 GMT (envelope-from cpm@FreeBSD.org) Message-Id: <201607072340.u67NeWFM085424@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: cpm set sender to cpm@FreeBSD.org using -f From: "Carlos J. Puga Medina" Date: Thu, 7 Jul 2016 23:40:32 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418206 - head/misc/py-socli X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 07 Jul 2016 23:40:33 -0000 Author: cpm Date: Thu Jul 7 23:40:32 2016 New Revision: 418206 URL: https://svnweb.freebsd.org/changeset/ports/418206 Log: - Update to 2.1 release - Fixed bugs on python2 - Added URL support Reviewed by: feld (mentor), junovitch (mentor), koobs Approved by: feld (mentor), junovitch (mentor), koobs Differential Revision: D7133 Modified: head/misc/py-socli/Makefile head/misc/py-socli/distinfo Modified: head/misc/py-socli/Makefile ============================================================================== --- head/misc/py-socli/Makefile Thu Jul 7 23:20:14 2016 (r418205) +++ head/misc/py-socli/Makefile Thu Jul 7 23:40:32 2016 (r418206) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= socli -PORTVERSION= 1.8 +PORTVERSION= 2.1 CATEGORIES= misc python PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -17,7 +17,7 @@ RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}beau USES= python USE_GITHUB= yes -USE_PYTHON= autoplist distutils +USE_PYTHON= autoplist concurrent distutils GH_ACCOUNT= gautamkrishnar Modified: head/misc/py-socli/distinfo ============================================================================== --- head/misc/py-socli/distinfo Thu Jul 7 23:20:14 2016 (r418205) +++ head/misc/py-socli/distinfo Thu Jul 7 23:40:32 2016 (r418206) @@ -1,3 +1,3 @@ -TIMESTAMP = 1467672057 -SHA256 (gautamkrishnar-socli-1.8_GH0.tar.gz) = f3e462a0b5a9ce2ccf945be3a0500e37dc8c8bad293bfc12841d097a637c62d2 -SIZE (gautamkrishnar-socli-1.8_GH0.tar.gz) = 7406 +TIMESTAMP = 1467887360 +SHA256 (gautamkrishnar-socli-2.1_GH0.tar.gz) = bb434cf4d1cc8ab6024e3a72e1b0fa94a65290a53e9ecb2c979f64097dea9545 +SIZE (gautamkrishnar-socli-2.1_GH0.tar.gz) = 8432 From owner-svn-ports-all@freebsd.org Fri Jul 8 01:00:00 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id E4338B75BF6; Fri, 8 Jul 2016 01:00:00 +0000 (UTC) (envelope-from junovitch@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id B47561ABF; Fri, 8 Jul 2016 01:00:00 +0000 (UTC) (envelope-from junovitch@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u680xx90015197; Fri, 8 Jul 2016 00:59:59 GMT (envelope-from junovitch@FreeBSD.org) Received: (from junovitch@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u680xxUq015195; Fri, 8 Jul 2016 00:59:59 GMT (envelope-from junovitch@FreeBSD.org) Message-Id: <201607080059.u680xxUq015195@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: junovitch set sender to junovitch@FreeBSD.org using -f From: Jason Unovitch Date: Fri, 8 Jul 2016 00:59:59 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418207 - head/www/squid X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 08 Jul 2016 01:00:01 -0000 Author: junovitch Date: Fri Jul 8 00:59:59 2016 New Revision: 418207 URL: https://svnweb.freebsd.org/changeset/ports/418207 Log: www/squid: update 3.5.19 -> 3.5.20 - Also swap USE_OPENSSL=yes to USES=ssl PR: 210811 Submitted by: Pavel Timofeev (maintainer) Modified: head/www/squid/Makefile head/www/squid/distinfo Modified: head/www/squid/Makefile ============================================================================== --- head/www/squid/Makefile Thu Jul 7 23:40:32 2016 (r418206) +++ head/www/squid/Makefile Fri Jul 8 00:59:59 2016 (r418207) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= squid -PORTVERSION= 3.5.19 +PORTVERSION= 3.5.20 CATEGORIES= www ipv6 MASTER_SITES= http://www.squid-cache.org/Versions/v3/${PORTVERSION:R}/ \ http://www2.us.squid-cache.org/Versions/v3/${PORTVERSION:R}/ \ @@ -113,7 +113,7 @@ SSL_CONFIGURE_ENABLE= ssl SSL_CONFIGURE_ON= --with-openssl=${OPENSSLBASE} \ LIBOPENSSL_CFLAGS=-I${OPENSSLINC} \ LIBOPENSSL_LIBS="-lcrypto -lssl" -SSL_USE= OPENSSL=yes +SSL_USES= ssl SSL_CRTD_CONFIGURE_ENABLE= ssl-crtd SSL_CRTD_IMPLIES= SSL STACKTRACES_CONFIGURE_ENABLE= stacktraces Modified: head/www/squid/distinfo ============================================================================== --- head/www/squid/distinfo Thu Jul 7 23:40:32 2016 (r418206) +++ head/www/squid/distinfo Fri Jul 8 00:59:59 2016 (r418207) @@ -1,2 +1,3 @@ -SHA256 (squid3.5/squid-3.5.19.tar.xz) = c4b8a2efb85acc600e506605f175298ce3324048e60f4708926d354fe4b5c7a0 -SIZE (squid3.5/squid-3.5.19.tar.xz) = 2318720 +TIMESTAMP = 1467937151 +SHA256 (squid3.5/squid-3.5.20.tar.xz) = 37db73bd33ddd3503fe375bc3f2b47d9fb7309042e439ad3651f21d5dcf2d395 +SIZE (squid3.5/squid-3.5.20.tar.xz) = 2319780 From owner-svn-ports-all@freebsd.org Fri Jul 8 01:04:01 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id A8D6CB75D9D; Fri, 8 Jul 2016 01:04:01 +0000 (UTC) (envelope-from cy@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 80B801E05; Fri, 8 Jul 2016 01:04:01 +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 u68140fE018750; Fri, 8 Jul 2016 01:04:00 GMT (envelope-from cy@FreeBSD.org) Received: (from cy@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u68140Cf018746; Fri, 8 Jul 2016 01:04:00 GMT (envelope-from cy@FreeBSD.org) Message-Id: <201607080104.u68140Cf018746@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: cy set sender to cy@FreeBSD.org using -f From: Cy Schubert Date: Fri, 8 Jul 2016 01:04:00 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418208 - in head/net: . tigervnc-devel X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 08 Jul 2016 01:04:01 -0000 Author: cy Date: Fri Jul 8 01:04:00 2016 New Revision: 418208 URL: https://svnweb.freebsd.org/changeset/ports/418208 Log: Welcome tigervnc-devel 1.7.0 Beta (actual version number is 1.6.90). Updates from the tigervnc 1.6.0 base port include: - Multi-threaded decoder in the FLTK viewer - Improved SSH integration in the Java viewer - Fine grained lock down of Xvnc parameters - Compatibility with Xorg 1.18 - Lots of packaging fixes - Better compatibility with Vino, both in the FLTK and Java viewer Added: head/net/tigervnc-devel/ - copied from r418206, head/net/tigervnc/ Modified: head/net/Makefile head/net/tigervnc-devel/Makefile head/net/tigervnc-devel/distinfo head/net/tigervnc-devel/pkg-plist Modified: head/net/Makefile ============================================================================== --- head/net/Makefile Fri Jul 8 00:59:59 2016 (r418207) +++ head/net/Makefile Fri Jul 8 01:04:00 2016 (r418208) @@ -1298,6 +1298,7 @@ SUBDIR += thcrut SUBDIR += throttled SUBDIR += tigervnc + SUBDIR += tigervnc-devel SUBDIR += tightvnc SUBDIR += tintin++ SUBDIR += tiny-network-utilities Modified: head/net/tigervnc-devel/Makefile ============================================================================== --- head/net/tigervnc/Makefile Thu Jul 7 23:40:32 2016 (r418206) +++ head/net/tigervnc-devel/Makefile Fri Jul 8 01:04:00 2016 (r418208) @@ -2,12 +2,12 @@ # $FreeBSD$ PORTNAME= tigervnc -PORTVERSION= 1.6.0 +PORTVERSION= 1.6.90 DISTVERSIONPREFIX= v -PORTREVISION= 2 CATEGORIES= net x11-servers +PKGNAMESUFFIX= -devel -MAINTAINER= meta+ports@vmeta.jp +MAINTAINER= cy@FreeBSD.org COMMENT= High-performance, platform-neutral implementation of VNC LICENSE= GPLv2+ @@ -23,19 +23,25 @@ RUN_DEPENDS= ${LOCALBASE}/share/X11/xkb/ CONFLICTS= tridiavnc-[0-9]* \ tightvnc-[0-9]* \ + tigervnc-devel-[0-9]* \ vnc-[0-9]* -USES= autoreconf:build cmake cpe gmake jpeg libtool pkgconfig python +USES= autoreconf:build cmake cpe gmake jpeg libtool pkgconfig \ + python ssl iconv USE_GL= gl USE_LDCONFIG= yes -USE_OPENSSL= yes USE_GITHUB= yes GH_ACCOUNT= TigerVNC USE_XORG+= bigreqsproto compositeproto damageproto fixesproto fontsproto glproto \ inputproto kbproto pixman randrproto renderproto resourceproto \ scrnsaverproto videoproto xau xdmcp xext xkbfile xcmiscproto xextproto \ - xfont xproto xrandr xtrans xtst xorg-macros presentproto + xfont xproto xrandr xtrans xtst xorg-macros presentproto \ + x11 sm ice xrender xdamage + +LIB_DEPENDS= libunwind.so:devel/libunwind \ + libxshmfence.so:x11/libxshmfence \ + libfontconfig.so:x11-fonts/fontconfig CFLAGS+= -fPIC Modified: head/net/tigervnc-devel/distinfo ============================================================================== --- head/net/tigervnc/distinfo Thu Jul 7 23:40:32 2016 (r418206) +++ head/net/tigervnc-devel/distinfo Fri Jul 8 01:04:00 2016 (r418208) @@ -1,2 +1,3 @@ -SHA256 (TigerVNC-tigervnc-v1.6.0_GH0.tar.gz) = 98ffe98fcfe883e6c35aec579295b53d73d2ccf62e0f6e53a73ecad993b096ca -SIZE (TigerVNC-tigervnc-v1.6.0_GH0.tar.gz) = 1291089 +TIMESTAMP = 1467937482 +SHA256 (TigerVNC-tigervnc-v1.6.90_GH0.tar.gz) = df11dd48d5c360dbe6c505a5a3cec3f12589fac759a0726f2f358c1aee36a5a9 +SIZE (TigerVNC-tigervnc-v1.6.90_GH0.tar.gz) = 1401599 Modified: head/net/tigervnc-devel/pkg-plist ============================================================================== --- head/net/tigervnc/pkg-plist Thu Jul 7 23:40:32 2016 (r418206) +++ head/net/tigervnc-devel/pkg-plist Fri Jul 8 01:04:00 2016 (r418208) @@ -25,9 +25,11 @@ man/man1/Xvnc.1.gz %%NLS%%share/locale/pt_BR/LC_MESSAGES/tigervnc.mo %%NLS%%share/locale/ru/LC_MESSAGES/tigervnc.mo %%NLS%%share/locale/sk/LC_MESSAGES/tigervnc.mo +%%NLS%%share/locale/sr/LC_MESSAGES/tigervnc.mo %%NLS%%share/locale/sv/LC_MESSAGES/tigervnc.mo %%NLS%%share/locale/tr/LC_MESSAGES/tigervnc.mo %%NLS%%share/locale/uk/LC_MESSAGES/tigervnc.mo +%%NLS%%share/locale/zh_CN/LC_MESSAGES/tigervnc.mo %%PORTDOCS%%%%DOCSDIR%%/README.txt %%PORTDOCS%%%%DOCSDIR%%/LICENCE.TXT %%VIEWER%%share/icons/hicolor/16x16/apps/tigervnc.png From owner-svn-ports-all@freebsd.org Fri Jul 8 01:35:44 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id D3693B7638C; Fri, 8 Jul 2016 01:35:44 +0000 (UTC) (envelope-from junovitch@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 8768A1D08; Fri, 8 Jul 2016 01:35:44 +0000 (UTC) (envelope-from junovitch@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u681ZhF1029873; Fri, 8 Jul 2016 01:35:43 GMT (envelope-from junovitch@FreeBSD.org) Received: (from junovitch@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u681ZhHe029871; Fri, 8 Jul 2016 01:35:43 GMT (envelope-from junovitch@FreeBSD.org) Message-Id: <201607080135.u681ZhHe029871@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: junovitch set sender to junovitch@FreeBSD.org using -f From: Jason Unovitch Date: Fri, 8 Jul 2016 01:35:43 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418209 - in head/www/squid-devel: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 08 Jul 2016 01:35:44 -0000 Author: junovitch Date: Fri Jul 8 01:35:43 2016 New Revision: 418209 URL: https://svnweb.freebsd.org/changeset/ports/418209 Log: www/squid-devel: update 4.0.11 -> 4.0.12 - Drop patch included in 4.0.12 - Also swap USE_OPENSSL=yes to USES=ssl PR: 210812 Submitted by: Pavel Timofeev (maintainer) Deleted: head/www/squid-devel/files/patch-src_adaptation_ecap_ServiceRep.cc Modified: head/www/squid-devel/Makefile head/www/squid-devel/distinfo Modified: head/www/squid-devel/Makefile ============================================================================== --- head/www/squid-devel/Makefile Fri Jul 8 01:04:00 2016 (r418208) +++ head/www/squid-devel/Makefile Fri Jul 8 01:35:43 2016 (r418209) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= squid -PORTVERSION= 4.0.11 +PORTVERSION= 4.0.12 CATEGORIES= www ipv6 MASTER_SITES= http://www.squid-cache.org/Versions/v4/ \ http://www2.us.squid-cache.org/Versions/v4/ \ @@ -109,7 +109,7 @@ SSL_CONFIGURE_ON= --with-openssl=${OPEN --enable-security-cert-generators="file" \ LIBOPENSSL_CFLAGS=-I${OPENSSLINC} \ LIBOPENSSL_LIBS="-lcrypto -lssl" -SSL_USE= OPENSSL=yes +SSL_USES= ssl SSL_CRTD_CONFIGURE_ENABLE= ssl-crtd SSL_CRTD_IMPLIES= SSL STACKTRACES_CONFIGURE_ENABLE= stacktraces Modified: head/www/squid-devel/distinfo ============================================================================== --- head/www/squid-devel/distinfo Fri Jul 8 01:04:00 2016 (r418208) +++ head/www/squid-devel/distinfo Fri Jul 8 01:35:43 2016 (r418209) @@ -1,3 +1,3 @@ -TIMESTAMP = 1466128384 -SHA256 (squid4.0/squid-4.0.11.tar.xz) = 2eda025d12ee6c7a18f5c1efb4c2689e370077038c21dbe97d5071167892f5ee -SIZE (squid4.0/squid-4.0.11.tar.xz) = 2387896 +TIMESTAMP = 1467941699 +SHA256 (squid4.0/squid-4.0.12.tar.xz) = 0ac066df8eeadef69d61ab15cc518c3947502d3ec32ec527ce03f01de3d77ff0 +SIZE (squid4.0/squid-4.0.12.tar.xz) = 2390712 From owner-svn-ports-all@freebsd.org Fri Jul 8 01:50:26 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id A146FB766EA; Fri, 8 Jul 2016 01:50:26 +0000 (UTC) (envelope-from junovitch@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 585301837; Fri, 8 Jul 2016 01:50:26 +0000 (UTC) (envelope-from junovitch@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u681oPWp033990; Fri, 8 Jul 2016 01:50:25 GMT (envelope-from junovitch@FreeBSD.org) Received: (from junovitch@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u681oPI6033987; Fri, 8 Jul 2016 01:50:25 GMT (envelope-from junovitch@FreeBSD.org) Message-Id: <201607080150.u681oPI6033987@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: junovitch set sender to junovitch@FreeBSD.org using -f From: Jason Unovitch Date: Fri, 8 Jul 2016 01:50:25 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418210 - head/sysutils/sec X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 08 Jul 2016 01:50:26 -0000 Author: junovitch Date: Fri Jul 8 01:50:25 2016 New Revision: 418210 URL: https://svnweb.freebsd.org/changeset/ports/418210 Log: sysutils/sec: update 2.7.5 -> 2.7.10 - Update WWW to Github - While here, add NO_ARCH PR: 210824 Submitted by: Nicolas Jombart (maintainer) Modified: head/sysutils/sec/Makefile head/sysutils/sec/distinfo head/sysutils/sec/pkg-descr Modified: head/sysutils/sec/Makefile ============================================================================== --- head/sysutils/sec/Makefile Fri Jul 8 01:35:43 2016 (r418209) +++ head/sysutils/sec/Makefile Fri Jul 8 01:50:25 2016 (r418210) @@ -1,8 +1,7 @@ # $FreeBSD$ PORTNAME= sec -PORTVERSION= 2.7.5 -PORTREVISION= 2 +PORTVERSION= 2.7.10 CATEGORIES= sysutils MASTER_SITES= SF/simple-evcorr/${PORTNAME}/${PORTVERSION} @@ -17,6 +16,7 @@ USES= perl5 shebangfix SHEBANG_FILES= sec SUB_LIST= PERL=${PERL} USE_PERL5= run +NO_ARCH= yes NO_BUILD= yes PORTDOCS= ChangeLog README Modified: head/sysutils/sec/distinfo ============================================================================== --- head/sysutils/sec/distinfo Fri Jul 8 01:35:43 2016 (r418209) +++ head/sysutils/sec/distinfo Fri Jul 8 01:50:25 2016 (r418210) @@ -1,2 +1,3 @@ -SHA256 (sec-2.7.5.tar.gz) = a21dcbb61aa99930f911b79e9412b875af12b08722a78295d210b896f23a0301 -SIZE (sec-2.7.5.tar.gz) = 120333 +TIMESTAMP = 1467656371 +SHA256 (sec-2.7.10.tar.gz) = 8c1441db830d3689aa201c1b0a5e46a97a22e8187d3e0d1c2dbd8abbd47c3d21 +SIZE (sec-2.7.10.tar.gz) = 129875 Modified: head/sysutils/sec/pkg-descr ============================================================================== --- head/sysutils/sec/pkg-descr Fri Jul 8 01:35:43 2016 (r418209) +++ head/sysutils/sec/pkg-descr Fri Jul 8 01:50:25 2016 (r418210) @@ -5,4 +5,4 @@ comprise of a few simple shell scripts. SEC is highly customizable to accept events from many sources and build a powerful correlation engine. -WWW: http://simple-evcorr.sourceforge.net/ +WWW: http://simple-evcorr.github.io/ From owner-svn-ports-all@freebsd.org Fri Jul 8 05:00:37 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 64D6CB84A39; Fri, 8 Jul 2016 05:00:37 +0000 (UTC) (envelope-from cy@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 379B01EE1; Fri, 8 Jul 2016 05:00:37 +0000 (UTC) (envelope-from cy@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u6850aNH004646; Fri, 8 Jul 2016 05:00:36 GMT (envelope-from cy@FreeBSD.org) Received: (from cy@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u6850aRo004645; Fri, 8 Jul 2016 05:00:36 GMT (envelope-from cy@FreeBSD.org) Message-Id: <201607080500.u6850aRo004645@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: cy set sender to cy@FreeBSD.org using -f From: Cy Schubert Date: Fri, 8 Jul 2016 05:00:36 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418211 - head/net/tigervnc-devel X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 08 Jul 2016 05:00:37 -0000 Author: cy Date: Fri Jul 8 05:00:36 2016 New Revision: 418211 URL: https://svnweb.freebsd.org/changeset/ports/418211 Log: Pass maintainership to Koichiro IWAO , maintainer of net/tigervnc. Requested by: Koichiro IWAO Modified: head/net/tigervnc-devel/Makefile Modified: head/net/tigervnc-devel/Makefile ============================================================================== --- head/net/tigervnc-devel/Makefile Fri Jul 8 01:50:25 2016 (r418210) +++ head/net/tigervnc-devel/Makefile Fri Jul 8 05:00:36 2016 (r418211) @@ -7,7 +7,7 @@ DISTVERSIONPREFIX= v CATEGORIES= net x11-servers PKGNAMESUFFIX= -devel -MAINTAINER= cy@FreeBSD.org +MAINTAINER= meta+ports@vmeta.jp COMMENT= High-performance, platform-neutral implementation of VNC LICENSE= GPLv2+ From owner-svn-ports-all@freebsd.org Fri Jul 8 09:00:09 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 98AD3B80DA3; Fri, 8 Jul 2016 09:00:09 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 668201E57; Fri, 8 Jul 2016 09:00:09 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u68908EJ092344; Fri, 8 Jul 2016 09:00:08 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u68908g6092343; Fri, 8 Jul 2016 09:00:08 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201607080900.u68908g6092343@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Fri, 8 Jul 2016 09:00:08 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418212 - head/math/fftw X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 08 Jul 2016 09:00:09 -0000 Author: amdmi3 Date: Fri Jul 8 09:00:08 2016 New Revision: 418212 URL: https://svnweb.freebsd.org/changeset/ports/418212 Log: - Switch to new test framework - Switch to options helpers Modified: head/math/fftw/Makefile Modified: head/math/fftw/Makefile ============================================================================== --- head/math/fftw/Makefile Fri Jul 8 05:00:36 2016 (r418211) +++ head/math/fftw/Makefile Fri Jul 8 09:00:08 2016 (r418212) @@ -16,8 +16,6 @@ COMMENT?= Fast C routines to compute the LICENSE= GPLv2+ LICENSE_FILE= ${WRKSRC}/COPYING -OPTIONS_DEFINE= DOCS - # current flavors: default, float FFTW_FLAVOR?= default @@ -26,6 +24,7 @@ CONFIGURE_ARGS= --enable-shared USES= fortran gmake libtool:keepla USE_LDCONFIG= yes INSTALL_TARGET= install-strip +TEST_TARGET= check BROKEN_sparc64= does not build @@ -43,6 +42,8 @@ FFTW_SUFIX= INFO= fftw .endif +OPTIONS_DEFINE= DOCS + .include .if ${ARCH} == "i386" @@ -55,21 +56,18 @@ post-patch: ${WRKSRC}/fftw/Makefile.in ${WRKSRC}/mpi/Makefile.in \ ${WRKSRC}/rfftw/Makefile.in ${WRKSRC}/threads/Makefile.in -post-build: .if ${FFTW_FLAVOR}=="default" +post-build: @cd ${WRKSRC}/doc && makeinfo fftw.texi .endif -post-install: .if ${FFTW_FLAVOR}=="default" +post-install: ${INSTALL_DATA} ${WRKSRC}/doc/fftw.info ${STAGEDIR}${PREFIX}/${INFO_PATH} -.if ${PORT_OPTIONS:MDOCS} - ${MKDIR} ${STAGEDIR}${DOCSDIR} - ${INSTALL_DATA} ${WRKSRC}/doc/fftw.ps ${STAGEDIR}${DOCSDIR}/fftw.ps -.endif -.endif -regression-test: build - @(cd ${WRKSRC}/tests && ${SETENV} ${MAKE_ENV} ${MAKE_CMD} check) +post-install-DOCS-on: + @${MKDIR} ${STAGEDIR}${DOCSDIR} + ${INSTALL_DATA} ${WRKSRC}/doc/fftw.ps ${STAGEDIR}${DOCSDIR}/ +.endif .include From owner-svn-ports-all@freebsd.org Fri Jul 8 09:09:17 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 21D74B80F9B; Fri, 8 Jul 2016 09:09:17 +0000 (UTC) (envelope-from olgeni@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id DC49113E0; Fri, 8 Jul 2016 09:09:16 +0000 (UTC) (envelope-from olgeni@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u6899GMY095954; Fri, 8 Jul 2016 09:09:16 GMT (envelope-from olgeni@FreeBSD.org) Received: (from olgeni@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u6899FaB095952; Fri, 8 Jul 2016 09:09:15 GMT (envelope-from olgeni@FreeBSD.org) Message-Id: <201607080909.u6899FaB095952@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: olgeni set sender to olgeni@FreeBSD.org using -f From: Jimmy Olgeni Date: Fri, 8 Jul 2016 09:09:15 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418213 - head/www/elixir-phoenix_html X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 08 Jul 2016 09:09:17 -0000 Author: olgeni Date: Fri Jul 8 09:09:15 2016 New Revision: 418213 URL: https://svnweb.freebsd.org/changeset/ports/418213 Log: Update www/elixir-phoenix_html to version 2.6.1. Modified: head/www/elixir-phoenix_html/Makefile head/www/elixir-phoenix_html/distinfo Modified: head/www/elixir-phoenix_html/Makefile ============================================================================== --- head/www/elixir-phoenix_html/Makefile Fri Jul 8 09:00:08 2016 (r418212) +++ head/www/elixir-phoenix_html/Makefile Fri Jul 8 09:09:15 2016 (r418213) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= phoenix_html -PORTVERSION= 2.6.0 +PORTVERSION= 2.6.1 DISTVERSIONPREFIX= v CATEGORIES= www PKGNAMEPREFIX= elixir- Modified: head/www/elixir-phoenix_html/distinfo ============================================================================== --- head/www/elixir-phoenix_html/distinfo Fri Jul 8 09:00:08 2016 (r418212) +++ head/www/elixir-phoenix_html/distinfo Fri Jul 8 09:09:15 2016 (r418213) @@ -1,3 +1,3 @@ -TIMESTAMP = 1466540850 -SHA256 (phoenixframework-phoenix_html-v2.6.0_GH0.tar.gz) = dee4653e97a85f2e4882ca79f16b89861e0619fe7feea819e28e64db8149fc3e -SIZE (phoenixframework-phoenix_html-v2.6.0_GH0.tar.gz) = 29022 +TIMESTAMP = 1467968902 +SHA256 (phoenixframework-phoenix_html-v2.6.1_GH0.tar.gz) = 0b16ec9d49cb2c7e2ec0d799c1dee46b9ca61d1eaccc14751b6bba1ed1c58093 +SIZE (phoenixframework-phoenix_html-v2.6.1_GH0.tar.gz) = 29287 From owner-svn-ports-all@freebsd.org Fri Jul 8 10:03:48 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 14D4CB76A22; Fri, 8 Jul 2016 10:03:48 +0000 (UTC) (envelope-from tijl@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id C0F331D65; Fri, 8 Jul 2016 10:03:47 +0000 (UTC) (envelope-from tijl@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u68A3k9E018045; Fri, 8 Jul 2016 10:03:46 GMT (envelope-from tijl@FreeBSD.org) Received: (from tijl@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u68A3kDh018042; Fri, 8 Jul 2016 10:03:46 GMT (envelope-from tijl@FreeBSD.org) Message-Id: <201607081003.u68A3kDh018042@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tijl set sender to tijl@FreeBSD.org using -f From: Tijl Coosemans Date: Fri, 8 Jul 2016 10:03:46 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418214 - in head/textproc/expat2: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 08 Jul 2016 10:03:48 -0000 Author: tijl Date: Fri Jul 8 10:03:46 2016 New Revision: 418214 URL: https://svnweb.freebsd.org/changeset/ports/418214 Log: Update to 2.2.0. PR: 210531 Approved by: maintainer timeout (2 weeks) Deleted: head/textproc/expat2/files/ Modified: head/textproc/expat2/Makefile head/textproc/expat2/distinfo head/textproc/expat2/pkg-plist Modified: head/textproc/expat2/Makefile ============================================================================== --- head/textproc/expat2/Makefile Fri Jul 8 09:09:15 2016 (r418213) +++ head/textproc/expat2/Makefile Fri Jul 8 10:03:46 2016 (r418214) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= expat -PORTVERSION= 2.1.1 -PORTREVISION= 2 +PORTVERSION= 2.2.0 CATEGORIES= textproc MASTER_SITES= SF @@ -12,8 +11,7 @@ COMMENT= XML 1.0 parser written in C GNU_CONFIGURE= yes ALL_TARGET= default -USES= dos2unix libtool pathfix tar:bz2 -DOS2UNIX_GLOB= *.txt +USES= libtool pathfix tar:bz2 USE_LDCONFIG= yes post-stage: Modified: head/textproc/expat2/distinfo ============================================================================== --- head/textproc/expat2/distinfo Fri Jul 8 09:09:15 2016 (r418213) +++ head/textproc/expat2/distinfo Fri Jul 8 10:03:46 2016 (r418214) @@ -1,3 +1,3 @@ -TIMESTAMP = 1463705024 -SHA256 (expat-2.1.1.tar.bz2) = aff584e5a2f759dcfc6d48671e9529f6afe1e30b0cd6a4cec200cbe3f793de67 -SIZE (expat-2.1.1.tar.bz2) = 405103 +TIMESTAMP = 1466782039 +SHA256 (expat-2.2.0.tar.bz2) = d9e50ff2d19b3538bd2127902a89987474e1a4db8e43a66a4d1a712ab9a504ff +SIZE (expat-2.2.0.tar.bz2) = 414352 Modified: head/textproc/expat2/pkg-plist ============================================================================== --- head/textproc/expat2/pkg-plist Fri Jul 8 09:09:15 2016 (r418213) +++ head/textproc/expat2/pkg-plist Fri Jul 8 10:03:46 2016 (r418214) @@ -5,7 +5,7 @@ include/expat_external.h lib/libexpat.a lib/libexpat.so lib/libexpat.so.1 -lib/libexpat.so.1.6.0 +lib/libexpat.so.1.6.2 lib/libexpat.so.6 libdata/pkgconfig/expat.pc man/man1/xmlwf.1.gz From owner-svn-ports-all@freebsd.org Fri Jul 8 10:09:16 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 60E54B76B65; Fri, 8 Jul 2016 10:09:16 +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 mx1.freebsd.org (Postfix) with ESMTPS id 0F1B31212; Fri, 8 Jul 2016 10:09:15 +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 u68A9FJT018428; Fri, 8 Jul 2016 10:09:15 GMT (envelope-from martymac@FreeBSD.org) Received: (from martymac@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u68A9FZB018427; Fri, 8 Jul 2016 10:09:15 GMT (envelope-from martymac@FreeBSD.org) Message-Id: <201607081009.u68A9FZB018427@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: martymac set sender to martymac@FreeBSD.org using -f From: Ganael LAPLANCHE Date: Fri, 8 Jul 2016 10:09:15 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418215 - head/emulators/dolphin-emu/files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 08 Jul 2016 10:09:16 -0000 Author: martymac Date: Fri Jul 8 10:09:14 2016 New Revision: 418215 URL: https://svnweb.freebsd.org/changeset/ports/418215 Log: Fix build on -CURRENT now that LIBUSB_API_VERSION is defined Modified: head/emulators/dolphin-emu/files/patch-Source-Core-Core-HW-SI_GCAdapter.cpp Modified: head/emulators/dolphin-emu/files/patch-Source-Core-Core-HW-SI_GCAdapter.cpp ============================================================================== --- head/emulators/dolphin-emu/files/patch-Source-Core-Core-HW-SI_GCAdapter.cpp Fri Jul 8 10:03:46 2016 (r418214) +++ head/emulators/dolphin-emu/files/patch-Source-Core-Core-HW-SI_GCAdapter.cpp Fri Jul 8 10:09:14 2016 (r418215) @@ -6,7 +6,7 @@ Disable hotplug support for FreeBSD static bool s_libusb_driver_not_supported = false; static libusb_context* s_libusb_context = nullptr; static bool s_libusb_hotplug_enabled = false; -+#if defined(LIBUSB_API_VERSION) && LIBUSB_API_VERSION >= 0x01000102 ++#if !defined(__FreeBSD__) && defined(LIBUSB_API_VERSION) && LIBUSB_API_VERSION >= 0x01000102 static libusb_hotplug_callback_handle s_hotplug_handle; +#endif @@ -16,7 +16,7 @@ Disable hotplug support for FreeBSD } } -+#if defined(LIBUSB_API_VERSION) && LIBUSB_API_VERSION >= 0x01000102 ++#if !defined(__FreeBSD__) && defined(LIBUSB_API_VERSION) && LIBUSB_API_VERSION >= 0x01000102 static int HotplugCallback(libusb_context* ctx, libusb_device* dev, libusb_hotplug_event event, void* user_data) { if (event == LIBUSB_HOTPLUG_EVENT_DEVICE_ARRIVED) @@ -31,7 +31,7 @@ Disable hotplug support for FreeBSD Common::SetCurrentThreadName("GC Adapter Scanning Thread"); NOTICE_LOG(SERIALINTERFACE, "GC Adapter scanning thread started"); -+#if defined(LIBUSB_API_VERSION) && LIBUSB_API_VERSION >= 0x01000102 ++#if !defined(__FreeBSD__) && defined(LIBUSB_API_VERSION) && LIBUSB_API_VERSION >= 0x01000102 s_libusb_hotplug_enabled = libusb_has_capability(LIBUSB_CAP_HAS_HOTPLUG) != 0; if (s_libusb_hotplug_enabled) { @@ -47,7 +47,7 @@ Disable hotplug support for FreeBSD void Shutdown() { StopScanThread(); -+#if defined(LIBUSB_API_VERSION) && LIBUSB_API_VERSION >= 0x01000102 ++#if !defined(__FreeBSD__) && defined(LIBUSB_API_VERSION) && LIBUSB_API_VERSION >= 0x01000102 if (s_libusb_hotplug_enabled) libusb_hotplug_deregister_callback(s_libusb_context, s_hotplug_handle); +#endif From owner-svn-ports-all@freebsd.org Fri Jul 8 11:24:19 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id EE21EB7643B; Fri, 8 Jul 2016 11:24:19 +0000 (UTC) (envelope-from tijl@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id AF11D11EB; Fri, 8 Jul 2016 11:24:19 +0000 (UTC) (envelope-from tijl@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u68BOIQb047694; Fri, 8 Jul 2016 11:24:18 GMT (envelope-from tijl@FreeBSD.org) Received: (from tijl@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u68BOIRR047687; Fri, 8 Jul 2016 11:24:18 GMT (envelope-from tijl@FreeBSD.org) Message-Id: <201607081124.u68BOIRR047687@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tijl set sender to tijl@FreeBSD.org using -f From: Tijl Coosemans Date: Fri, 8 Jul 2016 11:24:18 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418216 - in head: . Mk/Uses devel devel/gmake devel/gmake/files devel/slibtool misc/help2man print/texinfo X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 08 Jul 2016 11:24:20 -0000 Author: tijl Date: Fri Jul 8 11:24:18 2016 New Revision: 418216 URL: https://svnweb.freebsd.org/changeset/ports/418216 Log: Remove a patch from devel/gmake so the port no longer depends on print/texinfo which requires gmake. To break this circular dependency gmake-lite was introduced. This can be removed now as well. PR: 210623 Reviewed by: bapt Exp-run by: antoine Approved by: portmgr (antoine) Deleted: head/devel/gmake/files/patch-doc_make.text Modified: head/MOVED head/Mk/Uses/gmake.mk head/devel/Makefile head/devel/gmake/Makefile head/devel/slibtool/Makefile head/misc/help2man/Makefile head/print/texinfo/Makefile Modified: head/MOVED ============================================================================== --- head/MOVED Fri Jul 8 10:09:14 2016 (r418215) +++ head/MOVED Fri Jul 8 11:24:18 2016 (r418216) @@ -8608,3 +8608,4 @@ sysutils/moosefs-client|sysutils/moosefs sysutils/moosefs-master|sysutils/moosefs2-master|2016-07-07|Moved to a numbered port name sysutils/moosefs-metalogger|sysutils/moosefs2-metalogger|2016-07-07|Moved to a numbered port name sysutils/moosefs-netdump|sysutils/moosefs2-netdump|2016-07-07|Moved to a numbered port name +devel/gmake-lite|devel/gmake|2016-07-08|No longer needed Modified: head/Mk/Uses/gmake.mk ============================================================================== --- head/Mk/Uses/gmake.mk Fri Jul 8 10:09:14 2016 (r418215) +++ head/Mk/Uses/gmake.mk Fri Jul 8 11:24:18 2016 (r418216) @@ -3,7 +3,7 @@ # Provide support to use the GNU make # # Feature: gmake -# Usage: USES=gmake[:lite] +# Usage: USES=gmake # # MAINTAINER: portmgr@FreeBSD.org @@ -11,19 +11,11 @@ _INCLUDE_USES_GMAKE_MK= yes .if !empty(gmake_ARGS) -.if ${gmake_ARGS} == lite -_GMAKE_EXT= -lite -.else -IGNORE= Incorrect 'USES+= gmake:${gmake_ARGS}' gmake has only one valid argument: lite -.endif -.endif - -.if defined(DIET) -_GMAKE_EXT= -lite +IGNORE= Incorrect 'USES+= gmake:${gmake_ARGS}' gmake takes no arguments .endif -BUILD_DEPENDS+= gmake${_GMAKE_EXT}:devel/gmake${_GMAKE_EXT} -CONFIGURE_ENV+= MAKE=gmake${_GMAKE_EXT} -MAKE_CMD= gmake${_GMAKE_EXT} +BUILD_DEPENDS+= gmake:devel/gmake +CONFIGURE_ENV+= MAKE=gmake +MAKE_CMD= gmake .endif Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Fri Jul 8 10:09:14 2016 (r418215) +++ head/devel/Makefile Fri Jul 8 11:24:18 2016 (r418216) @@ -695,7 +695,6 @@ SUBDIR += glrparser SUBDIR += glui SUBDIR += gmake - SUBDIR += gmake-lite SUBDIR += gnatcoll SUBDIR += gnatpython SUBDIR += gnome-builder Modified: head/devel/gmake/Makefile ============================================================================== --- head/devel/gmake/Makefile Fri Jul 8 10:09:14 2016 (r418215) +++ head/devel/gmake/Makefile Fri Jul 8 11:24:18 2016 (r418216) @@ -3,6 +3,7 @@ PORTNAME= gmake PORTVERSION= 4.2.1 +PORTREVISION= 1 CATEGORIES= devel MASTER_SITES= GNU/make DISTNAME= make-${PORTVERSION} @@ -19,11 +20,10 @@ LICENSE_FILE= ${WRKSRC}/COPYING GNU_CONFIGURE= yes CONFIGURE_ARGS= --program-prefix=g \ --without-guile -CONFIGURE_ENV= MAKEINFO="makeinfo --no-split" # fmake does not like PO_DEPENDS_ON_POT being undefined MAKE_ARGS= PO_DEPENDS_ON_POT= -USES= cpe makeinfo tar:bzip2 +USES= cpe tar:bzip2 CPE_VENDOR= gnu OPTIONS_DEFINE= NLS Modified: head/devel/slibtool/Makefile ============================================================================== --- head/devel/slibtool/Makefile Fri Jul 8 10:09:14 2016 (r418215) +++ head/devel/slibtool/Makefile Fri Jul 8 11:24:18 2016 (r418216) @@ -12,7 +12,7 @@ LICENSE= MIT LICENSE_FILE= ${WRKSRC}/COPYING.SLIBTOOL HAS_CONFIGURE= yes -USES= gmake:lite tar:xz +USES= gmake tar:xz post-patch: ${REINPLACE_CMD} -e "s/make/${MAKE_CMD}/g" ${WRKSRC}/configure Modified: head/misc/help2man/Makefile ============================================================================== --- head/misc/help2man/Makefile Fri Jul 8 10:09:14 2016 (r418215) +++ head/misc/help2man/Makefile Fri Jul 8 11:24:18 2016 (r418216) @@ -17,8 +17,7 @@ OPTIONS_DEFINE= NLS LIBS+= -L${LOCALBASE}/lib GNU_CONFIGURE= yes -# keep gmake:lite has a dependency to avoid circular dependency -USES= gmake:lite perl5 +USES= gmake perl5 INFO= ${PORTNAME} PLIST_FILES= bin/${PORTNAME} \ Modified: head/print/texinfo/Makefile ============================================================================== --- head/print/texinfo/Makefile Fri Jul 8 10:09:14 2016 (r418215) +++ head/print/texinfo/Makefile Fri Jul 8 11:24:18 2016 (r418216) @@ -25,10 +25,10 @@ NLS_CONFIGURE_ENABLE= nls GNU_CONFIGURE= yes INSTALL_TARGET= install install-tex PKGDEINSTALL= ${PKGINSTALL} -USES+= charsetfix cpe gmake:lite ncurses perl5 tar:xz +USES+= charsetfix cpe gmake ncurses perl5 tar:xz MAKE_ARGS= TEXMF=${LOCALBASE}/${TEXMF} PERL=${LOCALBASE}/bin/perl -INFO= texinfo info-stnd info +INFO= texinfo info-stnd CPE_VENDOR= gnu CPE_VERSION= ${PORTVERSION:R} From owner-svn-ports-all@freebsd.org Fri Jul 8 11:41:48 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 0EA8CB76697; Fri, 8 Jul 2016 11:41:48 +0000 (UTC) (envelope-from tijl@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id DC17E1B18; Fri, 8 Jul 2016 11:41:47 +0000 (UTC) (envelope-from tijl@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u68BflXf051859; Fri, 8 Jul 2016 11:41:47 GMT (envelope-from tijl@FreeBSD.org) Received: (from tijl@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u68BflCA051857; Fri, 8 Jul 2016 11:41:47 GMT (envelope-from tijl@FreeBSD.org) Message-Id: <201607081141.u68BflCA051857@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tijl set sender to tijl@FreeBSD.org using -f From: Tijl Coosemans Date: Fri, 8 Jul 2016 11:41:47 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418217 - head/devel/linux-c6-devtools X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 08 Jul 2016 11:41:48 -0000 Author: tijl Date: Fri Jul 8 11:41:46 2016 New Revision: 418217 URL: https://svnweb.freebsd.org/changeset/ports/418217 Log: - Fix distinfo.x86_64. - Use default linux-c6 MASTER_SITES. PR: 210917 Modified: head/devel/linux-c6-devtools/Makefile head/devel/linux-c6-devtools/distinfo.x86_64 Modified: head/devel/linux-c6-devtools/Makefile ============================================================================== --- head/devel/linux-c6-devtools/Makefile Fri Jul 8 11:24:18 2016 (r418216) +++ head/devel/linux-c6-devtools/Makefile Fri Jul 8 11:41:46 2016 (r418217) @@ -4,7 +4,6 @@ PORTNAME= devtools PORTVERSION= 6.8 CATEGORIES= devel -MASTER_SITES= CENTOS_LINUX CENTOS_LINUX_UPDATES DISTFILES= binutils-2.20.51.0.2-5.44.el6.${LINUX_RPM_ARCH}.rpm \ glibc-headers-2.12-1.192.el6.${LINUX_RPM_ARCH}.rpm \ kernel-headers-2.6.32-642.1.1.el6.${LINUX_RPM_ARCH}.rpm \ Modified: head/devel/linux-c6-devtools/distinfo.x86_64 ============================================================================== --- head/devel/linux-c6-devtools/distinfo.x86_64 Fri Jul 8 11:24:18 2016 (r418216) +++ head/devel/linux-c6-devtools/distinfo.x86_64 Fri Jul 8 11:41:46 2016 (r418217) @@ -1,10 +1,10 @@ -TIMESTAMP = 1466257143 +TIMESTAMP = 1467977651 SHA256 (rpm/x86_64/centos/6.8/binutils-2.20.51.0.2-5.44.el6.x86_64.rpm) = e1bd3009dac9125c4b2d293c5040db085641b4a8e64319539a1289314eb2353e SIZE (rpm/x86_64/centos/6.8/binutils-2.20.51.0.2-5.44.el6.x86_64.rpm) = 2900548 SHA256 (rpm/x86_64/centos/6.8/glibc-headers-2.12-1.192.el6.x86_64.rpm) = 6887cffaef813ce9b851a07539cb59234cb97a5de2b8b9f025df0f6a1a4359e8 SIZE (rpm/x86_64/centos/6.8/glibc-headers-2.12-1.192.el6.x86_64.rpm) = 632168 -SHA256 (rpm/x86_64/centos/6.8/kernel-headers-2.6.32-642.el6.x86_64.rpm) = 147458163adec8126d31c1535777ce08261bca6bd881c4a68870692cd2471612 -SIZE (rpm/x86_64/centos/6.8/kernel-headers-2.6.32-642.el6.x86_64.rpm) = 4561476 +SHA256 (rpm/x86_64/centos/6.8/kernel-headers-2.6.32-642.1.1.el6.x86_64.rpm) = 6815bb0ce437d62c1ce2cd75e090a8c1d6f3c6f8176b3ded3932d0d1b7ad5878 +SIZE (rpm/x86_64/centos/6.8/kernel-headers-2.6.32-642.1.1.el6.x86_64.rpm) = 4562420 SHA256 (rpm/x86_64/centos/6.8/mpfr-2.4.1-6.el6.x86_64.rpm) = 20d2ce3bc1ea03844a0beb1726b01ef50d8555b3c9facb65264055a634709cf4 SIZE (rpm/x86_64/centos/6.8/mpfr-2.4.1-6.el6.x86_64.rpm) = 160772 SHA256 (rpm/x86_64/centos/6.8/cpp-4.4.7-17.el6.x86_64.rpm) = cfdd747711fd3d1848329ce4591975b5dd4d2e13a30ee7d2683f91f2bba894ac @@ -35,8 +35,8 @@ SHA256 (rpm/x86_64/centos/6.8/binutils-2 SIZE (rpm/x86_64/centos/6.8/binutils-2.20.51.0.2-5.44.el6.src.rpm) = 16328197 SHA256 (rpm/x86_64/centos/6.8/glibc-2.12-1.192.el6.src.rpm) = 16ac0abe380a63b2941313ccfc0bbfc06878c24e24c232bb6e2a130801fdf84d SIZE (rpm/x86_64/centos/6.8/glibc-2.12-1.192.el6.src.rpm) = 16733566 -SHA256 (rpm/x86_64/centos/6.8/kernel-2.6.32-642.el6.src.rpm) = 003e111419c70cd87a1b7110bf0f2e6db7c5009e95d620117908bed26bb93c53 -SIZE (rpm/x86_64/centos/6.8/kernel-2.6.32-642.el6.src.rpm) = 131923001 +SHA256 (rpm/x86_64/centos/6.8/kernel-2.6.32-642.1.1.el6.src.rpm) = 4e812c4f1bd1a9172bea3c7b11680a359b0d051f964a720f6d4257a50a3b1215 +SIZE (rpm/x86_64/centos/6.8/kernel-2.6.32-642.1.1.el6.src.rpm) = 133469788 SHA256 (rpm/x86_64/centos/6.8/mpfr-2.4.1-6.el6.src.rpm) = 4b5fcd2cf40deb6a791f4fa4e39315e2345001e528c45ed52042e3c4ba467f6c SIZE (rpm/x86_64/centos/6.8/mpfr-2.4.1-6.el6.src.rpm) = 911271 SHA256 (rpm/x86_64/centos/6.8/gcc-4.4.7-17.el6.src.rpm) = 4b14f08c109dce1f43fe4956bbb8f0a3ff1e076950ca3e89a75d28a59465217c From owner-svn-ports-all@freebsd.org Fri Jul 8 11:59:54 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 71159B76AE5; Fri, 8 Jul 2016 11:59:54 +0000 (UTC) (envelope-from danfe@freebsd.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) by mx1.freebsd.org (Postfix) with ESMTP id 595A81395; Fri, 8 Jul 2016 11:59:54 +0000 (UTC) (envelope-from danfe@freebsd.org) Received: by freefall.freebsd.org (Postfix, from userid 1033) id 57D92159E; Fri, 8 Jul 2016 11:59:54 +0000 (UTC) Date: Fri, 8 Jul 2016 11:59:54 +0000 From: Alexey Dokuchaev To: Tijl Coosemans Cc: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: Re: svn commit: r418216 - in head: . Mk/Uses devel devel/gmake devel/gmake/files devel/slibtool misc/help2man print/texinfo Message-ID: <20160708115954.GA43094@FreeBSD.org> References: <201607081124.u68BOIRR047687@repo.freebsd.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <201607081124.u68BOIRR047687@repo.freebsd.org> User-Agent: Mutt/1.6.1 (2016-04-27) X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 08 Jul 2016 11:59:54 -0000 On Fri, Jul 08, 2016 at 11:24:18AM +0000, Tijl Coosemans wrote: > New Revision: 418216 > URL: https://svnweb.freebsd.org/changeset/ports/418216 > > Log: > Remove a patch from devel/gmake so the port no longer depends on > print/texinfo which requires gmake. To break this circular dependency > gmake-lite was introduced. This can be removed now as well. Thank you Tijl, much appreciated! ./danfe (gmake-lite hater) From owner-svn-ports-all@freebsd.org Fri Jul 8 12:20:51 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 73CE6B82CF8; Fri, 8 Jul 2016 12:20:51 +0000 (UTC) (envelope-from gahr@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 2C04C16ED; Fri, 8 Jul 2016 12:20:51 +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 u68CKo4I068552; Fri, 8 Jul 2016 12:20:50 GMT (envelope-from gahr@FreeBSD.org) Received: (from gahr@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u68CKo0U068550; Fri, 8 Jul 2016 12:20:50 GMT (envelope-from gahr@FreeBSD.org) Message-Id: <201607081220.u68CKo0U068550@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: gahr set sender to gahr@FreeBSD.org using -f From: Pietro Cerutti Date: Fri, 8 Jul 2016 12:20:50 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418218 - head/lang/tcl87 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 08 Jul 2016 12:20:51 -0000 Author: gahr Date: Fri Jul 8 12:20:50 2016 New Revision: 418218 URL: https://svnweb.freebsd.org/changeset/ports/418218 Log: lang/tcl87: update to fossil checkin 4589a9d17c9575e7 http://core.tcl.tk/tcl/timeline?from=c52fadac62&to=4589a9d17c9575e7 Modified: head/lang/tcl87/Makefile head/lang/tcl87/distinfo Modified: head/lang/tcl87/Makefile ============================================================================== --- head/lang/tcl87/Makefile Fri Jul 8 11:41:46 2016 (r418217) +++ head/lang/tcl87/Makefile Fri Jul 8 12:20:50 2016 (r418218) @@ -2,11 +2,11 @@ # $FreeBSD$ PORTNAME= tcl -DISTVERSION= 8.7.a0.20160704 +DISTVERSION= 8.7.a0.20160708 CATEGORIES= lang MASTER_SITES= http://core.tcl.tk/tcl/tarball/ PKGNAMESUFFIX= ${PORTVERSION:R:R:S/.//} -DISTNAME= Tcl+Source+Code-${FOSSIL_CHECKIN} +DISTFILES= Tcl+Source+Code${EXTRACT_SUFX}?uuid=${FOSSIL_CHECKIN} MAINTAINER= tcltk@FreeBSD.org COMMENT= Tool Command Language @@ -23,9 +23,9 @@ TZDATA_DESC= Install Tcl timezone data MODULES_DESC= Install Tcl common modules OPTIONS_SUB= yes -FOSSIL_CHECKIN= c52fadac62 +FOSSIL_CHECKIN= 4589a9d17c9575e7 -PATCH_WRKSRC= ${WRKDIR}/${DISTNAME:S/+/_/g} +PATCH_WRKSRC= ${WRKDIR}/Tcl_Source_Code WRKSRC= ${PATCH_WRKSRC}/unix ALL_TARGET= all Modified: head/lang/tcl87/distinfo ============================================================================== --- head/lang/tcl87/distinfo Fri Jul 8 11:41:46 2016 (r418217) +++ head/lang/tcl87/distinfo Fri Jul 8 12:20:50 2016 (r418218) @@ -1,3 +1,3 @@ -TIMESTAMP = 1467620342 -SHA256 (Tcl+Source+Code-c52fadac62.tar.gz) = e3e322dfe96ebc2b7125cb8dfce32e934cb2685f9293b76630d864b4f3ae4968 -SIZE (Tcl+Source+Code-c52fadac62.tar.gz) = 8621257 +TIMESTAMP = 1467980185 +SHA256 (Tcl+Source+Code.tar.gz?uuid=4589a9d17c9575e7) = 751a0493bdfcdd37b4e68f711b23f5d2c592508336f8550bf5855ef427e7471e +SIZE (Tcl+Source+Code.tar.gz?uuid=4589a9d17c9575e7) = 8620769 From owner-svn-ports-all@freebsd.org Fri Jul 8 12:37:36 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id AF827B8322B; Fri, 8 Jul 2016 12:37:36 +0000 (UTC) (envelope-from tz@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 75C1A1E50; Fri, 8 Jul 2016 12:37:36 +0000 (UTC) (envelope-from tz@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u68CbZ82073664; Fri, 8 Jul 2016 12:37:35 GMT (envelope-from tz@FreeBSD.org) Received: (from tz@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u68CbZM6073662; Fri, 8 Jul 2016 12:37:35 GMT (envelope-from tz@FreeBSD.org) Message-Id: <201607081237.u68CbZM6073662@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tz set sender to tz@FreeBSD.org using -f From: Torsten Zuehlsdorff Date: Fri, 8 Jul 2016 12:37:35 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418219 - head/security/rubygem-ruby-saml X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 08 Jul 2016 12:37:36 -0000 Author: tz Date: Fri Jul 8 12:37:35 2016 New Revision: 418219 URL: https://svnweb.freebsd.org/changeset/ports/418219 Log: security/rubygem-ruby-saml: update from 1.2.0 to 1.3.0 - Security Fix Add extra validations to prevent Signature wrapping attacks - Fix XMLSecurity SHA256 and SHA512 uris - Fix Destination validation Approved by: junovitch (mentor) Security: CVE-2016-5697 MFH: 2016Q3 Modified: head/security/rubygem-ruby-saml/Makefile head/security/rubygem-ruby-saml/distinfo Modified: head/security/rubygem-ruby-saml/Makefile ============================================================================== --- head/security/rubygem-ruby-saml/Makefile Fri Jul 8 12:20:50 2016 (r418218) +++ head/security/rubygem-ruby-saml/Makefile Fri Jul 8 12:37:35 2016 (r418219) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= ruby-saml -PORTVERSION= 1.2.0 +PORTVERSION= 1.3.0 CATEGORIES= security rubygems MASTER_SITES= RG Modified: head/security/rubygem-ruby-saml/distinfo ============================================================================== --- head/security/rubygem-ruby-saml/distinfo Fri Jul 8 12:20:50 2016 (r418218) +++ head/security/rubygem-ruby-saml/distinfo Fri Jul 8 12:37:35 2016 (r418219) @@ -1,2 +1,3 @@ -SHA256 (rubygem/ruby-saml-1.2.0.gem) = bb138175045027b42ca0f9156208bee99d58063ac51f04ba749314e750112186 -SIZE (rubygem/ruby-saml-1.2.0.gem) = 229888 +TIMESTAMP = 1467811690 +SHA256 (rubygem/ruby-saml-1.3.0.gem) = b4f4a12e7cad65c3d66857f8d73f9c1dbb27652d7d6463f5652ac5dad8501562 +SIZE (rubygem/ruby-saml-1.3.0.gem) = 230912 From owner-svn-ports-all@freebsd.org Fri Jul 8 12:38:38 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 13FADB83279; Fri, 8 Jul 2016 12:38:38 +0000 (UTC) (envelope-from tz@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id C188A1F6D; Fri, 8 Jul 2016 12:38:37 +0000 (UTC) (envelope-from tz@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u68Ccb6L073820; Fri, 8 Jul 2016 12:38:37 GMT (envelope-from tz@FreeBSD.org) Received: (from tz@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u68CcaHk073818; Fri, 8 Jul 2016 12:38:36 GMT (envelope-from tz@FreeBSD.org) Message-Id: <201607081238.u68CcaHk073818@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tz set sender to tz@FreeBSD.org using -f From: Torsten Zuehlsdorff Date: Fri, 8 Jul 2016 12:38:36 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418220 - head/security/rubygem-omniauth-saml X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 08 Jul 2016 12:38:38 -0000 Author: tz Date: Fri Jul 8 12:38:36 2016 New Revision: 418220 URL: https://svnweb.freebsd.org/changeset/ports/418220 Log: security/rubygem-omniauth-saml: update from 1.5.0 to 1.6.0 - Ensure that subclasses of OmniAuth::Stategies::SAML are registered with OmniAuth as strategies - Update ruby-saml to 1.3 to address CVE-2016-5697 (Signature wrapping attacks) Approved by: junovitch (mentor) Security: CVE-2016-5697 MFH: 2016Q3 Modified: head/security/rubygem-omniauth-saml/Makefile head/security/rubygem-omniauth-saml/distinfo Modified: head/security/rubygem-omniauth-saml/Makefile ============================================================================== --- head/security/rubygem-omniauth-saml/Makefile Fri Jul 8 12:37:35 2016 (r418219) +++ head/security/rubygem-omniauth-saml/Makefile Fri Jul 8 12:38:36 2016 (r418220) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= omniauth-saml -PORTVERSION= 1.5.0 +PORTVERSION= 1.6.0 CATEGORIES= security rubygems MASTER_SITES= RG @@ -13,7 +13,7 @@ LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.md RUN_DEPENDS= rubygem-omniauth>=1.3:security/rubygem-omniauth \ - rubygem-ruby-saml>=1.1.1:security/rubygem-ruby-saml + rubygem-ruby-saml>=1.3:security/rubygem-ruby-saml NO_ARCH= yes USE_RUBY= yes Modified: head/security/rubygem-omniauth-saml/distinfo ============================================================================== --- head/security/rubygem-omniauth-saml/distinfo Fri Jul 8 12:37:35 2016 (r418219) +++ head/security/rubygem-omniauth-saml/distinfo Fri Jul 8 12:38:36 2016 (r418220) @@ -1,2 +1,3 @@ -SHA256 (rubygem/omniauth-saml-1.5.0.gem) = c14200903dea99c78d212bcb6be98dec5de83871f87e8acc40d2418876482fc6 -SIZE (rubygem/omniauth-saml-1.5.0.gem) = 12288 +TIMESTAMP = 1467811638 +SHA256 (rubygem/omniauth-saml-1.6.0.gem) = f95ac480b62e6aceea1d3d86621f370bff71e44411c5d1fc5d4293a111d84777 +SIZE (rubygem/omniauth-saml-1.6.0.gem) = 12288 From owner-svn-ports-all@freebsd.org Fri Jul 8 12:46:39 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 5A051B833E6; Fri, 8 Jul 2016 12:46:39 +0000 (UTC) (envelope-from cy@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 2AD5115E5; Fri, 8 Jul 2016 12:46:39 +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 u68CkcqB077567; Fri, 8 Jul 2016 12:46:38 GMT (envelope-from cy@FreeBSD.org) Received: (from cy@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u68CkcbO077566; Fri, 8 Jul 2016 12:46:38 GMT (envelope-from cy@FreeBSD.org) Message-Id: <201607081246.u68CkcbO077566@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: cy set sender to cy@FreeBSD.org using -f From: Cy Schubert Date: Fri, 8 Jul 2016 12:46:38 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418221 - head X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 08 Jul 2016 12:46:39 -0000 Author: cy Date: Fri Jul 8 12:46:38 2016 New Revision: 418221 URL: https://svnweb.freebsd.org/changeset/ports/418221 Log: Add a note about of GNU Screen 4.4.0 (r417201) that a change to a data structure responsible for $TERM handling that is it is impossible to reattach to screen sessions of older versions of screen. Modified: head/UPDATING Modified: head/UPDATING ============================================================================== --- head/UPDATING Fri Jul 8 12:38:36 2016 (r418220) +++ head/UPDATING Fri Jul 8 12:46:38 2016 (r418221) @@ -6,6 +6,16 @@ You should get into the habit of checkin you update your ports collection, before attempting any port upgrades. +20160708: + AFFECTS: users of sysutils/screen + AUTHOR: cy@FreeBSD.org + + As of GNU Screen 4.4.0 (r417201): + + Note that there was fix to screen message structure field + responsible for $TERM handling, making it impossible + to attach to older versions. + 20160704: AFFECTS: users of databases/mysql57-* AUTHOR: riggs@FreeBSD.org From owner-svn-ports-all@freebsd.org Fri Jul 8 13:55:54 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 25A17B84647; Fri, 8 Jul 2016 13:55:54 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id EC3A613A2; Fri, 8 Jul 2016 13:55: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 u68DtrL8003856; Fri, 8 Jul 2016 13:55:53 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u68Dtr1V003854; Fri, 8 Jul 2016 13:55:53 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201607081355.u68Dtr1V003854@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Fri, 8 Jul 2016 13:55:53 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418222 - head/www/p5-HTML-FormFu-Model-DBIC X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 08 Jul 2016 13:55:54 -0000 Author: amdmi3 Date: Fri Jul 8 13:55:52 2016 New Revision: 418222 URL: https://svnweb.freebsd.org/changeset/ports/418222 Log: - Update to 2.02 - While here, add NO_ARCH PR: 210872 Submitted by: oleg@mamontov.net (maintainer) Modified: head/www/p5-HTML-FormFu-Model-DBIC/Makefile head/www/p5-HTML-FormFu-Model-DBIC/distinfo Modified: head/www/p5-HTML-FormFu-Model-DBIC/Makefile ============================================================================== --- head/www/p5-HTML-FormFu-Model-DBIC/Makefile Fri Jul 8 12:46:38 2016 (r418221) +++ head/www/p5-HTML-FormFu-Model-DBIC/Makefile Fri Jul 8 13:55:52 2016 (r418222) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= HTML-FormFu-Model-DBIC -PORTVERSION= 2.00 -PORTREVISION= 1 +PORTVERSION= 2.02 CATEGORIES= www perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- @@ -26,5 +25,6 @@ TEST_DEPENDS= p5-DateTime-Format-SQLite> USES= perl5 USE_PERL5= configure +NO_ARCH= yes .include Modified: head/www/p5-HTML-FormFu-Model-DBIC/distinfo ============================================================================== --- head/www/p5-HTML-FormFu-Model-DBIC/distinfo Fri Jul 8 12:46:38 2016 (r418221) +++ head/www/p5-HTML-FormFu-Model-DBIC/distinfo Fri Jul 8 13:55:52 2016 (r418222) @@ -1,2 +1,3 @@ -SHA256 (HTML-FormFu-Model-DBIC-2.00.tar.gz) = e9739ae6423c9b54adda996f94cb10729311762c7bea6a92820aed4e954a4e0f -SIZE (HTML-FormFu-Model-DBIC-2.00.tar.gz) = 51378 +TIMESTAMP = 1467801616 +SHA256 (HTML-FormFu-Model-DBIC-2.02.tar.gz) = 54797bda557379938251871622e06556ca7533c176df9b70778ebb848bda723e +SIZE (HTML-FormFu-Model-DBIC-2.02.tar.gz) = 50848 From owner-svn-ports-all@freebsd.org Fri Jul 8 13:56:19 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 368EFB8469B; Fri, 8 Jul 2016 13:56:19 +0000 (UTC) (envelope-from tz@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 0EA9C151E; Fri, 8 Jul 2016 13:56:18 +0000 (UTC) (envelope-from tz@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u68DuIE7004030; Fri, 8 Jul 2016 13:56:18 GMT (envelope-from tz@FreeBSD.org) Received: (from tz@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u68DuHuE004025; Fri, 8 Jul 2016 13:56:17 GMT (envelope-from tz@FreeBSD.org) Message-Id: <201607081356.u68DuHuE004025@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tz set sender to tz@FreeBSD.org using -f From: Torsten Zuehlsdorff Date: Fri, 8 Jul 2016 13:56:17 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418223 - in head/www/gitlab: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 08 Jul 2016 13:56:19 -0000 Author: tz Date: Fri Jul 8 13:56:17 2016 New Revision: 418223 URL: https://svnweb.freebsd.org/changeset/ports/418223 Log: www/gitlab: update from 8.8.5 to 8.8.7 8.8.7 - Fix privilege escalation issue with OAuth external users. - Ensure references to private repos aren't shown to logged-out users. 8.8.6 - Fix visibility of snippets when searching. - Update omniauth-saml to 1.6.0 Approved by: junovitch (mentor, implicit) Security: CVE-2016-5697 MFH: 2016Q3 Modified: head/www/gitlab/Makefile head/www/gitlab/distinfo head/www/gitlab/files/patch-Gemfile head/www/gitlab/pkg-plist Modified: head/www/gitlab/Makefile ============================================================================== --- head/www/gitlab/Makefile Fri Jul 8 13:55:52 2016 (r418222) +++ head/www/gitlab/Makefile Fri Jul 8 13:56:17 2016 (r418223) @@ -2,9 +2,8 @@ # $FreeBSD$ PORTNAME= gitlab -PORTVERSION= 8.8.5 +PORTVERSION= 8.8.7 DISTVERSIONPREFIX= v -PORTREVISION= 1 CATEGORIES= www devel MAINTAINER= tz@FreeBSD.org @@ -35,7 +34,7 @@ RUN_DEPENDS= git>=2.7.4:devel/git \ rubygem-omniauth-github>=1.1.1:net/rubygem-omniauth-github \ rubygem-omniauth-gitlab>=1.0.0:security/rubygem-omniauth-gitlab \ rubygem-omniauth-google-oauth2>=0.2.0:net/rubygem-omniauth-google-oauth2 \ - rubygem-omniauth-saml>=1.5.0:security/rubygem-omniauth-saml \ + rubygem-omniauth-saml>=1.6.0:security/rubygem-omniauth-saml \ rubygem-omniauth-shibboleth>=1.2.0:security/rubygem-omniauth-shibboleth \ rubygem-omniauth-twitter>=1.2.0:net/rubygem-omniauth-twitter \ rubygem-omniauth_crowd>=2.2.0:devel/rubygem-omniauth_crowd \ Modified: head/www/gitlab/distinfo ============================================================================== --- head/www/gitlab/distinfo Fri Jul 8 13:55:52 2016 (r418222) +++ head/www/gitlab/distinfo Fri Jul 8 13:56:17 2016 (r418223) @@ -1,3 +1,3 @@ -TIMESTAMP = 1466158783 -SHA256 (gitlabhq-gitlabhq-v8.8.5_GH0.tar.gz) = 385fefd73ea70797ee2b1d9084c0b5a0f90917a7636926537746bd86143e0335 -SIZE (gitlabhq-gitlabhq-v8.8.5_GH0.tar.gz) = 18478664 +TIMESTAMP = 1467811812 +SHA256 (gitlabhq-gitlabhq-v8.8.7_GH0.tar.gz) = 42ecd49943c879006d6042583b2e55f31a8f4b11d04faf693e1b1fe594697e4d +SIZE (gitlabhq-gitlabhq-v8.8.7_GH0.tar.gz) = 18479391 Modified: head/www/gitlab/files/patch-Gemfile ============================================================================== --- head/www/gitlab/files/patch-Gemfile Fri Jul 8 13:55:52 2016 (r418222) +++ head/www/gitlab/files/patch-Gemfile Fri Jul 8 13:56:17 2016 (r418223) @@ -38,7 +38,7 @@ -gem 'omniauth-google-oauth2', '~> 0.2.0' -gem 'omniauth-kerberos', '~> 0.3.0', group: :kerberos +gem 'omniauth-google-oauth2', '>= 0.2.0' - gem 'omniauth-saml', '~> 1.5.0' + gem 'omniauth-saml', '~> 1.6.0' gem 'omniauth-shibboleth', '~> 1.2.0' gem 'omniauth-twitter', '~> 1.2.0' gem 'omniauth_crowd', '~> 2.2.0' Modified: head/www/gitlab/pkg-plist ============================================================================== --- head/www/gitlab/pkg-plist Fri Jul 8 13:55:52 2016 (r418222) +++ head/www/gitlab/pkg-plist Fri Jul 8 13:56:17 2016 (r418223) @@ -3632,6 +3632,7 @@ %%WWWDIR%%/spec/services/projects/upload_service_spec.rb %%WWWDIR%%/spec/services/repair_ldap_blocked_user_service_spec.rb %%WWWDIR%%/spec/services/search_service_spec.rb +%%WWWDIR%%/spec/services/search/snippet_service_spec.rb %%WWWDIR%%/spec/services/system_hooks_service_spec.rb %%WWWDIR%%/spec/services/system_note_service_spec.rb %%WWWDIR%%/spec/services/test_hook_service_spec.rb From owner-svn-ports-all@freebsd.org Fri Jul 8 14:21:59 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 88554B84C6E; Fri, 8 Jul 2016 14:21: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 mx1.freebsd.org (Postfix) with ESMTPS id 58CEE11AE; Fri, 8 Jul 2016 14:21: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 u68ELwrC014638; Fri, 8 Jul 2016 14:21:58 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u68ELwL1014635; Fri, 8 Jul 2016 14:21:58 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201607081421.u68ELwL1014635@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Fri, 8 Jul 2016 14:21:58 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418224 - head/archivers/py-borgbackup X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 08 Jul 2016 14:21:59 -0000 Author: amdmi3 Date: Fri Jul 8 14:21:58 2016 New Revision: 418224 URL: https://svnweb.freebsd.org/changeset/ports/418224 Log: - Update to 1.0.5 PR: 210902 Submitted by: jjuanino@gmail.com (maintainer) Modified: head/archivers/py-borgbackup/Makefile head/archivers/py-borgbackup/distinfo Modified: head/archivers/py-borgbackup/Makefile ============================================================================== --- head/archivers/py-borgbackup/Makefile Fri Jul 8 13:56:17 2016 (r418223) +++ head/archivers/py-borgbackup/Makefile Fri Jul 8 14:21:58 2016 (r418224) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= borgbackup -PORTVERSION= 1.0.3 +PORTVERSION= 1.0.5 CATEGORIES= archivers python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} Modified: head/archivers/py-borgbackup/distinfo ============================================================================== --- head/archivers/py-borgbackup/distinfo Fri Jul 8 13:56:17 2016 (r418223) +++ head/archivers/py-borgbackup/distinfo Fri Jul 8 14:21:58 2016 (r418224) @@ -1,2 +1,2 @@ -SHA256 (borgbackup-1.0.3.tar.gz) = 7a79c53f2fd3f8a687bb10dbec4591ce95878f89f4467544ef4e7a005407f94f -SIZE (borgbackup-1.0.3.tar.gz) = 426936 +SHA256 (borgbackup-1.0.5.tar.gz) = a5cfbe7846962405265f74ec3ee352ee4d985e308b6749acdfe88f754fe12777 +SIZE (borgbackup-1.0.5.tar.gz) = 444590 From owner-svn-ports-all@freebsd.org Fri Jul 8 14:29:00 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 65531B84CEB; Fri, 8 Jul 2016 14:29:00 +0000 (UTC) (envelope-from tz@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 28EA81390; Fri, 8 Jul 2016 14:29:00 +0000 (UTC) (envelope-from tz@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u68ESx1c015043; Fri, 8 Jul 2016 14:28:59 GMT (envelope-from tz@FreeBSD.org) Received: (from tz@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u68ESx0e015041; Fri, 8 Jul 2016 14:28:59 GMT (envelope-from tz@FreeBSD.org) Message-Id: <201607081428.u68ESx0e015041@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tz set sender to tz@FreeBSD.org using -f From: Torsten Zuehlsdorff Date: Fri, 8 Jul 2016 14:28:59 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418225 - head/www/typo3 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 08 Jul 2016 14:29:00 -0000 Author: tz Date: Fri Jul 8 14:28:59 2016 New Revision: 418225 URL: https://svnweb.freebsd.org/changeset/ports/418225 Log: www/typo3: upgrade from 7.6.5 to 7.6.9 Changelogs: - https://wiki.typo3.org/TYPO3_CMS_7.6.6 - https://wiki.typo3.org/TYPO3_CMS_7.6.7 - https://wiki.typo3.org/TYPO3_CMS_7.6.8 - https://wiki.typo3.org/TYPO3_CMS_7.6.9 PR: 210870 Submitted by: freebsd-ports@charlieroot.de Approved by: junovitch (mentor) Security: CVE-2016-5091 MFH: 2016Q3 Modified: head/www/typo3/Makefile head/www/typo3/distinfo Modified: head/www/typo3/Makefile ============================================================================== --- head/www/typo3/Makefile Fri Jul 8 14:21:58 2016 (r418224) +++ head/www/typo3/Makefile Fri Jul 8 14:28:59 2016 (r418225) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= typo3 -PORTVERSION= 7.6.5 +PORTVERSION= 7.6.9 CATEGORIES= www MASTER_SITES= SF/${PORTNAME}/TYPO3%20Source%20and%20Dummy/TYPO3%20${PORTVERSION} Modified: head/www/typo3/distinfo ============================================================================== --- head/www/typo3/distinfo Fri Jul 8 14:21:58 2016 (r418224) +++ head/www/typo3/distinfo Fri Jul 8 14:28:59 2016 (r418225) @@ -1,2 +1,3 @@ -SHA256 (typo3_src-7.6.5.tar.gz) = 1ca76565aaac74e28ee0ffd3d8f52cf29c2b2edd883e54c296cd9966e9c36e35 -SIZE (typo3_src-7.6.5.tar.gz) = 20594347 +TIMESTAMP = 1467797014 +SHA256 (typo3_src-7.6.9.tar.gz) = 624576cd5910d31e21bdf267d55dcfa649d7684fa0b58251b97cbe227f7b930c +SIZE (typo3_src-7.6.9.tar.gz) = 20639347 From owner-svn-ports-all@freebsd.org Fri Jul 8 14:32:05 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id B7910B84E64; Fri, 8 Jul 2016 14:32:05 +0000 (UTC) (envelope-from tz@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 89994172C; Fri, 8 Jul 2016 14:32:05 +0000 (UTC) (envelope-from tz@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u68EW4vk018676; Fri, 8 Jul 2016 14:32:04 GMT (envelope-from tz@FreeBSD.org) Received: (from tz@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u68EW4P6018674; Fri, 8 Jul 2016 14:32:04 GMT (envelope-from tz@FreeBSD.org) Message-Id: <201607081432.u68EW4P6018674@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tz set sender to tz@FreeBSD.org using -f From: Torsten Zuehlsdorff Date: Fri, 8 Jul 2016 14:32:04 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418226 - head/www/typo3-lts X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 08 Jul 2016 14:32:05 -0000 Author: tz Date: Fri Jul 8 14:32:04 2016 New Revision: 418226 URL: https://svnweb.freebsd.org/changeset/ports/418226 Log: www/typo3-lts: upgrade from 6.2.21 to 6.2.25 Changelogs: - https://wiki.typo3.org/TYPO3_CMS_6.2.21 - https://wiki.typo3.org/TYPO3_CMS_6.2.22 - https://wiki.typo3.org/TYPO3_CMS_6.2.23 - https://wiki.typo3.org/TYPO3_CMS_6.2.24 - https://wiki.typo3.org/TYPO3_CMS_6.2.25 PR: 210871 Submitted by: freebsd-ports@charlieroot.de (maintainer) Approved by: junovitch (mentor) Security: CVE-2016-5091 MFH: 2016Q3 Modified: head/www/typo3-lts/Makefile head/www/typo3-lts/distinfo Modified: head/www/typo3-lts/Makefile ============================================================================== --- head/www/typo3-lts/Makefile Fri Jul 8 14:28:59 2016 (r418225) +++ head/www/typo3-lts/Makefile Fri Jul 8 14:32:04 2016 (r418226) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= typo3 -PORTVERSION= 6.2.21 +PORTVERSION= 6.2.25 CATEGORIES= www MASTER_SITES= SF/${PORTNAME}/TYPO3%20Source%20and%20Dummy/TYPO3%20${PORTVERSION} PKGNAMESUFFIX= -lts Modified: head/www/typo3-lts/distinfo ============================================================================== --- head/www/typo3-lts/distinfo Fri Jul 8 14:28:59 2016 (r418225) +++ head/www/typo3-lts/distinfo Fri Jul 8 14:32:04 2016 (r418226) @@ -1,2 +1,3 @@ -SHA256 (typo3_src-6.2.21.tar.gz) = b7334772e76a626ab0a474a50d50c659892f3094e7ad313fe60b99f886d967ba -SIZE (typo3_src-6.2.21.tar.gz) = 20939422 +TIMESTAMP = 1467799003 +SHA256 (typo3_src-6.2.25.tar.gz) = bb0205364fa4598d070567ca320ac92de870204cce069b2a03b4b8f444690b66 +SIZE (typo3_src-6.2.25.tar.gz) = 20940818 From owner-svn-ports-all@freebsd.org Fri Jul 8 14:47:17 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id CAA17B852EA; Fri, 8 Jul 2016 14:47:17 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 9CF511E57; Fri, 8 Jul 2016 14:47: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 u68ElGN2022740; Fri, 8 Jul 2016 14:47:16 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u68ElG70022739; Fri, 8 Jul 2016 14:47:16 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201607081447.u68ElG70022739@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Fri, 8 Jul 2016 14:47:16 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418227 - head/sysutils/xosview X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 08 Jul 2016 14:47:17 -0000 Author: amdmi3 Date: Fri Jul 8 14:47:16 2016 New Revision: 418227 URL: https://svnweb.freebsd.org/changeset/ports/418227 Log: - Pass maintainership to submitter - While here, add missing XORG dependency PR: 210802 Submitted by: otacilio.neto@bsd.com.br Modified: head/sysutils/xosview/Makefile Modified: head/sysutils/xosview/Makefile ============================================================================== --- head/sysutils/xosview/Makefile Fri Jul 8 14:32:04 2016 (r418226) +++ head/sysutils/xosview/Makefile Fri Jul 8 14:47:16 2016 (r418227) @@ -3,9 +3,10 @@ PORTNAME= xosview PORTVERSION= 1.17 +PORTREVISION= 1 CATEGORIES= sysutils -MAINTAINER= ports@FreeBSD.org +MAINTAINER= otacilio.neto@bsd.com.br COMMENT= Graphical performance meter LICENSE= BSD4CLAUSE GPLv2 @@ -17,7 +18,7 @@ ONLY_FOR_ARCHS_REASON= used i386-specifi USE_GITHUB= yes GH_ACCOUNT= hills -USE_XORG= xpm +USE_XORG= x11 xpm USES= gmake MAKE_ENV= OPTFLAGS="" PLATFORM=bsd MANDIR=${MANPREFIX}/man ALL_TARGET= xosview From owner-svn-ports-all@freebsd.org Fri Jul 8 15:13:59 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 9B04CB85C76; Fri, 8 Jul 2016 15:13:59 +0000 (UTC) (envelope-from tz@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 4E6661F6E; Fri, 8 Jul 2016 15:13:59 +0000 (UTC) (envelope-from tz@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u68FDwq9033441; Fri, 8 Jul 2016 15:13:58 GMT (envelope-from tz@FreeBSD.org) Received: (from tz@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u68FDwn8033439; Fri, 8 Jul 2016 15:13:58 GMT (envelope-from tz@FreeBSD.org) Message-Id: <201607081513.u68FDwn8033439@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tz set sender to tz@FreeBSD.org using -f From: Torsten Zuehlsdorff Date: Fri, 8 Jul 2016 15:13:58 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418228 - head/sysutils/usb_modeswitch X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 08 Jul 2016 15:13:59 -0000 Author: tz Date: Fri Jul 8 15:13:58 2016 New Revision: 418228 URL: https://svnweb.freebsd.org/changeset/ports/418228 Log: sysutils/usb_modeswitch: update from 2.2.5 to 2.3.0 and add LICENSE_FILE Version 2.3.0 - ATTENTION: -I flag is now history and being ignored - determining SCSI attributes is really an 'outside task' - -n flag (NeedResponse) is being ignored, CSW response will now always be read - introduction of parameter "OptionMode", wrapping the standard bulk message for all newer Huawei devices - fixed missing variable initialization in dispatcher script which could lead to crash (thanks, Dmitry Kunilov!) - fixed bug which prevented early logging - fixed success report for Cisco AM10 - some source code formatting and clean-up Version 2.2.6 - Renamed function abort(), avoiding possible conflicts in static builds with libjim (thanks, Gustavo Zacharias) - removed storage class check of interface 0 from dispatcher, enabling new multi-config devices in data package 20151101 PR: 210246 Submitted by: Franco Fichtner Approved by: maintainer timeout (3 weeks), junovitch (mentor) Modified: head/sysutils/usb_modeswitch/Makefile head/sysutils/usb_modeswitch/distinfo Modified: head/sysutils/usb_modeswitch/Makefile ============================================================================== --- head/sysutils/usb_modeswitch/Makefile Fri Jul 8 14:47:16 2016 (r418227) +++ head/sysutils/usb_modeswitch/Makefile Fri Jul 8 15:13:58 2016 (r418228) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= usb_modeswitch -PORTVERSION= 2.2.5 +PORTVERSION= 2.3.0 CATEGORIES= sysutils MASTER_SITES= http://www.draisberghof.de/usb_modeswitch/ DISTNAME= ${PORTNAME:S|_|-|}-${PORTVERSION} @@ -11,6 +11,7 @@ MAINTAINER= melifaro@ipfw.ru COMMENT= Handling Mode-Switching USB Devices LICENSE= GPLv2 +LICENSE_FILE= ${WRKSRC}/COPYING USES= gmake tar:bzip2 Modified: head/sysutils/usb_modeswitch/distinfo ============================================================================== --- head/sysutils/usb_modeswitch/distinfo Fri Jul 8 14:47:16 2016 (r418227) +++ head/sysutils/usb_modeswitch/distinfo Fri Jul 8 15:13:58 2016 (r418228) @@ -1,2 +1,3 @@ -SHA256 (usb-modeswitch-2.2.5.tar.bz2) = 8b2340303732aabc8c8e1cdd7d4352f61dcb942839f58ce22ba0ecfa122426d5 -SIZE (usb-modeswitch-2.2.5.tar.bz2) = 263335 +TIMESTAMP = 1465450333 +SHA256 (usb-modeswitch-2.3.0.tar.bz2) = f93e940c2eb0c585a5d2210177338e68a9b24f409e351e4a854132453246b894 +SIZE (usb-modeswitch-2.3.0.tar.bz2) = 263141 From owner-svn-ports-all@freebsd.org Fri Jul 8 15:36:17 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 2B815B82287; Fri, 8 Jul 2016 15:36:17 +0000 (UTC) (envelope-from tijl@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id EFFF31A8A; Fri, 8 Jul 2016 15:36:16 +0000 (UTC) (envelope-from tijl@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u68FaGTi040943; Fri, 8 Jul 2016 15:36:16 GMT (envelope-from tijl@FreeBSD.org) Received: (from tijl@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u68FaFuk040940; Fri, 8 Jul 2016 15:36:15 GMT (envelope-from tijl@FreeBSD.org) Message-Id: <201607081536.u68FaFuk040940@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tijl set sender to tijl@FreeBSD.org using -f From: Tijl Coosemans Date: Fri, 8 Jul 2016 15:36:15 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418229 - head/security/gnutls X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 08 Jul 2016 15:36:17 -0000 Author: tijl Date: Fri Jul 8 15:36:15 2016 New Revision: 418229 URL: https://svnweb.freebsd.org/changeset/ports/418229 Log: Update to 3.4.14. Modified: head/security/gnutls/Makefile head/security/gnutls/distinfo head/security/gnutls/pkg-plist Modified: head/security/gnutls/Makefile ============================================================================== --- head/security/gnutls/Makefile Fri Jul 8 15:13:58 2016 (r418228) +++ head/security/gnutls/Makefile Fri Jul 8 15:36:15 2016 (r418229) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= gnutls -PORTVERSION= 3.4.13 +PORTVERSION= 3.4.14 CATEGORIES= security net MASTER_SITES= GNUPG/gnutls/v${PORTVERSION:R} Modified: head/security/gnutls/distinfo ============================================================================== --- head/security/gnutls/distinfo Fri Jul 8 15:13:58 2016 (r418228) +++ head/security/gnutls/distinfo Fri Jul 8 15:36:15 2016 (r418229) @@ -1,3 +1,3 @@ -TIMESTAMP = 1465315602 -SHA256 (gnutls-3.4.13.tar.xz) = fd3386e8e72725980bcd7f40949aa0121dcb7650b5147c6490e794555ed25859 -SIZE (gnutls-3.4.13.tar.xz) = 6670508 +TIMESTAMP = 1467991733 +SHA256 (gnutls-3.4.14.tar.xz) = 35deddf2779b76ac11057de38bf380b8066c05de21b94263ad5b6dfa75dfbb23 +SIZE (gnutls-3.4.14.tar.xz) = 6673148 Modified: head/security/gnutls/pkg-plist ============================================================================== --- head/security/gnutls/pkg-plist Fri Jul 8 15:13:58 2016 (r418228) +++ head/security/gnutls/pkg-plist Fri Jul 8 15:36:15 2016 (r418229) @@ -41,7 +41,7 @@ info/pkcs11-vision.png %%DANE%%lib/libgnutls-dane.so.0.4.1 lib/libgnutls.so lib/libgnutls.so.30 -lib/libgnutls.so.30.6.5 +lib/libgnutls.so.30.6.6 lib/libgnutlsxx.so lib/libgnutlsxx.so.28 lib/libgnutlsxx.so.28.1.0 From owner-svn-ports-all@freebsd.org Fri Jul 8 15:42:48 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id EB8B0B82435; Fri, 8 Jul 2016 15:42:48 +0000 (UTC) (envelope-from tz@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id C6FF11EC5; Fri, 8 Jul 2016 15:42:48 +0000 (UTC) (envelope-from tz@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u68Fgl4K044574; Fri, 8 Jul 2016 15:42:47 GMT (envelope-from tz@FreeBSD.org) Received: (from tz@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u68FgliW044568; Fri, 8 Jul 2016 15:42:47 GMT (envelope-from tz@FreeBSD.org) Message-Id: <201607081542.u68FgliW044568@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tz set sender to tz@FreeBSD.org using -f From: Torsten Zuehlsdorff Date: Fri, 8 Jul 2016 15:42:47 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r418230 - in branches/2016Q3/www/gitlab: . files X-SVN-Group: ports-branches MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 08 Jul 2016 15:42:49 -0000 Author: tz Date: Fri Jul 8 15:42:47 2016 New Revision: 418230 URL: https://svnweb.freebsd.org/changeset/ports/418230 Log: MFH: r418223 www/gitlab: update from 8.8.5 to 8.8.7 8.8.7 - Fix privilege escalation issue with OAuth external users. - Ensure references to private repos aren't shown to logged-out users. 8.8.6 - Fix visibility of snippets when searching. - Update omniauth-saml to 1.6.0 Approved by: junovitch (mentor, implicit) Security: CVE-2016-5697 Approved by: ports-secteam (junovitch) Modified: branches/2016Q3/www/gitlab/Makefile branches/2016Q3/www/gitlab/distinfo branches/2016Q3/www/gitlab/files/patch-Gemfile branches/2016Q3/www/gitlab/pkg-plist Directory Properties: branches/2016Q3/ (props changed) Modified: branches/2016Q3/www/gitlab/Makefile ============================================================================== --- branches/2016Q3/www/gitlab/Makefile Fri Jul 8 15:36:15 2016 (r418229) +++ branches/2016Q3/www/gitlab/Makefile Fri Jul 8 15:42:47 2016 (r418230) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= gitlab -PORTVERSION= 8.8.5 +PORTVERSION= 8.8.7 DISTVERSIONPREFIX= v CATEGORIES= www devel @@ -34,7 +34,7 @@ RUN_DEPENDS= git>=2.7.4:devel/git \ rubygem-omniauth-github>=1.1.1:net/rubygem-omniauth-github \ rubygem-omniauth-gitlab>=1.0.0:security/rubygem-omniauth-gitlab \ rubygem-omniauth-google-oauth2>=0.2.0:net/rubygem-omniauth-google-oauth2 \ - rubygem-omniauth-saml>=1.5.0:security/rubygem-omniauth-saml \ + rubygem-omniauth-saml>=1.6.0:security/rubygem-omniauth-saml \ rubygem-omniauth-shibboleth>=1.2.0:security/rubygem-omniauth-shibboleth \ rubygem-omniauth-twitter>=1.2.0:net/rubygem-omniauth-twitter \ rubygem-omniauth_crowd>=2.2.0:devel/rubygem-omniauth_crowd \ Modified: branches/2016Q3/www/gitlab/distinfo ============================================================================== --- branches/2016Q3/www/gitlab/distinfo Fri Jul 8 15:36:15 2016 (r418229) +++ branches/2016Q3/www/gitlab/distinfo Fri Jul 8 15:42:47 2016 (r418230) @@ -1,3 +1,3 @@ -TIMESTAMP = 1466158783 -SHA256 (gitlabhq-gitlabhq-v8.8.5_GH0.tar.gz) = 385fefd73ea70797ee2b1d9084c0b5a0f90917a7636926537746bd86143e0335 -SIZE (gitlabhq-gitlabhq-v8.8.5_GH0.tar.gz) = 18478664 +TIMESTAMP = 1467811812 +SHA256 (gitlabhq-gitlabhq-v8.8.7_GH0.tar.gz) = 42ecd49943c879006d6042583b2e55f31a8f4b11d04faf693e1b1fe594697e4d +SIZE (gitlabhq-gitlabhq-v8.8.7_GH0.tar.gz) = 18479391 Modified: branches/2016Q3/www/gitlab/files/patch-Gemfile ============================================================================== --- branches/2016Q3/www/gitlab/files/patch-Gemfile Fri Jul 8 15:36:15 2016 (r418229) +++ branches/2016Q3/www/gitlab/files/patch-Gemfile Fri Jul 8 15:42:47 2016 (r418230) @@ -38,7 +38,7 @@ -gem 'omniauth-google-oauth2', '~> 0.2.0' -gem 'omniauth-kerberos', '~> 0.3.0', group: :kerberos +gem 'omniauth-google-oauth2', '>= 0.2.0' - gem 'omniauth-saml', '~> 1.5.0' + gem 'omniauth-saml', '~> 1.6.0' gem 'omniauth-shibboleth', '~> 1.2.0' gem 'omniauth-twitter', '~> 1.2.0' gem 'omniauth_crowd', '~> 2.2.0' Modified: branches/2016Q3/www/gitlab/pkg-plist ============================================================================== --- branches/2016Q3/www/gitlab/pkg-plist Fri Jul 8 15:36:15 2016 (r418229) +++ branches/2016Q3/www/gitlab/pkg-plist Fri Jul 8 15:42:47 2016 (r418230) @@ -3632,6 +3632,7 @@ %%WWWDIR%%/spec/services/projects/upload_service_spec.rb %%WWWDIR%%/spec/services/repair_ldap_blocked_user_service_spec.rb %%WWWDIR%%/spec/services/search_service_spec.rb +%%WWWDIR%%/spec/services/search/snippet_service_spec.rb %%WWWDIR%%/spec/services/system_hooks_service_spec.rb %%WWWDIR%%/spec/services/system_note_service_spec.rb %%WWWDIR%%/spec/services/test_hook_service_spec.rb From owner-svn-ports-all@freebsd.org Fri Jul 8 15:46:19 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id C0AFEB8268A; Fri, 8 Jul 2016 15:46:19 +0000 (UTC) (envelope-from tz@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 8AA021310; Fri, 8 Jul 2016 15:46:19 +0000 (UTC) (envelope-from tz@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u68FkI78044865; Fri, 8 Jul 2016 15:46:18 GMT (envelope-from tz@FreeBSD.org) Received: (from tz@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u68FkIic044863; Fri, 8 Jul 2016 15:46:18 GMT (envelope-from tz@FreeBSD.org) Message-Id: <201607081546.u68FkIic044863@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tz set sender to tz@FreeBSD.org using -f From: Torsten Zuehlsdorff Date: Fri, 8 Jul 2016 15:46:18 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r418231 - branches/2016Q3/www/typo3 X-SVN-Group: ports-branches MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 08 Jul 2016 15:46:19 -0000 Author: tz Date: Fri Jul 8 15:46:18 2016 New Revision: 418231 URL: https://svnweb.freebsd.org/changeset/ports/418231 Log: MFH: r418225 www/typo3: upgrade from 7.6.5 to 7.6.9 Changelogs: - https://wiki.typo3.org/TYPO3_CMS_7.6.6 - https://wiki.typo3.org/TYPO3_CMS_7.6.7 - https://wiki.typo3.org/TYPO3_CMS_7.6.8 - https://wiki.typo3.org/TYPO3_CMS_7.6.9 PR: 210870 Submitted by: freebsd-ports@charlieroot.de Approved by: junovitch (mentor) Security: CVE-2016-5091 Approved by: ports-secteam (junovitch) Modified: branches/2016Q3/www/typo3/Makefile branches/2016Q3/www/typo3/distinfo Directory Properties: branches/2016Q3/ (props changed) Modified: branches/2016Q3/www/typo3/Makefile ============================================================================== --- branches/2016Q3/www/typo3/Makefile Fri Jul 8 15:42:47 2016 (r418230) +++ branches/2016Q3/www/typo3/Makefile Fri Jul 8 15:46:18 2016 (r418231) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= typo3 -PORTVERSION= 7.6.5 +PORTVERSION= 7.6.9 CATEGORIES= www MASTER_SITES= SF/${PORTNAME}/TYPO3%20Source%20and%20Dummy/TYPO3%20${PORTVERSION} Modified: branches/2016Q3/www/typo3/distinfo ============================================================================== --- branches/2016Q3/www/typo3/distinfo Fri Jul 8 15:42:47 2016 (r418230) +++ branches/2016Q3/www/typo3/distinfo Fri Jul 8 15:46:18 2016 (r418231) @@ -1,2 +1,3 @@ -SHA256 (typo3_src-7.6.5.tar.gz) = 1ca76565aaac74e28ee0ffd3d8f52cf29c2b2edd883e54c296cd9966e9c36e35 -SIZE (typo3_src-7.6.5.tar.gz) = 20594347 +TIMESTAMP = 1467797014 +SHA256 (typo3_src-7.6.9.tar.gz) = 624576cd5910d31e21bdf267d55dcfa649d7684fa0b58251b97cbe227f7b930c +SIZE (typo3_src-7.6.9.tar.gz) = 20639347 From owner-svn-ports-all@freebsd.org Fri Jul 8 15:48:29 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 8397CB82749; Fri, 8 Jul 2016 15:48:29 +0000 (UTC) (envelope-from tz@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 563D114AE; Fri, 8 Jul 2016 15:48:29 +0000 (UTC) (envelope-from tz@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u68FmSBK045153; Fri, 8 Jul 2016 15:48:28 GMT (envelope-from tz@FreeBSD.org) Received: (from tz@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u68FmSUR045151; Fri, 8 Jul 2016 15:48:28 GMT (envelope-from tz@FreeBSD.org) Message-Id: <201607081548.u68FmSUR045151@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tz set sender to tz@FreeBSD.org using -f From: Torsten Zuehlsdorff Date: Fri, 8 Jul 2016 15:48:28 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r418232 - branches/2016Q3/www/typo3-lts X-SVN-Group: ports-branches MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 08 Jul 2016 15:48:29 -0000 Author: tz Date: Fri Jul 8 15:48:28 2016 New Revision: 418232 URL: https://svnweb.freebsd.org/changeset/ports/418232 Log: MFH: r418226 www/typo3-lts: upgrade from 6.2.21 to 6.2.25 Changelogs: - https://wiki.typo3.org/TYPO3_CMS_6.2.21 - https://wiki.typo3.org/TYPO3_CMS_6.2.22 - https://wiki.typo3.org/TYPO3_CMS_6.2.23 - https://wiki.typo3.org/TYPO3_CMS_6.2.24 - https://wiki.typo3.org/TYPO3_CMS_6.2.25 PR: 210871 Submitted by: freebsd-ports@charlieroot.de (maintainer) Approved by: junovitch (mentor) Security: CVE-2016-5091 Approved by: ports-secteam (junovitch) Modified: branches/2016Q3/www/typo3-lts/Makefile branches/2016Q3/www/typo3-lts/distinfo Directory Properties: branches/2016Q3/ (props changed) Modified: branches/2016Q3/www/typo3-lts/Makefile ============================================================================== --- branches/2016Q3/www/typo3-lts/Makefile Fri Jul 8 15:46:18 2016 (r418231) +++ branches/2016Q3/www/typo3-lts/Makefile Fri Jul 8 15:48:28 2016 (r418232) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= typo3 -PORTVERSION= 6.2.21 +PORTVERSION= 6.2.25 CATEGORIES= www MASTER_SITES= SF/${PORTNAME}/TYPO3%20Source%20and%20Dummy/TYPO3%20${PORTVERSION} PKGNAMESUFFIX= -lts Modified: branches/2016Q3/www/typo3-lts/distinfo ============================================================================== --- branches/2016Q3/www/typo3-lts/distinfo Fri Jul 8 15:46:18 2016 (r418231) +++ branches/2016Q3/www/typo3-lts/distinfo Fri Jul 8 15:48:28 2016 (r418232) @@ -1,2 +1,3 @@ -SHA256 (typo3_src-6.2.21.tar.gz) = b7334772e76a626ab0a474a50d50c659892f3094e7ad313fe60b99f886d967ba -SIZE (typo3_src-6.2.21.tar.gz) = 20939422 +TIMESTAMP = 1467799003 +SHA256 (typo3_src-6.2.25.tar.gz) = bb0205364fa4598d070567ca320ac92de870204cce069b2a03b4b8f444690b66 +SIZE (typo3_src-6.2.25.tar.gz) = 20940818 From owner-svn-ports-all@freebsd.org Fri Jul 8 15:51:42 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 8721CB8290E; Fri, 8 Jul 2016 15:51:42 +0000 (UTC) (envelope-from tz@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 5809717EB; Fri, 8 Jul 2016 15:51:42 +0000 (UTC) (envelope-from tz@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u68FpfFW048755; Fri, 8 Jul 2016 15:51:41 GMT (envelope-from tz@FreeBSD.org) Received: (from tz@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u68FpfjB048753; Fri, 8 Jul 2016 15:51:41 GMT (envelope-from tz@FreeBSD.org) Message-Id: <201607081551.u68FpfjB048753@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tz set sender to tz@FreeBSD.org using -f From: Torsten Zuehlsdorff Date: Fri, 8 Jul 2016 15:51:41 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r418233 - branches/2016Q3/security/rubygem-ruby-saml X-SVN-Group: ports-branches MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 08 Jul 2016 15:51:42 -0000 Author: tz Date: Fri Jul 8 15:51:41 2016 New Revision: 418233 URL: https://svnweb.freebsd.org/changeset/ports/418233 Log: MFH: r418219 security/rubygem-ruby-saml: update from 1.2.0 to 1.3.0 - Security Fix Add extra validations to prevent Signature wrapping attacks - Fix XMLSecurity SHA256 and SHA512 uris - Fix Destination validation Approved by: junovitch (mentor) Security: CVE-2016-5697 Approved by: ports-secteam (junovitch) Modified: branches/2016Q3/security/rubygem-ruby-saml/Makefile branches/2016Q3/security/rubygem-ruby-saml/distinfo Directory Properties: branches/2016Q3/ (props changed) Modified: branches/2016Q3/security/rubygem-ruby-saml/Makefile ============================================================================== --- branches/2016Q3/security/rubygem-ruby-saml/Makefile Fri Jul 8 15:48:28 2016 (r418232) +++ branches/2016Q3/security/rubygem-ruby-saml/Makefile Fri Jul 8 15:51:41 2016 (r418233) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= ruby-saml -PORTVERSION= 1.2.0 +PORTVERSION= 1.3.0 CATEGORIES= security rubygems MASTER_SITES= RG Modified: branches/2016Q3/security/rubygem-ruby-saml/distinfo ============================================================================== --- branches/2016Q3/security/rubygem-ruby-saml/distinfo Fri Jul 8 15:48:28 2016 (r418232) +++ branches/2016Q3/security/rubygem-ruby-saml/distinfo Fri Jul 8 15:51:41 2016 (r418233) @@ -1,2 +1,3 @@ -SHA256 (rubygem/ruby-saml-1.2.0.gem) = bb138175045027b42ca0f9156208bee99d58063ac51f04ba749314e750112186 -SIZE (rubygem/ruby-saml-1.2.0.gem) = 229888 +TIMESTAMP = 1467811690 +SHA256 (rubygem/ruby-saml-1.3.0.gem) = b4f4a12e7cad65c3d66857f8d73f9c1dbb27652d7d6463f5652ac5dad8501562 +SIZE (rubygem/ruby-saml-1.3.0.gem) = 230912 From owner-svn-ports-all@freebsd.org Fri Jul 8 15:53:30 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 70D5BB829BD; Fri, 8 Jul 2016 15:53:30 +0000 (UTC) (envelope-from tz@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 277B419C1; Fri, 8 Jul 2016 15:53:30 +0000 (UTC) (envelope-from tz@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u68FrTmY048989; Fri, 8 Jul 2016 15:53:29 GMT (envelope-from tz@FreeBSD.org) Received: (from tz@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u68FrTxH048987; Fri, 8 Jul 2016 15:53:29 GMT (envelope-from tz@FreeBSD.org) Message-Id: <201607081553.u68FrTxH048987@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tz set sender to tz@FreeBSD.org using -f From: Torsten Zuehlsdorff Date: Fri, 8 Jul 2016 15:53:29 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r418234 - branches/2016Q3/security/rubygem-omniauth-saml X-SVN-Group: ports-branches MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 08 Jul 2016 15:53:30 -0000 Author: tz Date: Fri Jul 8 15:53:29 2016 New Revision: 418234 URL: https://svnweb.freebsd.org/changeset/ports/418234 Log: MFH: r418220 security/rubygem-omniauth-saml: update from 1.5.0 to 1.6.0 - Ensure that subclasses of OmniAuth::Stategies::SAML are registered with OmniAuth as strategies - Update ruby-saml to 1.3 to address CVE-2016-5697 (Signature wrapping attacks) Approved by: junovitch (mentor) Security: CVE-2016-5697 Approved by: ports-secteam (junovitch) Modified: branches/2016Q3/security/rubygem-omniauth-saml/Makefile branches/2016Q3/security/rubygem-omniauth-saml/distinfo Directory Properties: branches/2016Q3/ (props changed) Modified: branches/2016Q3/security/rubygem-omniauth-saml/Makefile ============================================================================== --- branches/2016Q3/security/rubygem-omniauth-saml/Makefile Fri Jul 8 15:51:41 2016 (r418233) +++ branches/2016Q3/security/rubygem-omniauth-saml/Makefile Fri Jul 8 15:53:29 2016 (r418234) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= omniauth-saml -PORTVERSION= 1.5.0 +PORTVERSION= 1.6.0 CATEGORIES= security rubygems MASTER_SITES= RG @@ -13,7 +13,7 @@ LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.md RUN_DEPENDS= rubygem-omniauth>=1.3:security/rubygem-omniauth \ - rubygem-ruby-saml>=1.1.1:security/rubygem-ruby-saml + rubygem-ruby-saml>=1.3:security/rubygem-ruby-saml NO_ARCH= yes USE_RUBY= yes Modified: branches/2016Q3/security/rubygem-omniauth-saml/distinfo ============================================================================== --- branches/2016Q3/security/rubygem-omniauth-saml/distinfo Fri Jul 8 15:51:41 2016 (r418233) +++ branches/2016Q3/security/rubygem-omniauth-saml/distinfo Fri Jul 8 15:53:29 2016 (r418234) @@ -1,2 +1,3 @@ -SHA256 (rubygem/omniauth-saml-1.5.0.gem) = c14200903dea99c78d212bcb6be98dec5de83871f87e8acc40d2418876482fc6 -SIZE (rubygem/omniauth-saml-1.5.0.gem) = 12288 +TIMESTAMP = 1467811638 +SHA256 (rubygem/omniauth-saml-1.6.0.gem) = f95ac480b62e6aceea1d3d86621f370bff71e44411c5d1fc5d4293a111d84777 +SIZE (rubygem/omniauth-saml-1.6.0.gem) = 12288 From owner-svn-ports-all@freebsd.org Fri Jul 8 15:55:58 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 6E97DB82A0B; Fri, 8 Jul 2016 15:55:58 +0000 (UTC) (envelope-from vanilla@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 3F3D21AE4; Fri, 8 Jul 2016 15:55:58 +0000 (UTC) (envelope-from vanilla@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u68Ftvx6049198; Fri, 8 Jul 2016 15:55:57 GMT (envelope-from vanilla@FreeBSD.org) Received: (from vanilla@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u68Ftvjn049196; Fri, 8 Jul 2016 15:55:57 GMT (envelope-from vanilla@FreeBSD.org) Message-Id: <201607081555.u68Ftvjn049196@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: vanilla set sender to vanilla@FreeBSD.org using -f From: "Vanilla I. Shu" Date: Fri, 8 Jul 2016 15:55:57 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418235 - head/security/p5-CryptX X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 08 Jul 2016 15:55:58 -0000 Author: vanilla Date: Fri Jul 8 15:55:57 2016 New Revision: 418235 URL: https://svnweb.freebsd.org/changeset/ports/418235 Log: Update to 0.038. Modified: head/security/p5-CryptX/Makefile head/security/p5-CryptX/distinfo Modified: head/security/p5-CryptX/Makefile ============================================================================== --- head/security/p5-CryptX/Makefile Fri Jul 8 15:53:29 2016 (r418234) +++ head/security/p5-CryptX/Makefile Fri Jul 8 15:55:57 2016 (r418235) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= CryptX -PORTVERSION= 0.037 +PORTVERSION= 0.038 CATEGORIES= security perl5 MASTER_SITES= CPAN/Crypt PKGNAMEPREFIX= p5- Modified: head/security/p5-CryptX/distinfo ============================================================================== --- head/security/p5-CryptX/distinfo Fri Jul 8 15:53:29 2016 (r418234) +++ head/security/p5-CryptX/distinfo Fri Jul 8 15:55:57 2016 (r418235) @@ -1,3 +1,3 @@ -TIMESTAMP = 1466523360 -SHA256 (CryptX-0.037.tar.gz) = ae09e6449efb2a9bc661ffeba613c7452367bdcb13c1ee346af0f72c9803404d -SIZE (CryptX-0.037.tar.gz) = 1200419 +TIMESTAMP = 1467993278 +SHA256 (CryptX-0.038.tar.gz) = f98d4ee3bfd0a985077912501b32777c551f0782aa050b4dfbcb3d654e303eb8 +SIZE (CryptX-0.038.tar.gz) = 1200417 From owner-svn-ports-all@freebsd.org Fri Jul 8 17:01:45 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id CC91CB8426E; Fri, 8 Jul 2016 17:01:45 +0000 (UTC) (envelope-from madpilot@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 9D7961F72; Fri, 8 Jul 2016 17:01:45 +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 u68H1iMI075198; Fri, 8 Jul 2016 17:01:44 GMT (envelope-from madpilot@FreeBSD.org) Received: (from madpilot@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u68H1ici075196; Fri, 8 Jul 2016 17:01:44 GMT (envelope-from madpilot@FreeBSD.org) Message-Id: <201607081701.u68H1ici075196@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: madpilot set sender to madpilot@FreeBSD.org using -f From: Guido Falsi Date: Fri, 8 Jul 2016 17:01:44 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418236 - head/deskutils/calibre X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 08 Jul 2016 17:01:45 -0000 Author: madpilot Date: Fri Jul 8 17:01:44 2016 New Revision: 418236 URL: https://svnweb.freebsd.org/changeset/ports/418236 Log: Update to 2.62.0. Modified: head/deskutils/calibre/Makefile head/deskutils/calibre/distinfo Modified: head/deskutils/calibre/Makefile ============================================================================== --- head/deskutils/calibre/Makefile Fri Jul 8 15:55:57 2016 (r418235) +++ head/deskutils/calibre/Makefile Fri Jul 8 17:01:44 2016 (r418236) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= calibre -PORTVERSION= 2.61.0 -PORTREVISION= 2 +PORTVERSION= 2.62.0 CATEGORIES= deskutils python MASTER_SITES= http://download.calibre-ebook.com/${PORTVERSION}/ Modified: head/deskutils/calibre/distinfo ============================================================================== --- head/deskutils/calibre/distinfo Fri Jul 8 15:55:57 2016 (r418235) +++ head/deskutils/calibre/distinfo Fri Jul 8 17:01:44 2016 (r418236) @@ -1,3 +1,3 @@ -TIMESTAMP = 1467358963 -SHA256 (calibre-2.61.0.tar.xz) = a88c3da1320c346cb4847d3a887674e4aa4c965b4e2311e425343d9fe72b5df7 -SIZE (calibre-2.61.0.tar.xz) = 40615784 +TIMESTAMP = 1467965226 +SHA256 (calibre-2.62.0.tar.xz) = ca4e7b13bfbf3950e32c91d163bd31a310fb386375d4c02f4bde8dd7b49b1a97 +SIZE (calibre-2.62.0.tar.xz) = 40671664 From owner-svn-ports-all@freebsd.org Fri Jul 8 17:23:21 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 96526B84B43; Fri, 8 Jul 2016 17:23: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 mx1.freebsd.org (Postfix) with ESMTPS id 583AE1336; Fri, 8 Jul 2016 17:23: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 u68HNKUt082813; Fri, 8 Jul 2016 17:23:20 GMT (envelope-from pi@FreeBSD.org) Received: (from pi@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u68HNKPh082806; Fri, 8 Jul 2016 17:23:20 GMT (envelope-from pi@FreeBSD.org) Message-Id: <201607081723.u68HNKPh082806@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pi set sender to pi@FreeBSD.org using -f From: Kurt Jaeger Date: Fri, 8 Jul 2016 17:23:20 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418237 - in head/devel: . marisa-trie marisa-trie/files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 08 Jul 2016 17:23:21 -0000 Author: pi Date: Fri Jul 8 17:23:19 2016 New Revision: 418237 URL: https://svnweb.freebsd.org/changeset/ports/418237 Log: New port: devel/marisa-trie Matching Algorithm with Recursively Implemented StorAge (MARISA) is a static and space-efficient trie data structure. And libmarisa is a C++ library to provide an implementation of MARISA. Also, the package of libmarisa contains a set of command line tools for building and operating a MARISA-based dictionary. WWW: https://github.com/s-yata/marisa-trie PR: 210780 Submitted by: Iblis Lin Added: head/devel/marisa-trie/ head/devel/marisa-trie/Makefile (contents, props changed) head/devel/marisa-trie/distinfo (contents, props changed) head/devel/marisa-trie/files/ head/devel/marisa-trie/files/patch-Makefile.am (contents, props changed) head/devel/marisa-trie/pkg-descr (contents, props changed) head/devel/marisa-trie/pkg-plist (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Fri Jul 8 17:01:44 2016 (r418236) +++ head/devel/Makefile Fri Jul 8 17:23:19 2016 (r418237) @@ -1465,6 +1465,7 @@ SUBDIR += magit SUBDIR += make++ SUBDIR += makedepend + SUBDIR += marisa-trie SUBDIR += mate-common SUBDIR += matreshka SUBDIR += maven-wrapper Added: head/devel/marisa-trie/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/marisa-trie/Makefile Fri Jul 8 17:23:19 2016 (r418237) @@ -0,0 +1,55 @@ +# Created by: Iblis Lin +# $FreeBSD$ + +PORTNAME= marisa-tire +PORTVERSION= 0.24 +CATEGORIES= devel +MASTER_SITES= GH + +MAINTAINER= iblis@hs.ntnu.edu.tw +COMMENT= MARISA: Matching Algorithm with Recursively Implemented StorAge + +LICENSE= BSD2CLAUSE LGPL21+ +LICENSE_COMB= dual +LICENSE_FILE= ${WRKSRC}/COPYING.md + +USE_GITHUB= yes +GH_ACCOUNT= s-yata +GH_PROJECT= marisa-trie +GH_TAGNAME= 961ed33 + +USES= autoreconf libtool:build +USE_LDCONFIG= yes + +GNU_CONFIGURE= yes +CONFIGURE_ARGS= --with-pkg-config-dir=${PREFIX}/libdata/pkgconfig + +INSTALL_TARGET= install-strip + +OPTIONS_DEFINE= SSE2 SSE3 SSSE3 SSE4 SSE41 SSE42 SSE4A POPCNT + +SSE2_DESC= Support for SSE2 +SSE2_CONFIGURE_ENABLE= sse2 + +SSE3_DESC= Support for SSE3 +SSE3_CONFIGURE_ENABLE= sse3 + +SSSE3_DESC= Support for SSSE3 +SSSE3_CONFIGURE_ENABLE= sse3 + +SSE4_DESC= Support for SSE4 +SSE4_CONFIGURE_ENABLE= sse4 + +SSE41_DESC= Support for SSE4.1 +SSE41_CONFIGURE_ENABLE= sse4.1 + +SSE42_DESC= Support for SSE4.2 +SSE42_CONFIGURE_ENABLE= sse4.2 + +SSE4A_DESC= Support for SSE4a +SSE4A_CONFIGURE_ENABLE= sse4a + +POPCNT_DESC= Support for POPCNT +POPCNT_CONFIGURE_ENABLE= POPCNT + +.include Added: head/devel/marisa-trie/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/marisa-trie/distinfo Fri Jul 8 17:23:19 2016 (r418237) @@ -0,0 +1,3 @@ +TIMESTAMP = 1467536118 +SHA256 (s-yata-marisa-trie-0.24-961ed33_GH0.tar.gz) = f9e48330b2f58df68fbb02adff70cdcb87f7cdfa401afb7afcf104ee117aeb94 +SIZE (s-yata-marisa-trie-0.24-961ed33_GH0.tar.gz) = 167449 Added: head/devel/marisa-trie/files/patch-Makefile.am ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/marisa-trie/files/patch-Makefile.am Fri Jul 8 17:23:19 2016 (r418237) @@ -0,0 +1,11 @@ +--- Makefile.am.orig 2016-07-03 09:34:09 UTC ++++ Makefile.am +@@ -2,7 +2,7 @@ ACLOCAL_AMFLAGS = -I m4 + + SUBDIRS = include lib tools tests + +-pkgconfigdir = ${libdir}/pkgconfig ++pkgconfigdir = ${prefix}/libdata/pkgconfig + pkgconfig_DATA = marisa.pc + + EXTRA_DIST = \ Added: head/devel/marisa-trie/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/marisa-trie/pkg-descr Fri Jul 8 17:23:19 2016 (r418237) @@ -0,0 +1,7 @@ +Matching Algorithm with Recursively Implemented StorAge (MARISA) +is a static and space-efficient trie data structure. And libmarisa +is a C++ library to provide an implementation of MARISA. Also, the +package of libmarisa contains a set of command line tools for +building and operating a MARISA-based dictionary. + +WWW: https://github.com/s-yata/marisa-trie Added: head/devel/marisa-trie/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/marisa-trie/pkg-plist Fri Jul 8 17:23:19 2016 (r418237) @@ -0,0 +1,24 @@ +bin/marisa-benchmark +bin/marisa-build +bin/marisa-common-prefix-search +bin/marisa-dump +bin/marisa-lookup +bin/marisa-predictive-search +bin/marisa-reverse-lookup +include/marisa.h +include/marisa/agent.h +include/marisa/base.h +include/marisa/exception.h +include/marisa/iostream.h +include/marisa/key.h +include/marisa/keyset.h +include/marisa/query.h +include/marisa/scoped-array.h +include/marisa/scoped-ptr.h +include/marisa/stdio.h +include/marisa/trie.h +lib/libmarisa.a +lib/libmarisa.so +lib/libmarisa.so.0 +lib/libmarisa.so.0.0.0 +libdata/pkgconfig/marisa.pc From owner-svn-ports-all@freebsd.org Fri Jul 8 18:03:01 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 6F9D4B8539F; Fri, 8 Jul 2016 18:03:01 +0000 (UTC) (envelope-from tijl@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 212E1166B; Fri, 8 Jul 2016 18:03:01 +0000 (UTC) (envelope-from tijl@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u68I30re097799; Fri, 8 Jul 2016 18:03:00 GMT (envelope-from tijl@FreeBSD.org) Received: (from tijl@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u68I3006097796; Fri, 8 Jul 2016 18:03:00 GMT (envelope-from tijl@FreeBSD.org) Message-Id: <201607081803.u68I3006097796@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tijl set sender to tijl@FreeBSD.org using -f From: Tijl Coosemans Date: Fri, 8 Jul 2016 18:03:00 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418238 - in head/lang/sdcc: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 08 Jul 2016 18:03:01 -0000 Author: tijl Date: Fri Jul 8 18:02:59 2016 New Revision: 418238 URL: https://svnweb.freebsd.org/changeset/ports/418238 Log: Update to 3.6.0. Deleted: head/lang/sdcc/files/patch-src_SDCClospre.hpp head/lang/sdcc/files/patch-src_SDCCnaddr.hpp head/lang/sdcc/files/patch-src_SDCCralloc.hpp Modified: head/lang/sdcc/Makefile head/lang/sdcc/distinfo head/lang/sdcc/pkg-descr Modified: head/lang/sdcc/Makefile ============================================================================== --- head/lang/sdcc/Makefile Fri Jul 8 17:23:19 2016 (r418237) +++ head/lang/sdcc/Makefile Fri Jul 8 18:02:59 2016 (r418238) @@ -1,9 +1,8 @@ # $FreeBSD$ PORTNAME= sdcc -PORTVERSION= 3.5.0 +PORTVERSION= 3.6.0 DISTVERSIONPREFIX= src- -PORTREVISION= 2 CATEGORIES= lang MASTER_SITES= SF @@ -62,6 +61,8 @@ post-patch: @${REINPLACE_CMD} '/install:/s/:.*/:/' \ ${WRKSRC}/Makefile.in \ ${WRKSRC}/support/sdbinutils/libiberty/Makefile.in + @${REINPLACE_CMD} '/^SUBDIRS =/s/doc//' \ + ${WRKSRC}/support/sdbinutils/bfd/Makefile.in @${REINPLACE_CMD} 's/[[:<:]]ARCH[[:>:]]/PICARCH/g' \ ${WRKSRC}/device/lib/pic14/Makefile.common \ ${WRKSRC}/device/lib/pic14/Makefile.in \ Modified: head/lang/sdcc/distinfo ============================================================================== --- head/lang/sdcc/distinfo Fri Jul 8 17:23:19 2016 (r418237) +++ head/lang/sdcc/distinfo Fri Jul 8 18:02:59 2016 (r418238) @@ -1,2 +1,3 @@ -SHA256 (sdcc-src-3.5.0.tar.bz2) = f82978d1614244b22e093402c0a4de1f688a07c807b2980126c964eb3df85fa9 -SIZE (sdcc-src-3.5.0.tar.bz2) = 10504517 +TIMESTAMP = 1467992784 +SHA256 (sdcc-src-3.6.0.tar.bz2) = e85dceb11e01ffefb545ec389da91265130c91953589392dddd2e5ec0b7ca374 +SIZE (sdcc-src-3.6.0.tar.bz2) = 17993788 Modified: head/lang/sdcc/pkg-descr ============================================================================== --- head/lang/sdcc/pkg-descr Fri Jul 8 17:23:19 2016 (r418237) +++ head/lang/sdcc/pkg-descr Fri Jul 8 18:02:59 2016 (r418238) @@ -1,8 +1,8 @@ SDCC is a retargettable, optimizing ANSI C compiler suite that targets the Intel MCS51 based microprocessors (8031, 8032, 8051, 8052, etc.), Maxim (formerly Dallas) DS80C390 variants, Freescale (formerly Motorola) -HC08 based (hc08, s08) and Zilog Z80 based MCUs (z80, z180, gbz80, -Rabbit 2000/3000, Rabbit 3000A). Work is in progress on supporting the -Microchip PIC16 and PIC18 targets. +HC08 (hc08, s08), Zilog Z80 based MCUs (z80, z180, gbz80, Rabbit 2000/3000, +Rabbit 3000A, TLCS-90) and STMicroelectronics STM8. Work is in progress +to support Microchip PIC16 and PIC18 targets. WWW: http://sdcc.sourceforge.net/ From owner-svn-ports-all@freebsd.org Fri Jul 8 19:01:08 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 5DF1AB832AD; Fri, 8 Jul 2016 19:01:08 +0000 (UTC) (envelope-from tijl@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 3091D17C1; Fri, 8 Jul 2016 19:01:08 +0000 (UTC) (envelope-from tijl@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u68J17Oh017088; Fri, 8 Jul 2016 19:01:07 GMT (envelope-from tijl@FreeBSD.org) Received: (from tijl@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u68J17PF017086; Fri, 8 Jul 2016 19:01:07 GMT (envelope-from tijl@FreeBSD.org) Message-Id: <201607081901.u68J17PF017086@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tijl set sender to tijl@FreeBSD.org using -f From: Tijl Coosemans Date: Fri, 8 Jul 2016 19:01:07 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418239 - head/lang/sdcc-devel X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 08 Jul 2016 19:01:08 -0000 Author: tijl Date: Fri Jul 8 19:01:07 2016 New Revision: 418239 URL: https://svnweb.freebsd.org/changeset/ports/418239 Log: Update to 3.6.1.2016.07.08. Modified: head/lang/sdcc-devel/Makefile head/lang/sdcc-devel/distinfo Modified: head/lang/sdcc-devel/Makefile ============================================================================== --- head/lang/sdcc-devel/Makefile Fri Jul 8 18:02:59 2016 (r418238) +++ head/lang/sdcc-devel/Makefile Fri Jul 8 19:01:07 2016 (r418239) @@ -1,12 +1,12 @@ # $FreeBSD$ PORTNAME= sdcc -PORTVERSION= 3.5.5.2016.02.20 +PORTVERSION= 3.6.1.2016.07.08 CATEGORIES= lang MASTER_SITES= SF/sdcc/snapshot_builds/sdcc-src/ \ http://tijl.fastmail.com/mirror/ PKGNAMESUFFIX= -devel -DISTNAME= ${PORTNAME}-src-20160220-9506 +DISTNAME= ${PORTNAME}-src-20160708-9632 MAINTAINER= tijl@FreeBSD.org COMMENT= Small Device C Compiler Modified: head/lang/sdcc-devel/distinfo ============================================================================== --- head/lang/sdcc-devel/distinfo Fri Jul 8 18:02:59 2016 (r418238) +++ head/lang/sdcc-devel/distinfo Fri Jul 8 19:01:07 2016 (r418239) @@ -1,2 +1,3 @@ -SHA256 (sdcc-src-20160220-9506.tar.bz2) = a5c47d85889ca062085dda28013f04f4125edd90e39c76077eeba057f339c729 -SIZE (sdcc-src-20160220-9506.tar.bz2) = 17935525 +TIMESTAMP = 1468001098 +SHA256 (sdcc-src-20160708-9632.tar.bz2) = 67d031d4f8eacca357823221ffdf3d49006c08253d94ab503dd2827005744aed +SIZE (sdcc-src-20160708-9632.tar.bz2) = 17997468 From owner-svn-ports-all@freebsd.org Fri Jul 8 19:07:43 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 4AAC6B8346C; Fri, 8 Jul 2016 19:07:43 +0000 (UTC) (envelope-from brnrd@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 0049A1CEA; Fri, 8 Jul 2016 19:07:42 +0000 (UTC) (envelope-from brnrd@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u68J7gr6020173; Fri, 8 Jul 2016 19:07:42 GMT (envelope-from brnrd@FreeBSD.org) Received: (from brnrd@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u68J7fwn020168; Fri, 8 Jul 2016 19:07:41 GMT (envelope-from brnrd@FreeBSD.org) Message-Id: <201607081907.u68J7fwn020168@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: brnrd set sender to brnrd@FreeBSD.org using -f From: Bernard Spil Date: Fri, 8 Jul 2016 19:07:41 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418240 - in head/lang: python33 python34 python34/files python35 python35/files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 08 Jul 2016 19:07:43 -0000 Author: brnrd Date: Fri Jul 8 19:07:41 2016 New Revision: 418240 URL: https://svnweb.freebsd.org/changeset/ports/418240 Log: lang/python3*: Backport upstream issue 24557 - Add backport of patch for EGD issue [1] - Change USE_OPENSSL to USES= ssl - Don't set CPE_VERSION to the default PORTVERSION PR: 205960 [1], 199050 [1] Reviewed by: koobs (python) Approved by: python (koobs) Obtained from: https://hg.python.org/cpython/rev/7c0432cf1f2e [1] MFH: 2016Q3 Added: head/lang/python34/files/patch-issue24557 (contents, props changed) head/lang/python35/files/patch-issue24557 (contents, props changed) Modified: head/lang/python33/Makefile head/lang/python34/Makefile head/lang/python35/Makefile Modified: head/lang/python33/Makefile ============================================================================== --- head/lang/python33/Makefile Fri Jul 8 19:01:07 2016 (r418239) +++ head/lang/python33/Makefile Fri Jul 8 19:07:41 2016 (r418240) @@ -16,14 +16,12 @@ LICENSE= PSFL DEPRECATED= No longer receives bug fixes, only security updates. Please update to Python 3.5 EXPIRATION_DATE= 2017-09-01 -USES= cpe ncurses pkgconfig readline tar:xz -USE_OPENSSL= yes +USES= cpe ncurses pkgconfig readline ssl tar:xz USE_LDCONFIG= yes GNU_CONFIGURE= yes CPE_VENDOR= python CPE_PRODUCT= ${CPE_VENDOR} -CPE_VERSION= ${PORTVERSION} CONFIGURE_ARGS+= --enable-shared CONFIGURE_ENV+= OPT="" # Null out OPT to respect user CFLAGS and remove optimizations Modified: head/lang/python34/Makefile ============================================================================== --- head/lang/python34/Makefile Fri Jul 8 19:01:07 2016 (r418239) +++ head/lang/python34/Makefile Fri Jul 8 19:07:41 2016 (r418240) @@ -13,14 +13,12 @@ COMMENT= Interpreted object-oriented pro LICENSE= PSFL -USES= cpe ncurses pkgconfig readline tar:xz -USE_OPENSSL= yes +USES= cpe ncurses pkgconfig readline ssl tar:xz USE_LDCONFIG= yes GNU_CONFIGURE= yes CPE_VENDOR= python CPE_PRODUCT= ${CPE_VENDOR} -CPE_VERSION= ${PORTVERSION} DISABLED_EXTENSIONS= _sqlite3 _tkinter _gdbm CONFIGURE_ARGS+= --enable-shared --without-ensurepip Added: head/lang/python34/files/patch-issue24557 ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/lang/python34/files/patch-issue24557 Fri Jul 8 19:07:41 2016 (r418240) @@ -0,0 +1,23 @@ +http://bugs.python.org/issue24557 +assume egd unless OPENSSL_NO_EGD is defined-remove configure check + +--- Modules/_ssl.c.orig 2016-06-25 21:52:32 UTC ++++ Modules/_ssl.c +@@ -3325,7 +3325,7 @@ Returns 1 if the OpenSSL PRNG has been s + It is necessary to seed the PRNG with RAND_add() on some platforms before\n\ + using the ssl() function."); + +-#ifdef HAVE_RAND_EGD ++#ifndef OPENSSL_NO_EGD + static PyObject * + PySSL_RAND_egd(PyObject *self, PyObject *args) + { +@@ -3753,7 +3753,7 @@ static PyMethodDef PySSL_methods[] = { + PySSL_RAND_bytes_doc}, + {"RAND_pseudo_bytes", PySSL_RAND_pseudo_bytes, METH_VARARGS, + PySSL_RAND_pseudo_bytes_doc}, +-#ifdef HAVE_RAND_EGD ++#ifndef OPENSSL_NO_EGD + {"RAND_egd", PySSL_RAND_egd, METH_VARARGS, + PySSL_RAND_egd_doc}, + #endif Modified: head/lang/python35/Makefile ============================================================================== --- head/lang/python35/Makefile Fri Jul 8 19:01:07 2016 (r418239) +++ head/lang/python35/Makefile Fri Jul 8 19:07:41 2016 (r418240) @@ -14,8 +14,7 @@ COMMENT= Interpreted object-oriented pro LICENSE= PSFL -USES= cpe ncurses pkgconfig readline tar:xz -USE_OPENSSL= yes +USES= cpe ncurses pkgconfig readline ssl tar:xz USE_LDCONFIG= yes GNU_CONFIGURE= yes Added: head/lang/python35/files/patch-issue24557 ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/lang/python35/files/patch-issue24557 Fri Jul 8 19:07:41 2016 (r418240) @@ -0,0 +1,51 @@ +http://bugs.python.org/issue24557 +https://hg.python.org/cpython/rev/fe168c2b5e95 + +assume egd unless OPENSSL_NO_EGD is defined-remove configure check + +--- Modules/_ssl.c.orig 2015-12-07 01:39:10 UTC ++++ Modules/_ssl.c +@@ -3916,7 +3916,7 @@ _ssl_RAND_status_impl(PyModuleDef *modul + return PyLong_FromLong(RAND_status()); + } + +-#ifdef HAVE_RAND_EGD ++#ifndef OPENSSL_NO_EGD + /*[clinic input] + _ssl.RAND_egd + path: object(converter="PyUnicode_FSConverter") +@@ -3942,7 +3942,7 @@ _ssl_RAND_egd_impl(PyModuleDef *module, + } + return PyLong_FromLong(bytes); + } +-#endif /* HAVE_RAND_EGD */ ++#endif /* OPENSSL_NO_EGD */ + + + +--- Modules/clinic/_ssl.c.h.orig 2015-12-07 01:39:10 UTC ++++ Modules/clinic/_ssl.c.h +@@ -893,7 +893,7 @@ _ssl_RAND_status(PyModuleDef *module, PyObject *Py_UNUSED(ignored)) + return _ssl_RAND_status_impl(module); + } + +-#if defined(HAVE_RAND_EGD) ++#if !defined(OPENSSL_NO_EGD) + + PyDoc_STRVAR(_ssl_RAND_egd__doc__, + "RAND_egd($module, path, /)\n" +@@ -924,7 +924,7 @@ _ssl_RAND_egd(PyModuleDef *module, PyObject *arg) + return return_value; + } + +-#endif /* defined(HAVE_RAND_EGD) */ ++#endif /* !defined(OPENSSL_NO_EGD) */ + + PyDoc_STRVAR(_ssl_get_default_verify_paths__doc__, + "get_default_verify_paths($module, /)\n" +@@ -1102,4 +1102,4 @@ _ssl_enum_crls(PyModuleDef *module, PyObject *args, PyObject *kwargs) + #ifndef _SSL_ENUM_CRLS_METHODDEF + #define _SSL_ENUM_CRLS_METHODDEF + #endif /* !defined(_SSL_ENUM_CRLS_METHODDEF) */ +-/*[clinic end generated code: output=a14999cb565a69a2 input=a9049054013a1b77]*/ ++/*[clinic end generated code: output=abe795f14cb63b6a input=a9049054013a1b77]*/ From owner-svn-ports-all@freebsd.org Fri Jul 8 20:08:49 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 50D8FB84422; Fri, 8 Jul 2016 20:08:49 +0000 (UTC) (envelope-from brnrd@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 1ECD3138E; Fri, 8 Jul 2016 20:08:49 +0000 (UTC) (envelope-from brnrd@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u68K8mx0042674; Fri, 8 Jul 2016 20:08:48 GMT (envelope-from brnrd@FreeBSD.org) Received: (from brnrd@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u68K8lCt042669; Fri, 8 Jul 2016 20:08:47 GMT (envelope-from brnrd@FreeBSD.org) Message-Id: <201607082008.u68K8lCt042669@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: brnrd set sender to brnrd@FreeBSD.org using -f From: Bernard Spil Date: Fri, 8 Jul 2016 20:08:47 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r418241 - in branches/2016Q3/lang: python33 python34 python34/files python35 python35/files X-SVN-Group: ports-branches MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 08 Jul 2016 20:08:49 -0000 Author: brnrd Date: Fri Jul 8 20:08:47 2016 New Revision: 418241 URL: https://svnweb.freebsd.org/changeset/ports/418241 Log: MFH: r418240 lang/python3*: Backport upstream issue 24557 - Add backport of patch for EGD issue [1] - Change USE_OPENSSL to USES= ssl - Don't set CPE_VERSION to the default PORTVERSION PR: 205960 [1], 199050 [1] Reviewed by: koobs (python) Approved by: python (koobs) Obtained from: https://hg.python.org/cpython/rev/7c0432cf1f2e [1] Approved by: ports-secteam (feld) Added: branches/2016Q3/lang/python34/files/patch-issue24557 - copied unchanged from r418240, head/lang/python34/files/patch-issue24557 branches/2016Q3/lang/python35/files/patch-issue24557 - copied unchanged from r418240, head/lang/python35/files/patch-issue24557 Modified: branches/2016Q3/lang/python33/Makefile branches/2016Q3/lang/python34/Makefile branches/2016Q3/lang/python35/Makefile Directory Properties: branches/2016Q3/ (props changed) Modified: branches/2016Q3/lang/python33/Makefile ============================================================================== --- branches/2016Q3/lang/python33/Makefile Fri Jul 8 19:07:41 2016 (r418240) +++ branches/2016Q3/lang/python33/Makefile Fri Jul 8 20:08:47 2016 (r418241) @@ -16,14 +16,12 @@ LICENSE= PSFL DEPRECATED= No longer receives bug fixes, only security updates. Please update to Python 3.5 EXPIRATION_DATE= 2017-09-01 -USES= cpe ncurses pkgconfig readline tar:xz -USE_OPENSSL= yes +USES= cpe ncurses pkgconfig readline ssl tar:xz USE_LDCONFIG= yes GNU_CONFIGURE= yes CPE_VENDOR= python CPE_PRODUCT= ${CPE_VENDOR} -CPE_VERSION= ${PORTVERSION} CONFIGURE_ARGS+= --enable-shared CONFIGURE_ENV+= OPT="" # Null out OPT to respect user CFLAGS and remove optimizations Modified: branches/2016Q3/lang/python34/Makefile ============================================================================== --- branches/2016Q3/lang/python34/Makefile Fri Jul 8 19:07:41 2016 (r418240) +++ branches/2016Q3/lang/python34/Makefile Fri Jul 8 20:08:47 2016 (r418241) @@ -13,14 +13,12 @@ COMMENT= Interpreted object-oriented pro LICENSE= PSFL -USES= cpe ncurses pkgconfig readline tar:xz -USE_OPENSSL= yes +USES= cpe ncurses pkgconfig readline ssl tar:xz USE_LDCONFIG= yes GNU_CONFIGURE= yes CPE_VENDOR= python CPE_PRODUCT= ${CPE_VENDOR} -CPE_VERSION= ${PORTVERSION} DISABLED_EXTENSIONS= _sqlite3 _tkinter _gdbm CONFIGURE_ARGS+= --enable-shared --without-ensurepip Copied: branches/2016Q3/lang/python34/files/patch-issue24557 (from r418240, head/lang/python34/files/patch-issue24557) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2016Q3/lang/python34/files/patch-issue24557 Fri Jul 8 20:08:47 2016 (r418241, copy of r418240, head/lang/python34/files/patch-issue24557) @@ -0,0 +1,23 @@ +http://bugs.python.org/issue24557 +assume egd unless OPENSSL_NO_EGD is defined-remove configure check + +--- Modules/_ssl.c.orig 2016-06-25 21:52:32 UTC ++++ Modules/_ssl.c +@@ -3325,7 +3325,7 @@ Returns 1 if the OpenSSL PRNG has been s + It is necessary to seed the PRNG with RAND_add() on some platforms before\n\ + using the ssl() function."); + +-#ifdef HAVE_RAND_EGD ++#ifndef OPENSSL_NO_EGD + static PyObject * + PySSL_RAND_egd(PyObject *self, PyObject *args) + { +@@ -3753,7 +3753,7 @@ static PyMethodDef PySSL_methods[] = { + PySSL_RAND_bytes_doc}, + {"RAND_pseudo_bytes", PySSL_RAND_pseudo_bytes, METH_VARARGS, + PySSL_RAND_pseudo_bytes_doc}, +-#ifdef HAVE_RAND_EGD ++#ifndef OPENSSL_NO_EGD + {"RAND_egd", PySSL_RAND_egd, METH_VARARGS, + PySSL_RAND_egd_doc}, + #endif Modified: branches/2016Q3/lang/python35/Makefile ============================================================================== --- branches/2016Q3/lang/python35/Makefile Fri Jul 8 19:07:41 2016 (r418240) +++ branches/2016Q3/lang/python35/Makefile Fri Jul 8 20:08:47 2016 (r418241) @@ -14,8 +14,7 @@ COMMENT= Interpreted object-oriented pro LICENSE= PSFL -USES= cpe ncurses pkgconfig readline tar:xz -USE_OPENSSL= yes +USES= cpe ncurses pkgconfig readline ssl tar:xz USE_LDCONFIG= yes GNU_CONFIGURE= yes Copied: branches/2016Q3/lang/python35/files/patch-issue24557 (from r418240, head/lang/python35/files/patch-issue24557) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2016Q3/lang/python35/files/patch-issue24557 Fri Jul 8 20:08:47 2016 (r418241, copy of r418240, head/lang/python35/files/patch-issue24557) @@ -0,0 +1,51 @@ +http://bugs.python.org/issue24557 +https://hg.python.org/cpython/rev/fe168c2b5e95 + +assume egd unless OPENSSL_NO_EGD is defined-remove configure check + +--- Modules/_ssl.c.orig 2015-12-07 01:39:10 UTC ++++ Modules/_ssl.c +@@ -3916,7 +3916,7 @@ _ssl_RAND_status_impl(PyModuleDef *modul + return PyLong_FromLong(RAND_status()); + } + +-#ifdef HAVE_RAND_EGD ++#ifndef OPENSSL_NO_EGD + /*[clinic input] + _ssl.RAND_egd + path: object(converter="PyUnicode_FSConverter") +@@ -3942,7 +3942,7 @@ _ssl_RAND_egd_impl(PyModuleDef *module, + } + return PyLong_FromLong(bytes); + } +-#endif /* HAVE_RAND_EGD */ ++#endif /* OPENSSL_NO_EGD */ + + + +--- Modules/clinic/_ssl.c.h.orig 2015-12-07 01:39:10 UTC ++++ Modules/clinic/_ssl.c.h +@@ -893,7 +893,7 @@ _ssl_RAND_status(PyModuleDef *module, PyObject *Py_UNUSED(ignored)) + return _ssl_RAND_status_impl(module); + } + +-#if defined(HAVE_RAND_EGD) ++#if !defined(OPENSSL_NO_EGD) + + PyDoc_STRVAR(_ssl_RAND_egd__doc__, + "RAND_egd($module, path, /)\n" +@@ -924,7 +924,7 @@ _ssl_RAND_egd(PyModuleDef *module, PyObject *arg) + return return_value; + } + +-#endif /* defined(HAVE_RAND_EGD) */ ++#endif /* !defined(OPENSSL_NO_EGD) */ + + PyDoc_STRVAR(_ssl_get_default_verify_paths__doc__, + "get_default_verify_paths($module, /)\n" +@@ -1102,4 +1102,4 @@ _ssl_enum_crls(PyModuleDef *module, PyObject *args, PyObject *kwargs) + #ifndef _SSL_ENUM_CRLS_METHODDEF + #define _SSL_ENUM_CRLS_METHODDEF + #endif /* !defined(_SSL_ENUM_CRLS_METHODDEF) */ +-/*[clinic end generated code: output=a14999cb565a69a2 input=a9049054013a1b77]*/ ++/*[clinic end generated code: output=abe795f14cb63b6a input=a9049054013a1b77]*/ From owner-svn-ports-all@freebsd.org Fri Jul 8 21:04:05 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 61F4BB857F6; Fri, 8 Jul 2016 21:04:05 +0000 (UTC) (envelope-from cs@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 13AD21868; Fri, 8 Jul 2016 21:04:05 +0000 (UTC) (envelope-from cs@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u68L44Cm065069; Fri, 8 Jul 2016 21:04:04 GMT (envelope-from cs@FreeBSD.org) Received: (from cs@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u68L43NY065064; Fri, 8 Jul 2016 21:04:03 GMT (envelope-from cs@FreeBSD.org) Message-Id: <201607082104.u68L43NY065064@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: cs set sender to cs@FreeBSD.org using -f From: Carlo Strub Date: Fri, 8 Jul 2016 21:04:03 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418242 - in head/devel: . go-go.uuid X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 08 Jul 2016 21:04:05 -0000 Author: cs Date: Fri Jul 8 21:04:03 2016 New Revision: 418242 URL: https://svnweb.freebsd.org/changeset/ports/418242 Log: This package provides pure Go implementation of Universally Unique Identifier (UUID). Supported both creation and parsing of UUIDs. WWW: https://github.com/satori/go.uuid Added: head/devel/go-go.uuid/ head/devel/go-go.uuid/Makefile (contents, props changed) head/devel/go-go.uuid/distinfo (contents, props changed) head/devel/go-go.uuid/pkg-descr (contents, props changed) head/devel/go-go.uuid/pkg-plist (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Fri Jul 8 20:08:47 2016 (r418241) +++ head/devel/Makefile Fri Jul 8 21:04:03 2016 (r418242) @@ -713,6 +713,7 @@ SUBDIR += go-bindata SUBDIR += go-btree SUBDIR += go-flags + SUBDIR += go-go.uuid SUBDIR += go-hashicorp-logutils SUBDIR += go-json-rest SUBDIR += go-pretty Added: head/devel/go-go.uuid/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/go-go.uuid/Makefile Fri Jul 8 21:04:03 2016 (r418242) @@ -0,0 +1,18 @@ +# $FreeBSD$ + +PORTNAME= go.uuid +PORTVERSION= 1.1.0 +CATEGORIES= devel +PKGNAMEPREFIX= go- + +MAINTAINER= cs@FreeBSD.org +COMMENT= UUID package for Go + +LICENSE= MIT + +USE_GITHUB= yes +GH_ACCOUNT= satori +GH_TAGNAME= v${PORTVERSION} +USES= go + +.include Added: head/devel/go-go.uuid/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/go-go.uuid/distinfo Fri Jul 8 21:04:03 2016 (r418242) @@ -0,0 +1,3 @@ +TIMESTAMP = 1468010659 +SHA256 (satori-go.uuid-1.1.0-v1.1.0_GH0.tar.gz) = a9509d7769794df7d26964d5dc297c8ad7349f8ff5585f294e8fddd1c6abe946 +SIZE (satori-go.uuid-1.1.0-v1.1.0_GH0.tar.gz) = 7609 Added: head/devel/go-go.uuid/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/go-go.uuid/pkg-descr Fri Jul 8 21:04:03 2016 (r418242) @@ -0,0 +1,4 @@ +This package provides pure Go implementation of Universally Unique Identifier +(UUID). Supported both creation and parsing of UUIDs. + +WWW: https://github.com/satori/go.uuid Added: head/devel/go-go.uuid/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/go-go.uuid/pkg-plist Fri Jul 8 21:04:03 2016 (r418242) @@ -0,0 +1,6 @@ +%%GO_LIBDIR%%/%%GO_PKGNAME%%.a +%%GO_SRCDIR%%/%%GO_PKGNAME%%/LICENSE +%%GO_SRCDIR%%/%%GO_PKGNAME%%/README.md +%%GO_SRCDIR%%/%%GO_PKGNAME%%/benchmarks_test.go +%%GO_SRCDIR%%/%%GO_PKGNAME%%/uuid.go +%%GO_SRCDIR%%/%%GO_PKGNAME%%/uuid_test.go From owner-svn-ports-all@freebsd.org Fri Jul 8 21:12:45 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id EF9CFB85ACF; Fri, 8 Jul 2016 21:12:45 +0000 (UTC) (envelope-from cs@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id BF9701CC1; Fri, 8 Jul 2016 21:12:45 +0000 (UTC) (envelope-from cs@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u68LCi3B068901; Fri, 8 Jul 2016 21:12:44 GMT (envelope-from cs@FreeBSD.org) Received: (from cs@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u68LCifH068900; Fri, 8 Jul 2016 21:12:44 GMT (envelope-from cs@FreeBSD.org) Message-Id: <201607082112.u68LCifH068900@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: cs set sender to cs@FreeBSD.org using -f From: Carlo Strub Date: Fri, 8 Jul 2016 21:12:44 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418243 - head/devel/go-go.uuid X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 08 Jul 2016 21:12:46 -0000 Author: cs Date: Fri Jul 8 21:12:44 2016 New Revision: 418243 URL: https://svnweb.freebsd.org/changeset/ports/418243 Log: Reset install location properly Modified: head/devel/go-go.uuid/Makefile Modified: head/devel/go-go.uuid/Makefile ============================================================================== --- head/devel/go-go.uuid/Makefile Fri Jul 8 21:04:03 2016 (r418242) +++ head/devel/go-go.uuid/Makefile Fri Jul 8 21:12:44 2016 (r418243) @@ -2,6 +2,7 @@ PORTNAME= go.uuid PORTVERSION= 1.1.0 +PORTREVISION= 1 CATEGORIES= devel PKGNAMEPREFIX= go- @@ -14,5 +15,6 @@ USE_GITHUB= yes GH_ACCOUNT= satori GH_TAGNAME= v${PORTVERSION} USES= go +GO_PKGNAME= github.com/${GH_ACCOUNT}/${PORTNAME} .include From owner-svn-ports-all@freebsd.org Fri Jul 8 21:25:48 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 31212B831AF; Fri, 8 Jul 2016 21:25:48 +0000 (UTC) (envelope-from cs@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 0EA441DC9; Fri, 8 Jul 2016 21:25:47 +0000 (UTC) (envelope-from cs@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u68LPlHx073102; Fri, 8 Jul 2016 21:25:47 GMT (envelope-from cs@FreeBSD.org) Received: (from cs@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u68LPk5J073096; Fri, 8 Jul 2016 21:25:46 GMT (envelope-from cs@FreeBSD.org) Message-Id: <201607082125.u68LPk5J073096@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: cs set sender to cs@FreeBSD.org using -f From: Carlo Strub Date: Fri, 8 Jul 2016 21:25:46 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418244 - in head/devel: . go-metrics X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 08 Jul 2016 21:25:48 -0000 Author: cs Date: Fri Jul 8 21:25:46 2016 New Revision: 418244 URL: https://svnweb.freebsd.org/changeset/ports/418244 Log: This library provides a metrics package which can be used to instrument code, expose application metrics, and profile runtime performance in a flexible manner. WWW: https://github.com/armon/go-metrics Added: head/devel/go-metrics/ head/devel/go-metrics/Makefile (contents, props changed) head/devel/go-metrics/distinfo (contents, props changed) head/devel/go-metrics/pkg-descr (contents, props changed) head/devel/go-metrics/pkg-plist (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Fri Jul 8 21:12:44 2016 (r418243) +++ head/devel/Makefile Fri Jul 8 21:25:46 2016 (r418244) @@ -716,6 +716,7 @@ SUBDIR += go-go.uuid SUBDIR += go-hashicorp-logutils SUBDIR += go-json-rest + SUBDIR += go-metrics SUBDIR += go-pretty SUBDIR += go-raw SUBDIR += go-runewidth Added: head/devel/go-metrics/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/go-metrics/Makefile Fri Jul 8 21:25:46 2016 (r418244) @@ -0,0 +1,18 @@ +# $FreeBSD$ + +PORTNAME= go-metrics +PORTVERSION= 20160521 +CATEGORIES= devel + +MAINTAINER= cs@FreeBSD.org +COMMENT= Golang library for exporting performance and runtime metrics + +LICENSE= MIT + +USE_GITHUB= yes +GH_ACCOUNT= armon +GH_TAGNAME= fbf75676ee9c0a3a23eb0a4d9220a3612cfbd1ed +USES= go +GO_PKGNAME= github.com/${GH_ACCOUNT}/${PORTNAME} + +.include Added: head/devel/go-metrics/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/go-metrics/distinfo Fri Jul 8 21:25:46 2016 (r418244) @@ -0,0 +1,3 @@ +TIMESTAMP = 1468012940 +SHA256 (armon-go-metrics-20160521-fbf75676ee9c0a3a23eb0a4d9220a3612cfbd1ed_GH0.tar.gz) = 4caaa4252b3c173b3ff8179961f779fd98d73f28fe6c5f2dfc91fd4fe3a34dd9 +SIZE (armon-go-metrics-20160521-fbf75676ee9c0a3a23eb0a4d9220a3612cfbd1ed_GH0.tar.gz) = 13744 Added: head/devel/go-metrics/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/go-metrics/pkg-descr Fri Jul 8 21:25:46 2016 (r418244) @@ -0,0 +1,5 @@ +This library provides a metrics package which can be used to instrument code, +expose application metrics, and profile runtime performance in a flexible +manner. + +WWW: https://github.com/armon/go-metrics Added: head/devel/go-metrics/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/go-metrics/pkg-plist Fri Jul 8 21:25:46 2016 (r418244) @@ -0,0 +1,22 @@ +%%GO_LIBDIR%%/%%GO_PKGNAME%%.a +%%GO_SRCDIR%%/%%GO_PKGNAME%%/LICENSE +%%GO_SRCDIR%%/%%GO_PKGNAME%%/README.md +%%GO_SRCDIR%%/%%GO_PKGNAME%%/const_unix.go +%%GO_SRCDIR%%/%%GO_PKGNAME%%/const_windows.go +%%GO_SRCDIR%%/%%GO_PKGNAME%%/datadog/dogstatsd.go +%%GO_SRCDIR%%/%%GO_PKGNAME%%/datadog/dogstatsd_test.go +%%GO_SRCDIR%%/%%GO_PKGNAME%%/inmem.go +%%GO_SRCDIR%%/%%GO_PKGNAME%%/inmem_signal.go +%%GO_SRCDIR%%/%%GO_PKGNAME%%/inmem_signal_test.go +%%GO_SRCDIR%%/%%GO_PKGNAME%%/inmem_test.go +%%GO_SRCDIR%%/%%GO_PKGNAME%%/metrics.go +%%GO_SRCDIR%%/%%GO_PKGNAME%%/metrics_test.go +%%GO_SRCDIR%%/%%GO_PKGNAME%%/prometheus/prometheus.go +%%GO_SRCDIR%%/%%GO_PKGNAME%%/sink.go +%%GO_SRCDIR%%/%%GO_PKGNAME%%/sink_test.go +%%GO_SRCDIR%%/%%GO_PKGNAME%%/start.go +%%GO_SRCDIR%%/%%GO_PKGNAME%%/start_test.go +%%GO_SRCDIR%%/%%GO_PKGNAME%%/statsd.go +%%GO_SRCDIR%%/%%GO_PKGNAME%%/statsd_test.go +%%GO_SRCDIR%%/%%GO_PKGNAME%%/statsite.go +%%GO_SRCDIR%%/%%GO_PKGNAME%%/statsite_test.go From owner-svn-ports-all@freebsd.org Fri Jul 8 21:45:51 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 7C44CB837B4; Fri, 8 Jul 2016 21:45:51 +0000 (UTC) (envelope-from cs@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 38ED31D60; Fri, 8 Jul 2016 21:45:51 +0000 (UTC) (envelope-from cs@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u68Ljo34080568; Fri, 8 Jul 2016 21:45:50 GMT (envelope-from cs@FreeBSD.org) Received: (from cs@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u68LjoXT080563; Fri, 8 Jul 2016 21:45:50 GMT (envelope-from cs@FreeBSD.org) Message-Id: <201607082145.u68LjoXT080563@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: cs set sender to cs@FreeBSD.org using -f From: Carlo Strub Date: Fri, 8 Jul 2016 21:45:50 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418245 - in head/net: . go-httppath X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 08 Jul 2016 21:45:51 -0000 Author: cs Date: Fri Jul 8 21:45:49 2016 New Revision: 418245 URL: https://svnweb.freebsd.org/changeset/ports/418245 Log: Utilities for HTTP Path manipulation. Currently, this just contains the CleanPath function, renamed to Clean, from Julien Schmidt's httprouter. WWW: https://github.com/dimfeld/httppath Added: head/net/go-httppath/ head/net/go-httppath/Makefile (contents, props changed) head/net/go-httppath/distinfo (contents, props changed) head/net/go-httppath/pkg-descr (contents, props changed) head/net/go-httppath/pkg-plist (contents, props changed) Modified: head/net/Makefile Modified: head/net/Makefile ============================================================================== --- head/net/Makefile Fri Jul 8 21:25:46 2016 (r418244) +++ head/net/Makefile Fri Jul 8 21:45:49 2016 (r418245) @@ -169,6 +169,7 @@ SUBDIR += go-amqp SUBDIR += go-cs SUBDIR += go-geoip + SUBDIR += go-httppath SUBDIR += go.net SUBDIR += gofish SUBDIR += gogoc Added: head/net/go-httppath/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/go-httppath/Makefile Fri Jul 8 21:45:49 2016 (r418245) @@ -0,0 +1,19 @@ +# $FreeBSD$ + +PORTNAME= httppath +PORTVERSION= 20140515 +CATEGORIES= net +PKGNAMEPREFIX= go- + +MAINTAINER= cs@FreeBSD.org +COMMENT= Utilities for HTTP Path manipulation + +LICENSE= MIT + +USE_GITHUB= yes +GH_ACCOUNT= dimfeld +GH_TAGNAME= c8e499c3ef3c3e272ed8bdcc1ccf39f73c88debc +USES= go +GO_PKGNAME= github.com/${GH_ACCOUNT}/${PORTNAME} + +.include Added: head/net/go-httppath/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/go-httppath/distinfo Fri Jul 8 21:45:49 2016 (r418245) @@ -0,0 +1,3 @@ +TIMESTAMP = 1468014225 +SHA256 (dimfeld-httppath-20140515-c8e499c3ef3c3e272ed8bdcc1ccf39f73c88debc_GH0.tar.gz) = ff0e0e788a10c600ca6a327f827497ea2f72d6f70711dec44d04404e124fc4fa +SIZE (dimfeld-httppath-20140515-c8e499c3ef3c3e272ed8bdcc1ccf39f73c88debc_GH0.tar.gz) = 3128 Added: head/net/go-httppath/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/go-httppath/pkg-descr Fri Jul 8 21:45:49 2016 (r418245) @@ -0,0 +1,4 @@ +Utilities for HTTP Path manipulation. Currently, this just contains the +CleanPath function, renamed to Clean, from Julien Schmidt's httprouter. + +WWW: https://github.com/dimfeld/httppath Added: head/net/go-httppath/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/go-httppath/pkg-plist Fri Jul 8 21:45:49 2016 (r418245) @@ -0,0 +1,5 @@ +%%GO_LIBDIR%%/%%GO_PKGNAME%%.a +%%GO_SRCDIR%%/%%GO_PKGNAME%%/LICENSE +%%GO_SRCDIR%%/%%GO_PKGNAME%%/README.md +%%GO_SRCDIR%%/%%GO_PKGNAME%%/path.go +%%GO_SRCDIR%%/%%GO_PKGNAME%%/path_test.go From owner-svn-ports-all@freebsd.org Fri Jul 8 21:52:46 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id B3C68B83992; Fri, 8 Jul 2016 21:52:46 +0000 (UTC) (envelope-from cs@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 8B5EB130B; Fri, 8 Jul 2016 21:52:46 +0000 (UTC) (envelope-from cs@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u68LqjYd084563; Fri, 8 Jul 2016 21:52:45 GMT (envelope-from cs@FreeBSD.org) Received: (from cs@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u68LqjhH084558; Fri, 8 Jul 2016 21:52:45 GMT (envelope-from cs@FreeBSD.org) Message-Id: <201607082152.u68LqjhH084558@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: cs set sender to cs@FreeBSD.org using -f From: Carlo Strub Date: Fri, 8 Jul 2016 21:52:45 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418246 - in head/net: . go-httptreemux X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 08 Jul 2016 21:52:46 -0000 Author: cs Date: Fri Jul 8 21:52:45 2016 New Revision: 418246 URL: https://svnweb.freebsd.org/changeset/ports/418246 Log: This is inspired by Julien Schmidt's httprouter, in that it uses a patricia tree, but the implementation is rather different. Specifically, the routing rules are relaxed so that a single path segment may be a wildcard in one route and a static token in another. This gives a nice combination of high performance with a lot of convenience in designing the routing patterns. In benchmarks, httptreemux is close to, but slightly slower than, httprouter. WWW: https://github.com/dimfeld/httptreemux Added: head/net/go-httptreemux/ head/net/go-httptreemux/Makefile (contents, props changed) head/net/go-httptreemux/distinfo (contents, props changed) head/net/go-httptreemux/pkg-descr (contents, props changed) head/net/go-httptreemux/pkg-plist (contents, props changed) Modified: head/net/Makefile Modified: head/net/Makefile ============================================================================== --- head/net/Makefile Fri Jul 8 21:45:49 2016 (r418245) +++ head/net/Makefile Fri Jul 8 21:52:45 2016 (r418246) @@ -170,6 +170,7 @@ SUBDIR += go-cs SUBDIR += go-geoip SUBDIR += go-httppath + SUBDIR += go-httptreemux SUBDIR += go.net SUBDIR += gofish SUBDIR += gogoc Added: head/net/go-httptreemux/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/go-httptreemux/Makefile Fri Jul 8 21:52:45 2016 (r418246) @@ -0,0 +1,20 @@ +# $FreeBSD$ + +PORTNAME= httptreemux +PORTVERSION= 3.0.0 +CATEGORIES= net +PKGNAMEPREFIX= go- + +MAINTAINER= cs@FreeBSD.org +COMMENT= High-speed, flexible, tree-based HTTP router for Go + +LICENSE= MIT + +BUILD_DEPENDS= ${LOCALBASE}/${GO_LIBDIR}/github.com/dimfeld/httppath.a:net/go-httppath + +USE_GITHUB= yes +GH_ACCOUNT= dimfeld +USES= go +GO_PKGNAME= github.com/${GH_ACCOUNT}/${PORTNAME} + +.include Added: head/net/go-httptreemux/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/go-httptreemux/distinfo Fri Jul 8 21:52:45 2016 (r418246) @@ -0,0 +1,3 @@ +TIMESTAMP = 1468013922 +SHA256 (dimfeld-httptreemux-3.0.0_GH0.tar.gz) = 07d9ed8749c2c048f4cffe2601d88696ca73940ffcac42170c839442af949c9f +SIZE (dimfeld-httptreemux-3.0.0_GH0.tar.gz) = 20414 Added: head/net/go-httptreemux/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/go-httptreemux/pkg-descr Fri Jul 8 21:52:45 2016 (r418246) @@ -0,0 +1,8 @@ +This is inspired by Julien Schmidt's httprouter, in that it uses a patricia +tree, but the implementation is rather different. Specifically, the routing +rules are relaxed so that a single path segment may be a wildcard in one route +and a static token in another. This gives a nice combination of high +performance with a lot of convenience in designing the routing patterns. In +benchmarks, httptreemux is close to, but slightly slower than, httprouter. + +WWW: https://github.com/dimfeld/httptreemux Added: head/net/go-httptreemux/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/go-httptreemux/pkg-plist Fri Jul 8 21:52:45 2016 (r418246) @@ -0,0 +1,11 @@ +%%GO_LIBDIR%%/%%GO_PKGNAME%%.a +%%GO_SRCDIR%%/%%GO_PKGNAME%%/LICENSE +%%GO_SRCDIR%%/%%GO_PKGNAME%%/README.md +%%GO_SRCDIR%%/%%GO_PKGNAME%%/fallthrough_test.go +%%GO_SRCDIR%%/%%GO_PKGNAME%%/group.go +%%GO_SRCDIR%%/%%GO_PKGNAME%%/group_test.go +%%GO_SRCDIR%%/%%GO_PKGNAME%%/panichandler.go +%%GO_SRCDIR%%/%%GO_PKGNAME%%/router.go +%%GO_SRCDIR%%/%%GO_PKGNAME%%/router_test.go +%%GO_SRCDIR%%/%%GO_PKGNAME%%/tree.go +%%GO_SRCDIR%%/%%GO_PKGNAME%%/tree_test.go From owner-svn-ports-all@freebsd.org Fri Jul 8 22:28:06 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 34EB3B83E3B; Fri, 8 Jul 2016 22:28:06 +0000 (UTC) (envelope-from marino@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id E0B2E11B0; Fri, 8 Jul 2016 22:28:05 +0000 (UTC) (envelope-from marino@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u68MS543096973; Fri, 8 Jul 2016 22:28:05 GMT (envelope-from marino@FreeBSD.org) Received: (from marino@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u68MS4Kf096971; Fri, 8 Jul 2016 22:28:04 GMT (envelope-from marino@FreeBSD.org) Message-Id: <201607082228.u68MS4Kf096971@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: marino set sender to marino@FreeBSD.org using -f From: John Marino Date: Fri, 8 Jul 2016 22:28:04 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418247 - in head/devel/gps: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 08 Jul 2016 22:28:06 -0000 Author: marino Date: Fri Jul 8 22:28:04 2016 New Revision: 418247 URL: https://svnweb.freebsd.org/changeset/ports/418247 Log: devel/gps: Fix compiler error highlight on FreeBSD On DragonFly, GPS has been properly highlighting code errors during compilation, but on FreeBSD nothing happens. Luckily Rod Kay has been persistent in diagnosing the cause and he finally isolated it to a too-short timeout interval for Expect calls. The timeout period was set to 1 millisecond, the absolute shortest interval possible. While Linux and DF could complete the function call during this time, FreeBSD requires at least 10 milliseconds to do the same. I'm setting the timeout to 100 milliseconds to ensure this functionality works on FreeBSD. Rod and I can't immediately see any negative impact to extending the timeout and we're casually pinging Adacore to understand the orignal 1-ms value. PR: 202317 Added: head/devel/gps/files/patch-kernel_src_gps-kernel-timeout.adb (contents, props changed) Modified: head/devel/gps/Makefile Modified: head/devel/gps/Makefile ============================================================================== --- head/devel/gps/Makefile Fri Jul 8 21:52:45 2016 (r418246) +++ head/devel/gps/Makefile Fri Jul 8 22:28:04 2016 (r418247) @@ -3,6 +3,7 @@ PORTNAME= gps PORTVERSION= 2016 +PORTREVISION= 1 CATEGORIES= devel MASTER_SITES= http://downloads.dragonlace.net/src/ DISTNAME= gps-gpl-${PORTVERSION}-src Added: head/devel/gps/files/patch-kernel_src_gps-kernel-timeout.adb ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/gps/files/patch-kernel_src_gps-kernel-timeout.adb Fri Jul 8 22:28:04 2016 (r418247) @@ -0,0 +1,11 @@ +--- kernel/src/gps-kernel-timeout.adb.orig 2016-05-16 09:45:57 UTC ++++ kernel/src/gps-kernel-timeout.adb +@@ -388,7 +388,7 @@ package body GPS.Kernel.Timeout is + Fd := Data.D.Descriptor; + if Fd /= null then + loop +- Expect (Fd.all, Result, Data.Expect_Regexp.all, Timeout => 1); ++ Expect (Fd.all, Result, Data.Expect_Regexp.all, Timeout => 100); + + if Result /= Expect_Timeout then + -- Received something. Cancel timeout From owner-svn-ports-all@freebsd.org Fri Jul 8 23:40:25 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id B341EB8529E; Fri, 8 Jul 2016 23:40: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 mx1.freebsd.org (Postfix) with ESMTPS id 76B801E03; Fri, 8 Jul 2016 23:40:25 +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 u68NeOif023352; Fri, 8 Jul 2016 23:40:24 GMT (envelope-from tota@FreeBSD.org) Received: (from tota@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u68NeOdt023347; Fri, 8 Jul 2016 23:40:24 GMT (envelope-from tota@FreeBSD.org) Message-Id: <201607082340.u68NeOdt023347@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tota set sender to tota@FreeBSD.org using -f From: TAKATSU Tomonari Date: Fri, 8 Jul 2016 23:40:24 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418248 - in head/www: . rubygem-link_header X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 08 Jul 2016 23:40:25 -0000 Author: tota Date: Fri Jul 8 23:40:24 2016 New Revision: 418248 URL: https://svnweb.freebsd.org/changeset/ports/418248 Log: - Add new port: www/rubygem-link_header Parse and format HTTP link headers as described in the draft spec http://tools.ietf.org/id/draft-nottingham-http-link-header-06.txt, also the equivalent HTML link elements. Converts conforming link headers to and from text, LinkHeader objects and corresponding (JSON-friendly) Array representations, also HTML link elements. WWW: http://rubygems.org/gems/link_header Added: head/www/rubygem-link_header/ head/www/rubygem-link_header/Makefile (contents, props changed) head/www/rubygem-link_header/distinfo (contents, props changed) head/www/rubygem-link_header/pkg-descr (contents, props changed) Modified: head/www/Makefile (contents, props changed) Modified: head/www/Makefile ============================================================================== --- head/www/Makefile Fri Jul 8 22:28:04 2016 (r418247) +++ head/www/Makefile Fri Jul 8 23:40:24 2016 (r418248) @@ -1937,6 +1937,7 @@ SUBDIR += rubygem-layout_yullio_generator SUBDIR += rubygem-less SUBDIR += rubygem-lighthouse-api + SUBDIR += rubygem-link_header SUBDIR += rubygem-maruku SUBDIR += rubygem-mechanize SUBDIR += rubygem-mechanize26 Added: head/www/rubygem-link_header/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/rubygem-link_header/Makefile Fri Jul 8 23:40:24 2016 (r418248) @@ -0,0 +1,18 @@ +# Created by: TAKATSU Tomonari +# $FreeBSD$ + +PORTNAME= link_header +PORTVERSION= 0.0.8 +CATEGORIES= www rubygems +MASTER_SITES= RG + +MAINTAINER= ruby@FreeBSD.org +COMMENT= Parse and format HTTP link headers + +LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE + +USE_RUBY= yes +USES= gem + +.include Added: head/www/rubygem-link_header/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/rubygem-link_header/distinfo Fri Jul 8 23:40:24 2016 (r418248) @@ -0,0 +1,3 @@ +TIMESTAMP = 1468002688 +SHA256 (rubygem/link_header-0.0.8.gem) = 15c65ce43b29f739b30d05e5f25c22c23797e89cf6f905dbb595fb4c70cb55f9 +SIZE (rubygem/link_header-0.0.8.gem) = 9216 Added: head/www/rubygem-link_header/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/rubygem-link_header/pkg-descr Fri Jul 8 23:40:24 2016 (r418248) @@ -0,0 +1,9 @@ +Parse and format HTTP link headers as described in the draft spec +http://tools.ietf.org/id/draft-nottingham-http-link-header-06.txt, also +the equivalent HTML link elements. + +Converts conforming link headers to and from text, LinkHeader objects +and corresponding (JSON-friendly) Array representations, also HTML +link elements. + +WWW: http://rubygems.org/gems/link_header From owner-svn-ports-all@freebsd.org Fri Jul 8 23:40:30 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id AFEECB852FC; Fri, 8 Jul 2016 23:40:30 +0000 (UTC) (envelope-from woodsb02@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 28DD11E7C; Fri, 8 Jul 2016 23:40:30 +0000 (UTC) (envelope-from woodsb02@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u68NeTv3023530; Fri, 8 Jul 2016 23:40:29 GMT (envelope-from woodsb02@FreeBSD.org) Received: (from woodsb02@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u68NeTQw023527; Fri, 8 Jul 2016 23:40:29 GMT (envelope-from woodsb02@FreeBSD.org) Message-Id: <201607082340.u68NeTQw023527@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: woodsb02 set sender to woodsb02@FreeBSD.org using -f From: Ben Woods Date: Fri, 8 Jul 2016 23:40:29 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418249 - head/multimedia/emby-server X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 08 Jul 2016 23:40:30 -0000 Author: woodsb02 Date: Fri Jul 8 23:40:28 2016 New Revision: 418249 URL: https://svnweb.freebsd.org/changeset/ports/418249 Log: multimedia/emby-server: Update to 3.0.5985 Changes this release: https://github.com/MediaBrowser/Emby/releases/tag/3.0.5985 https://github.com/MediaBrowser/Emby/releases/tag/3.0.5984 Approved by: adamw (mentor) Differential Revision: https://reviews.freebsd.org/D7163 Modified: head/multimedia/emby-server/Makefile head/multimedia/emby-server/distinfo head/multimedia/emby-server/pkg-plist Modified: head/multimedia/emby-server/Makefile ============================================================================== --- head/multimedia/emby-server/Makefile Fri Jul 8 23:40:24 2016 (r418248) +++ head/multimedia/emby-server/Makefile Fri Jul 8 23:40:28 2016 (r418249) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= emby-server -PORTVERSION= 3.0.5972 +PORTVERSION= 3.0.5985 CATEGORIES= multimedia MAINTAINER= woodsb02@FreeBSD.org Modified: head/multimedia/emby-server/distinfo ============================================================================== --- head/multimedia/emby-server/distinfo Fri Jul 8 23:40:24 2016 (r418248) +++ head/multimedia/emby-server/distinfo Fri Jul 8 23:40:28 2016 (r418249) @@ -1,3 +1,3 @@ -TIMESTAMP = 1464273299 -SHA256 (MediaBrowser-Emby-3.0.5972_GH0.tar.gz) = 3d4e6519cf6844ea76d0c23f032f463829b4cf06e33e22ae9d2cf184513db537 -SIZE (MediaBrowser-Emby-3.0.5972_GH0.tar.gz) = 55691929 +TIMESTAMP = 1468021864 +SHA256 (MediaBrowser-Emby-3.0.5985_GH0.tar.gz) = 8bc025dfa35aa9ee23dd9682f19b6a248233afad0aebe55a379c1b7753c6e89a +SIZE (MediaBrowser-Emby-3.0.5985_GH0.tar.gz) = 56062245 Modified: head/multimedia/emby-server/pkg-plist ============================================================================== --- head/multimedia/emby-server/pkg-plist Fri Jul 8 23:40:24 2016 (r418248) +++ head/multimedia/emby-server/pkg-plist Fri Jul 8 23:40:28 2016 (r418249) @@ -3,6 +3,7 @@ lib/emby-server/CommonIO.dll lib/emby-server/DvdLib.dll lib/emby-server/Emby.Drawing.dll lib/emby-server/Emby.Drawing.dll.mdb +lib/emby-server/Emby.XmlTv.dll lib/emby-server/INIFileParser.dll lib/emby-server/ImageMagickSharp.dll lib/emby-server/ImageMagickSharp.dll.config @@ -52,6 +53,7 @@ lib/emby-server/dashboard-ui/autoorganiz lib/emby-server/dashboard-ui/autoorganizetv.html lib/emby-server/dashboard-ui/bower_components/Sortable/.bower.json lib/emby-server/dashboard-ui/bower_components/Sortable/.editorconfig +lib/emby-server/dashboard-ui/bower_components/Sortable/.gitignore lib/emby-server/dashboard-ui/bower_components/Sortable/.jshintrc lib/emby-server/dashboard-ui/bower_components/Sortable/CONTRIBUTING.md lib/emby-server/dashboard-ui/bower_components/Sortable/Gruntfile.js @@ -67,6 +69,7 @@ lib/emby-server/dashboard-ui/bower_compo lib/emby-server/dashboard-ui/bower_components/Sortable/meteor/.versions lib/emby-server/dashboard-ui/bower_components/Sortable/meteor/README.md lib/emby-server/dashboard-ui/bower_components/Sortable/meteor/example/.meteor/.finished-upgraders +lib/emby-server/dashboard-ui/bower_components/Sortable/meteor/example/.meteor/.gitignore lib/emby-server/dashboard-ui/bower_components/Sortable/meteor/example/.meteor/.id lib/emby-server/dashboard-ui/bower_components/Sortable/meteor/example/.meteor/packages lib/emby-server/dashboard-ui/bower_components/Sortable/meteor/example/.meteor/platforms @@ -163,6 +166,8 @@ lib/emby-server/dashboard-ui/bower_compo lib/emby-server/dashboard-ui/bower_components/Swiper/src/less/scrollbar.less lib/emby-server/dashboard-ui/bower_components/Swiper/src/less/swiper.less lib/emby-server/dashboard-ui/bower_components/cryptojslib/.bower.json +lib/emby-server/dashboard-ui/bower_components/cryptojslib/.gitattributes +lib/emby-server/dashboard-ui/bower_components/cryptojslib/.gitignore lib/emby-server/dashboard-ui/bower_components/cryptojslib/README.md lib/emby-server/dashboard-ui/bower_components/cryptojslib/bower.json lib/emby-server/dashboard-ui/bower_components/cryptojslib/components/aes-min.js @@ -284,6 +289,8 @@ lib/emby-server/dashboard-ui/bower_compo lib/emby-server/dashboard-ui/bower_components/emby-webcomponents/actionsheet/actionsheet.js lib/emby-server/dashboard-ui/bower_components/emby-webcomponents/alert/alert.js lib/emby-server/dashboard-ui/bower_components/emby-webcomponents/alert/nativealert.js +lib/emby-server/dashboard-ui/bower_components/emby-webcomponents/alphapicker/alphapicker.js +lib/emby-server/dashboard-ui/bower_components/emby-webcomponents/alphapicker/style.css lib/emby-server/dashboard-ui/bower_components/emby-webcomponents/appsettings.js lib/emby-server/dashboard-ui/bower_components/emby-webcomponents/backdrop/backdrop.js lib/emby-server/dashboard-ui/bower_components/emby-webcomponents/backdrop/style.css @@ -291,11 +298,27 @@ lib/emby-server/dashboard-ui/bower_compo lib/emby-server/dashboard-ui/bower_components/emby-webcomponents/browser.js lib/emby-server/dashboard-ui/bower_components/emby-webcomponents/browserdeviceprofile.js lib/emby-server/dashboard-ui/bower_components/emby-webcomponents/clearbutton.css +lib/emby-server/dashboard-ui/bower_components/emby-webcomponents/collectioneditor/collectioneditor.js lib/emby-server/dashboard-ui/bower_components/emby-webcomponents/confirm/confirm.js lib/emby-server/dashboard-ui/bower_components/emby-webcomponents/confirm/nativeconfirm.js lib/emby-server/dashboard-ui/bower_components/emby-webcomponents/datetime.js lib/emby-server/dashboard-ui/bower_components/emby-webcomponents/dialoghelper/dialoghelper.css lib/emby-server/dashboard-ui/bower_components/emby-webcomponents/dialoghelper/dialoghelper.js +lib/emby-server/dashboard-ui/bower_components/emby-webcomponents/emby-button/emby-button.css +lib/emby-server/dashboard-ui/bower_components/emby-webcomponents/emby-button/emby-button.js +lib/emby-server/dashboard-ui/bower_components/emby-webcomponents/emby-button/paper-icon-button-light.js +lib/emby-server/dashboard-ui/bower_components/emby-webcomponents/emby-checkbox/emby-checkbox.css +lib/emby-server/dashboard-ui/bower_components/emby-webcomponents/emby-checkbox/emby-checkbox.js +lib/emby-server/dashboard-ui/bower_components/emby-webcomponents/emby-collapse/emby-collapse.css +lib/emby-server/dashboard-ui/bower_components/emby-webcomponents/emby-collapse/emby-collapse.js +lib/emby-server/dashboard-ui/bower_components/emby-webcomponents/emby-input/emby-input.css +lib/emby-server/dashboard-ui/bower_components/emby-webcomponents/emby-input/emby-input.js +lib/emby-server/dashboard-ui/bower_components/emby-webcomponents/emby-select/emby-select.css +lib/emby-server/dashboard-ui/bower_components/emby-webcomponents/emby-select/emby-select.js +lib/emby-server/dashboard-ui/bower_components/emby-webcomponents/emby-slider/emby-slider.css +lib/emby-server/dashboard-ui/bower_components/emby-webcomponents/emby-slider/emby-slider.js +lib/emby-server/dashboard-ui/bower_components/emby-webcomponents/emby-textarea/emby-textarea.css +lib/emby-server/dashboard-ui/bower_components/emby-webcomponents/emby-textarea/emby-textarea.js lib/emby-server/dashboard-ui/bower_components/emby-webcomponents/fetchhelper.js lib/emby-server/dashboard-ui/bower_components/emby-webcomponents/filedownloader.js lib/emby-server/dashboard-ui/bower_components/emby-webcomponents/focusmanager.js @@ -367,15 +390,18 @@ lib/emby-server/dashboard-ui/bower_compo lib/emby-server/dashboard-ui/bower_components/emby-webcomponents/guide/guide.css lib/emby-server/dashboard-ui/bower_components/emby-webcomponents/guide/guide.js lib/emby-server/dashboard-ui/bower_components/emby-webcomponents/guide/tvguide.template.html -lib/emby-server/dashboard-ui/bower_components/emby-webcomponents/icons/mediainfo.html -lib/emby-server/dashboard-ui/bower_components/emby-webcomponents/icons/nav.html lib/emby-server/dashboard-ui/bower_components/emby-webcomponents/images/basicimagefetcher.js lib/emby-server/dashboard-ui/bower_components/emby-webcomponents/images/imagehelper.js lib/emby-server/dashboard-ui/bower_components/emby-webcomponents/images/persistentimagefetcher.js +lib/emby-server/dashboard-ui/bower_components/emby-webcomponents/indicators/indicators.css +lib/emby-server/dashboard-ui/bower_components/emby-webcomponents/indicators/indicators.js lib/emby-server/dashboard-ui/bower_components/emby-webcomponents/input/api.js lib/emby-server/dashboard-ui/bower_components/emby-webcomponents/itemcontextmenu.js lib/emby-server/dashboard-ui/bower_components/emby-webcomponents/itemhelper.js lib/emby-server/dashboard-ui/bower_components/emby-webcomponents/layoutmanager.js +lib/emby-server/dashboard-ui/bower_components/emby-webcomponents/listview/listview.css +lib/emby-server/dashboard-ui/bower_components/emby-webcomponents/listview/listview.js +lib/emby-server/dashboard-ui/bower_components/emby-webcomponents/loading/loading-lite.css lib/emby-server/dashboard-ui/bower_components/emby-webcomponents/loading/loading-lite.js lib/emby-server/dashboard-ui/bower_components/emby-webcomponents/loading/loading-smarttv.js lib/emby-server/dashboard-ui/bower_components/emby-webcomponents/loading/loading.css @@ -387,6 +413,7 @@ lib/emby-server/dashboard-ui/bower_compo lib/emby-server/dashboard-ui/bower_components/emby-webcomponents/multidownload.js lib/emby-server/dashboard-ui/bower_components/emby-webcomponents/objectassign.js lib/emby-server/dashboard-ui/bower_components/emby-webcomponents/page.js/page.js +lib/emby-server/dashboard-ui/bower_components/emby-webcomponents/playlisteditor/playlisteditor.js lib/emby-server/dashboard-ui/bower_components/emby-webcomponents/prompt/nativeprompt.js lib/emby-server/dashboard-ui/bower_components/emby-webcomponents/prompt/prompt.js lib/emby-server/dashboard-ui/bower_components/emby-webcomponents/prompt/style.css @@ -396,6 +423,7 @@ lib/emby-server/dashboard-ui/bower_compo lib/emby-server/dashboard-ui/bower_components/emby-webcomponents/recordingcreator/recordingcreator.template.html lib/emby-server/dashboard-ui/bower_components/emby-webcomponents/recordingcreator/recordingeditor.js lib/emby-server/dashboard-ui/bower_components/emby-webcomponents/recordingcreator/recordingeditor.template.html +lib/emby-server/dashboard-ui/bower_components/emby-webcomponents/refreshdialog/refreshdialog.js lib/emby-server/dashboard-ui/bower_components/emby-webcomponents/require/requirecss.js lib/emby-server/dashboard-ui/bower_components/emby-webcomponents/require/requirehtml.js lib/emby-server/dashboard-ui/bower_components/emby-webcomponents/require/requiretext.js @@ -416,18 +444,25 @@ lib/emby-server/dashboard-ui/bower_compo lib/emby-server/dashboard-ui/bower_components/emby-webcomponents/sharing/social-share-kit-1.0.4/dist/js/social-share-kit.min.js lib/emby-server/dashboard-ui/bower_components/emby-webcomponents/shell.js lib/emby-server/dashboard-ui/bower_components/emby-webcomponents/shortcuts.js -lib/emby-server/dashboard-ui/bower_components/emby-webcomponents/slideshow/icons.html lib/emby-server/dashboard-ui/bower_components/emby-webcomponents/slideshow/slideshow.js lib/emby-server/dashboard-ui/bower_components/emby-webcomponents/slideshow/style.css lib/emby-server/dashboard-ui/bower_components/emby-webcomponents/strings/da.json +lib/emby-server/dashboard-ui/bower_components/emby-webcomponents/strings/de.json lib/emby-server/dashboard-ui/bower_components/emby-webcomponents/strings/en-US.json lib/emby-server/dashboard-ui/bower_components/emby-webcomponents/strings/es-MX.json lib/emby-server/dashboard-ui/bower_components/emby-webcomponents/strings/kk.json lib/emby-server/dashboard-ui/bower_components/emby-webcomponents/strings/nb.json lib/emby-server/dashboard-ui/bower_components/emby-webcomponents/strings/nl.json +lib/emby-server/dashboard-ui/bower_components/emby-webcomponents/strings/pt-BR.json +lib/emby-server/dashboard-ui/bower_components/emby-webcomponents/strings/pt-PT.json lib/emby-server/dashboard-ui/bower_components/emby-webcomponents/strings/ru.json +lib/emby-server/dashboard-ui/bower_components/emby-webcomponents/subtitleeditor/subtitleeditor.css +lib/emby-server/dashboard-ui/bower_components/emby-webcomponents/subtitleeditor/subtitleeditor.js +lib/emby-server/dashboard-ui/bower_components/emby-webcomponents/subtitleeditor/subtitleeditor.template.html +lib/emby-server/dashboard-ui/bower_components/emby-webcomponents/toast/toast.css lib/emby-server/dashboard-ui/bower_components/emby-webcomponents/toast/toast.js lib/emby-server/dashboard-ui/bower_components/emby-webcomponents/usersettings.js +lib/emby-server/dashboard-ui/bower_components/emby-webcomponents/viewmanager/viewcontainer-lite.css lib/emby-server/dashboard-ui/bower_components/emby-webcomponents/viewmanager/viewcontainer-lite.js lib/emby-server/dashboard-ui/bower_components/emby-webcomponents/viewmanager/viewmanager.js lib/emby-server/dashboard-ui/bower_components/emby-webcomponents/visibleinviewport.js @@ -507,6 +542,7 @@ lib/emby-server/dashboard-ui/bower_compo lib/emby-server/dashboard-ui/bower_components/hls.js/src/controller/abr-controller.js lib/emby-server/dashboard-ui/bower_components/hls.js/src/controller/buffer-controller.js lib/emby-server/dashboard-ui/bower_components/hls.js/src/controller/cap-level-controller.js +lib/emby-server/dashboard-ui/bower_components/hls.js/src/controller/ewma-bandwidth-estimator.js lib/emby-server/dashboard-ui/bower_components/hls.js/src/controller/fps-controller.js lib/emby-server/dashboard-ui/bower_components/hls.js/src/controller/level-controller.js lib/emby-server/dashboard-ui/bower_components/hls.js/src/controller/stream-controller.js @@ -539,6 +575,7 @@ lib/emby-server/dashboard-ui/bower_compo lib/emby-server/dashboard-ui/bower_components/hls.js/src/utils/attr-list.js lib/emby-server/dashboard-ui/bower_components/hls.js/src/utils/binary-search.js lib/emby-server/dashboard-ui/bower_components/hls.js/src/utils/cea-708-interpreter.js +lib/emby-server/dashboard-ui/bower_components/hls.js/src/utils/ewma.js lib/emby-server/dashboard-ui/bower_components/hls.js/src/utils/hex.js lib/emby-server/dashboard-ui/bower_components/hls.js/src/utils/logger.js lib/emby-server/dashboard-ui/bower_components/hls.js/src/utils/url.js @@ -552,6 +589,7 @@ lib/emby-server/dashboard-ui/bower_compo lib/emby-server/dashboard-ui/bower_components/howler.js/howler.min.js lib/emby-server/dashboard-ui/bower_components/howler.js/package.json lib/emby-server/dashboard-ui/bower_components/iron-a11y-announcer/.bower.json +lib/emby-server/dashboard-ui/bower_components/iron-a11y-announcer/.gitignore lib/emby-server/dashboard-ui/bower_components/iron-a11y-announcer/.travis.yml lib/emby-server/dashboard-ui/bower_components/iron-a11y-announcer/CONTRIBUTING.md lib/emby-server/dashboard-ui/bower_components/iron-a11y-announcer/README.md @@ -564,6 +602,7 @@ lib/emby-server/dashboard-ui/bower_compo lib/emby-server/dashboard-ui/bower_components/iron-a11y-announcer/test/iron-a11y-announcer.html lib/emby-server/dashboard-ui/bower_components/iron-a11y-keys-behavior/.bower.json lib/emby-server/dashboard-ui/bower_components/iron-a11y-keys-behavior/.github/ISSUE_TEMPLATE.md +lib/emby-server/dashboard-ui/bower_components/iron-a11y-keys-behavior/.gitignore lib/emby-server/dashboard-ui/bower_components/iron-a11y-keys-behavior/.travis.yml lib/emby-server/dashboard-ui/bower_components/iron-a11y-keys-behavior/CONTRIBUTING.md lib/emby-server/dashboard-ui/bower_components/iron-a11y-keys-behavior/README.md @@ -575,6 +614,7 @@ lib/emby-server/dashboard-ui/bower_compo lib/emby-server/dashboard-ui/bower_components/iron-a11y-keys-behavior/test/basic-test.html lib/emby-server/dashboard-ui/bower_components/iron-a11y-keys-behavior/test/index.html lib/emby-server/dashboard-ui/bower_components/iron-autogrow-textarea/.bower.json +lib/emby-server/dashboard-ui/bower_components/iron-autogrow-textarea/.gitignore lib/emby-server/dashboard-ui/bower_components/iron-autogrow-textarea/.travis.yml lib/emby-server/dashboard-ui/bower_components/iron-autogrow-textarea/CONTRIBUTING.md lib/emby-server/dashboard-ui/bower_components/iron-autogrow-textarea/README.md @@ -587,6 +627,7 @@ lib/emby-server/dashboard-ui/bower_compo lib/emby-server/dashboard-ui/bower_components/iron-autogrow-textarea/test/index.html lib/emby-server/dashboard-ui/bower_components/iron-behaviors/.bower.json lib/emby-server/dashboard-ui/bower_components/iron-behaviors/.github/ISSUE_TEMPLATE.md +lib/emby-server/dashboard-ui/bower_components/iron-behaviors/.gitignore lib/emby-server/dashboard-ui/bower_components/iron-behaviors/.travis.yml lib/emby-server/dashboard-ui/bower_components/iron-behaviors/CONTRIBUTING.md lib/emby-server/dashboard-ui/bower_components/iron-behaviors/README.md @@ -602,6 +643,7 @@ lib/emby-server/dashboard-ui/bower_compo lib/emby-server/dashboard-ui/bower_components/iron-behaviors/test/index.html lib/emby-server/dashboard-ui/bower_components/iron-behaviors/test/test-elements.html lib/emby-server/dashboard-ui/bower_components/iron-checked-element-behavior/.bower.json +lib/emby-server/dashboard-ui/bower_components/iron-checked-element-behavior/.gitignore lib/emby-server/dashboard-ui/bower_components/iron-checked-element-behavior/.travis.yml lib/emby-server/dashboard-ui/bower_components/iron-checked-element-behavior/CONTRIBUTING.md lib/emby-server/dashboard-ui/bower_components/iron-checked-element-behavior/README.md @@ -613,6 +655,7 @@ lib/emby-server/dashboard-ui/bower_compo lib/emby-server/dashboard-ui/bower_components/iron-checked-element-behavior/test/basic.html lib/emby-server/dashboard-ui/bower_components/iron-checked-element-behavior/test/index.html lib/emby-server/dashboard-ui/bower_components/iron-checked-element-behavior/test/simple-checkbox.html +lib/emby-server/dashboard-ui/bower_components/iron-collapse/.gitignore lib/emby-server/dashboard-ui/bower_components/iron-collapse/README.md lib/emby-server/dashboard-ui/bower_components/iron-collapse/bower.json lib/emby-server/dashboard-ui/bower_components/iron-collapse/demo/index.html @@ -624,6 +667,7 @@ lib/emby-server/dashboard-ui/bower_compo lib/emby-server/dashboard-ui/bower_components/iron-collapse/test/index.html lib/emby-server/dashboard-ui/bower_components/iron-demo-helpers/.bower.json lib/emby-server/dashboard-ui/bower_components/iron-demo-helpers/.github/ISSUE_TEMPLATE.md +lib/emby-server/dashboard-ui/bower_components/iron-demo-helpers/.gitignore lib/emby-server/dashboard-ui/bower_components/iron-demo-helpers/.travis.yml lib/emby-server/dashboard-ui/bower_components/iron-demo-helpers/CONTRIBUTING.md lib/emby-server/dashboard-ui/bower_components/iron-demo-helpers/README.md @@ -637,6 +681,7 @@ lib/emby-server/dashboard-ui/bower_compo lib/emby-server/dashboard-ui/bower_components/iron-demo-helpers/test/index.html lib/emby-server/dashboard-ui/bower_components/iron-demo-helpers/url-bar.html lib/emby-server/dashboard-ui/bower_components/iron-flex-layout/.bower.json +lib/emby-server/dashboard-ui/bower_components/iron-flex-layout/.gitignore lib/emby-server/dashboard-ui/bower_components/iron-flex-layout/.travis.yml lib/emby-server/dashboard-ui/bower_components/iron-flex-layout/CONTRIBUTING.md lib/emby-server/dashboard-ui/bower_components/iron-flex-layout/README.md @@ -651,6 +696,7 @@ lib/emby-server/dashboard-ui/bower_compo lib/emby-server/dashboard-ui/bower_components/iron-flex-layout/test/iron-flex-layout-classes.html lib/emby-server/dashboard-ui/bower_components/iron-flex-layout/test/iron-flex-layout.html lib/emby-server/dashboard-ui/bower_components/iron-form-element-behavior/.bower.json +lib/emby-server/dashboard-ui/bower_components/iron-form-element-behavior/.gitignore lib/emby-server/dashboard-ui/bower_components/iron-form-element-behavior/.travis.yml lib/emby-server/dashboard-ui/bower_components/iron-form-element-behavior/CONTRIBUTING.md lib/emby-server/dashboard-ui/bower_components/iron-form-element-behavior/README.md @@ -665,6 +711,7 @@ lib/emby-server/dashboard-ui/bower_compo lib/emby-server/dashboard-ui/bower_components/iron-form-element-behavior/test/simple-element.html lib/emby-server/dashboard-ui/bower_components/iron-form-element-behavior/test/simple-form.html lib/emby-server/dashboard-ui/bower_components/iron-icon/.bower.json +lib/emby-server/dashboard-ui/bower_components/iron-icon/.gitignore lib/emby-server/dashboard-ui/bower_components/iron-icon/.travis.yml lib/emby-server/dashboard-ui/bower_components/iron-icon/CONTRIBUTING.md lib/emby-server/dashboard-ui/bower_components/iron-icon/README.md @@ -678,6 +725,7 @@ lib/emby-server/dashboard-ui/bower_compo lib/emby-server/dashboard-ui/bower_components/iron-icon/test/index.html lib/emby-server/dashboard-ui/bower_components/iron-icon/test/iron-icon.html lib/emby-server/dashboard-ui/bower_components/iron-icons/.bower.json +lib/emby-server/dashboard-ui/bower_components/iron-icons/.gitignore lib/emby-server/dashboard-ui/bower_components/iron-icons/.travis.yml lib/emby-server/dashboard-ui/bower_components/iron-icons/CONTRIBUTING.md lib/emby-server/dashboard-ui/bower_components/iron-icons/README.md @@ -697,6 +745,7 @@ lib/emby-server/dashboard-ui/bower_compo lib/emby-server/dashboard-ui/bower_components/iron-icons/places-icons.html lib/emby-server/dashboard-ui/bower_components/iron-icons/social-icons.html lib/emby-server/dashboard-ui/bower_components/iron-iconset-svg/.bower.json +lib/emby-server/dashboard-ui/bower_components/iron-iconset-svg/.gitignore lib/emby-server/dashboard-ui/bower_components/iron-iconset-svg/.travis.yml lib/emby-server/dashboard-ui/bower_components/iron-iconset-svg/CONTRIBUTING.md lib/emby-server/dashboard-ui/bower_components/iron-iconset-svg/README.md @@ -709,6 +758,7 @@ lib/emby-server/dashboard-ui/bower_compo lib/emby-server/dashboard-ui/bower_components/iron-iconset-svg/test/iron-iconset-svg.html lib/emby-server/dashboard-ui/bower_components/iron-input/.bower.json lib/emby-server/dashboard-ui/bower_components/iron-input/.github/ISSUE_TEMPLATE.md +lib/emby-server/dashboard-ui/bower_components/iron-input/.gitignore lib/emby-server/dashboard-ui/bower_components/iron-input/.travis.yml lib/emby-server/dashboard-ui/bower_components/iron-input/CONTRIBUTING.md lib/emby-server/dashboard-ui/bower_components/iron-input/README.md @@ -721,40 +771,9 @@ lib/emby-server/dashboard-ui/bower_compo lib/emby-server/dashboard-ui/bower_components/iron-input/test/index.html lib/emby-server/dashboard-ui/bower_components/iron-input/test/iron-input.html lib/emby-server/dashboard-ui/bower_components/iron-input/test/letters-only.html -lib/emby-server/dashboard-ui/bower_components/iron-list/.bower.json -lib/emby-server/dashboard-ui/bower_components/iron-list/.github/ISSUE_TEMPLATE.md -lib/emby-server/dashboard-ui/bower_components/iron-list/.travis.yml -lib/emby-server/dashboard-ui/bower_components/iron-list/CONTRIBUTING.md -lib/emby-server/dashboard-ui/bower_components/iron-list/README.md -lib/emby-server/dashboard-ui/bower_components/iron-list/bower.json -lib/emby-server/dashboard-ui/bower_components/iron-list/demo/basic.html -lib/emby-server/dashboard-ui/bower_components/iron-list/demo/collapse.html -lib/emby-server/dashboard-ui/bower_components/iron-list/demo/data/contacts.json -lib/emby-server/dashboard-ui/bower_components/iron-list/demo/grid.html -lib/emby-server/dashboard-ui/bower_components/iron-list/demo/index.html -lib/emby-server/dashboard-ui/bower_components/iron-list/demo/scroll-threshold.html -lib/emby-server/dashboard-ui/bower_components/iron-list/demo/selection.html -lib/emby-server/dashboard-ui/bower_components/iron-list/index.html -lib/emby-server/dashboard-ui/bower_components/iron-list/iron-list.html -lib/emby-server/dashboard-ui/bower_components/iron-list/test/basic.html -lib/emby-server/dashboard-ui/bower_components/iron-list/test/different-heights.html -lib/emby-server/dashboard-ui/bower_components/iron-list/test/dynamic-item-size.html -lib/emby-server/dashboard-ui/bower_components/iron-list/test/focus.html -lib/emby-server/dashboard-ui/bower_components/iron-list/test/grid.html -lib/emby-server/dashboard-ui/bower_components/iron-list/test/helpers.html -lib/emby-server/dashboard-ui/bower_components/iron-list/test/hidden-list.html -lib/emby-server/dashboard-ui/bower_components/iron-list/test/index.html -lib/emby-server/dashboard-ui/bower_components/iron-list/test/mutations.html -lib/emby-server/dashboard-ui/bower_components/iron-list/test/physical-count.html -lib/emby-server/dashboard-ui/bower_components/iron-list/test/selection.html -lib/emby-server/dashboard-ui/bower_components/iron-list/test/smoke/avg-worst-case.html -lib/emby-server/dashboard-ui/bower_components/iron-list/test/smoke/dummy-data.html -lib/emby-server/dashboard-ui/bower_components/iron-list/test/smoke/index.html -lib/emby-server/dashboard-ui/bower_components/iron-list/test/smoke/physical-count.html -lib/emby-server/dashboard-ui/bower_components/iron-list/test/x-grid.html -lib/emby-server/dashboard-ui/bower_components/iron-list/test/x-list.html lib/emby-server/dashboard-ui/bower_components/iron-location/.bower.json lib/emby-server/dashboard-ui/bower_components/iron-location/.github/ISSUE_TEMPLATE.md +lib/emby-server/dashboard-ui/bower_components/iron-location/.gitignore lib/emby-server/dashboard-ui/bower_components/iron-location/.travis.yml lib/emby-server/dashboard-ui/bower_components/iron-location/CONTRIBUTING.md lib/emby-server/dashboard-ui/bower_components/iron-location/README.md @@ -771,19 +790,9 @@ lib/emby-server/dashboard-ui/bower_compo lib/emby-server/dashboard-ui/bower_components/iron-location/test/iron-location.html lib/emby-server/dashboard-ui/bower_components/iron-location/test/iron-query-params.html lib/emby-server/dashboard-ui/bower_components/iron-location/test/redirection.html -lib/emby-server/dashboard-ui/bower_components/iron-media-query/.bower.json -lib/emby-server/dashboard-ui/bower_components/iron-media-query/.travis.yml -lib/emby-server/dashboard-ui/bower_components/iron-media-query/CONTRIBUTING.md -lib/emby-server/dashboard-ui/bower_components/iron-media-query/README.md -lib/emby-server/dashboard-ui/bower_components/iron-media-query/bower.json -lib/emby-server/dashboard-ui/bower_components/iron-media-query/demo/index.html -lib/emby-server/dashboard-ui/bower_components/iron-media-query/hero.svg -lib/emby-server/dashboard-ui/bower_components/iron-media-query/index.html -lib/emby-server/dashboard-ui/bower_components/iron-media-query/iron-media-query.html -lib/emby-server/dashboard-ui/bower_components/iron-media-query/test/basic.html -lib/emby-server/dashboard-ui/bower_components/iron-media-query/test/index.html lib/emby-server/dashboard-ui/bower_components/iron-menu-behavior/.bower.json lib/emby-server/dashboard-ui/bower_components/iron-menu-behavior/.github/ISSUE_TEMPLATE.md +lib/emby-server/dashboard-ui/bower_components/iron-menu-behavior/.gitignore lib/emby-server/dashboard-ui/bower_components/iron-menu-behavior/.travis.yml lib/emby-server/dashboard-ui/bower_components/iron-menu-behavior/CONTRIBUTING.md lib/emby-server/dashboard-ui/bower_components/iron-menu-behavior/README.md @@ -800,6 +809,7 @@ lib/emby-server/dashboard-ui/bower_compo lib/emby-server/dashboard-ui/bower_components/iron-menu-behavior/test/test-menu.html lib/emby-server/dashboard-ui/bower_components/iron-menu-behavior/test/test-menubar.html lib/emby-server/dashboard-ui/bower_components/iron-meta/.bower.json +lib/emby-server/dashboard-ui/bower_components/iron-meta/.gitignore lib/emby-server/dashboard-ui/bower_components/iron-meta/.travis.yml lib/emby-server/dashboard-ui/bower_components/iron-meta/CONTRIBUTING.md lib/emby-server/dashboard-ui/bower_components/iron-meta/README.md @@ -812,6 +822,7 @@ lib/emby-server/dashboard-ui/bower_compo lib/emby-server/dashboard-ui/bower_components/iron-meta/test/index.html lib/emby-server/dashboard-ui/bower_components/iron-meta/test/iron-meta.html lib/emby-server/dashboard-ui/bower_components/iron-pages/.bower.json +lib/emby-server/dashboard-ui/bower_components/iron-pages/.gitignore lib/emby-server/dashboard-ui/bower_components/iron-pages/.travis.yml lib/emby-server/dashboard-ui/bower_components/iron-pages/CONTRIBUTING.md lib/emby-server/dashboard-ui/bower_components/iron-pages/README.md @@ -824,6 +835,10 @@ lib/emby-server/dashboard-ui/bower_compo lib/emby-server/dashboard-ui/bower_components/iron-pages/test/basic.html lib/emby-server/dashboard-ui/bower_components/iron-pages/test/index.html lib/emby-server/dashboard-ui/bower_components/iron-range-behavior/.bower.json +lib/emby-server/dashboard-ui/bower_components/iron-range-behavior/.github/ISSUE_TEMPLATE.md +lib/emby-server/dashboard-ui/bower_components/iron-range-behavior/.gitignore +lib/emby-server/dashboard-ui/bower_components/iron-range-behavior/.travis.yml +lib/emby-server/dashboard-ui/bower_components/iron-range-behavior/CONTRIBUTING.md lib/emby-server/dashboard-ui/bower_components/iron-range-behavior/README.md lib/emby-server/dashboard-ui/bower_components/iron-range-behavior/bower.json lib/emby-server/dashboard-ui/bower_components/iron-range-behavior/demo/index.html @@ -833,6 +848,7 @@ lib/emby-server/dashboard-ui/bower_compo lib/emby-server/dashboard-ui/bower_components/iron-range-behavior/test/index.html lib/emby-server/dashboard-ui/bower_components/iron-range-behavior/test/x-progressbar.html lib/emby-server/dashboard-ui/bower_components/iron-resizable-behavior/.bower.json +lib/emby-server/dashboard-ui/bower_components/iron-resizable-behavior/.gitignore lib/emby-server/dashboard-ui/bower_components/iron-resizable-behavior/.travis.yml lib/emby-server/dashboard-ui/bower_components/iron-resizable-behavior/CONTRIBUTING.md lib/emby-server/dashboard-ui/bower_components/iron-resizable-behavior/README.md @@ -847,6 +863,7 @@ lib/emby-server/dashboard-ui/bower_compo lib/emby-server/dashboard-ui/bower_components/iron-resizable-behavior/test/test-elements.html lib/emby-server/dashboard-ui/bower_components/iron-scroll-target-behavior/.bower.json lib/emby-server/dashboard-ui/bower_components/iron-scroll-target-behavior/.github/ISSUE_TEMPLATE.md +lib/emby-server/dashboard-ui/bower_components/iron-scroll-target-behavior/.gitignore lib/emby-server/dashboard-ui/bower_components/iron-scroll-target-behavior/.travis.yml lib/emby-server/dashboard-ui/bower_components/iron-scroll-target-behavior/CONTRIBUTING.md lib/emby-server/dashboard-ui/bower_components/iron-scroll-target-behavior/README.md @@ -861,6 +878,7 @@ lib/emby-server/dashboard-ui/bower_compo lib/emby-server/dashboard-ui/bower_components/iron-scroll-target-behavior/test/x-nested-scrollable.html lib/emby-server/dashboard-ui/bower_components/iron-scroll-target-behavior/test/x-scrollable.html lib/emby-server/dashboard-ui/bower_components/iron-scroll-threshold/.bower.json +lib/emby-server/dashboard-ui/bower_components/iron-scroll-threshold/.gitignore lib/emby-server/dashboard-ui/bower_components/iron-scroll-threshold/CONTRIBUTING.md lib/emby-server/dashboard-ui/bower_components/iron-scroll-threshold/README.md lib/emby-server/dashboard-ui/bower_components/iron-scroll-threshold/bower.json @@ -874,6 +892,7 @@ lib/emby-server/dashboard-ui/bower_compo lib/emby-server/dashboard-ui/bower_components/iron-scroll-threshold/test/index.html lib/emby-server/dashboard-ui/bower_components/iron-selector/.bower.json lib/emby-server/dashboard-ui/bower_components/iron-selector/.github/ISSUE_TEMPLATE.md +lib/emby-server/dashboard-ui/bower_components/iron-selector/.gitignore lib/emby-server/dashboard-ui/bower_components/iron-selector/.travis.yml lib/emby-server/dashboard-ui/bower_components/iron-selector/CONTRIBUTING.md lib/emby-server/dashboard-ui/bower_components/iron-selector/README.md @@ -899,6 +918,7 @@ lib/emby-server/dashboard-ui/bower_compo lib/emby-server/dashboard-ui/bower_components/iron-selector/test/template-repeat.html lib/emby-server/dashboard-ui/bower_components/iron-validatable-behavior/.bower.json lib/emby-server/dashboard-ui/bower_components/iron-validatable-behavior/.github/ISSUE_TEMPLATE.md +lib/emby-server/dashboard-ui/bower_components/iron-validatable-behavior/.gitignore lib/emby-server/dashboard-ui/bower_components/iron-validatable-behavior/.travis.yml lib/emby-server/dashboard-ui/bower_components/iron-validatable-behavior/CONTRIBUTING.md lib/emby-server/dashboard-ui/bower_components/iron-validatable-behavior/README.md @@ -924,21 +944,21 @@ lib/emby-server/dashboard-ui/bower_compo lib/emby-server/dashboard-ui/bower_components/jquery/LICENSE.txt lib/emby-server/dashboard-ui/bower_components/jquery/README.md lib/emby-server/dashboard-ui/bower_components/jquery/bower.json +lib/emby-server/dashboard-ui/bower_components/jquery/dist/core.js lib/emby-server/dashboard-ui/bower_components/jquery/dist/jquery.js lib/emby-server/dashboard-ui/bower_components/jquery/dist/jquery.min.js lib/emby-server/dashboard-ui/bower_components/jquery/dist/jquery.min.map lib/emby-server/dashboard-ui/bower_components/jquery/dist/jquery.slim.js lib/emby-server/dashboard-ui/bower_components/jquery/dist/jquery.slim.min.js lib/emby-server/dashboard-ui/bower_components/jquery/dist/jquery.slim.min.map -lib/emby-server/dashboard-ui/bower_components/jquery/sizzle/LICENSE.txt -lib/emby-server/dashboard-ui/bower_components/jquery/sizzle/dist/sizzle.js -lib/emby-server/dashboard-ui/bower_components/jquery/sizzle/dist/sizzle.min.js -lib/emby-server/dashboard-ui/bower_components/jquery/sizzle/dist/sizzle.min.map +lib/emby-server/dashboard-ui/bower_components/jquery/external/sizzle/LICENSE.txt +lib/emby-server/dashboard-ui/bower_components/jquery/external/sizzle/dist/sizzle.js +lib/emby-server/dashboard-ui/bower_components/jquery/external/sizzle/dist/sizzle.min.js +lib/emby-server/dashboard-ui/bower_components/jquery/external/sizzle/dist/sizzle.min.map lib/emby-server/dashboard-ui/bower_components/jquery/src/.jshintrc lib/emby-server/dashboard-ui/bower_components/jquery/src/ajax.js lib/emby-server/dashboard-ui/bower_components/jquery/src/ajax/jsonp.js lib/emby-server/dashboard-ui/bower_components/jquery/src/ajax/load.js -lib/emby-server/dashboard-ui/bower_components/jquery/src/ajax/parseJSON.js lib/emby-server/dashboard-ui/bower_components/jquery/src/ajax/parseXML.js lib/emby-server/dashboard-ui/bower_components/jquery/src/ajax/script.js lib/emby-server/dashboard-ui/bower_components/jquery/src/ajax/xhr.js @@ -954,20 +974,18 @@ lib/emby-server/dashboard-ui/bower_compo lib/emby-server/dashboard-ui/bower_components/jquery/src/core/access.js lib/emby-server/dashboard-ui/bower_components/jquery/src/core/init.js lib/emby-server/dashboard-ui/bower_components/jquery/src/core/parseHTML.js +lib/emby-server/dashboard-ui/bower_components/jquery/src/core/ready-no-deferred.js lib/emby-server/dashboard-ui/bower_components/jquery/src/core/ready.js lib/emby-server/dashboard-ui/bower_components/jquery/src/core/support.js lib/emby-server/dashboard-ui/bower_components/jquery/src/css.js lib/emby-server/dashboard-ui/bower_components/jquery/src/css/addGetHookIf.js lib/emby-server/dashboard-ui/bower_components/jquery/src/css/adjustCSS.js lib/emby-server/dashboard-ui/bower_components/jquery/src/css/curCSS.js -lib/emby-server/dashboard-ui/bower_components/jquery/src/css/defaultDisplay.js lib/emby-server/dashboard-ui/bower_components/jquery/src/css/hiddenVisibleSelectors.js lib/emby-server/dashboard-ui/bower_components/jquery/src/css/showHide.js lib/emby-server/dashboard-ui/bower_components/jquery/src/css/support.js lib/emby-server/dashboard-ui/bower_components/jquery/src/data.js lib/emby-server/dashboard-ui/bower_components/jquery/src/data/Data.js -lib/emby-server/dashboard-ui/bower_components/jquery/src/data/accepts.js -lib/emby-server/dashboard-ui/bower_components/jquery/src/data/support.js lib/emby-server/dashboard-ui/bower_components/jquery/src/deferred.js lib/emby-server/dashboard-ui/bower_components/jquery/src/deferred/exceptionHook.js lib/emby-server/dashboard-ui/bower_components/jquery/src/deprecated.js @@ -975,7 +993,6 @@ lib/emby-server/dashboard-ui/bower_compo lib/emby-server/dashboard-ui/bower_components/jquery/src/effects.js lib/emby-server/dashboard-ui/bower_components/jquery/src/effects/Tween.js lib/emby-server/dashboard-ui/bower_components/jquery/src/effects/animatedSelector.js -lib/emby-server/dashboard-ui/bower_components/jquery/src/effects/support.js lib/emby-server/dashboard-ui/bower_components/jquery/src/event.js lib/emby-server/dashboard-ui/bower_components/jquery/src/event/ajax.js lib/emby-server/dashboard-ui/bower_components/jquery/src/event/alias.js @@ -984,25 +1001,21 @@ lib/emby-server/dashboard-ui/bower_compo lib/emby-server/dashboard-ui/bower_components/jquery/src/event/trigger.js lib/emby-server/dashboard-ui/bower_components/jquery/src/exports/amd.js lib/emby-server/dashboard-ui/bower_components/jquery/src/exports/global.js -lib/emby-server/dashboard-ui/bower_components/jquery/src/intro.js lib/emby-server/dashboard-ui/bower_components/jquery/src/jquery.js lib/emby-server/dashboard-ui/bower_components/jquery/src/manipulation.js lib/emby-server/dashboard-ui/bower_components/jquery/src/manipulation/_evalUrl.js lib/emby-server/dashboard-ui/bower_components/jquery/src/manipulation/buildFragment.js -lib/emby-server/dashboard-ui/bower_components/jquery/src/manipulation/createSafeFragment.js lib/emby-server/dashboard-ui/bower_components/jquery/src/manipulation/getAll.js lib/emby-server/dashboard-ui/bower_components/jquery/src/manipulation/setGlobalEval.js lib/emby-server/dashboard-ui/bower_components/jquery/src/manipulation/support.js lib/emby-server/dashboard-ui/bower_components/jquery/src/manipulation/wrapMap.js lib/emby-server/dashboard-ui/bower_components/jquery/src/offset.js -lib/emby-server/dashboard-ui/bower_components/jquery/src/outro.js lib/emby-server/dashboard-ui/bower_components/jquery/src/queue.js lib/emby-server/dashboard-ui/bower_components/jquery/src/queue/delay.js lib/emby-server/dashboard-ui/bower_components/jquery/src/selector-native.js lib/emby-server/dashboard-ui/bower_components/jquery/src/selector-sizzle.js lib/emby-server/dashboard-ui/bower_components/jquery/src/selector.js lib/emby-server/dashboard-ui/bower_components/jquery/src/serialize.js -lib/emby-server/dashboard-ui/bower_components/jquery/src/support.js lib/emby-server/dashboard-ui/bower_components/jquery/src/traversing.js lib/emby-server/dashboard-ui/bower_components/jquery/src/traversing/findFilter.js lib/emby-server/dashboard-ui/bower_components/jquery/src/wrap.js @@ -1063,6 +1076,7 @@ lib/emby-server/dashboard-ui/bower_compo lib/emby-server/dashboard-ui/bower_components/libjass/libjass.min.js.map lib/emby-server/dashboard-ui/bower_components/libjass/package.json lib/emby-server/dashboard-ui/bower_components/marked-element/.bower.json +lib/emby-server/dashboard-ui/bower_components/marked-element/.gitignore lib/emby-server/dashboard-ui/bower_components/marked-element/.travis.yml lib/emby-server/dashboard-ui/bower_components/marked-element/CONTRIBUTING.md lib/emby-server/dashboard-ui/bower_components/marked-element/README.md @@ -1088,225 +1102,8 @@ lib/emby-server/dashboard-ui/bower_compo lib/emby-server/dashboard-ui/bower_components/marked/man/marked.1 lib/emby-server/dashboard-ui/bower_components/marked/marked.min.js lib/emby-server/dashboard-ui/bower_components/marked/package.json -lib/emby-server/dashboard-ui/bower_components/material-design-lite/.bower.json -lib/emby-server/dashboard-ui/bower_components/material-design-lite/LICENSE -lib/emby-server/dashboard-ui/bower_components/material-design-lite/README.md -lib/emby-server/dashboard-ui/bower_components/material-design-lite/bower.json -lib/emby-server/dashboard-ui/bower_components/material-design-lite/gulpfile.babel.js -lib/emby-server/dashboard-ui/bower_components/material-design-lite/material.css -lib/emby-server/dashboard-ui/bower_components/material-design-lite/material.js -lib/emby-server/dashboard-ui/bower_components/material-design-lite/material.min.css -lib/emby-server/dashboard-ui/bower_components/material-design-lite/material.min.css.map -lib/emby-server/dashboard-ui/bower_components/material-design-lite/material.min.js -lib/emby-server/dashboard-ui/bower_components/material-design-lite/material.min.js.map -lib/emby-server/dashboard-ui/bower_components/material-design-lite/package.json -lib/emby-server/dashboard-ui/bower_components/material-design-lite/src/INTRODUCTION.md -lib/emby-server/dashboard-ui/bower_components/material-design-lite/src/_color-definitions.scss -lib/emby-server/dashboard-ui/bower_components/material-design-lite/src/_functions.scss -lib/emby-server/dashboard-ui/bower_components/material-design-lite/src/_mixins.scss -lib/emby-server/dashboard-ui/bower_components/material-design-lite/src/_variables.scss -lib/emby-server/dashboard-ui/bower_components/material-design-lite/src/animation/_animation.scss -lib/emby-server/dashboard-ui/bower_components/material-design-lite/src/animation/demo.css -lib/emby-server/dashboard-ui/bower_components/material-design-lite/src/animation/demo.html -lib/emby-server/dashboard-ui/bower_components/material-design-lite/src/animation/demo.js -lib/emby-server/dashboard-ui/bower_components/material-design-lite/src/badge/README.md -lib/emby-server/dashboard-ui/bower_components/material-design-lite/src/badge/_badge.scss -lib/emby-server/dashboard-ui/bower_components/material-design-lite/src/badge/snippets/badge-on-icon-icon-demo.html -lib/emby-server/dashboard-ui/bower_components/material-design-lite/src/badge/snippets/badge-on-icon-icon.html -lib/emby-server/dashboard-ui/bower_components/material-design-lite/src/badge/snippets/badge-on-icon-text-demo.html -lib/emby-server/dashboard-ui/bower_components/material-design-lite/src/badge/snippets/badge-on-icon-text.html -lib/emby-server/dashboard-ui/bower_components/material-design-lite/src/badge/snippets/badge-on-text-icon-demo.html -lib/emby-server/dashboard-ui/bower_components/material-design-lite/src/badge/snippets/badge-on-text-icon.html -lib/emby-server/dashboard-ui/bower_components/material-design-lite/src/badge/snippets/badge-on-text-text-demo.html -lib/emby-server/dashboard-ui/bower_components/material-design-lite/src/badge/snippets/badge-on-text-text.html -lib/emby-server/dashboard-ui/bower_components/material-design-lite/src/button/README.md -lib/emby-server/dashboard-ui/bower_components/material-design-lite/src/button/_button.scss -lib/emby-server/dashboard-ui/bower_components/material-design-lite/src/button/button.js -lib/emby-server/dashboard-ui/bower_components/material-design-lite/src/button/snippets/fab-colored-ripple.html -lib/emby-server/dashboard-ui/bower_components/material-design-lite/src/button/snippets/fab-colored.html -lib/emby-server/dashboard-ui/bower_components/material-design-lite/src/button/snippets/fab-disabled.html -lib/emby-server/dashboard-ui/bower_components/material-design-lite/src/button/snippets/fab-mini-colored.html -lib/emby-server/dashboard-ui/bower_components/material-design-lite/src/button/snippets/fab-mini.html -lib/emby-server/dashboard-ui/bower_components/material-design-lite/src/button/snippets/fab-ripple.html -lib/emby-server/dashboard-ui/bower_components/material-design-lite/src/button/snippets/fab.html -lib/emby-server/dashboard-ui/bower_components/material-design-lite/src/button/snippets/flat-accent.html -lib/emby-server/dashboard-ui/bower_components/material-design-lite/src/button/snippets/flat-disabled.html -lib/emby-server/dashboard-ui/bower_components/material-design-lite/src/button/snippets/flat-primary.html -lib/emby-server/dashboard-ui/bower_components/material-design-lite/src/button/snippets/flat-ripple.html -lib/emby-server/dashboard-ui/bower_components/material-design-lite/src/button/snippets/flat.html -lib/emby-server/dashboard-ui/bower_components/material-design-lite/src/button/snippets/icon-colored.html -lib/emby-server/dashboard-ui/bower_components/material-design-lite/src/button/snippets/icon.html -lib/emby-server/dashboard-ui/bower_components/material-design-lite/src/button/snippets/raised-accent.html -lib/emby-server/dashboard-ui/bower_components/material-design-lite/src/button/snippets/raised-colored.html -lib/emby-server/dashboard-ui/bower_components/material-design-lite/src/button/snippets/raised-disabled.html -lib/emby-server/dashboard-ui/bower_components/material-design-lite/src/button/snippets/raised-ripple-accent.html -lib/emby-server/dashboard-ui/bower_components/material-design-lite/src/button/snippets/raised-ripple.html -lib/emby-server/dashboard-ui/bower_components/material-design-lite/src/button/snippets/raised.html -lib/emby-server/dashboard-ui/bower_components/material-design-lite/src/card/README.md -lib/emby-server/dashboard-ui/bower_components/material-design-lite/src/card/_card.scss -lib/emby-server/dashboard-ui/bower_components/material-design-lite/src/card/snippets/event.html -lib/emby-server/dashboard-ui/bower_components/material-design-lite/src/card/snippets/image.html -lib/emby-server/dashboard-ui/bower_components/material-design-lite/src/card/snippets/square.html -lib/emby-server/dashboard-ui/bower_components/material-design-lite/src/card/snippets/wide.html -lib/emby-server/dashboard-ui/bower_components/material-design-lite/src/checkbox/README.md -lib/emby-server/dashboard-ui/bower_components/material-design-lite/src/checkbox/_checkbox.scss -lib/emby-server/dashboard-ui/bower_components/material-design-lite/src/checkbox/checkbox.js -lib/emby-server/dashboard-ui/bower_components/material-design-lite/src/checkbox/snippets/check-off.html -lib/emby-server/dashboard-ui/bower_components/material-design-lite/src/checkbox/snippets/check-on.html -lib/emby-server/dashboard-ui/bower_components/material-design-lite/src/data-table/README.md -lib/emby-server/dashboard-ui/bower_components/material-design-lite/src/data-table/_data-table.scss -lib/emby-server/dashboard-ui/bower_components/material-design-lite/src/data-table/data-table.js -lib/emby-server/dashboard-ui/bower_components/material-design-lite/src/data-table/snippets/data-table.html -lib/emby-server/dashboard-ui/bower_components/material-design-lite/src/demos.css -lib/emby-server/dashboard-ui/bower_components/material-design-lite/src/dialog/README.md -lib/emby-server/dashboard-ui/bower_components/material-design-lite/src/dialog/_dialog.scss -lib/emby-server/dashboard-ui/bower_components/material-design-lite/src/footer/README.md -lib/emby-server/dashboard-ui/bower_components/material-design-lite/src/footer/_mega_footer.scss -lib/emby-server/dashboard-ui/bower_components/material-design-lite/src/footer/_mini_footer.scss -lib/emby-server/dashboard-ui/bower_components/material-design-lite/src/footer/snippets/mega-footer.html -lib/emby-server/dashboard-ui/bower_components/material-design-lite/src/footer/snippets/mini-footer.html -lib/emby-server/dashboard-ui/bower_components/material-design-lite/src/grid/README.md -lib/emby-server/dashboard-ui/bower_components/material-design-lite/src/grid/_grid.scss -lib/emby-server/dashboard-ui/bower_components/material-design-lite/src/grid/snippets/codepen-grid.css -lib/emby-server/dashboard-ui/bower_components/material-design-lite/src/grid/snippets/grid-demo.html -lib/emby-server/dashboard-ui/bower_components/material-design-lite/src/grid/snippets/grid.html -lib/emby-server/dashboard-ui/bower_components/material-design-lite/src/icon-toggle/README.md -lib/emby-server/dashboard-ui/bower_components/material-design-lite/src/icon-toggle/_icon-toggle.scss -lib/emby-server/dashboard-ui/bower_components/material-design-lite/src/icon-toggle/icon-toggle.js -lib/emby-server/dashboard-ui/bower_components/material-design-lite/src/icon-toggle/snippets/icon-off.html -lib/emby-server/dashboard-ui/bower_components/material-design-lite/src/icon-toggle/snippets/icon-on.html -lib/emby-server/dashboard-ui/bower_components/material-design-lite/src/images/buffer.svg -lib/emby-server/dashboard-ui/bower_components/material-design-lite/src/images/tick-mask.svg -lib/emby-server/dashboard-ui/bower_components/material-design-lite/src/images/tick.svg -lib/emby-server/dashboard-ui/bower_components/material-design-lite/src/index.html -lib/emby-server/dashboard-ui/bower_components/material-design-lite/src/layout/README.md -lib/emby-server/dashboard-ui/bower_components/material-design-lite/src/layout/_layout.scss -lib/emby-server/dashboard-ui/bower_components/material-design-lite/src/layout/layout.js -lib/emby-server/dashboard-ui/bower_components/material-design-lite/src/layout/snippets/fixed-drawer-demo.html -lib/emby-server/dashboard-ui/bower_components/material-design-lite/src/layout/snippets/fixed-drawer.html -lib/emby-server/dashboard-ui/bower_components/material-design-lite/src/layout/snippets/fixed-header-demo.html -lib/emby-server/dashboard-ui/bower_components/material-design-lite/src/layout/snippets/fixed-header-drawer-demo.html -lib/emby-server/dashboard-ui/bower_components/material-design-lite/src/layout/snippets/fixed-header-drawer.html -lib/emby-server/dashboard-ui/bower_components/material-design-lite/src/layout/snippets/fixed-header.html -lib/emby-server/dashboard-ui/bower_components/material-design-lite/src/layout/snippets/fixed-tabs-demo.html -lib/emby-server/dashboard-ui/bower_components/material-design-lite/src/layout/snippets/fixed-tabs.html -lib/emby-server/dashboard-ui/bower_components/material-design-lite/src/layout/snippets/scrollable-tabs-demo.html -lib/emby-server/dashboard-ui/bower_components/material-design-lite/src/layout/snippets/scrollable-tabs.html -lib/emby-server/dashboard-ui/bower_components/material-design-lite/src/layout/snippets/scrolling-header-demo.html -lib/emby-server/dashboard-ui/bower_components/material-design-lite/src/layout/snippets/scrolling-header.html -lib/emby-server/dashboard-ui/bower_components/material-design-lite/src/layout/snippets/transparent-demo.html -lib/emby-server/dashboard-ui/bower_components/material-design-lite/src/layout/snippets/transparent.html -lib/emby-server/dashboard-ui/bower_components/material-design-lite/src/layout/snippets/waterfall-header-demo.html -lib/emby-server/dashboard-ui/bower_components/material-design-lite/src/layout/snippets/waterfall-header.html -lib/emby-server/dashboard-ui/bower_components/material-design-lite/src/list/README.md -lib/emby-server/dashboard-ui/bower_components/material-design-lite/src/list/_list.scss -lib/emby-server/dashboard-ui/bower_components/material-design-lite/src/list/snippets/action.html -lib/emby-server/dashboard-ui/bower_components/material-design-lite/src/list/snippets/icon.html -lib/emby-server/dashboard-ui/bower_components/material-design-lite/src/list/snippets/list-control.html -lib/emby-server/dashboard-ui/bower_components/material-design-lite/src/list/snippets/list-item.html -lib/emby-server/dashboard-ui/bower_components/material-design-lite/src/list/snippets/three-line.html -lib/emby-server/dashboard-ui/bower_components/material-design-lite/src/list/snippets/two-line.html -lib/emby-server/dashboard-ui/bower_components/material-design-lite/src/material-design-lite-grid.scss -lib/emby-server/dashboard-ui/bower_components/material-design-lite/src/material-design-lite.scss -lib/emby-server/dashboard-ui/bower_components/material-design-lite/src/mdlComponentHandler.js -lib/emby-server/dashboard-ui/bower_components/material-design-lite/src/menu/README.md -lib/emby-server/dashboard-ui/bower_components/material-design-lite/src/menu/_menu.scss -lib/emby-server/dashboard-ui/bower_components/material-design-lite/src/menu/menu.js -lib/emby-server/dashboard-ui/bower_components/material-design-lite/src/menu/snippets/codepen-lower-buttons.css -lib/emby-server/dashboard-ui/bower_components/material-design-lite/src/menu/snippets/codepen-top-buttons.css -lib/emby-server/dashboard-ui/bower_components/material-design-lite/src/menu/snippets/lower-left-demo.html -lib/emby-server/dashboard-ui/bower_components/material-design-lite/src/menu/snippets/lower-left.html -lib/emby-server/dashboard-ui/bower_components/material-design-lite/src/menu/snippets/lower-right-demo.html -lib/emby-server/dashboard-ui/bower_components/material-design-lite/src/menu/snippets/lower-right.html -lib/emby-server/dashboard-ui/bower_components/material-design-lite/src/menu/snippets/top-left-demo.html -lib/emby-server/dashboard-ui/bower_components/material-design-lite/src/menu/snippets/top-left.html -lib/emby-server/dashboard-ui/bower_components/material-design-lite/src/menu/snippets/top-right-demo.html -lib/emby-server/dashboard-ui/bower_components/material-design-lite/src/menu/snippets/top-right.html -lib/emby-server/dashboard-ui/bower_components/material-design-lite/src/palette/_palette.scss -lib/emby-server/dashboard-ui/bower_components/material-design-lite/src/palette/demo.css -lib/emby-server/dashboard-ui/bower_components/material-design-lite/src/palette/demo.html -lib/emby-server/dashboard-ui/bower_components/material-design-lite/src/progress/README.md -lib/emby-server/dashboard-ui/bower_components/material-design-lite/src/progress/_progress.scss -lib/emby-server/dashboard-ui/bower_components/material-design-lite/src/progress/progress.js -lib/emby-server/dashboard-ui/bower_components/material-design-lite/src/progress/snippets/progress-buffering-demo.html -lib/emby-server/dashboard-ui/bower_components/material-design-lite/src/progress/snippets/progress-buffering.html -lib/emby-server/dashboard-ui/bower_components/material-design-lite/src/progress/snippets/progress-default-demo.html -lib/emby-server/dashboard-ui/bower_components/material-design-lite/src/progress/snippets/progress-default.html -lib/emby-server/dashboard-ui/bower_components/material-design-lite/src/progress/snippets/progress-indeterminate-demo.html -lib/emby-server/dashboard-ui/bower_components/material-design-lite/src/progress/snippets/progress-indeterminate.html -lib/emby-server/dashboard-ui/bower_components/material-design-lite/src/radio/README.md -lib/emby-server/dashboard-ui/bower_components/material-design-lite/src/radio/_radio.scss -lib/emby-server/dashboard-ui/bower_components/material-design-lite/src/radio/radio.js -lib/emby-server/dashboard-ui/bower_components/material-design-lite/src/radio/snippets/radio-off.html -lib/emby-server/dashboard-ui/bower_components/material-design-lite/src/radio/snippets/radio-on.html -lib/emby-server/dashboard-ui/bower_components/material-design-lite/src/resets/_h5bp.scss -lib/emby-server/dashboard-ui/bower_components/material-design-lite/src/resets/_mobile.scss -lib/emby-server/dashboard-ui/bower_components/material-design-lite/src/resets/_resets.scss -lib/emby-server/dashboard-ui/bower_components/material-design-lite/src/ripple/_ripple.scss -lib/emby-server/dashboard-ui/bower_components/material-design-lite/src/ripple/ripple.js -lib/emby-server/dashboard-ui/bower_components/material-design-lite/src/shadow/README.md -lib/emby-server/dashboard-ui/bower_components/material-design-lite/src/shadow/_shadow.scss -lib/emby-server/dashboard-ui/bower_components/material-design-lite/src/shadow/demo.css -lib/emby-server/dashboard-ui/bower_components/material-design-lite/src/shadow/demo.html -lib/emby-server/dashboard-ui/bower_components/material-design-lite/src/slider/README.md -lib/emby-server/dashboard-ui/bower_components/material-design-lite/src/slider/_slider.scss -lib/emby-server/dashboard-ui/bower_components/material-design-lite/src/slider/slider.js -lib/emby-server/dashboard-ui/bower_components/material-design-lite/src/slider/snippets/demo.html -lib/emby-server/dashboard-ui/bower_components/material-design-lite/src/slider/snippets/slider-default-demo.html -lib/emby-server/dashboard-ui/bower_components/material-design-lite/src/slider/snippets/slider-default.html -lib/emby-server/dashboard-ui/bower_components/material-design-lite/src/slider/snippets/slider-starting-value-demo.html -lib/emby-server/dashboard-ui/bower_components/material-design-lite/src/slider/snippets/slider-starting-value.html -lib/emby-server/dashboard-ui/bower_components/material-design-lite/src/snackbar/README.md -lib/emby-server/dashboard-ui/bower_components/material-design-lite/src/snackbar/_snackbar.scss -lib/emby-server/dashboard-ui/bower_components/material-design-lite/src/snackbar/snackbar.js -lib/emby-server/dashboard-ui/bower_components/material-design-lite/src/snackbar/snippets/snackbar.html -lib/emby-server/dashboard-ui/bower_components/material-design-lite/src/snackbar/snippets/toast.html -lib/emby-server/dashboard-ui/bower_components/material-design-lite/src/spinner/README.md -lib/emby-server/dashboard-ui/bower_components/material-design-lite/src/spinner/_spinner.scss -lib/emby-server/dashboard-ui/bower_components/material-design-lite/src/spinner/snippets/spinner-default.html -lib/emby-server/dashboard-ui/bower_components/material-design-lite/src/spinner/snippets/spinner-single-color.html -lib/emby-server/dashboard-ui/bower_components/material-design-lite/src/spinner/spinner.js -lib/emby-server/dashboard-ui/bower_components/material-design-lite/src/styleguide.scss -lib/emby-server/dashboard-ui/bower_components/material-design-lite/src/switch/README.md -lib/emby-server/dashboard-ui/bower_components/material-design-lite/src/switch/_switch.scss -lib/emby-server/dashboard-ui/bower_components/material-design-lite/src/switch/snippets/switch-off.html -lib/emby-server/dashboard-ui/bower_components/material-design-lite/src/switch/snippets/switch-on.html -lib/emby-server/dashboard-ui/bower_components/material-design-lite/src/switch/switch.js -lib/emby-server/dashboard-ui/bower_components/material-design-lite/src/tabs/README.md -lib/emby-server/dashboard-ui/bower_components/material-design-lite/src/tabs/_tabs.scss -lib/emby-server/dashboard-ui/bower_components/material-design-lite/src/tabs/snippets/tabs.html -lib/emby-server/dashboard-ui/bower_components/material-design-lite/src/tabs/tabs.js -lib/emby-server/dashboard-ui/bower_components/material-design-lite/src/template.scss -lib/emby-server/dashboard-ui/bower_components/material-design-lite/src/textfield/README.md -lib/emby-server/dashboard-ui/bower_components/material-design-lite/src/textfield/_textfield.scss -lib/emby-server/dashboard-ui/bower_components/material-design-lite/src/textfield/snippets/textfield-expanding-demo.html -lib/emby-server/dashboard-ui/bower_components/material-design-lite/src/textfield/snippets/textfield-expanding.html -lib/emby-server/dashboard-ui/bower_components/material-design-lite/src/textfield/snippets/textfield-floating-numeric-demo.html -lib/emby-server/dashboard-ui/bower_components/material-design-lite/src/textfield/snippets/textfield-floating-numeric.html -lib/emby-server/dashboard-ui/bower_components/material-design-lite/src/textfield/snippets/textfield-floating-text-demo.html -lib/emby-server/dashboard-ui/bower_components/material-design-lite/src/textfield/snippets/textfield-floating-text.html -lib/emby-server/dashboard-ui/bower_components/material-design-lite/src/textfield/snippets/textfield-multi-line-demo.html -lib/emby-server/dashboard-ui/bower_components/material-design-lite/src/textfield/snippets/textfield-multi-line.html -lib/emby-server/dashboard-ui/bower_components/material-design-lite/src/textfield/snippets/textfield-numeric-demo.html -lib/emby-server/dashboard-ui/bower_components/material-design-lite/src/textfield/snippets/textfield-numeric.html -lib/emby-server/dashboard-ui/bower_components/material-design-lite/src/textfield/snippets/textfield-text-demo.html -lib/emby-server/dashboard-ui/bower_components/material-design-lite/src/textfield/snippets/textfield-text.html -lib/emby-server/dashboard-ui/bower_components/material-design-lite/src/textfield/textfield.js -lib/emby-server/dashboard-ui/bower_components/material-design-lite/src/third_party/rAF.js -lib/emby-server/dashboard-ui/bower_components/material-design-lite/src/tooltip/README.md -lib/emby-server/dashboard-ui/bower_components/material-design-lite/src/tooltip/_tooltip.scss -lib/emby-server/dashboard-ui/bower_components/material-design-lite/src/tooltip/snippets/tooltip-large.html -lib/emby-server/dashboard-ui/bower_components/material-design-lite/src/tooltip/snippets/tooltip-multiline.html -lib/emby-server/dashboard-ui/bower_components/material-design-lite/src/tooltip/snippets/tooltip-rich.html -lib/emby-server/dashboard-ui/bower_components/material-design-lite/src/tooltip/snippets/tooltip-simple.html -lib/emby-server/dashboard-ui/bower_components/material-design-lite/src/tooltip/tooltip.js -lib/emby-server/dashboard-ui/bower_components/material-design-lite/src/typography/README.md -lib/emby-server/dashboard-ui/bower_components/material-design-lite/src/typography/_typography.scss -lib/emby-server/dashboard-ui/bower_components/material-design-lite/src/typography/demo.css -lib/emby-server/dashboard-ui/bower_components/material-design-lite/src/typography/demo.html -lib/emby-server/dashboard-ui/bower_components/material-design-lite/utils/jscs-rules/closure-camel-case.js -lib/emby-server/dashboard-ui/bower_components/material-design-lite/utils/uniffe.js lib/emby-server/dashboard-ui/bower_components/native-promise-only/.bower.json +lib/emby-server/dashboard-ui/bower_components/native-promise-only/.gitignore lib/emby-server/dashboard-ui/bower_components/native-promise-only/.npmignore lib/emby-server/dashboard-ui/bower_components/native-promise-only/README.md lib/emby-server/dashboard-ui/bower_components/native-promise-only/build.js @@ -1315,6 +1112,7 @@ lib/emby-server/dashboard-ui/bower_compo lib/emby-server/dashboard-ui/bower_components/native-promise-only/test_adapter.js lib/emby-server/dashboard-ui/bower_components/neon-animation/.bower.json lib/emby-server/dashboard-ui/bower_components/neon-animation/.github/ISSUE_TEMPLATE.md +lib/emby-server/dashboard-ui/bower_components/neon-animation/.gitignore lib/emby-server/dashboard-ui/bower_components/neon-animation/.travis.yml lib/emby-server/dashboard-ui/bower_components/neon-animation/CONTRIBUTING.md lib/emby-server/dashboard-ui/bower_components/neon-animation/README.md @@ -1383,6 +1181,7 @@ lib/emby-server/dashboard-ui/bower_compo lib/emby-server/dashboard-ui/bower_components/neon-animation/test/test-resizable-pages.html lib/emby-server/dashboard-ui/bower_components/neon-animation/web-animations.html lib/emby-server/dashboard-ui/bower_components/paper-behaviors/.bower.json +lib/emby-server/dashboard-ui/bower_components/paper-behaviors/.gitignore lib/emby-server/dashboard-ui/bower_components/paper-behaviors/.travis.yml lib/emby-server/dashboard-ui/bower_components/paper-behaviors/CONTRIBUTING.md lib/emby-server/dashboard-ui/bower_components/paper-behaviors/README.md @@ -1404,6 +1203,8 @@ lib/emby-server/dashboard-ui/bower_compo lib/emby-server/dashboard-ui/bower_components/paper-behaviors/test/test-button.html lib/emby-server/dashboard-ui/bower_components/paper-behaviors/test/test-radio-button.html lib/emby-server/dashboard-ui/bower_components/paper-button/.bower.json +lib/emby-server/dashboard-ui/bower_components/paper-button/.github/ISSUE_TEMPLATE.md +lib/emby-server/dashboard-ui/bower_components/paper-button/.gitignore lib/emby-server/dashboard-ui/bower_components/paper-button/.travis.yml lib/emby-server/dashboard-ui/bower_components/paper-button/CONTRIBUTING.md lib/emby-server/dashboard-ui/bower_components/paper-button/README.md @@ -1414,6 +1215,7 @@ lib/emby-server/dashboard-ui/bower_compo lib/emby-server/dashboard-ui/bower_components/paper-button/test/index.html lib/emby-server/dashboard-ui/bower_components/paper-button/test/paper-button.html lib/emby-server/dashboard-ui/bower_components/paper-checkbox/.bower.json +lib/emby-server/dashboard-ui/bower_components/paper-checkbox/.gitignore lib/emby-server/dashboard-ui/bower_components/paper-checkbox/.travis.yml lib/emby-server/dashboard-ui/bower_components/paper-checkbox/CONTRIBUTING.md lib/emby-server/dashboard-ui/bower_components/paper-checkbox/README.md @@ -1424,20 +1226,8 @@ lib/emby-server/dashboard-ui/bower_compo lib/emby-server/dashboard-ui/bower_components/paper-checkbox/paper-checkbox.html lib/emby-server/dashboard-ui/bower_components/paper-checkbox/test/basic.html lib/emby-server/dashboard-ui/bower_components/paper-checkbox/test/index.html -lib/emby-server/dashboard-ui/bower_components/paper-drawer-panel/.bower.json -lib/emby-server/dashboard-ui/bower_components/paper-drawer-panel/.travis.yml -lib/emby-server/dashboard-ui/bower_components/paper-drawer-panel/CONTRIBUTING.md -lib/emby-server/dashboard-ui/bower_components/paper-drawer-panel/README.md -lib/emby-server/dashboard-ui/bower_components/paper-drawer-panel/bower.json -lib/emby-server/dashboard-ui/bower_components/paper-drawer-panel/demo/index.html -lib/emby-server/dashboard-ui/bower_components/paper-drawer-panel/hero.svg -lib/emby-server/dashboard-ui/bower_components/paper-drawer-panel/index.html -lib/emby-server/dashboard-ui/bower_components/paper-drawer-panel/paper-drawer-panel.html -lib/emby-server/dashboard-ui/bower_components/paper-drawer-panel/test/focus.html -lib/emby-server/dashboard-ui/bower_components/paper-drawer-panel/test/index.html -lib/emby-server/dashboard-ui/bower_components/paper-drawer-panel/test/positioning.html -lib/emby-server/dashboard-ui/bower_components/paper-drawer-panel/test/small-devices.html lib/emby-server/dashboard-ui/bower_components/paper-fab/.bower.json +lib/emby-server/dashboard-ui/bower_components/paper-fab/.gitignore lib/emby-server/dashboard-ui/bower_components/paper-fab/README.md lib/emby-server/dashboard-ui/bower_components/paper-fab/bower.json lib/emby-server/dashboard-ui/bower_components/paper-fab/demo/index.html @@ -1448,6 +1238,7 @@ lib/emby-server/dashboard-ui/bower_compo lib/emby-server/dashboard-ui/bower_components/paper-fab/test/index.html lib/emby-server/dashboard-ui/bower_components/paper-icon-button/.bower.json lib/emby-server/dashboard-ui/bower_components/paper-icon-button/.github/ISSUE_TEMPLATE.md +lib/emby-server/dashboard-ui/bower_components/paper-icon-button/.gitignore lib/emby-server/dashboard-ui/bower_components/paper-icon-button/.travis.yml lib/emby-server/dashboard-ui/bower_components/paper-icon-button/CONTRIBUTING.md lib/emby-server/dashboard-ui/bower_components/paper-icon-button/README.md @@ -1462,6 +1253,7 @@ lib/emby-server/dashboard-ui/bower_compo lib/emby-server/dashboard-ui/bower_components/paper-icon-button/test/index.html lib/emby-server/dashboard-ui/bower_components/paper-input/.bower.json lib/emby-server/dashboard-ui/bower_components/paper-input/.github/ISSUE_TEMPLATE.md +lib/emby-server/dashboard-ui/bower_components/paper-input/.gitignore lib/emby-server/dashboard-ui/bower_components/paper-input/.travis.yml lib/emby-server/dashboard-ui/bower_components/paper-input/CONTRIBUTING.md lib/emby-server/dashboard-ui/bower_components/paper-input/README.md @@ -1488,6 +1280,7 @@ lib/emby-server/dashboard-ui/bower_compo lib/emby-server/dashboard-ui/bower_components/paper-input/test/paper-textarea.html lib/emby-server/dashboard-ui/bower_components/paper-item/.bower.json lib/emby-server/dashboard-ui/bower_components/paper-item/.github/ISSUE_TEMPLATE.md +lib/emby-server/dashboard-ui/bower_components/paper-item/.gitignore lib/emby-server/dashboard-ui/bower_components/paper-item/.travis.yml lib/emby-server/dashboard-ui/bower_components/paper-item/CONTRIBUTING.md lib/emby-server/dashboard-ui/bower_components/paper-item/README.md @@ -1503,6 +1296,7 @@ lib/emby-server/dashboard-ui/bower_compo lib/emby-server/dashboard-ui/bower_components/paper-item/test/index.html lib/emby-server/dashboard-ui/bower_components/paper-item/test/paper-item.html lib/emby-server/dashboard-ui/bower_components/paper-material/.bower.json +lib/emby-server/dashboard-ui/bower_components/paper-material/.gitignore lib/emby-server/dashboard-ui/bower_components/paper-material/.travis.yml lib/emby-server/dashboard-ui/bower_components/paper-material/CONTRIBUTING.md lib/emby-server/dashboard-ui/bower_components/paper-material/README.md @@ -1514,6 +1308,7 @@ lib/emby-server/dashboard-ui/bower_compo lib/emby-server/dashboard-ui/bower_components/paper-material/test/index.html lib/emby-server/dashboard-ui/bower_components/paper-material/test/paper-material.html lib/emby-server/dashboard-ui/bower_components/paper-menu/.bower.json +lib/emby-server/dashboard-ui/bower_components/paper-menu/.gitignore lib/emby-server/dashboard-ui/bower_components/paper-menu/README.md lib/emby-server/dashboard-ui/bower_components/paper-menu/bower.json lib/emby-server/dashboard-ui/bower_components/paper-menu/demo/index.html @@ -1523,6 +1318,7 @@ lib/emby-server/dashboard-ui/bower_compo lib/emby-server/dashboard-ui/bower_components/paper-menu/test/index.html lib/emby-server/dashboard-ui/bower_components/paper-menu/test/paper-menu.html lib/emby-server/dashboard-ui/bower_components/paper-progress/.bower.json +lib/emby-server/dashboard-ui/bower_components/paper-progress/.gitignore lib/emby-server/dashboard-ui/bower_components/paper-progress/.travis.yml lib/emby-server/dashboard-ui/bower_components/paper-progress/CONTRIBUTING.md lib/emby-server/dashboard-ui/bower_components/paper-progress/README.md @@ -1534,6 +1330,7 @@ lib/emby-server/dashboard-ui/bower_compo lib/emby-server/dashboard-ui/bower_components/paper-progress/test/basic.html lib/emby-server/dashboard-ui/bower_components/paper-progress/test/index.html lib/emby-server/dashboard-ui/bower_components/paper-radio-button/.bower.json +lib/emby-server/dashboard-ui/bower_components/paper-radio-button/.gitignore lib/emby-server/dashboard-ui/bower_components/paper-radio-button/.travis.yml lib/emby-server/dashboard-ui/bower_components/paper-radio-button/CONTRIBUTING.md lib/emby-server/dashboard-ui/bower_components/paper-radio-button/README.md @@ -1545,6 +1342,7 @@ lib/emby-server/dashboard-ui/bower_compo lib/emby-server/dashboard-ui/bower_components/paper-radio-button/test/basic.html lib/emby-server/dashboard-ui/bower_components/paper-radio-button/test/index.html lib/emby-server/dashboard-ui/bower_components/paper-radio-group/.bower.json +lib/emby-server/dashboard-ui/bower_components/paper-radio-group/.gitignore lib/emby-server/dashboard-ui/bower_components/paper-radio-group/.travis.yml lib/emby-server/dashboard-ui/bower_components/paper-radio-group/CONTRIBUTING.md lib/emby-server/dashboard-ui/bower_components/paper-radio-group/README.md @@ -1556,6 +1354,8 @@ lib/emby-server/dashboard-ui/bower_compo lib/emby-server/dashboard-ui/bower_components/paper-radio-group/test/basic.html lib/emby-server/dashboard-ui/bower_components/paper-radio-group/test/index.html lib/emby-server/dashboard-ui/bower_components/paper-ripple/.bower.json +lib/emby-server/dashboard-ui/bower_components/paper-ripple/.github/ISSUE_TEMPLATE.md +lib/emby-server/dashboard-ui/bower_components/paper-ripple/.gitignore lib/emby-server/dashboard-ui/bower_components/paper-ripple/.travis.yml lib/emby-server/dashboard-ui/bower_components/paper-ripple/CONTRIBUTING.md lib/emby-server/dashboard-ui/bower_components/paper-ripple/README.md @@ -1566,19 +1366,8 @@ lib/emby-server/dashboard-ui/bower_compo lib/emby-server/dashboard-ui/bower_components/paper-ripple/paper-ripple.html lib/emby-server/dashboard-ui/bower_components/paper-ripple/test/index.html lib/emby-server/dashboard-ui/bower_components/paper-ripple/test/paper-ripple.html -lib/emby-server/dashboard-ui/bower_components/paper-slider/.bower.json -lib/emby-server/dashboard-ui/bower_components/paper-slider/.travis.yml -lib/emby-server/dashboard-ui/bower_components/paper-slider/CONTRIBUTING.md -lib/emby-server/dashboard-ui/bower_components/paper-slider/README.md -lib/emby-server/dashboard-ui/bower_components/paper-slider/bower.json -lib/emby-server/dashboard-ui/bower_components/paper-slider/demo/index.html -lib/emby-server/dashboard-ui/bower_components/paper-slider/hero.svg -lib/emby-server/dashboard-ui/bower_components/paper-slider/index.html -lib/emby-server/dashboard-ui/bower_components/paper-slider/paper-slider.html -lib/emby-server/dashboard-ui/bower_components/paper-slider/test/a11y.html -lib/emby-server/dashboard-ui/bower_components/paper-slider/test/basic.html -lib/emby-server/dashboard-ui/bower_components/paper-slider/test/index.html lib/emby-server/dashboard-ui/bower_components/paper-spinner/.bower.json +lib/emby-server/dashboard-ui/bower_components/paper-spinner/.gitignore lib/emby-server/dashboard-ui/bower_components/paper-spinner/.travis.yml lib/emby-server/dashboard-ui/bower_components/paper-spinner/CONTRIBUTING.md lib/emby-server/dashboard-ui/bower_components/paper-spinner/README.md @@ -1609,6 +1398,7 @@ lib/emby-server/dashboard-ui/bower_compo lib/emby-server/dashboard-ui/bower_components/paper-styles/shadow.html lib/emby-server/dashboard-ui/bower_components/paper-styles/typography.html lib/emby-server/dashboard-ui/bower_components/paper-tabs/.bower.json +lib/emby-server/dashboard-ui/bower_components/paper-tabs/.gitignore lib/emby-server/dashboard-ui/bower_components/paper-tabs/.travis.yml lib/emby-server/dashboard-ui/bower_components/paper-tabs/CONTRIBUTING.md lib/emby-server/dashboard-ui/bower_components/paper-tabs/README.md @@ -1624,14 +1414,8 @@ lib/emby-server/dashboard-ui/bower_compo lib/emby-server/dashboard-ui/bower_components/paper-tabs/test/attr-for-selected.html lib/emby-server/dashboard-ui/bower_components/paper-tabs/test/basic.html lib/emby-server/dashboard-ui/bower_components/paper-tabs/test/index.html -lib/emby-server/dashboard-ui/bower_components/paper-toast/.bower.json -lib/emby-server/dashboard-ui/bower_components/paper-toast/README.md -lib/emby-server/dashboard-ui/bower_components/paper-toast/bower.json -lib/emby-server/dashboard-ui/bower_components/paper-toast/demo/index.html -lib/emby-server/dashboard-ui/bower_components/paper-toast/hero.svg -lib/emby-server/dashboard-ui/bower_components/paper-toast/index.html -lib/emby-server/dashboard-ui/bower_components/paper-toast/paper-toast.html lib/emby-server/dashboard-ui/bower_components/paper-toggle-button/.bower.json +lib/emby-server/dashboard-ui/bower_components/paper-toggle-button/.gitignore lib/emby-server/dashboard-ui/bower_components/paper-toggle-button/.travis.yml lib/emby-server/dashboard-ui/bower_components/paper-toggle-button/CONTRIBUTING.md lib/emby-server/dashboard-ui/bower_components/paper-toggle-button/README.md @@ -1655,6 +1439,7 @@ lib/emby-server/dashboard-ui/bower_compo lib/emby-server/dashboard-ui/bower_components/prism-element/index.html lib/emby-server/dashboard-ui/bower_components/prism-element/prism-highlighter.html lib/emby-server/dashboard-ui/bower_components/prism-element/prism-import.html +lib/emby-server/dashboard-ui/bower_components/prism-element/prism-theme-default.html lib/emby-server/dashboard-ui/bower_components/prism/.bower.json lib/emby-server/dashboard-ui/bower_components/prism/CHANGELOG.md lib/emby-server/dashboard-ui/bower_components/prism/LICENSE @@ -1963,6 +1748,8 @@ lib/emby-server/dashboard-ui/bower_compo lib/emby-server/dashboard-ui/bower_components/prism/vendor/promise.js lib/emby-server/dashboard-ui/bower_components/query-string/.bower.json lib/emby-server/dashboard-ui/bower_components/query-string/.editorconfig +lib/emby-server/dashboard-ui/bower_components/query-string/.gitattributes +lib/emby-server/dashboard-ui/bower_components/query-string/.gitignore lib/emby-server/dashboard-ui/bower_components/query-string/.jshintrc lib/emby-server/dashboard-ui/bower_components/query-string/.travis.yml lib/emby-server/dashboard-ui/bower_components/query-string/index.js @@ -2009,10 +1796,9 @@ lib/emby-server/dashboard-ui/bower_compo lib/emby-server/dashboard-ui/channelitems.html lib/emby-server/dashboard-ui/channels.html lib/emby-server/dashboard-ui/cinemamodeconfiguration.html -lib/emby-server/dashboard-ui/collections.html lib/emby-server/dashboard-ui/components/apphost.js +lib/emby-server/dashboard-ui/components/channelmapper/channelmapper.js lib/emby-server/dashboard-ui/components/chromecasthelpers.js -lib/emby-server/dashboard-ui/components/collectioneditor/collectioneditor.js lib/emby-server/dashboard-ui/components/directorybrowser/directorybrowser.js lib/emby-server/dashboard-ui/components/favoriteitems.js lib/emby-server/dashboard-ui/components/fileorganizer/fileorganizer.js @@ -2029,8 +1815,6 @@ lib/emby-server/dashboard-ui/components/ lib/emby-server/dashboard-ui/components/imageeditor/imageeditor.template.html lib/emby-server/dashboard-ui/components/imageuploader/imageuploader.js lib/emby-server/dashboard-ui/components/imageuploader/imageuploader.template.html -lib/emby-server/dashboard-ui/components/ironcardlist/ironcardlist.js -lib/emby-server/dashboard-ui/components/ironcardlist/ironcardlist.template.html lib/emby-server/dashboard-ui/components/itemidentifier/itemidentifier.js lib/emby-server/dashboard-ui/components/itemidentifier/itemidentifier.template.html lib/emby-server/dashboard-ui/components/medialibrarycreator/medialibrarycreator.js @@ -2041,18 +1825,19 @@ lib/emby-server/dashboard-ui/components/ lib/emby-server/dashboard-ui/components/metadataeditor/metadataeditor.template.html lib/emby-server/dashboard-ui/components/metadataeditor/personeditor.js lib/emby-server/dashboard-ui/components/metadataeditor/personeditor.template.html -lib/emby-server/dashboard-ui/components/playlisteditor/playlisteditor.js +lib/emby-server/dashboard-ui/components/navdrawer/navdrawer.css +lib/emby-server/dashboard-ui/components/navdrawer/navdrawer.js lib/emby-server/dashboard-ui/components/remotecontrol.js lib/emby-server/dashboard-ui/components/remotecontrolautoplay.js -lib/emby-server/dashboard-ui/components/scrollthreshold.js -lib/emby-server/dashboard-ui/components/subtitleeditor/subtitleeditor.js -lib/emby-server/dashboard-ui/components/subtitleeditor/subtitleeditor.template.html lib/emby-server/dashboard-ui/components/tvproviders/schedulesdirect.js lib/emby-server/dashboard-ui/components/tvproviders/schedulesdirect.template.html +lib/emby-server/dashboard-ui/components/tvproviders/xmltv.js +lib/emby-server/dashboard-ui/components/tvproviders/xmltv.template.html lib/emby-server/dashboard-ui/components/viewcontainer-lite.js lib/emby-server/dashboard-ui/connectlogin.html lib/emby-server/dashboard-ui/css/card.css lib/emby-server/dashboard-ui/css/chromecast.css +lib/emby-server/dashboard-ui/css/dashboard.css lib/emby-server/dashboard-ui/css/detailtable.css lib/emby-server/dashboard-ui/css/fonts/Montserrat.woff lib/emby-server/dashboard-ui/css/images/ani_equalizer_black.gif @@ -2152,8 +1937,6 @@ lib/emby-server/dashboard-ui/css/metadat lib/emby-server/dashboard-ui/css/notifications.css lib/emby-server/dashboard-ui/css/nowplaying.css lib/emby-server/dashboard-ui/css/nowplayingbar.css -lib/emby-server/dashboard-ui/css/polymer/paper-icon-button-light.css -lib/emby-server/dashboard-ui/css/search.css lib/emby-server/dashboard-ui/css/site.css lib/emby-server/dashboard-ui/css/tileitem.css lib/emby-server/dashboard-ui/dashboard.html @@ -2162,8 +1945,6 @@ lib/emby-server/dashboard-ui/dashboardho lib/emby-server/dashboard-ui/device.html lib/emby-server/dashboard-ui/devices.html lib/emby-server/dashboard-ui/devices/android/android.css -lib/emby-server/dashboard-ui/devices/ie/ie.css -lib/emby-server/dashboard-ui/devices/ie/ie.js lib/emby-server/dashboard-ui/devices/ios/ios.css lib/emby-server/dashboard-ui/devices/windowsphone/wp.css lib/emby-server/dashboard-ui/devicesupload.html @@ -2186,12 +1967,12 @@ lib/emby-server/dashboard-ui/home.html lib/emby-server/dashboard-ui/index.html lib/emby-server/dashboard-ui/itemdetails.html lib/emby-server/dashboard-ui/itemlist.html -lib/emby-server/dashboard-ui/kids.html lib/emby-server/dashboard-ui/legacy/buttonenabled.js lib/emby-server/dashboard-ui/legacy/dashboard.js lib/emby-server/dashboard-ui/legacy/fnchecked.js lib/emby-server/dashboard-ui/legacy/selectmenu.js lib/emby-server/dashboard-ui/library.html +lib/emby-server/dashboard-ui/librarydisplay.html lib/emby-server/dashboard-ui/librarypathmapping.html lib/emby-server/dashboard-ui/librarysettings.html lib/emby-server/dashboard-ui/livetv.html @@ -2236,7 +2017,6 @@ lib/emby-server/dashboard-ui/scheduledta lib/emby-server/dashboard-ui/scheduledtasks.html lib/emby-server/dashboard-ui/scripts/aboutpage.js lib/emby-server/dashboard-ui/scripts/addpluginpage.js -lib/emby-server/dashboard-ui/scripts/alphapicker.js lib/emby-server/dashboard-ui/scripts/appservices.js lib/emby-server/dashboard-ui/scripts/autobackdrops.js lib/emby-server/dashboard-ui/scripts/autoorganizelog.js @@ -2279,8 +2059,8 @@ lib/emby-server/dashboard-ui/scripts/ind *** DIFF OUTPUT TRUNCATED AT 1000 LINES *** From owner-svn-ports-all@freebsd.org Sat Jul 9 00:00:20 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 86A6FB85C34; Sat, 9 Jul 2016 00:00:20 +0000 (UTC) (envelope-from woodsb02@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 567F71C42; Sat, 9 Jul 2016 00:00:20 +0000 (UTC) (envelope-from woodsb02@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u6900Jbs031002; Sat, 9 Jul 2016 00:00:19 GMT (envelope-from woodsb02@FreeBSD.org) Received: (from woodsb02@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u6900IHu030993; Sat, 9 Jul 2016 00:00:18 GMT (envelope-from woodsb02@FreeBSD.org) Message-Id: <201607090000.u6900IHu030993@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: woodsb02 set sender to woodsb02@FreeBSD.org using -f From: Ben Woods Date: Sat, 9 Jul 2016 00:00:18 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418250 - in head/graphics/tulip: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 09 Jul 2016 00:00:20 -0000 Author: woodsb02 Date: Sat Jul 9 00:00:18 2016 New Revision: 418250 URL: https://svnweb.freebsd.org/changeset/ports/418250 Log: graphics/tulip: Update to 4.9.0 - Add USE_GL+=gl as per new stage-qa dependency detection script - Refactor patches to apply cleanly against new release Approved by: adamw (mentor) Relnotes: http://tulip.labri.fr/TulipDrupal/?q=node/2141 Differential Revision: https://reviews.freebsd.org/D7164 Modified: head/graphics/tulip/Makefile head/graphics/tulip/distinfo head/graphics/tulip/files/patch-CMakeLists.txt head/graphics/tulip/files/patch-library_tulip-core_src_PluginLibraryLoader.cpp head/graphics/tulip/files/patch-software_crash__handling_CrashHandling.cpp head/graphics/tulip/files/patch-software_tulip__perspective_src_main.cpp head/graphics/tulip/files/patch-software_tulip_src_main.cpp head/graphics/tulip/files/patch-thirdparty_CMakeLists.txt head/graphics/tulip/pkg-plist Modified: head/graphics/tulip/Makefile ============================================================================== --- head/graphics/tulip/Makefile Fri Jul 8 23:40:28 2016 (r418249) +++ head/graphics/tulip/Makefile Sat Jul 9 00:00:18 2016 (r418250) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= tulip -PORTVERSION= 4.8.1 +PORTVERSION= 4.9.0 DISTVERSIONSUFFIX= _src CATEGORIES= graphics MASTER_SITES= SF/auber/${PORTNAME}/${PORTNAME}-${PORTVERSION} @@ -17,13 +17,13 @@ LIB_DEPENDS= libquazip.so:archivers/quaz libOGDF.so:math/ogdf \ libfreetype.so:print/freetype2 -WRKSRC= ${WRKDIR}/${PORTNAME}- +WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION} USES= cmake:outsource compiler:c++11-lib dos2unix execinfo jpeg python \ shebangfix SHEBANG_FILES= tulip-config.in DOS2UNIX_FILES= software/tulip/src/main.cpp -USE_GL= glew glut +USE_GL= gl glew glut USE_GNOME= libxml2 CMAKE_ARGS= -DBUILD_DOC:BOOL=OFF \ -DOGDFInclude:STRING=${LOCALBASE}/include \ Modified: head/graphics/tulip/distinfo ============================================================================== --- head/graphics/tulip/distinfo Fri Jul 8 23:40:28 2016 (r418249) +++ head/graphics/tulip/distinfo Sat Jul 9 00:00:18 2016 (r418250) @@ -1,2 +1,3 @@ -SHA256 (tulip-4.8.1_src.tar.gz) = 36ce910330df3233f00205637f76d1e6f56e173d41e739923fd6ed53cb23daf4 -SIZE (tulip-4.8.1_src.tar.gz) = 152134621 +TIMESTAMP = 1468022227 +SHA256 (tulip-4.9.0_src.tar.gz) = 432d9e12839d41b8ed5bb497c08cd4922cb112868f4c47cd0675e7254e3a0c5e +SIZE (tulip-4.9.0_src.tar.gz) = 76325634 Modified: head/graphics/tulip/files/patch-CMakeLists.txt ============================================================================== --- head/graphics/tulip/files/patch-CMakeLists.txt Fri Jul 8 23:40:28 2016 (r418249) +++ head/graphics/tulip/files/patch-CMakeLists.txt Sat Jul 9 00:00:18 2016 (r418250) @@ -1,6 +1,6 @@ ---- CMakeLists.txt.orig 2015-10-16 02:14:39 UTC +--- CMakeLists.txt.orig 2016-07-07 20:16:41 UTC +++ CMakeLists.txt -@@ -501,8 +501,8 @@ IF(NOT BUILD_CORE_ONLY) +@@ -564,8 +564,8 @@ IF(NOT BUILD_CORE_ONLY) SET(Tess2Library tess2-tulip-${TulipMMVersion}) ENDIF(NOT BUILD_CORE_ONLY) Modified: head/graphics/tulip/files/patch-library_tulip-core_src_PluginLibraryLoader.cpp ============================================================================== --- head/graphics/tulip/files/patch-library_tulip-core_src_PluginLibraryLoader.cpp Fri Jul 8 23:40:28 2016 (r418249) +++ head/graphics/tulip/files/patch-library_tulip-core_src_PluginLibraryLoader.cpp Sat Jul 9 00:00:18 2016 (r418250) @@ -1,6 +1,6 @@ ---- library/tulip-core/src/PluginLibraryLoader.cpp.orig 2015-04-18 20:15:27 UTC +--- library/tulip-core/src/PluginLibraryLoader.cpp.orig 2016-07-07 20:15:54 UTC +++ library/tulip-core/src/PluginLibraryLoader.cpp -@@ -130,7 +130,14 @@ bool PluginLibraryLoader::loadPluginLibr +@@ -138,7 +138,14 @@ bool PluginLibraryLoader::loadPluginLibr } // accepts only file whose name matches *.so or *.dylib Modified: head/graphics/tulip/files/patch-software_crash__handling_CrashHandling.cpp ============================================================================== --- head/graphics/tulip/files/patch-software_crash__handling_CrashHandling.cpp Fri Jul 8 23:40:28 2016 (r418249) +++ head/graphics/tulip/files/patch-software_crash__handling_CrashHandling.cpp Sat Jul 9 00:00:18 2016 (r418250) @@ -1,11 +1,11 @@ ---- software/crash_handling/CrashHandling.cpp.orig 2015-04-18 20:15:52 UTC +--- software/crash_handling/CrashHandling.cpp.orig 2016-07-07 20:15:39 UTC +++ software/crash_handling/CrashHandling.cpp -@@ -48,7 +48,7 @@ void setExtraSymbolsSearchPaths(const st +@@ -78,7 +78,7 @@ static void dumpStackTrace(StackWalker & /* Linux/MacOS-specific handling */ -#if defined(__unix__) || defined(__APPLE__) +#if (defined(__unix__) || defined(__APPLE__)) && !defined(__FreeBSD__) - # if defined(__i386__) || defined(__amd64__) + #if defined(__i386__) || defined(__amd64__) Modified: head/graphics/tulip/files/patch-software_tulip__perspective_src_main.cpp ============================================================================== --- head/graphics/tulip/files/patch-software_tulip__perspective_src_main.cpp Fri Jul 8 23:40:28 2016 (r418249) +++ head/graphics/tulip/files/patch-software_tulip__perspective_src_main.cpp Sat Jul 9 00:00:18 2016 (r418250) @@ -1,11 +1,11 @@ ---- software/tulip_perspective/src/main.cpp.orig 2015-04-18 20:15:52 UTC +--- software/tulip_perspective/src/main.cpp.orig 2016-07-07 20:15:39 UTC +++ software/tulip_perspective/src/main.cpp -@@ -134,7 +134,9 @@ void usage(const QString &error) { - } +@@ -135,7 +135,9 @@ void usage(const QString &error) { int main(int argc,char **argv) { + +#ifndef __FreeBSD__ - start_crash_handler(); + CrashHandling::installCrashHandler(); +#endif QString appName("Tulip "); Modified: head/graphics/tulip/files/patch-software_tulip_src_main.cpp ============================================================================== --- head/graphics/tulip/files/patch-software_tulip_src_main.cpp Fri Jul 8 23:40:28 2016 (r418249) +++ head/graphics/tulip/files/patch-software_tulip_src_main.cpp Sat Jul 9 00:00:18 2016 (r418250) @@ -1,11 +1,11 @@ ---- software/tulip/src/main.cpp.orig 2015-04-22 14:45:04 UTC +--- software/tulip/src/main.cpp.orig 2016-07-07 20:15:40 UTC +++ software/tulip/src/main.cpp @@ -124,7 +124,9 @@ void checkTulipRunning(const QString& pe } int main(int argc, char **argv) { +#ifndef __FreeBSD__ - start_crash_handler(); + CrashHandling::installCrashHandler(); +#endif QApplication tulip_agent(argc, argv); Modified: head/graphics/tulip/files/patch-thirdparty_CMakeLists.txt ============================================================================== --- head/graphics/tulip/files/patch-thirdparty_CMakeLists.txt Fri Jul 8 23:40:28 2016 (r418249) +++ head/graphics/tulip/files/patch-thirdparty_CMakeLists.txt Sat Jul 9 00:00:18 2016 (r418250) @@ -1,11 +1,11 @@ ---- thirdparty/CMakeLists.txt.orig 2015-04-18 20:15:20 UTC +--- thirdparty/CMakeLists.txt.orig 2016-07-07 20:15:36 UTC +++ thirdparty/CMakeLists.txt -@@ -3,7 +3,7 @@ DISABLE_COMPILER_WARNINGS() - ADD_CORE_FILES(CMakeLists.txt) +@@ -8,7 +8,7 @@ ADD_CORE_FILES(CMakeLists.txt + ) ADD_SUBDIRECTORY(gzstream) -ADD_SUBDIRECTORY(OGDF) +#ADD_SUBDIRECTORY(OGDF) ADD_SUBDIRECTORY(libqhull) ADD_SUBDIRECTORY(yajl) - + IF(NOT BUILD_CORE_ONLY) Modified: head/graphics/tulip/pkg-plist ============================================================================== --- head/graphics/tulip/pkg-plist Fri Jul 8 23:40:28 2016 (r418249) +++ head/graphics/tulip/pkg-plist Sat Jul 9 00:00:18 2016 (r418250) @@ -45,7 +45,6 @@ include/tulip/CopyPropertyDialog.h include/tulip/Curves.h include/tulip/DataSet.h include/tulip/Delaunay.h -include/tulip/DocumentationNavigator.h include/tulip/DoubleProperty.h include/tulip/DoublePropertyAnimation.h include/tulip/DoubleStringsListSelectionWidget.h @@ -241,13 +240,13 @@ include/tulip/StringsListSelectionWidget include/tulip/StringsListSelectionWidgetInterface.h include/tulip/SystemDefinition.h include/tulip/TemplateAlgorithm.h +include/tulip/TextureFileDialog.h include/tulip/TlpQtTools.h include/tulip/TlpTools.h include/tulip/TreeTest.h include/tulip/TreeViewComboBox.h include/tulip/TriconnectedTest.h include/tulip/TulipException.h -include/tulip/TulipFileDescriptorWidget.h include/tulip/TulipFont.h include/tulip/TulipFontAwesome.h include/tulip/TulipFontDialog.h @@ -306,6 +305,9 @@ lib/libftgl-tulip-%%TULIP_VERS%%.so.2 lib/libftgl-tulip-%%TULIP_VERS%%.so.2.1 lib/libgzstream-tulip-%%TULIP_VERS%%.so lib/libgzstream-tulip-%%TULIP_VERS%%.so.0 +lib/libquazip-tulip-%%TULIP_VERS%%.so +lib/libquazip-tulip-%%TULIP_VERS%%.so.1 +lib/libquazip-tulip-%%TULIP_VERS%%.so.1.0.0 lib/libqxt-tulip-%%TULIP_VERS%%.so lib/libqxt-tulip-%%TULIP_VERS%%.so.0 lib/libtess2-tulip-%%TULIP_VERS%%.so @@ -326,163 +328,163 @@ lib/python/tulipogl/__init__.py lib/python/tulipogl/native/_tulipogl.so lib/python/tulipplugins.py lib/python/tulipsip.so -lib/tulip/glyph/libBillboard-%%TULIP_VERS%%.0.so -lib/tulip/glyph/libChristmasTree-%%TULIP_VERS%%.0.so -lib/tulip/glyph/libCircle-%%TULIP_VERS%%.0.so -lib/tulip/glyph/libCone-%%TULIP_VERS%%.0.so -lib/tulip/glyph/libCross-%%TULIP_VERS%%.0.so -lib/tulip/glyph/libCube-%%TULIP_VERS%%.0.so -lib/tulip/glyph/libCubeOutlinedTransparent-%%TULIP_VERS%%.0.so -lib/tulip/glyph/libCylinder-%%TULIP_VERS%%.0.so -lib/tulip/glyph/libDiamond-%%TULIP_VERS%%.0.so -lib/tulip/glyph/libFontAwesomeIcon-%%TULIP_VERS%%.0.so -lib/tulip/glyph/libGlowSphere-%%TULIP_VERS%%.0.so -lib/tulip/glyph/libHexagone-%%TULIP_VERS%%.0.so -lib/tulip/glyph/libPentagone-%%TULIP_VERS%%.0.so -lib/tulip/glyph/libRing-%%TULIP_VERS%%.0.so -lib/tulip/glyph/libRoundedBox-%%TULIP_VERS%%.0.so -lib/tulip/glyph/libSphere-%%TULIP_VERS%%.0.so -lib/tulip/glyph/libSquare-%%TULIP_VERS%%.0.so -lib/tulip/glyph/libStar-%%TULIP_VERS%%.0.so -lib/tulip/glyph/libTriangle-%%TULIP_VERS%%.0.so -lib/tulip/glyph/libWindow-%%TULIP_VERS%%.0.so -lib/tulip/interactor/libFishEyeInteractor-%%TULIP_VERS%%.0.so -lib/tulip/interactor/libInteractorAddNodeEdge-%%TULIP_VERS%%.0.so -lib/tulip/interactor/libInteractorDeleteElement-%%TULIP_VERS%%.0.so -lib/tulip/interactor/libInteractorEditEdgeBends-%%TULIP_VERS%%.0.so -lib/tulip/interactor/libInteractorGetInformation-%%TULIP_VERS%%.0.so -lib/tulip/interactor/libInteractorNavigation-%%TULIP_VERS%%.0.so -lib/tulip/interactor/libInteractorRectangleZoom-%%TULIP_VERS%%.0.so -lib/tulip/interactor/libInteractorSelection-%%TULIP_VERS%%.0.so -lib/tulip/interactor/libInteractorSelectionModifier-%%TULIP_VERS%%.0.so -lib/tulip/interactor/libMouseLassoNodesSelector-%%TULIP_VERS%%.0.so -lib/tulip/interactor/libMouseMagnifyingGlass-%%TULIP_VERS%%.0.so -lib/tulip/interactor/libNeighborhoodHighlighter-%%TULIP_VERS%%.0.so -lib/tulip/interactor/libPathFinder-%%TULIP_VERS%%.0.so -lib/tulip/libAcyclic-%%TULIP_VERS%%.0.so -lib/tulip/libAdjacencyMatrixImport-%%TULIP_VERS%%.0.so -lib/tulip/libAutoSize-%%TULIP_VERS%%.0.so -lib/tulip/libBetweennessCentrality-%%TULIP_VERS%%.0.so -lib/tulip/libBiconnected-%%TULIP_VERS%%.0.so -lib/tulip/libBiconnectedComponent-%%TULIP_VERS%%.0.so -lib/tulip/libBubbleTree-%%TULIP_VERS%%.0.so -lib/tulip/libCircular-%%TULIP_VERS%%.0.so -lib/tulip/libClusterMetric-%%TULIP_VERS%%.0.so -lib/tulip/libColorMapping-%%TULIP_VERS%%.0.so -lib/tulip/libCompleteGraph-%%TULIP_VERS%%.0.so -lib/tulip/libCompleteTree-%%TULIP_VERS%%.0.so -lib/tulip/libConeTreeExtended-%%TULIP_VERS%%.0.so -lib/tulip/libConnected-%%TULIP_VERS%%.0.so -lib/tulip/libConnectedComponent-%%TULIP_VERS%%.0.so -lib/tulip/libConnectedComponentPacking-%%TULIP_VERS%%.0.so -lib/tulip/libConvolutionClustering-%%TULIP_VERS%%.0.so -lib/tulip/libCurveEdges-%%TULIP_VERS%%.0.so -lib/tulip/libDagLevelMetric-%%TULIP_VERS%%.0.so -lib/tulip/libDegreeMetric-%%TULIP_VERS%%.0.so -lib/tulip/libDelaunay-%%TULIP_VERS%%.0.so -lib/tulip/libDendrogram-%%TULIP_VERS%%.0.so -lib/tulip/libDepthMetric-%%TULIP_VERS%%.0.so -lib/tulip/libDotImport-%%TULIP_VERS%%.0.so -lib/tulip/libEccentricity-%%TULIP_VERS%%.0.so -lib/tulip/libEdgeBundling-%%TULIP_VERS%%.0.so -lib/tulip/libEmptyGraph-%%TULIP_VERS%%.0.so -lib/tulip/libEqualValueClustering-%%TULIP_VERS%%.0.so -lib/tulip/libFastOverlapRemoval-%%TULIP_VERS%%.0.so -lib/tulip/libFileSystem-%%TULIP_VERS%%.0.so -lib/tulip/libGEXFImport-%%TULIP_VERS%%.0.so -lib/tulip/libGMLExport-%%TULIP_VERS%%.0.so -lib/tulip/libGMLImport-%%TULIP_VERS%%.0.so -lib/tulip/libGemLayout-%%TULIP_VERS%%.0.so -lib/tulip/libGrid-%%TULIP_VERS%%.0.so -lib/tulip/libGrip-%%TULIP_VERS%%.0.so -lib/tulip/libHierarchicalClustering-%%TULIP_VERS%%.0.so -lib/tulip/libHierarchicalGraph-%%TULIP_VERS%%.0.so -lib/tulip/libIdMetric-%%TULIP_VERS%%.0.so -lib/tulip/libImportPajek-%%TULIP_VERS%%.0.so -lib/tulip/libImportUCINET-%%TULIP_VERS%%.0.so -lib/tulip/libImprovedWalker-%%TULIP_VERS%%.0.so -lib/tulip/libInducedSubGraphSelection-%%TULIP_VERS%%.0.so -lib/tulip/libKCores-%%TULIP_VERS%%.0.so -lib/tulip/libKruskal-%%TULIP_VERS%%.0.so -lib/tulip/libLeafMetric-%%TULIP_VERS%%.0.so -lib/tulip/libLinLog-%%TULIP_VERS%%.0.so -lib/tulip/libLinkCommunities-%%TULIP_VERS%%.0.so -lib/tulip/libLoopSelection-%%TULIP_VERS%%.0.so -lib/tulip/libLouvainClustering-%%TULIP_VERS%%.0.so -lib/tulip/libMCLClustering-%%TULIP_VERS%%.0.so -lib/tulip/libMetricSizeMapping-%%TULIP_VERS%%.0.so -lib/tulip/libMixedModel-%%TULIP_VERS%%.0.so -lib/tulip/libMultipleSelection-%%TULIP_VERS%%.0.so -lib/tulip/libNodeMetric-%%TULIP_VERS%%.0.so -lib/tulip/libOGDFBalloon-%%TULIP_VERS%%.0.so -lib/tulip/libOGDFBertaultLayout-%%TULIP_VERS%%.0.so -lib/tulip/libOGDFCircular-%%TULIP_VERS%%.0.so -lib/tulip/libOGDFDavidsonHarel-%%TULIP_VERS%%.0.so -lib/tulip/libOGDFDominance-%%TULIP_VERS%%.0.so -lib/tulip/libOGDFFastMultipoleEmbedder-%%TULIP_VERS%%.0.so -lib/tulip/libOGDFFastMultipoleMultilevelEmbedder-%%TULIP_VERS%%.0.so -lib/tulip/libOGDFFm3-%%TULIP_VERS%%.0.so -lib/tulip/libOGDFFrutchermanReingold-%%TULIP_VERS%%.0.so -lib/tulip/libOGDFGemFrick-%%TULIP_VERS%%.0.so -lib/tulip/libOGDFKamadaKawai-%%TULIP_VERS%%.0.so -lib/tulip/libOGDFMMMExampleFastLayout-%%TULIP_VERS%%.0.so -lib/tulip/libOGDFMMMExampleNiceLayout-%%TULIP_VERS%%.0.so -lib/tulip/libOGDFMMMExampleNoTwistLayout-%%TULIP_VERS%%.0.so -lib/tulip/libOGDFPivotMDS-%%TULIP_VERS%%.0.so -lib/tulip/libOGDFPlanarizationGrid-%%TULIP_VERS%%.0.so -lib/tulip/libOGDFPlanarizationLayout-%%TULIP_VERS%%.0.so -lib/tulip/libOGDFStressMajorization-%%TULIP_VERS%%.0.so -lib/tulip/libOGDFSugiyama-%%TULIP_VERS%%.0.so -lib/tulip/libOGDFTileToRowsPacking-%%TULIP_VERS%%.0.so -lib/tulip/libOGDFTree-%%TULIP_VERS%%.0.so -lib/tulip/libOGDFUpwardPlanarization-%%TULIP_VERS%%.0.so -lib/tulip/libOGDFVisibility-%%TULIP_VERS%%.0.so -lib/tulip/libOuterplanar-%%TULIP_VERS%%.0.so -lib/tulip/libPageRank-%%TULIP_VERS%%.0.so -lib/tulip/libPathLengthMetric-%%TULIP_VERS%%.0.so -lib/tulip/libPerfectLayout-%%TULIP_VERS%%.0.so -lib/tulip/libPlanarGraph-%%TULIP_VERS%%.0.so -lib/tulip/libPlanarity-%%TULIP_VERS%%.0.so -lib/tulip/libPolyominoPacking-%%TULIP_VERS%%.0.so -lib/tulip/libQuotientClustering-%%TULIP_VERS%%.0.so -lib/tulip/libRandom-%%TULIP_VERS%%.0.so -lib/tulip/libRandomGraph-%%TULIP_VERS%%.0.so -lib/tulip/libRandomMetric-%%TULIP_VERS%%.0.so -lib/tulip/libRandomSimpleGraph-%%TULIP_VERS%%.0.so -lib/tulip/libRandomTree-%%TULIP_VERS%%.0.so -lib/tulip/libRandomTreeGeneral-%%TULIP_VERS%%.0.so -lib/tulip/libReachableSubGraphSelection-%%TULIP_VERS%%.0.so -lib/tulip/libReverseEdges-%%TULIP_VERS%%.0.so -lib/tulip/libSVGExport-%%TULIP_VERS%%.0.so -lib/tulip/libSimple-%%TULIP_VERS%%.0.so -lib/tulip/libSmallWorldGraph-%%TULIP_VERS%%.0.so -lib/tulip/libSpanningDagSelection-%%TULIP_VERS%%.0.so -lib/tulip/libSpanningTreeSelection-%%TULIP_VERS%%.0.so -lib/tulip/libSquarifiedTreeMap-%%TULIP_VERS%%.0.so -lib/tulip/libStrahlerMetric-%%TULIP_VERS%%.0.so -lib/tulip/libStrengthClustering-%%TULIP_VERS%%.0.so -lib/tulip/libStrengthMetric-%%TULIP_VERS%%.0.so -lib/tulip/libStrongComponent-%%TULIP_VERS%%.0.so -lib/tulip/libToLabels-%%TULIP_VERS%%.0.so -lib/tulip/libTree-%%TULIP_VERS%%.0.so -lib/tulip/libTreeLeaf-%%TULIP_VERS%%.0.so -lib/tulip/libTreeRadial-%%TULIP_VERS%%.0.so -lib/tulip/libTreeReingoldAndTilforExtended-%%TULIP_VERS%%.0.so -lib/tulip/libTriconnected-%%TULIP_VERS%%.0.so -lib/tulip/libTutte-%%TULIP_VERS%%.0.so -lib/tulip/libVoronoi-%%TULIP_VERS%%.0.so -lib/tulip/libWebImport-%%TULIP_VERS%%.0.so -lib/tulip/libWelshPowell-%%TULIP_VERS%%.0.so -lib/tulip/perspective/libGraphPerspective-%%TULIP_VERS%%.0.so -lib/tulip/view/libGeographicView-%%TULIP_VERS%%.0.so -lib/tulip/view/libHistogramView-%%TULIP_VERS%%.0.so -lib/tulip/view/libMatrixView-%%TULIP_VERS%%.0.so -lib/tulip/view/libParallelCoordinatesView-%%TULIP_VERS%%.0.so -lib/tulip/view/libPixelOrientedView-%%TULIP_VERS%%.0.so -lib/tulip/view/libPythonScriptView-%%TULIP_VERS%%.0.so -lib/tulip/view/libSOMView-%%TULIP_VERS%%.0.so -lib/tulip/view/libScatterPlot2DView-%%TULIP_VERS%%.0.so -lib/tulip/view/libTableView-%%TULIP_VERS%%.0.so +lib/tulip/glyph/libBillboard-%%TULIP_VERSION%%.so +lib/tulip/glyph/libChristmasTree-%%TULIP_VERSION%%.so +lib/tulip/glyph/libCircle-%%TULIP_VERSION%%.so +lib/tulip/glyph/libCone-%%TULIP_VERSION%%.so +lib/tulip/glyph/libCross-%%TULIP_VERSION%%.so +lib/tulip/glyph/libCube-%%TULIP_VERSION%%.so +lib/tulip/glyph/libCubeOutlinedTransparent-%%TULIP_VERSION%%.so +lib/tulip/glyph/libCylinder-%%TULIP_VERSION%%.so +lib/tulip/glyph/libDiamond-%%TULIP_VERSION%%.so +lib/tulip/glyph/libFontAwesomeIcon-%%TULIP_VERSION%%.so +lib/tulip/glyph/libGlowSphere-%%TULIP_VERSION%%.so +lib/tulip/glyph/libHexagone-%%TULIP_VERSION%%.so +lib/tulip/glyph/libPentagone-%%TULIP_VERSION%%.so +lib/tulip/glyph/libRing-%%TULIP_VERSION%%.so +lib/tulip/glyph/libRoundedBox-%%TULIP_VERSION%%.so +lib/tulip/glyph/libSphere-%%TULIP_VERSION%%.so +lib/tulip/glyph/libSquare-%%TULIP_VERSION%%.so +lib/tulip/glyph/libStar-%%TULIP_VERSION%%.so +lib/tulip/glyph/libTriangle-%%TULIP_VERSION%%.so +lib/tulip/glyph/libWindow-%%TULIP_VERSION%%.so +lib/tulip/interactor/libFishEyeInteractor-%%TULIP_VERSION%%.so +lib/tulip/interactor/libInteractorAddNodeEdge-%%TULIP_VERSION%%.so +lib/tulip/interactor/libInteractorDeleteElement-%%TULIP_VERSION%%.so +lib/tulip/interactor/libInteractorEditEdgeBends-%%TULIP_VERSION%%.so +lib/tulip/interactor/libInteractorGetInformation-%%TULIP_VERSION%%.so +lib/tulip/interactor/libInteractorNavigation-%%TULIP_VERSION%%.so +lib/tulip/interactor/libInteractorRectangleZoom-%%TULIP_VERSION%%.so +lib/tulip/interactor/libInteractorSelection-%%TULIP_VERSION%%.so +lib/tulip/interactor/libInteractorSelectionModifier-%%TULIP_VERSION%%.so +lib/tulip/interactor/libMouseLassoNodesSelector-%%TULIP_VERSION%%.so +lib/tulip/interactor/libMouseMagnifyingGlass-%%TULIP_VERSION%%.so +lib/tulip/interactor/libNeighborhoodHighlighter-%%TULIP_VERSION%%.so +lib/tulip/interactor/libPathFinder-%%TULIP_VERSION%%.so +lib/tulip/libAcyclic-%%TULIP_VERSION%%.so +lib/tulip/libAdjacencyMatrixImport-%%TULIP_VERSION%%.so +lib/tulip/libAutoSize-%%TULIP_VERSION%%.so +lib/tulip/libBetweennessCentrality-%%TULIP_VERSION%%.so +lib/tulip/libBiconnected-%%TULIP_VERSION%%.so +lib/tulip/libBiconnectedComponent-%%TULIP_VERSION%%.so +lib/tulip/libBubbleTree-%%TULIP_VERSION%%.so +lib/tulip/libCircular-%%TULIP_VERSION%%.so +lib/tulip/libClusterMetric-%%TULIP_VERSION%%.so +lib/tulip/libColorMapping-%%TULIP_VERSION%%.so +lib/tulip/libCompleteGraph-%%TULIP_VERSION%%.so +lib/tulip/libCompleteTree-%%TULIP_VERSION%%.so +lib/tulip/libConeTreeExtended-%%TULIP_VERSION%%.so +lib/tulip/libConnected-%%TULIP_VERSION%%.so +lib/tulip/libConnectedComponent-%%TULIP_VERSION%%.so +lib/tulip/libConnectedComponentPacking-%%TULIP_VERSION%%.so +lib/tulip/libConvolutionClustering-%%TULIP_VERSION%%.so +lib/tulip/libCurveEdges-%%TULIP_VERSION%%.so +lib/tulip/libDagLevelMetric-%%TULIP_VERSION%%.so +lib/tulip/libDegreeMetric-%%TULIP_VERSION%%.so +lib/tulip/libDelaunay-%%TULIP_VERSION%%.so +lib/tulip/libDendrogram-%%TULIP_VERSION%%.so +lib/tulip/libDepthMetric-%%TULIP_VERSION%%.so +lib/tulip/libDotImport-%%TULIP_VERSION%%.so +lib/tulip/libEccentricity-%%TULIP_VERSION%%.so +lib/tulip/libEdgeBundling-%%TULIP_VERSION%%.so +lib/tulip/libEmptyGraph-%%TULIP_VERSION%%.so +lib/tulip/libEqualValueClustering-%%TULIP_VERSION%%.so +lib/tulip/libFastOverlapRemoval-%%TULIP_VERSION%%.so +lib/tulip/libFileSystem-%%TULIP_VERSION%%.so +lib/tulip/libGEXFImport-%%TULIP_VERSION%%.so +lib/tulip/libGMLExport-%%TULIP_VERSION%%.so +lib/tulip/libGMLImport-%%TULIP_VERSION%%.so +lib/tulip/libGemLayout-%%TULIP_VERSION%%.so +lib/tulip/libGrid-%%TULIP_VERSION%%.so +lib/tulip/libGrip-%%TULIP_VERSION%%.so +lib/tulip/libHierarchicalClustering-%%TULIP_VERSION%%.so +lib/tulip/libHierarchicalGraph-%%TULIP_VERSION%%.so +lib/tulip/libIdMetric-%%TULIP_VERSION%%.so +lib/tulip/libImportPajek-%%TULIP_VERSION%%.so +lib/tulip/libImportUCINET-%%TULIP_VERSION%%.so +lib/tulip/libImprovedWalker-%%TULIP_VERSION%%.so +lib/tulip/libInducedSubGraphSelection-%%TULIP_VERSION%%.so +lib/tulip/libKCores-%%TULIP_VERSION%%.so +lib/tulip/libKruskal-%%TULIP_VERSION%%.so +lib/tulip/libLeafMetric-%%TULIP_VERSION%%.so +lib/tulip/libLinLog-%%TULIP_VERSION%%.so +lib/tulip/libLinkCommunities-%%TULIP_VERSION%%.so +lib/tulip/libLoopSelection-%%TULIP_VERSION%%.so +lib/tulip/libLouvainClustering-%%TULIP_VERSION%%.so +lib/tulip/libMCLClustering-%%TULIP_VERSION%%.so +lib/tulip/libMetricSizeMapping-%%TULIP_VERSION%%.so +lib/tulip/libMixedModel-%%TULIP_VERSION%%.so +lib/tulip/libMultipleSelection-%%TULIP_VERSION%%.so +lib/tulip/libNodeMetric-%%TULIP_VERSION%%.so +lib/tulip/libOGDFBalloon-%%TULIP_VERSION%%.so +lib/tulip/libOGDFBertaultLayout-%%TULIP_VERSION%%.so +lib/tulip/libOGDFCircular-%%TULIP_VERSION%%.so +lib/tulip/libOGDFDavidsonHarel-%%TULIP_VERSION%%.so +lib/tulip/libOGDFDominance-%%TULIP_VERSION%%.so +lib/tulip/libOGDFFastMultipoleEmbedder-%%TULIP_VERSION%%.so +lib/tulip/libOGDFFastMultipoleMultilevelEmbedder-%%TULIP_VERSION%%.so +lib/tulip/libOGDFFm3-%%TULIP_VERSION%%.so +lib/tulip/libOGDFFrutchermanReingold-%%TULIP_VERSION%%.so +lib/tulip/libOGDFGemFrick-%%TULIP_VERSION%%.so +lib/tulip/libOGDFKamadaKawai-%%TULIP_VERSION%%.so +lib/tulip/libOGDFMMMExampleFastLayout-%%TULIP_VERSION%%.so +lib/tulip/libOGDFMMMExampleNiceLayout-%%TULIP_VERSION%%.so +lib/tulip/libOGDFMMMExampleNoTwistLayout-%%TULIP_VERSION%%.so +lib/tulip/libOGDFPivotMDS-%%TULIP_VERSION%%.so +lib/tulip/libOGDFPlanarizationGrid-%%TULIP_VERSION%%.so +lib/tulip/libOGDFPlanarizationLayout-%%TULIP_VERSION%%.so +lib/tulip/libOGDFStressMajorization-%%TULIP_VERSION%%.so +lib/tulip/libOGDFSugiyama-%%TULIP_VERSION%%.so +lib/tulip/libOGDFTileToRowsPacking-%%TULIP_VERSION%%.so +lib/tulip/libOGDFTree-%%TULIP_VERSION%%.so +lib/tulip/libOGDFUpwardPlanarization-%%TULIP_VERSION%%.so +lib/tulip/libOGDFVisibility-%%TULIP_VERSION%%.so +lib/tulip/libOuterplanar-%%TULIP_VERSION%%.so +lib/tulip/libPageRank-%%TULIP_VERSION%%.so +lib/tulip/libPathLengthMetric-%%TULIP_VERSION%%.so +lib/tulip/libPerfectLayout-%%TULIP_VERSION%%.so +lib/tulip/libPlanarGraph-%%TULIP_VERSION%%.so +lib/tulip/libPlanarity-%%TULIP_VERSION%%.so +lib/tulip/libPolyominoPacking-%%TULIP_VERSION%%.so +lib/tulip/libQuotientClustering-%%TULIP_VERSION%%.so +lib/tulip/libRandom-%%TULIP_VERSION%%.so +lib/tulip/libRandomGraph-%%TULIP_VERSION%%.so +lib/tulip/libRandomMetric-%%TULIP_VERSION%%.so +lib/tulip/libRandomSimpleGraph-%%TULIP_VERSION%%.so +lib/tulip/libRandomTree-%%TULIP_VERSION%%.so +lib/tulip/libRandomTreeGeneral-%%TULIP_VERSION%%.so +lib/tulip/libReachableSubGraphSelection-%%TULIP_VERSION%%.so +lib/tulip/libReverseEdges-%%TULIP_VERSION%%.so +lib/tulip/libSVGExport-%%TULIP_VERSION%%.so +lib/tulip/libSimple-%%TULIP_VERSION%%.so +lib/tulip/libSmallWorldGraph-%%TULIP_VERSION%%.so +lib/tulip/libSpanningDagSelection-%%TULIP_VERSION%%.so +lib/tulip/libSpanningTreeSelection-%%TULIP_VERSION%%.so +lib/tulip/libSquarifiedTreeMap-%%TULIP_VERSION%%.so +lib/tulip/libStrahlerMetric-%%TULIP_VERSION%%.so +lib/tulip/libStrengthClustering-%%TULIP_VERSION%%.so +lib/tulip/libStrengthMetric-%%TULIP_VERSION%%.so +lib/tulip/libStrongComponent-%%TULIP_VERSION%%.so +lib/tulip/libToLabels-%%TULIP_VERSION%%.so +lib/tulip/libTree-%%TULIP_VERSION%%.so +lib/tulip/libTreeLeaf-%%TULIP_VERSION%%.so +lib/tulip/libTreeRadial-%%TULIP_VERSION%%.so +lib/tulip/libTreeReingoldAndTilforExtended-%%TULIP_VERSION%%.so +lib/tulip/libTriconnected-%%TULIP_VERSION%%.so +lib/tulip/libTutte-%%TULIP_VERSION%%.so +lib/tulip/libVoronoi-%%TULIP_VERSION%%.so +lib/tulip/libWebImport-%%TULIP_VERSION%%.so +lib/tulip/libWelshPowell-%%TULIP_VERSION%%.so +lib/tulip/perspective/libGraphPerspective-%%TULIP_VERSION%%.so +lib/tulip/view/libGeographicView-%%TULIP_VERSION%%.so +lib/tulip/view/libHistogramView-%%TULIP_VERSION%%.so +lib/tulip/view/libMatrixView-%%TULIP_VERSION%%.so +lib/tulip/view/libParallelCoordinatesView-%%TULIP_VERSION%%.so +lib/tulip/view/libPixelOrientedView-%%TULIP_VERSION%%.so +lib/tulip/view/libPythonScriptView-%%TULIP_VERSION%%.so +lib/tulip/view/libSOMView-%%TULIP_VERSION%%.so +lib/tulip/view/libScatterPlot2DView-%%TULIP_VERSION%%.so +lib/tulip/view/libTableView-%%TULIP_VERSION%%.so share/pixmaps/tulip.png %%DATADIR%%/FindGLEW.cmake %%DATADIR%%/FindQtX.cmake @@ -788,6 +790,8 @@ share/pixmaps/tulip.png %%DATADIR%%/bitmaps/edgeSpring.png %%DATADIR%%/bitmaps/font.ttf %%DATADIR%%/bitmaps/fontawesome-webfont.ttf +%%DATADIR%%/bitmaps/fontawesome-webfont.woff +%%DATADIR%%/bitmaps/fontawesome-webfont.woff2 %%DATADIR%%/bitmaps/fontb.ttf %%DATADIR%%/bitmaps/fonts/DejaVuMono/DejaVuMono.ttf %%DATADIR%%/bitmaps/fonts/DejaVuMono/DejaVuMono_Bold.ttf From owner-svn-ports-all@freebsd.org Sat Jul 9 00:10:56 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 23234B8219A; Sat, 9 Jul 2016 00:10: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 mx1.freebsd.org (Postfix) with ESMTPS id D930D1208; Sat, 9 Jul 2016 00:10:55 +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 u690AtCY034946; Sat, 9 Jul 2016 00:10:55 GMT (envelope-from tota@FreeBSD.org) Received: (from tota@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u690Asjv034942; Sat, 9 Jul 2016 00:10:54 GMT (envelope-from tota@FreeBSD.org) Message-Id: <201607090010.u690Asjv034942@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tota set sender to tota@FreeBSD.org using -f From: TAKATSU Tomonari Date: Sat, 9 Jul 2016 00:10:54 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418251 - in head/devel: . rubygem-hamster X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 09 Jul 2016 00:10:56 -0000 Author: tota Date: Sat Jul 9 00:10:54 2016 New Revision: 418251 URL: https://svnweb.freebsd.org/changeset/ports/418251 Log: - Add new port: devel/rubygem-hamster Efficient, immutable, and thread-safe collection classes for Ruby. Hamster provides 6 Persistent Data Structures: Hash, Vector, Set, SortedSet, List, and Deque (which works as an immutable queue or stack). WWW: http://rubygems.org/gems/hamster Added: head/devel/rubygem-hamster/ head/devel/rubygem-hamster/Makefile (contents, props changed) head/devel/rubygem-hamster/distinfo (contents, props changed) head/devel/rubygem-hamster/pkg-descr (contents, props changed) Modified: head/devel/Makefile (contents, props changed) Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Sat Jul 9 00:00:18 2016 (r418250) +++ head/devel/Makefile Sat Jul 9 00:10:54 2016 (r418251) @@ -4948,6 +4948,7 @@ SUBDIR += rubygem-grit SUBDIR += rubygem-guess_html_encoding SUBDIR += rubygem-gyoku + SUBDIR += rubygem-hamster SUBDIR += rubygem-hashdiff SUBDIR += rubygem-hashery SUBDIR += rubygem-hashie Added: head/devel/rubygem-hamster/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/rubygem-hamster/Makefile Sat Jul 9 00:10:54 2016 (r418251) @@ -0,0 +1,20 @@ +# Created by: TAKATSU Tomonari +# $FreeBSD$ + +PORTNAME= hamster +PORTVERSION= 3.0.0 +CATEGORIES= devel rubygems +MASTER_SITES= RG + +MAINTAINER= ruby@FreeBSD.org +COMMENT= Efficient, immutable, thread-safe collection classes for Ruby + +LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE + +RUN_DEPENDS= rubygem-concurrent-ruby>=1.0:devel/rubygem-concurrent-ruby + +USE_RUBY= yes +USES= gem + +.include Added: head/devel/rubygem-hamster/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/rubygem-hamster/distinfo Sat Jul 9 00:10:54 2016 (r418251) @@ -0,0 +1,3 @@ +TIMESTAMP = 1467976660 +SHA256 (rubygem/hamster-3.0.0.gem) = 5951e3a3ffd15ba854a976ac36ebae9469966f726034ffed0dccdb6d12d434d8 +SIZE (rubygem/hamster-3.0.0.gem) = 129024 Added: head/devel/rubygem-hamster/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/rubygem-hamster/pkg-descr Sat Jul 9 00:10:54 2016 (r418251) @@ -0,0 +1,7 @@ +Efficient, immutable, and thread-safe collection classes for Ruby. + +Hamster provides 6 Persistent Data Structures: Hash, Vector, Set, +SortedSet, List, and Deque (which works as an immutable queue or +stack). + +WWW: http://rubygems.org/gems/hamster From owner-svn-ports-all@freebsd.org Sat Jul 9 00:41:59 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 1DC33B82840; Sat, 9 Jul 2016 00:41:59 +0000 (UTC) (envelope-from cy@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id E26EC11BD; Sat, 9 Jul 2016 00:41:58 +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 u690fwMA049242; Sat, 9 Jul 2016 00:41:58 GMT (envelope-from cy@FreeBSD.org) Received: (from cy@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u690fwfK049240; Sat, 9 Jul 2016 00:41:58 GMT (envelope-from cy@FreeBSD.org) Message-Id: <201607090041.u690fwfK049240@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: cy set sender to cy@FreeBSD.org using -f From: Cy Schubert Date: Sat, 9 Jul 2016 00:41:58 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418252 - in head/sysutils/lsof: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 09 Jul 2016 00:41:59 -0000 Author: cy Date: Sat Jul 9 00:41:57 2016 New Revision: 418252 URL: https://svnweb.freebsd.org/changeset/ports/418252 Log: Fix build under 12.0-CURRENT. Added: head/sysutils/lsof/files/patch-Configure (contents, props changed) Modified: head/sysutils/lsof/Makefile Modified: head/sysutils/lsof/Makefile ============================================================================== --- head/sysutils/lsof/Makefile Sat Jul 9 00:10:54 2016 (r418251) +++ head/sysutils/lsof/Makefile Sat Jul 9 00:41:57 2016 (r418252) @@ -3,6 +3,7 @@ PORTNAME= lsof DISTVERSION= 4.90B +PORTREVISION= 1 PORTEPOCH= 8 CATEGORIES= sysutils MASTER_SITES= http://ftp.cerias.purdue.edu/pub/tools/unix/sysutils/lsof/ \ Added: head/sysutils/lsof/files/patch-Configure ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/lsof/files/patch-Configure Sat Jul 9 00:41:57 2016 (r418252) @@ -0,0 +1,13 @@ +--- Configure.orig 2016-01-05 10:31:36.000000000 -0800 ++++ Configure 2016-07-08 17:39:09.137355000 -0700 +@@ -1620,6 +1620,10 @@ + LSOF_TSTBIGF=" " + LSOF_VERS=11000 + ;; ++ 12*) ++ LSOF_TSTBIGF=" " ++ LSOF_VERS=12000 ++ ;; + *) + echo Unknown FreeBSD release: `uname -r` + rm -f $LSOF_HLP From owner-svn-ports-all@freebsd.org Sat Jul 9 01:09:45 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 8C7EFB82FC5; Sat, 9 Jul 2016 01:09:45 +0000 (UTC) (envelope-from feld@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 4463D1ECF; Sat, 9 Jul 2016 01:09:45 +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 u6919iIB056733; Sat, 9 Jul 2016 01:09:44 GMT (envelope-from feld@FreeBSD.org) Received: (from feld@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u6919ioK056730; Sat, 9 Jul 2016 01:09:44 GMT (envelope-from feld@FreeBSD.org) Message-Id: <201607090109.u6919ioK056730@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: feld set sender to feld@FreeBSD.org using -f From: Mark Felder Date: Sat, 9 Jul 2016 01:09:44 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418253 - head/net-p2p/sonarr X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 09 Jul 2016 01:09:45 -0000 Author: feld Date: Sat Jul 9 01:09:44 2016 New Revision: 418253 URL: https://svnweb.freebsd.org/changeset/ports/418253 Log: net-p2p/sonarr: Update to 2.0.0.4230 Changelog: https://github.com/Sonarr/Sonarr/releases/tag/v2.0.0.4230 Modified: head/net-p2p/sonarr/Makefile head/net-p2p/sonarr/distinfo head/net-p2p/sonarr/pkg-plist Modified: head/net-p2p/sonarr/Makefile ============================================================================== --- head/net-p2p/sonarr/Makefile Sat Jul 9 00:41:57 2016 (r418252) +++ head/net-p2p/sonarr/Makefile Sat Jul 9 01:09:44 2016 (r418253) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= sonarr -PORTVERSION= 2.0.0.4146 +PORTVERSION= 2.0.0.4230 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 Sat Jul 9 00:41:57 2016 (r418252) +++ head/net-p2p/sonarr/distinfo Sat Jul 9 01:09:44 2016 (r418253) @@ -1,2 +1,3 @@ -SHA256 (NzbDrone.master.2.0.0.4146.mono.tar.gz) = fe08e906cca5f869bc85c663d815d570049a45d8d6c283e5af89148ad6f78643 -SIZE (NzbDrone.master.2.0.0.4146.mono.tar.gz) = 6370546 +TIMESTAMP = 1468025509 +SHA256 (NzbDrone.master.2.0.0.4230.mono.tar.gz) = a696190f046b5aeb56f9dce2d5a50f66307ceafe97dd0f85b29ce20bcb06dd9a +SIZE (NzbDrone.master.2.0.0.4230.mono.tar.gz) = 6428196 Modified: head/net-p2p/sonarr/pkg-plist ============================================================================== --- head/net-p2p/sonarr/pkg-plist Sat Jul 9 00:41:57 2016 (r418252) +++ head/net-p2p/sonarr/pkg-plist Sat Jul 9 01:09:44 2016 (r418253) @@ -63,15 +63,19 @@ %%DATADIR%%/NzbDrone.Update/NzbDrone.Update.exe %%DATADIR%%/NzbDrone.Update/NzbDrone.Update.exe.config %%DATADIR%%/NzbDrone.Update/NzbDrone.Update.exe.mdb +%%DATADIR%%/NzbDrone.Update/Org.Mentalis.dll +%%DATADIR%%/NzbDrone.Update/SocksWebProxy.dll %%DATADIR%%/NzbDrone.exe %%DATADIR%%/NzbDrone.exe.config %%DATADIR%%/NzbDrone.exe.mdb %%DATADIR%%/OAuth.dll %%DATADIR%%/OAuth.dll.mdb %%DATADIR%%/Omu.ValueInjecter.dll +%%DATADIR%%/Org.Mentalis.dll %%DATADIR%%/Owin.dll %%DATADIR%%/Prowlin.dll %%DATADIR%%/RestSharp.dll +%%DATADIR%%/SocksWebProxy.dll %%DATADIR%%/System.Data.SQLite.dll %%DATADIR%%/System.Data.SQLite.xml %%DATADIR%%/UI/Content/FontAwesome/FontAwesome.otf From owner-svn-ports-all@freebsd.org Sat Jul 9 03:34:28 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 92117B8325C; Sat, 9 Jul 2016 03:34:28 +0000 (UTC) (envelope-from pi@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 5CC46160C; Sat, 9 Jul 2016 03:34:28 +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 u693YRm8012433; Sat, 9 Jul 2016 03:34:27 GMT (envelope-from pi@FreeBSD.org) Received: (from pi@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u693YRUG012429; Sat, 9 Jul 2016 03:34:27 GMT (envelope-from pi@FreeBSD.org) Message-Id: <201607090334.u693YRUG012429@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pi set sender to pi@FreeBSD.org using -f From: Kurt Jaeger Date: Sat, 9 Jul 2016 03:34:27 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418254 - in head/multimedia/assimp: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 09 Jul 2016 03:34:28 -0000 Author: pi Date: Sat Jul 9 03:34:27 2016 New Revision: 418254 URL: https://svnweb.freebsd.org/changeset/ports/418254 Log: multimedia/assimp: 3.2 -> 3.3.1 PR: 210876 Changes: https://github.com/assimp/assimp/releases Submitted by: lightside@gmx.com Approved by: Yuri Victorovich (maintainer) Deleted: head/multimedia/assimp/files/ Modified: head/multimedia/assimp/Makefile head/multimedia/assimp/distinfo head/multimedia/assimp/pkg-descr head/multimedia/assimp/pkg-plist Modified: head/multimedia/assimp/Makefile ============================================================================== --- head/multimedia/assimp/Makefile Sat Jul 9 01:09:44 2016 (r418253) +++ head/multimedia/assimp/Makefile Sat Jul 9 03:34:27 2016 (r418254) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= assimp -PORTVERSION= 3.2 +PORTVERSION= 3.3.1 DISTVERSIONPREFIX= v CATEGORIES= multimedia @@ -14,23 +14,18 @@ LICENSE_FILE= ${WRKSRC}/LICENSE BROKEN_powerpc64= Does not build -USES= cmake pkgconfig +USES= cmake compiler:c++11-lib pkgconfig USE_GITHUB= yes USE_LDCONFIG= yes # CMAKE_ARGS instructs cmake to skip runtime path removal during install CMAKE_ARGS+= -DCMAKE_SKIP_RPATH:BOOL=ON -DASSIMP_BUILD_TESTS:BOOL=OFF -OPTIONS_DEFINE= BOOST -OPTIONS_DEFAULT= BOOST -BOOST_LIB_DEPENDS= libboost_filesystem.so:devel/boost-libs -BOOST_CMAKE_ON= -DASSIMP_ENABLE_BOOST_WORKAROUND:BOOL=OFF - -.include - -.if ${OPSYS} == FreeBSD && ${OSVERSION} < 1000054 -# GCC 4.2 causes compiler warnings -USE_GCC= yes +.include + +.if ${COMPILER_TYPE} == gcc +# GCC C++11 support is broken on FreeBSD (see PR 193528 for details) +CXXFLAGS+= -D_GLIBCXX_USE_C99 .endif post-patch: .SILENT @@ -40,4 +35,4 @@ post-patch: .SILENT s|$${ASSIMP_LIB_INSTALL_DIR}/pkgconfig|libdata/pkgconfig|' \ ${WRKSRC}/CMakeLists.txt -.include +.include Modified: head/multimedia/assimp/distinfo ============================================================================== --- head/multimedia/assimp/distinfo Sat Jul 9 01:09:44 2016 (r418253) +++ head/multimedia/assimp/distinfo Sat Jul 9 03:34:27 2016 (r418254) @@ -1,2 +1,3 @@ -SHA256 (assimp-assimp-v3.2_GH0.tar.gz) = 187f825c563e84b1b17527a4da0351aa3d575dfd696a9d204ae4bb19ee7df94a -SIZE (assimp-assimp-v3.2_GH0.tar.gz) = 33756081 +TIMESTAMP = 1467998991 +SHA256 (assimp-assimp-v3.3.1_GH0.tar.gz) = d385c3f90876241343f09e45f4e5033a6a05861b971c63d1f6d512371ffdc7bf +SIZE (assimp-assimp-v3.3.1_GH0.tar.gz) = 36428380 Modified: head/multimedia/assimp/pkg-descr ============================================================================== --- head/multimedia/assimp/pkg-descr Sat Jul 9 01:09:44 2016 (r418253) +++ head/multimedia/assimp/pkg-descr Sat Jul 9 03:34:27 2016 (r418254) @@ -3,4 +3,4 @@ library to import various well-known 3D The most recent version also knows how to export 3d files and is therefore suitable as general-purpose 3D model converter. See the feature list. -WWW: http://assimp.sourceforge.net +WWW: https://github.com/assimp/assimp Modified: head/multimedia/assimp/pkg-plist ============================================================================== --- head/multimedia/assimp/pkg-plist Sat Jul 9 01:09:44 2016 (r418253) +++ head/multimedia/assimp/pkg-plist Sat Jul 9 03:34:27 2016 (r418254) @@ -42,9 +42,9 @@ include/assimp/vector2.inl include/assimp/vector3.h include/assimp/vector3.inl include/assimp/version.h -lib/cmake/assimp-3.2/assimp-config-version.cmake -lib/cmake/assimp-3.2/assimp-config.cmake +lib/cmake/assimp-3.3/assimp-config-version.cmake +lib/cmake/assimp-3.3/assimp-config.cmake lib/libassimp.so lib/libassimp.so.3 -lib/libassimp.so.3.2.0 +lib/libassimp.so.3.3.1 libdata/pkgconfig/assimp.pc From owner-svn-ports-all@freebsd.org Sat Jul 9 03:43:16 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id BCCDCB83457; Sat, 9 Jul 2016 03:43:16 +0000 (UTC) (envelope-from pi@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 983211A71; Sat, 9 Jul 2016 03:43:16 +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 u693hFj4016121; Sat, 9 Jul 2016 03:43:15 GMT (envelope-from pi@FreeBSD.org) Received: (from pi@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u693hFNT016117; Sat, 9 Jul 2016 03:43:15 GMT (envelope-from pi@FreeBSD.org) Message-Id: <201607090343.u693hFNT016117@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pi set sender to pi@FreeBSD.org using -f From: Kurt Jaeger Date: Sat, 9 Jul 2016 03:43:15 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418255 - in head/chinese/opencc: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 09 Jul 2016 03:43:16 -0000 Author: pi Date: Sat Jul 9 03:43:15 2016 New Revision: 418255 URL: https://svnweb.freebsd.org/changeset/ports/418255 Log: chinese/opencc: 0.4.3 -> 1.0.4 PR: 210763 Changes: https://github.com/BYVoid/OpenCC/blob/master/NEWS.md Submitted by: Iblis Lin Approved by: lichray@gmail.com (maintainer) Deleted: head/chinese/opencc/files/patch-doc_CMakeLists.txt head/chinese/opencc/files/patch-src_tools_CMakeLists.txt head/chinese/opencc/files/patch-src_utils.c Modified: head/chinese/opencc/Makefile head/chinese/opencc/distinfo head/chinese/opencc/files/patch-CMakeLists.txt head/chinese/opencc/pkg-plist Modified: head/chinese/opencc/Makefile ============================================================================== --- head/chinese/opencc/Makefile Sat Jul 9 03:34:27 2016 (r418254) +++ head/chinese/opencc/Makefile Sat Jul 9 03:43:15 2016 (r418255) @@ -2,27 +2,32 @@ # $FreeBSD$ PORTNAME= opencc -PORTVERSION= 0.4.3 +PORTVERSION= 1.0.4 +DISTVERSIONPREFIX= ver. CATEGORIES= chinese converters -MASTER_SITES= GOOGLE_CODE +MASTER_SITES= GITHUB MAINTAINER= lichray@gmail.com COMMENT= Open Chinese Convert library and utilities LICENSE= APACHE20 -USES= cmake +USE_GITHUB= yes +GH_ACCOUNT= BYVoid +GH_PROJECT= OpenCC + +USES= cmake compiler:c++11-lib python:build USE_LDCONFIG= yes -OPTIONS_DEFINE= NLS +OPTIONS_DEFINE= TESTS -NLS_USES= gettext -NLS_CMAKE_ON= -DENABLE_GETTEXT=On +TESTS_DESC= Build the unit testing +TESTS_CMAKE_ON= -DENABLE_GTEST=ON -OPTIONS_SUB= yes +TEST_TARGET= test post-patch: - @${REINPLACE_CMD} -e 's@/usr/local@${LOCALBASE}@g' \ - ${WRKSRC}/CMakeLists.txt + @${REINPLACE_CMD} -e "s|python|${PYTHON_CMD}|g" \ + ${WRKSRC}/data/CMakeLists.txt .include Modified: head/chinese/opencc/distinfo ============================================================================== --- head/chinese/opencc/distinfo Sat Jul 9 03:34:27 2016 (r418254) +++ head/chinese/opencc/distinfo Sat Jul 9 03:43:15 2016 (r418255) @@ -1,2 +1,3 @@ -SHA256 (opencc-0.4.3.tar.gz) = 7bdcf9e38ac05a16750d5276494d810db107c8a8b5f8b87e2357ee167a13a587 -SIZE (opencc-0.4.3.tar.gz) = 535151 +TIMESTAMP = 1467470273 +SHA256 (BYVoid-OpenCC-ver.1.0.4_GH0.tar.gz) = 0553b7461ebd379d118d45d7f40f8a6e272750115bdbc49267595a05ee3481ac +SIZE (BYVoid-OpenCC-ver.1.0.4_GH0.tar.gz) = 1597309 Modified: head/chinese/opencc/files/patch-CMakeLists.txt ============================================================================== --- head/chinese/opencc/files/patch-CMakeLists.txt Sat Jul 9 03:34:27 2016 (r418254) +++ head/chinese/opencc/files/patch-CMakeLists.txt Sat Jul 9 03:43:15 2016 (r418255) @@ -1,27 +1,11 @@ ---- CMakeLists.txt.orig 2010-12-23 07:18:23.000000000 -0600 -+++ CMakeLists.txt 2011-11-28 15:23:31.089426523 -0600 -@@ -42,6 +42,8 @@ set ( - - if (ENABLE_GETTEXT) - find_package(Gettext REQUIRED) -+ find_path(GETTEXT_INCLUDE_DIR libintl.h) -+ find_library(GETTEXT_LIBRARIES NAMES intl PATHS /usr/local/lib) - endif (ENABLE_GETTEXT) - - include (TestBigEndian) -@@ -75,7 +77,7 @@ install( - FILES - ${CMAKE_BINARY_DIR}/opencc.pc - DESTINATION -- ${DIR_LIBRARY}/pkgconfig -+ ${CMAKE_INSTALL_PREFIX}/libdata/pkgconfig +--- CMakeLists.txt.orig 2016-07-02 15:04:34 UTC ++++ CMakeLists.txt +@@ -98,7 +98,7 @@ install( + FILES + ${CMAKE_BINARY_DIR}/opencc.pc + DESTINATION +- ${DIR_LIBRARY}/pkgconfig ++ ${CMAKE_INSTALL_PREFIX}/libdata/pkgconfig ) - ######## Subdirectories -@@ -88,4 +90,4 @@ if (GETTEXT_FOUND AND ENABLE_GETTEXT) - add_subdirectory(po) - endif (GETTEXT_FOUND AND ENABLE_GETTEXT) - --add_subdirectory(test) -\ No newline at end of file -+add_subdirectory(test) + ######## Compiler flags Modified: head/chinese/opencc/pkg-plist ============================================================================== --- head/chinese/opencc/pkg-plist Sat Jul 9 03:34:27 2016 (r418254) +++ head/chinese/opencc/pkg-plist Sat Jul 9 03:43:15 2016 (r418255) @@ -1,38 +1,55 @@ bin/opencc bin/opencc_dict +bin/opencc_phrase_extract +include/opencc/BinaryDict.hpp +include/opencc/Common.hpp +include/opencc/Config.hpp +include/opencc/Conversion.hpp +include/opencc/ConversionChain.hpp +include/opencc/Converter.hpp +include/opencc/DartsDict.hpp +include/opencc/Dict.hpp +include/opencc/DictEntry.hpp +include/opencc/DictGroup.hpp +include/opencc/Exception.hpp +include/opencc/Export.hpp +include/opencc/Lexicon.hpp +include/opencc/MaxMatchSegmentation.hpp +include/opencc/Optional.hpp +include/opencc/PhraseExtract.hpp +include/opencc/Segmentation.hpp +include/opencc/Segments.hpp +include/opencc/SerializableDict.hpp +include/opencc/SimpleConverter.hpp +include/opencc/TextDict.hpp +include/opencc/UTF8StringSlice.hpp +include/opencc/UTF8Util.hpp include/opencc/opencc.h -include/opencc/opencc_types.h -include/opencc/openccxx.h -lib/libopencc.a lib/libopencc.so -lib/libopencc.so.1 lib/libopencc.so.1.0.0 +lib/libopencc.so.2 libdata/pkgconfig/opencc.pc -man/man1/opencc.1.gz -man/man1/opencc_dict.1.gz -%%NLS%%share/locale/zh_CN/LC_MESSAGES/opencc.mo -%%NLS%%share/locale/zh_HK/LC_MESSAGES/opencc.mo -%%NLS%%share/locale/zh_TW/LC_MESSAGES/opencc.mo -%%DATADIR%%/from_tw_phrases.txt -%%DATADIR%%/from_tw_variants.txt -%%DATADIR%%/mix2zhs.ini -%%DATADIR%%/mix2zht.ini -%%DATADIR%%/simp_to_trad_characters.ocd -%%DATADIR%%/simp_to_trad_phrases.ocd -%%DATADIR%%/to_cn_phrases.txt -%%DATADIR%%/to_tw_phrases.txt -%%DATADIR%%/to_tw_variants.txt -%%DATADIR%%/trad_to_simp_characters.ocd -%%DATADIR%%/trad_to_simp_phrases.ocd -%%DATADIR%%/zhs2zht.ini -%%DATADIR%%/zhs2zhtw_p.ini -%%DATADIR%%/zhs2zhtw_v.ini -%%DATADIR%%/zhs2zhtw_vp.ini -%%DATADIR%%/zht2zhs.ini -%%DATADIR%%/zht2zhtw_p.ini -%%DATADIR%%/zht2zhtw_v.ini -%%DATADIR%%/zht2zhtw_vp.ini -%%DATADIR%%/zhtw2zhcn_s.ini -%%DATADIR%%/zhtw2zhcn_t.ini -%%DATADIR%%/zhtw2zhs.ini -%%DATADIR%%/zhtw2zht.ini +%%DATADIR%%/HKVariants.ocd +%%DATADIR%%/HKVariantsPhrases.ocd +%%DATADIR%%/HKVariantsRev.ocd +%%DATADIR%%/HKVariantsRevPhrases.ocd +%%DATADIR%%/JPVariants.ocd +%%DATADIR%%/STCharacters.ocd +%%DATADIR%%/STPhrases.ocd +%%DATADIR%%/TSCharacters.ocd +%%DATADIR%%/TSPhrases.ocd +%%DATADIR%%/TWPhrases.ocd +%%DATADIR%%/TWPhrasesRev.ocd +%%DATADIR%%/TWVariants.ocd +%%DATADIR%%/TWVariantsRev.ocd +%%DATADIR%%/TWVariantsRevPhrases.ocd +%%DATADIR%%/hk2s.json +%%DATADIR%%/s2hk.json +%%DATADIR%%/s2t.json +%%DATADIR%%/s2tw.json +%%DATADIR%%/s2twp.json +%%DATADIR%%/t2hk.json +%%DATADIR%%/t2s.json +%%DATADIR%%/t2tw.json +%%DATADIR%%/tw2s.json +%%DATADIR%%/tw2sp.json From owner-svn-ports-all@freebsd.org Sat Jul 9 03:52:54 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 2A166B836F4; Sat, 9 Jul 2016 03:52:54 +0000 (UTC) (envelope-from kmoore@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id DDA981155; Sat, 9 Jul 2016 03:52:53 +0000 (UTC) (envelope-from kmoore@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u693qrsD020036; Sat, 9 Jul 2016 03:52:53 GMT (envelope-from kmoore@FreeBSD.org) Received: (from kmoore@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u693qrXA020035; Sat, 9 Jul 2016 03:52:53 GMT (envelope-from kmoore@FreeBSD.org) Message-Id: <201607090352.u693qrXA020035@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: kmoore set sender to kmoore@FreeBSD.org using -f From: Kris Moore Date: Sat, 9 Jul 2016 03:52:53 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418256 - head/sysutils/nomad X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 09 Jul 2016 03:52:54 -0000 Author: kmoore Date: Sat Jul 9 03:52:52 2016 New Revision: 418256 URL: https://svnweb.freebsd.org/changeset/ports/418256 Log: - Update to latest GH tag(s) PR: 210862 Submitted by: Maintainer Modified: head/sysutils/nomad/Makefile Modified: head/sysutils/nomad/Makefile ============================================================================== --- head/sysutils/nomad/Makefile Sat Jul 9 03:43:15 2016 (r418255) +++ head/sysutils/nomad/Makefile Sat Jul 9 03:52:52 2016 (r418256) @@ -3,7 +3,7 @@ PORTNAME= nomad PORTVERSION= 0.4.0 DISTVERSIONPREFIX= v -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= sysutils MAINTAINER= john@pcbsd.org @@ -26,7 +26,7 @@ GH_ACCOUNT= hashicorp:DEFAULT kardianos: GH_PROJECT= nomad:nomad govendor:govendor gox:gox tools:tools gocov:gocov \ gocov-html:gocov_html go:go -GH_TAGNAME= v0.4.0:nomad 36255b7:govendor 6e9ee79:gox 0d2bde8:tools \ +GH_TAGNAME= v0.4.0 36255b7:govendor 6e9ee79:gox 0d2bde8:tools \ f5b2b5c:gocov b729399:gocov_html b94837a:go USE_RC_SUBR= nomad From owner-svn-ports-all@freebsd.org Sat Jul 9 03:58:44 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 8C850B837A9; Sat, 9 Jul 2016 03:58:44 +0000 (UTC) (envelope-from kmoore@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 5D21212DF; Sat, 9 Jul 2016 03:58:44 +0000 (UTC) (envelope-from kmoore@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u693whOh020372; Sat, 9 Jul 2016 03:58:43 GMT (envelope-from kmoore@FreeBSD.org) Received: (from kmoore@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u693whIf020370; Sat, 9 Jul 2016 03:58:43 GMT (envelope-from kmoore@FreeBSD.org) Message-Id: <201607090358.u693whIf020370@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: kmoore set sender to kmoore@FreeBSD.org using -f From: Kris Moore Date: Sat, 9 Jul 2016 03:58:43 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418257 - head/audio/pianobar X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 09 Jul 2016 03:58:44 -0000 Author: kmoore Date: Sat Jul 9 03:58:43 2016 New Revision: 418257 URL: https://svnweb.freebsd.org/changeset/ports/418257 Log: - Update to 2016.06.02 PR: 210863 Submitted by: Maintainer Modified: head/audio/pianobar/Makefile head/audio/pianobar/distinfo Modified: head/audio/pianobar/Makefile ============================================================================== --- head/audio/pianobar/Makefile Sat Jul 9 03:52:52 2016 (r418256) +++ head/audio/pianobar/Makefile Sat Jul 9 03:58:43 2016 (r418257) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= pianobar -PORTVERSION= 2015.11.22 +PORTVERSION= 2016.06.02 PORTREVISION= 1 CATEGORIES= audio MASTER_SITES= http://6xq.net/projects/${PORTNAME}/ Modified: head/audio/pianobar/distinfo ============================================================================== --- head/audio/pianobar/distinfo Sat Jul 9 03:52:52 2016 (r418256) +++ head/audio/pianobar/distinfo Sat Jul 9 03:58:43 2016 (r418257) @@ -1,2 +1,2 @@ -SHA256 (pianobar-2015.11.22.tar.bz2) = 23fbc9e6f55b3277dba7a0f68ff721bad7f1eeea504c616ba008841686de322b -SIZE (pianobar-2015.11.22.tar.bz2) = 45973 +SHA256 (pianobar-2016.06.02.tar.bz2) = c6efb0d0fe36013c6506dadf3718e8ed9471b7839654c97027e036ed16212559 +SIZE (pianobar-2016.06.02.tar.bz2) = 46262 From owner-svn-ports-all@freebsd.org Sat Jul 9 04:13:30 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 2C1BCB83B7C; Sat, 9 Jul 2016 04:13:30 +0000 (UTC) (envelope-from cy@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id C95D81A7E; Sat, 9 Jul 2016 04:13:29 +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 u694DS9t027421; Sat, 9 Jul 2016 04:13:28 GMT (envelope-from cy@FreeBSD.org) Received: (from cy@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u694DSv1027420; Sat, 9 Jul 2016 04:13:28 GMT (envelope-from cy@FreeBSD.org) Message-Id: <201607090413.u694DSv1027420@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: cy set sender to cy@FreeBSD.org using -f From: Cy Schubert Date: Sat, 9 Jul 2016 04:13:28 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418258 - head/net/tigervnc X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 09 Jul 2016 04:13:30 -0000 Author: cy Date: Sat Jul 9 04:13:28 2016 New Revision: 418258 URL: https://svnweb.freebsd.org/changeset/ports/418258 Log: Include fixes from net/tigervnc-devel. PR: 210908 Submitted by: Koichiro IWAO (maintainer) Suggested by: cy@ Modified: head/net/tigervnc/Makefile Modified: head/net/tigervnc/Makefile ============================================================================== --- head/net/tigervnc/Makefile Sat Jul 9 03:58:43 2016 (r418257) +++ head/net/tigervnc/Makefile Sat Jul 9 04:13:28 2016 (r418258) @@ -4,7 +4,7 @@ PORTNAME= tigervnc PORTVERSION= 1.6.0 DISTVERSIONPREFIX= v -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= net x11-servers MAINTAINER= meta+ports@vmeta.jp @@ -21,21 +21,27 @@ BUILD_DEPENDS= ${LOCALBASE}/include/GL/i RUN_DEPENDS= ${LOCALBASE}/share/X11/xkb/rules/base:x11/xkeyboard-config \ xkbcomp:x11/xkbcomp -CONFLICTS= tridiavnc-[0-9]* \ +CONFLICTS= tigervnc-devel-[0-9]* \ tightvnc-[0-9]* \ + tridiavnc-[0-9]* \ vnc-[0-9]* -USES= autoreconf:build cmake cpe gmake jpeg libtool pkgconfig python +USES= autoreconf:build cmake cpe gmake iconv jpeg libtool pkgconfig \ + python ssl USE_GL= gl USE_LDCONFIG= yes -USE_OPENSSL= yes USE_GITHUB= yes GH_ACCOUNT= TigerVNC USE_XORG+= bigreqsproto compositeproto damageproto fixesproto fontsproto glproto \ - inputproto kbproto pixman randrproto renderproto resourceproto \ - scrnsaverproto videoproto xau xdmcp xext xkbfile xcmiscproto xextproto \ - xfont xproto xrandr xtrans xtst xorg-macros presentproto + ice inputproto kbproto pixman presentproto randrproto renderproto \ + resourceproto scrnsaverproto sm videoproto x11 xau xcmiscproto xdamage \ + xdmcp xext xextproto xfont xkbfile xorg-macros xproto xrandr xrender \ + xtrans xtst + +LIB_DEPENDS= libunwind.so:devel/libunwind \ + libxshmfence.so:x11/libxshmfence \ + libfontconfig.so:x11-fonts/fontconfig CFLAGS+= -fPIC From owner-svn-ports-all@freebsd.org Sat Jul 9 04:16:29 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id ADD29B83C03; Sat, 9 Jul 2016 04:16: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 mx1.freebsd.org (Postfix) with ESMTPS id 858DD1D93; Sat, 9 Jul 2016 04:16: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 u694GSjm028028; Sat, 9 Jul 2016 04:16:28 GMT (envelope-from pi@FreeBSD.org) Received: (from pi@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u694GSNC028024; Sat, 9 Jul 2016 04:16:28 GMT (envelope-from pi@FreeBSD.org) Message-Id: <201607090416.u694GSNC028024@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pi set sender to pi@FreeBSD.org using -f From: Kurt Jaeger Date: Sat, 9 Jul 2016 04:16:28 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418259 - in head/chinese: fcitx-rime librime librime/files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 09 Jul 2016 04:16:29 -0000 Author: pi Date: Sat Jul 9 04:16:28 2016 New Revision: 418259 URL: https://svnweb.freebsd.org/changeset/ports/418259 Log: chinese/librime: 1.1 -> 1.2.9 PR: 210781 Submitted by: Iblis Lin Approved by: lichray@gmail.com (maintainer) Modified: head/chinese/fcitx-rime/Makefile head/chinese/librime/Makefile head/chinese/librime/distinfo head/chinese/librime/files/patch-CMakeLists.txt Modified: head/chinese/fcitx-rime/Makefile ============================================================================== --- head/chinese/fcitx-rime/Makefile Sat Jul 9 04:13:28 2016 (r418258) +++ head/chinese/fcitx-rime/Makefile Sat Jul 9 04:16:28 2016 (r418259) @@ -3,6 +3,7 @@ PORTNAME= fcitx-rime PORTVERSION= 0.3.1 +PORTREVISION= 1 CATEGORIES= chinese MASTER_SITES= http://download.fcitx-im.org/${PORTNAME}/ DIST_SUBDIR= fcitx Modified: head/chinese/librime/Makefile ============================================================================== --- head/chinese/librime/Makefile Sat Jul 9 04:13:28 2016 (r418258) +++ head/chinese/librime/Makefile Sat Jul 9 04:16:28 2016 (r418259) @@ -2,9 +2,8 @@ # $FreeBSD$ PORTNAME= librime -PORTVERSION= 1.1 +PORTVERSION= 1.2.9 DISTVERSIONPREFIX= rime- -PORTREVISION= 1 CATEGORIES= chinese textproc MAINTAINER= lichray@gmail.com @@ -13,8 +12,10 @@ COMMENT= Rime Input Method Engine, the c LICENSE= GPLv3 LIB_DEPENDS= libboost_thread.so:devel/boost-libs \ + libgflags.so:devel/gflags \ libglog.so:devel/glog \ - libkyotocabinet.so:databases/kyotocabinet \ + libleveldb.so:databases/leveldb \ + libmarisa.so:devel/marisa-trie \ libopencc.so:chinese/opencc \ libyaml-cpp.so:devel/yaml-cpp @@ -26,7 +27,7 @@ LDFLAGS+= -lintl USE_GITHUB= yes GH_ACCOUNT= rime -PLIST_SUB= VER=${PORTVERSION}.0 +PLIST_SUB= VER=${PORTVERSION} BROKEN_powerpc64= Does not build on powerpc64 Modified: head/chinese/librime/distinfo ============================================================================== --- head/chinese/librime/distinfo Sat Jul 9 04:13:28 2016 (r418258) +++ head/chinese/librime/distinfo Sat Jul 9 04:16:28 2016 (r418259) @@ -1,2 +1,3 @@ -SHA256 (rime-librime-rime-1.1_GH0.tar.gz) = fb42324b7fa489708a0e2ffd75e90668678bd4d0ae68f9c8ff956cd3be3c7362 -SIZE (rime-librime-rime-1.1_GH0.tar.gz) = 2633096 +TIMESTAMP = 1467479749 +SHA256 (rime-librime-rime-1.2.9_GH0.tar.gz) = d9f0e732b5bf0ee9d8872d00c79322eec7682139a898a65555f794795ac5f410 +SIZE (rime-librime-rime-1.2.9_GH0.tar.gz) = 5516609 Modified: head/chinese/librime/files/patch-CMakeLists.txt ============================================================================== --- head/chinese/librime/files/patch-CMakeLists.txt Sat Jul 9 04:13:28 2016 (r418258) +++ head/chinese/librime/files/patch-CMakeLists.txt Sat Jul 9 04:16:28 2016 (r418259) @@ -1,79 +1,29 @@ ---- CMakeLists.txt.orig 2013-12-26 08:37:25 UTC +--- CMakeLists.txt.orig 2014-12-21 11:46:44 UTC +++ CMakeLists.txt -@@ -1,5 +1,5 @@ --set(CMAKE_USER_MAKE_RULES_OVERRIDE ${CMAKE_CURRENT_SOURCE_DIR}/cmake/c_flag_overrides.cmake) --set(CMAKE_USER_MAKE_RULES_OVERRIDE_CXX ${CMAKE_CURRENT_SOURCE_DIR}/cmake/cxx_flag_overrides.cmake) -+set(CMAKE_C_FLAGS_RELEASE "${CMAKE_C_FLAGS_RELEASE} -DNDEBUG") -+set(CMAKE_CXX_FLAGS_RELEASE "${CMAKE_CXX_FLAGS_RELEASE} -DNDEBUG") - - project(rime) - cmake_minimum_required(VERSION 2.8) -@@ -21,6 +21,20 @@ endif(WIN32) - - set(CMAKE_MODULE_PATH ${PROJECT_SOURCE_DIR}/cmake) - -+include_directories(${PROJECT_SOURCE_DIR}/include) -+include_directories(${PROJECT_SOURCE_DIR}/thirdparty/include) -+link_directories(${PROJECT_SOURCE_DIR}/thirdparty/lib) -+if(MSVC) -+ if(MSVC10) -+ # stdint.h is missing from VS2010 -+ include_directories(${PROJECT_SOURCE_DIR}/thirdparty/include/msvc) -+ endif(MSVC10) -+ add_definitions("/wd4244 /wd4996") -+endif(MSVC) -+if(UNIX) -+ add_definitions("-std=c++11") -+endif(UNIX) -+ - set(Boost_USE_STATIC_LIBS ${BUILD_STATIC}) - set(Gflags_STATIC ${BUILD_STATIC}) - set(Glog_STATIC ${BUILD_STATIC}) -@@ -82,20 +96,6 @@ else(X11Keysym) - message(WARNING "X11/keysym.h not found.") - endif(X11Keysym) - --include_directories(${PROJECT_SOURCE_DIR}/include) --include_directories(${PROJECT_SOURCE_DIR}/thirdparty/include) --link_directories(${PROJECT_SOURCE_DIR}/thirdparty/lib) --if(MSVC) -- if(MSVC10) -- # stdint.h is missing from VS2010 -- include_directories(${PROJECT_SOURCE_DIR}/thirdparty/include/msvc) -- endif(MSVC10) -- add_definitions("/wd4244 /wd4996") --endif(MSVC) --if(UNIX) -- add_definitions("-std=c++11") --endif(UNIX) -- - if(NOT DEFINED LIB_INSTALL_DIR) - set(LIB_INSTALL_DIR ${CMAKE_INSTALL_PREFIX}/lib) - endif() -@@ -104,7 +104,7 @@ if(NOT DEFINED BIN_INSTALL_DIR) +@@ -123,7 +123,7 @@ if(NOT DEFINED BIN_INSTALL_DIR) set(BIN_INSTALL_DIR ${CMAKE_INSTALL_PREFIX}/bin) endif() -if(${CMAKE_SYSTEM_NAME} MATCHES "Linux") -+if(${CMAKE_SYSTEM_NAME} MATCHES "(FreeBSD|DragonFly)") ++if(${CMAKE_SYSTEM_NAME} MATCHES "FreeBSD|DragonFly") # uninstall target configure_file( "${CMAKE_CURRENT_SOURCE_DIR}/cmake/cmake_uninstall.cmake.in" -@@ -120,7 +120,7 @@ if(${CMAKE_SYSTEM_NAME} MATCHES "Linux") - set(includedir "${CMAKE_INSTALL_PREFIX}/include") - configure_file(${PROJECT_SOURCE_DIR}/rime.pc.in ${PROJECT_BINARY_DIR}/rime.pc) +@@ -142,7 +142,7 @@ if(${CMAKE_SYSTEM_NAME} MATCHES "Linux") + ${PROJECT_BINARY_DIR}/rime.pc + @ONLY) install(FILES include/rime_api.h DESTINATION include) - install(FILES ${PROJECT_BINARY_DIR}/rime.pc DESTINATION ${LIB_INSTALL_DIR}/pkgconfig) -+ install(FILES ${PROJECT_BINARY_DIR}/rime.pc DESTINATION ${prefix}/libdata/pkgconfig) ++ install(FILES ${PROJECT_BINARY_DIR}/rime.pc DESTINATION ${CMAKE_INSTALL_PREFIX}/libdata/pkgconfig) install(FILES cmake/RimeConfig.cmake DESTINATION share/cmake/rime) if(BUILD_DATA) install(FILES ${PROJECT_SOURCE_DIR}/data/default.yaml DESTINATION ${pkgdatadir}) -@@ -131,7 +131,7 @@ if(${CMAKE_SYSTEM_NAME} MATCHES "Linux") +@@ -153,7 +153,7 @@ if(${CMAKE_SYSTEM_NAME} MATCHES "Linux") file(GLOB supplement_schema ${PROJECT_SOURCE_DIR}/data/supplement/*.yaml) install(FILES ${supplement_schema} DESTINATION ${pkgdatadir}) endif(BUILD_DATA) -endif(${CMAKE_SYSTEM_NAME} MATCHES "Linux") -+endif(${CMAKE_SYSTEM_NAME} MATCHES "(FreeBSD|DragonFly)") ++endif(${CMAKE_SYSTEM_NAME} MATCHES "FreeBSD|DragonFly") if(BUILD_SHARED_LIBS) - set(RIME_LIBRARY rime) + add_definitions(-DRIME_BUILD_SHARED_LIBS) From owner-svn-ports-all@freebsd.org Sat Jul 9 04:20:23 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 61694B83C96; Sat, 9 Jul 2016 04:20:23 +0000 (UTC) (envelope-from cy@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 30D7A1F3D; Sat, 9 Jul 2016 04:20:23 +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 u694KM1P028296; Sat, 9 Jul 2016 04:20:22 GMT (envelope-from cy@FreeBSD.org) Received: (from cy@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u694KMMT028295; Sat, 9 Jul 2016 04:20:22 GMT (envelope-from cy@FreeBSD.org) Message-Id: <201607090420.u694KMMT028295@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: cy set sender to cy@FreeBSD.org using -f From: Cy Schubert Date: Sat, 9 Jul 2016 04:20:22 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418260 - head/net/tigervnc-devel X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 09 Jul 2016 04:20:23 -0000 Author: cy Date: Sat Jul 9 04:20:22 2016 New Revision: 418260 URL: https://svnweb.freebsd.org/changeset/ports/418260 Log: Fix conflicts and sort USES & USE_XORG. PR: 210909 Submitted by: Koichiro IWAO (maintainer) Modified: head/net/tigervnc-devel/Makefile Modified: head/net/tigervnc-devel/Makefile ============================================================================== --- head/net/tigervnc-devel/Makefile Sat Jul 9 04:16:28 2016 (r418259) +++ head/net/tigervnc-devel/Makefile Sat Jul 9 04:20:22 2016 (r418260) @@ -3,6 +3,7 @@ PORTNAME= tigervnc PORTVERSION= 1.6.90 +PORTREVISION= 1 DISTVERSIONPREFIX= v CATEGORIES= net x11-servers PKGNAMESUFFIX= -devel @@ -21,23 +22,23 @@ BUILD_DEPENDS= ${LOCALBASE}/include/GL/i RUN_DEPENDS= ${LOCALBASE}/share/X11/xkb/rules/base:x11/xkeyboard-config \ xkbcomp:x11/xkbcomp -CONFLICTS= tridiavnc-[0-9]* \ +CONFLICTS= tigervnc-[0-9]* \ tightvnc-[0-9]* \ - tigervnc-devel-[0-9]* \ + tridiavnc-[0-9]* \ vnc-[0-9]* -USES= autoreconf:build cmake cpe gmake jpeg libtool pkgconfig \ - python ssl iconv +USES= autoreconf:build cmake cpe gmake iconv jpeg libtool pkgconfig \ + python ssl USE_GL= gl USE_LDCONFIG= yes USE_GITHUB= yes GH_ACCOUNT= TigerVNC USE_XORG+= bigreqsproto compositeproto damageproto fixesproto fontsproto glproto \ - inputproto kbproto pixman randrproto renderproto resourceproto \ - scrnsaverproto videoproto xau xdmcp xext xkbfile xcmiscproto xextproto \ - xfont xproto xrandr xtrans xtst xorg-macros presentproto \ - x11 sm ice xrender xdamage + ice inputproto kbproto pixman presentproto randrproto renderproto \ + resourceproto scrnsaverproto sm videoproto x11 xau xcmiscproto xdamage \ + xdmcp xext xextproto xfont xkbfile xorg-macros xproto xrandr xrender \ + xtrans xtst LIB_DEPENDS= libunwind.so:devel/libunwind \ libxshmfence.so:x11/libxshmfence \ From owner-svn-ports-all@freebsd.org Sat Jul 9 04:57:45 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 6979EB843D7; Sat, 9 Jul 2016 04:57:45 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 43C7D1147; Sat, 9 Jul 2016 04:57:45 +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 u694viVK043128; Sat, 9 Jul 2016 04:57:44 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u694vi0Y043123; Sat, 9 Jul 2016 04:57:44 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201607090457.u694vi0Y043123@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Sat, 9 Jul 2016 04:57:44 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418261 - in head: mail/thunderbird/files www/firefox-esr/files www/firefox/files www/libxul/files www/seamonkey/files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 09 Jul 2016 04:57:45 -0000 Author: jbeich Date: Sat Jul 9 04:57:43 2016 New Revision: 418261 URL: https://svnweb.freebsd.org/changeset/ports/418261 Log: gecko: unbreak WebRTC build on DragonFly Added: head/mail/thunderbird/files/patch-bug1285501 (contents, props changed) head/www/firefox-esr/files/patch-bug1285501 (contents, props changed) head/www/firefox/files/patch-bug1285501 (contents, props changed) head/www/libxul/files/patch-bug1285501 (contents, props changed) head/www/seamonkey/files/patch-bug1285501 (contents, props changed) Added: head/mail/thunderbird/files/patch-bug1285501 ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/mail/thunderbird/files/patch-bug1285501 Sat Jul 9 04:57:43 2016 (r418261) @@ -0,0 +1,22 @@ +diff --git media/webrtc/trunk/build/filename_rules.gypi media/webrtc/trunk/build/filename_rules.gypi +index 844d5c5..7b16a15 100644 +--- mozilla/media/webrtc/trunk/build/filename_rules.gypi ++++ mozilla/media/webrtc/trunk/build/filename_rules.gypi +@@ -29,7 +29,7 @@ + # In case a file is not needed, it is going to be excluded later on. + # TODO(evan): the above is not correct; we shouldn't build _linux + # files on non-linux. +- ['OS!="linux" and OS!="openbsd" and OS!="freebsd" or >(nacl_untrusted_build)==1', { ++ ['OS!="linux" and OS!="solaris" and <(os_bsd)!=1 or >(nacl_untrusted_build)==1', { + 'sources/': [ + ['exclude', '_linux(_unittest)?\\.(h|cc)$'], + ['exclude', '(^|/)linux/'], +@@ -55,7 +55,7 @@ + ['exclude', '_nacl(_unittest)?\\.(h|cc)$'], + ], + }], +- ['OS!="linux" and OS!="openbsd" and OS!="freebsd" or >(nacl_untrusted_build)==1', { ++ ['OS!="linux" and OS!="solaris" and <(os_bsd)!=1 or >(nacl_untrusted_build)==1', { + 'sources/': [ + ['exclude', '_xdg(_unittest)?\\.(h|cc)$'], + ], Added: head/www/firefox-esr/files/patch-bug1285501 ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/firefox-esr/files/patch-bug1285501 Sat Jul 9 04:57:43 2016 (r418261) @@ -0,0 +1,22 @@ +diff --git media/webrtc/trunk/build/filename_rules.gypi media/webrtc/trunk/build/filename_rules.gypi +index 844d5c5..7b16a15 100644 +--- media/webrtc/trunk/build/filename_rules.gypi ++++ media/webrtc/trunk/build/filename_rules.gypi +@@ -29,7 +29,7 @@ + # In case a file is not needed, it is going to be excluded later on. + # TODO(evan): the above is not correct; we shouldn't build _linux + # files on non-linux. +- ['OS!="linux" and OS!="openbsd" and OS!="freebsd" or >(nacl_untrusted_build)==1', { ++ ['OS!="linux" and OS!="solaris" and <(os_bsd)!=1 or >(nacl_untrusted_build)==1', { + 'sources/': [ + ['exclude', '_linux(_unittest)?\\.(h|cc)$'], + ['exclude', '(^|/)linux/'], +@@ -55,7 +55,7 @@ + ['exclude', '_nacl(_unittest)?\\.(h|cc)$'], + ], + }], +- ['OS!="linux" and OS!="openbsd" and OS!="freebsd" or >(nacl_untrusted_build)==1', { ++ ['OS!="linux" and OS!="solaris" and <(os_bsd)!=1 or >(nacl_untrusted_build)==1', { + 'sources/': [ + ['exclude', '_xdg(_unittest)?\\.(h|cc)$'], + ], Added: head/www/firefox/files/patch-bug1285501 ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/firefox/files/patch-bug1285501 Sat Jul 9 04:57:43 2016 (r418261) @@ -0,0 +1,22 @@ +diff --git media/webrtc/trunk/build/filename_rules.gypi media/webrtc/trunk/build/filename_rules.gypi +index 844d5c5..7b16a15 100644 +--- media/webrtc/trunk/build/filename_rules.gypi ++++ media/webrtc/trunk/build/filename_rules.gypi +@@ -29,7 +29,7 @@ + # In case a file is not needed, it is going to be excluded later on. + # TODO(evan): the above is not correct; we shouldn't build _linux + # files on non-linux. +- ['OS!="linux" and OS!="openbsd" and OS!="freebsd" or >(nacl_untrusted_build)==1', { ++ ['OS!="linux" and OS!="solaris" and <(os_bsd)!=1 or >(nacl_untrusted_build)==1', { + 'sources/': [ + ['exclude', '_linux(_unittest)?\\.(h|cc)$'], + ['exclude', '(^|/)linux/'], +@@ -55,7 +55,7 @@ + ['exclude', '_nacl(_unittest)?\\.(h|cc)$'], + ], + }], +- ['OS!="linux" and OS!="openbsd" and OS!="freebsd" or >(nacl_untrusted_build)==1', { ++ ['OS!="linux" and OS!="solaris" and <(os_bsd)!=1 or >(nacl_untrusted_build)==1', { + 'sources/': [ + ['exclude', '_xdg(_unittest)?\\.(h|cc)$'], + ], Added: head/www/libxul/files/patch-bug1285501 ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/libxul/files/patch-bug1285501 Sat Jul 9 04:57:43 2016 (r418261) @@ -0,0 +1,22 @@ +diff --git media/webrtc/trunk/build/filename_rules.gypi media/webrtc/trunk/build/filename_rules.gypi +index 844d5c5..7b16a15 100644 +--- media/webrtc/trunk/build/filename_rules.gypi ++++ media/webrtc/trunk/build/filename_rules.gypi +@@ -29,7 +29,7 @@ + # In case a file is not needed, it is going to be excluded later on. + # TODO(evan): the above is not correct; we shouldn't build _linux + # files on non-linux. +- ['OS!="linux" and OS!="openbsd" and OS!="freebsd" or >(nacl_untrusted_build)==1', { ++ ['OS!="linux" and OS!="solaris" and <(os_bsd)!=1 or >(nacl_untrusted_build)==1', { + 'sources/': [ + ['exclude', '_linux(_unittest)?\\.(h|cc)$'], + ['exclude', '(^|/)linux/'], +@@ -55,7 +55,7 @@ + ['exclude', '_nacl(_unittest)?\\.(h|cc)$'], + ], + }], +- ['OS!="linux" and OS!="openbsd" and OS!="freebsd" or >(nacl_untrusted_build)==1', { ++ ['OS!="linux" and OS!="solaris" and <(os_bsd)!=1 or >(nacl_untrusted_build)==1', { + 'sources/': [ + ['exclude', '_xdg(_unittest)?\\.(h|cc)$'], + ], Added: head/www/seamonkey/files/patch-bug1285501 ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/seamonkey/files/patch-bug1285501 Sat Jul 9 04:57:43 2016 (r418261) @@ -0,0 +1,22 @@ +diff --git media/webrtc/trunk/build/filename_rules.gypi media/webrtc/trunk/build/filename_rules.gypi +index 844d5c5..7b16a15 100644 +--- mozilla/media/webrtc/trunk/build/filename_rules.gypi ++++ mozilla/media/webrtc/trunk/build/filename_rules.gypi +@@ -29,7 +29,7 @@ + # In case a file is not needed, it is going to be excluded later on. + # TODO(evan): the above is not correct; we shouldn't build _linux + # files on non-linux. +- ['OS!="linux" and OS!="openbsd" and OS!="freebsd" or >(nacl_untrusted_build)==1', { ++ ['OS!="linux" and OS!="solaris" and <(os_bsd)!=1 or >(nacl_untrusted_build)==1', { + 'sources/': [ + ['exclude', '_linux(_unittest)?\\.(h|cc)$'], + ['exclude', '(^|/)linux/'], +@@ -55,7 +55,7 @@ + ['exclude', '_nacl(_unittest)?\\.(h|cc)$'], + ], + }], +- ['OS!="linux" and OS!="openbsd" and OS!="freebsd" or >(nacl_untrusted_build)==1', { ++ ['OS!="linux" and OS!="solaris" and <(os_bsd)!=1 or >(nacl_untrusted_build)==1', { + 'sources/': [ + ['exclude', '_xdg(_unittest)?\\.(h|cc)$'], + ], From owner-svn-ports-all@freebsd.org Sat Jul 9 04:58:20 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 6C625B8441F; Sat, 9 Jul 2016 04:58:20 +0000 (UTC) (envelope-from cy@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 394241231; Sat, 9 Jul 2016 04:58:20 +0000 (UTC) (envelope-from cy@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u694wJou043249; Sat, 9 Jul 2016 04:58:19 GMT (envelope-from cy@FreeBSD.org) Received: (from cy@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u694wJVi043248; Sat, 9 Jul 2016 04:58:19 GMT (envelope-from cy@FreeBSD.org) Message-Id: <201607090458.u694wJVi043248@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: cy set sender to cy@FreeBSD.org using -f From: Cy Schubert Date: Sat, 9 Jul 2016 04:58:19 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418262 - head/x11-toolkits/open-motif X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 09 Jul 2016 04:58:20 -0000 Author: cy Date: Sat Jul 9 04:58:19 2016 New Revision: 418262 URL: https://svnweb.freebsd.org/changeset/ports/418262 Log: Correct the graphics/png dependency. Modified: head/x11-toolkits/open-motif/Makefile Modified: head/x11-toolkits/open-motif/Makefile ============================================================================== --- head/x11-toolkits/open-motif/Makefile Sat Jul 9 04:57:43 2016 (r418261) +++ head/x11-toolkits/open-motif/Makefile Sat Jul 9 04:58:19 2016 (r418262) @@ -2,6 +2,7 @@ PORTNAME= open-motif PORTVERSION= 2.3.6 +PORTREVISION= 1 CATEGORIES= x11-toolkits # MASTER_SITES= SF/${PORTNAME}/Motif%202.3.4%20Source%20Code/ MASTER_SITES= SF/motif/Motif%202.3.6%20Source%20Code/ @@ -13,8 +14,6 @@ COMMENT= Motif X11 Toolkit (industry sta LICENSE= LGPL21 LICENSE_FILE= ${WRKSRC}/COPYING -LIB_DEPENDS= libpng.so:graphics/png - MAKE_JOBS_UNSAFE= yes CONFLICTS= lesstif-[0-9]* @@ -22,7 +21,8 @@ USES= autoreconf gmake iconv jpeg libto USE_XORG= x11 xaw xbitmaps xext xft xt xmu xrender sm ice LIB_DEPENDS= libXp.so:x11/libXp \ libfontconfig.so:x11-fonts/fontconfig \ - libfreetype.so:print/freetype2 + libfreetype.so:print/freetype2 \ + libpng16.so:graphics/png GNU_CONFIGURE= yes USE_LDCONFIG= yes MAKE_ENV= LANG=C From owner-svn-ports-all@freebsd.org Sat Jul 9 06:51:17 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id A75CEB85C36; Sat, 9 Jul 2016 06:51: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 mx1.freebsd.org (Postfix) with ESMTPS id 5CDF91B2B; Sat, 9 Jul 2016 06:51: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 u696pGwL083847; Sat, 9 Jul 2016 06:51:16 GMT (envelope-from pi@FreeBSD.org) Received: (from pi@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u696pGLv083844; Sat, 9 Jul 2016 06:51:16 GMT (envelope-from pi@FreeBSD.org) Message-Id: <201607090651.u696pGLv083844@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pi set sender to pi@FreeBSD.org using -f From: Kurt Jaeger Date: Sat, 9 Jul 2016 06:51:16 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418263 - head/security/p5-Protocol-ACME X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 09 Jul 2016 06:51:17 -0000 Author: pi Date: Sat Jul 9 06:51:16 2016 New Revision: 418263 URL: https://svnweb.freebsd.org/changeset/ports/418263 Log: security/p5-Protocol-ACME: 0.12 -> 0.15 Changes: http://cpansearch.perl.org/src/SLUDIN/Protocol-ACME-0.15/Changes Modified: head/security/p5-Protocol-ACME/Makefile head/security/p5-Protocol-ACME/distinfo head/security/p5-Protocol-ACME/pkg-plist Modified: head/security/p5-Protocol-ACME/Makefile ============================================================================== --- head/security/p5-Protocol-ACME/Makefile Sat Jul 9 04:58:19 2016 (r418262) +++ head/security/p5-Protocol-ACME/Makefile Sat Jul 9 06:51:16 2016 (r418263) @@ -1,8 +1,7 @@ # $FreeBSD$ PORTNAME= Protocol-ACME -PORTVERSION= 0.12 -PORTREVISION= 1 +PORTVERSION= 0.15 CATEGORIES= security perl5 MASTER_SITES= CPAN MASTER_SITE_SUBDIR= CPAN:SLUDIN Modified: head/security/p5-Protocol-ACME/distinfo ============================================================================== --- head/security/p5-Protocol-ACME/distinfo Sat Jul 9 04:58:19 2016 (r418262) +++ head/security/p5-Protocol-ACME/distinfo Sat Jul 9 06:51:16 2016 (r418263) @@ -1,2 +1,3 @@ -SHA256 (Protocol-ACME-0.12.tar.gz) = e55dd3dff7d365cf788c770d58727188728ec203e36237820ea1d98330888a2d -SIZE (Protocol-ACME-0.12.tar.gz) = 31192 +TIMESTAMP = 1468038178 +SHA256 (Protocol-ACME-0.15.tar.gz) = 0d5fabeba0cc800b03827dfe236cf18b57afd1787e4945c4ef8c12692e304fb7 +SIZE (Protocol-ACME-0.15.tar.gz) = 31801 Modified: head/security/p5-Protocol-ACME/pkg-plist ============================================================================== --- head/security/p5-Protocol-ACME/pkg-plist Sat Jul 9 04:58:19 2016 (r418262) +++ head/security/p5-Protocol-ACME/pkg-plist Sat Jul 9 06:51:16 2016 (r418263) @@ -9,8 +9,6 @@ %%SITE_PERL%%/Protocol/ACME/OpenSSL.pm %%SITE_PERL%%/Protocol/ACME/Utils.pm %%SITE_PERL%%/Protocol/README.pod -%%SITE_PERL%%/Protocol/client.pl -%%SITE_PERL%%/Protocol/revoke.pl %%PERL5_MAN3%%/Protocol::ACME.3.gz %%PERL5_MAN3%%/Protocol::ACME::Challenge.3.gz %%PERL5_MAN3%%/Protocol::ACME::Challenge::LocalFile.3.gz From owner-svn-ports-all@freebsd.org Sat Jul 9 06:52:48 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id AE344B85D9F; Sat, 9 Jul 2016 06:52:48 +0000 (UTC) (envelope-from pi@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 7B4591CFA; Sat, 9 Jul 2016 06:52:48 +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 u696qlXa086757; Sat, 9 Jul 2016 06:52:47 GMT (envelope-from pi@FreeBSD.org) Received: (from pi@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u696qlEB086755; Sat, 9 Jul 2016 06:52:47 GMT (envelope-from pi@FreeBSD.org) Message-Id: <201607090652.u696qlEB086755@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pi set sender to pi@FreeBSD.org using -f From: Kurt Jaeger Date: Sat, 9 Jul 2016 06:52:47 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418264 - head/net-im/oysttyer X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 09 Jul 2016 06:52:48 -0000 Author: pi Date: Sat Jul 9 06:52:47 2016 New Revision: 418264 URL: https://svnweb.freebsd.org/changeset/ports/418264 Log: net-im/oysttyer: 2.7.0 -> 2.7.2 - Fix /short command Modified: head/net-im/oysttyer/Makefile head/net-im/oysttyer/distinfo Modified: head/net-im/oysttyer/Makefile ============================================================================== --- head/net-im/oysttyer/Makefile Sat Jul 9 06:51:16 2016 (r418263) +++ head/net-im/oysttyer/Makefile Sat Jul 9 06:52:47 2016 (r418264) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= oysttyer -PORTVERSION= 2.7.0 +PORTVERSION= 2.7.2 CATEGORIES= net-im MAINTAINER= pi@FreeBSD.org Modified: head/net-im/oysttyer/distinfo ============================================================================== --- head/net-im/oysttyer/distinfo Sat Jul 9 06:51:16 2016 (r418263) +++ head/net-im/oysttyer/distinfo Sat Jul 9 06:52:47 2016 (r418264) @@ -1,3 +1,3 @@ -TIMESTAMP = 1464251832 -SHA256 (oysttyer-oysttyer-2.7.0_GH0.tar.gz) = 6b944413423871c6366a3bafd08a79579bce01c6b254df7ebed3394d48c2bb60 -SIZE (oysttyer-oysttyer-2.7.0_GH0.tar.gz) = 105256 +TIMESTAMP = 1468038230 +SHA256 (oysttyer-oysttyer-2.7.2_GH0.tar.gz) = 957949c924d0727a29cc17042cf9c7bb991a89c817665f752dbe0f5d0b576bab +SIZE (oysttyer-oysttyer-2.7.2_GH0.tar.gz) = 105369 From owner-svn-ports-all@freebsd.org Sat Jul 9 06:55:22 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id E6599B85EC4; Sat, 9 Jul 2016 06:55:22 +0000 (UTC) (envelope-from pi@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id B69831F8A; Sat, 9 Jul 2016 06:55:22 +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 u696tLJ7087023; Sat, 9 Jul 2016 06:55:21 GMT (envelope-from pi@FreeBSD.org) Received: (from pi@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u696tL7e087021; Sat, 9 Jul 2016 06:55:21 GMT (envelope-from pi@FreeBSD.org) Message-Id: <201607090655.u696tL7e087021@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pi set sender to pi@FreeBSD.org using -f From: Kurt Jaeger Date: Sat, 9 Jul 2016 06:55:21 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418265 - head/databases/pecl-mongodb X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 09 Jul 2016 06:55:23 -0000 Author: pi Date: Sat Jul 9 06:55:21 2016 New Revision: 418265 URL: https://svnweb.freebsd.org/changeset/ports/418265 Log: databases/pecl-mongodb: 1.1.7 -> 1.1.8 - Trace returns from phongo_stream_initiator() - PHPC-720: Do not persist SSL streams to avoid SSL reinitialization errors - Move php_phongo_new_datetime_from_utcdatetime() into UTCDateTime.c - PHPC-631: Regression tests for UTCDateTime::toDateTime() - PHPC-631: Fix timelib_time.f assignment in UTCDateTime::toDateTime() Modified: head/databases/pecl-mongodb/Makefile head/databases/pecl-mongodb/distinfo Modified: head/databases/pecl-mongodb/Makefile ============================================================================== --- head/databases/pecl-mongodb/Makefile Sat Jul 9 06:52:47 2016 (r418264) +++ head/databases/pecl-mongodb/Makefile Sat Jul 9 06:55:21 2016 (r418265) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= mongodb -PORTVERSION= 1.1.7 +PORTVERSION= 1.1.8 CATEGORIES= databases pear MASTER_SITES= http://pecl.php.net/get/ PKGNAMEPREFIX= pecl- Modified: head/databases/pecl-mongodb/distinfo ============================================================================== --- head/databases/pecl-mongodb/distinfo Sat Jul 9 06:52:47 2016 (r418264) +++ head/databases/pecl-mongodb/distinfo Sat Jul 9 06:55:21 2016 (r418265) @@ -1,3 +1,3 @@ -TIMESTAMP = 1465053673 -SHA256 (PECL/mongodb-1.1.7.tgz) = 65bfb564d9a53a7642a02f07085bd9055b43522250649886ed65a37771cf9b49 -SIZE (PECL/mongodb-1.1.7.tgz) = 806777 +TIMESTAMP = 1468038263 +SHA256 (PECL/mongodb-1.1.8.tgz) = b93ae7dc9bd270823965f8903c9acf47fe3a0ba7a630d08e8173ff091d593ae0 +SIZE (PECL/mongodb-1.1.8.tgz) = 806900 From owner-svn-ports-all@freebsd.org Sat Jul 9 07:31:15 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 331BDB83581; Sat, 9 Jul 2016 07:31:15 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id DC4821C66; Sat, 9 Jul 2016 07:31: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 u697VEfY098265; Sat, 9 Jul 2016 07:31:14 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u697VEOk098264; Sat, 9 Jul 2016 07:31:14 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201607090731.u697VEOk098264@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Sat, 9 Jul 2016 07:31:14 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418266 - head/emulators/ppsspp/files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 09 Jul 2016 07:31:15 -0000 Author: jbeich Date: Sat Jul 9 07:31:13 2016 New Revision: 418266 URL: https://svnweb.freebsd.org/changeset/ports/418266 Log: emulators/ppsspp: unbreak runtime on DragonFly $ ppsspp Unable to initialize SDL: SDL not built with joystick support Added: head/emulators/ppsspp/files/patch-no-joystick (contents, props changed) Added: head/emulators/ppsspp/files/patch-no-joystick ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/emulators/ppsspp/files/patch-no-joystick Sat Jul 9 07:31:13 2016 (r418266) @@ -0,0 +1,53 @@ +commit 3fc255b +Author: Henrik Rydgård +Date: Sat Jul 9 09:15:11 2016 +0200 + + Make it possible to run even if SDL was built with joystick disabled. Should fix #8851. +--- + ext/native/base/PCMain.cpp | 18 ++++++++++++++---- + 1 file changed, 14 insertions(+), 4 deletions(-) + +diff --git ext/native/base/PCMain.cpp ext/native/base/PCMain.cpp +index cead0d7..00ec49a 100644 +--- ext/native/base/PCMain.cpp ++++ ext/native/base/PCMain.cpp +@@ -426,9 +426,13 @@ int main(int argc, char *argv[]) { + + net::Init(); + ++ bool joystick_enabled = true; + if (SDL_Init(SDL_INIT_VIDEO | SDL_INIT_JOYSTICK | SDL_INIT_AUDIO) < 0) { +- fprintf(stderr, "Unable to initialize SDL: %s\n", SDL_GetError()); +- return 1; ++ joystick_enabled = false; ++ if (SDL_Init(SDL_INIT_VIDEO | SDL_INIT_AUDIO) < 0) { ++ fprintf(stderr, "Unable to initialize SDL: %s\n", SDL_GetError()); ++ return 1; ++ } + } + + #ifdef __APPLE__ +@@ -659,7 +663,11 @@ int main(int argc, char *argv[]) { + // Audio must be unpaused _after_ NativeInit() + SDL_PauseAudio(0); + #ifndef _WIN32 +- joystick = new SDLJoystick(); ++ if (joystick_enabled) { ++ joystick = new SDLJoystick(); ++ } else { ++ joystick = nullptr; ++ } + #endif + EnableFZ(); + +@@ -848,7 +856,9 @@ int main(int argc, char *argv[]) { + break; + default: + #ifndef _WIN32 +- joystick->ProcessInput(event); ++ if (joystick) { ++ joystick->ProcessInput(event); ++ } + #endif + break; + } From owner-svn-ports-all@freebsd.org Sat Jul 9 07:33:42 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 6C7D4B835CD; Sat, 9 Jul 2016 07:33:42 +0000 (UTC) (envelope-from woodsb02@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 3B4F91EF1; Sat, 9 Jul 2016 07:33:42 +0000 (UTC) (envelope-from woodsb02@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u697Xf85002050; Sat, 9 Jul 2016 07:33:41 GMT (envelope-from woodsb02@FreeBSD.org) Received: (from woodsb02@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u697XeDG002038; Sat, 9 Jul 2016 07:33:40 GMT (envelope-from woodsb02@FreeBSD.org) Message-Id: <201607090733.u697XeDG002038@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: woodsb02 set sender to woodsb02@FreeBSD.org using -f From: Ben Woods Date: Sat, 9 Jul 2016 07:33:40 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r418267 - in branches/2016Q3/graphics/tulip: . files X-SVN-Group: ports-branches MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 09 Jul 2016 07:33:42 -0000 Author: woodsb02 Date: Sat Jul 9 07:33:40 2016 New Revision: 418267 URL: https://svnweb.freebsd.org/changeset/ports/418267 Log: MFH: r418250 graphics/tulip: Update to 4.9.0 - Add USE_GL+=gl as per new stage-qa dependency detection script - Refactor patches to apply cleanly against new release Approved by: adamw (mentor) Relnotes: http://tulip.labri.fr/TulipDrupal/?q=node/2141 Differential Revision: https://reviews.freebsd.org/D7164 Approved by: ports-secteam (junovitch) Modified: branches/2016Q3/graphics/tulip/Makefile branches/2016Q3/graphics/tulip/distinfo branches/2016Q3/graphics/tulip/files/patch-CMakeLists.txt branches/2016Q3/graphics/tulip/files/patch-library_tulip-core_src_PluginLibraryLoader.cpp branches/2016Q3/graphics/tulip/files/patch-software_crash__handling_CrashHandling.cpp branches/2016Q3/graphics/tulip/files/patch-software_tulip__perspective_src_main.cpp branches/2016Q3/graphics/tulip/files/patch-software_tulip_src_main.cpp branches/2016Q3/graphics/tulip/files/patch-thirdparty_CMakeLists.txt branches/2016Q3/graphics/tulip/pkg-plist Directory Properties: branches/2016Q3/ (props changed) Modified: branches/2016Q3/graphics/tulip/Makefile ============================================================================== --- branches/2016Q3/graphics/tulip/Makefile Sat Jul 9 07:31:13 2016 (r418266) +++ branches/2016Q3/graphics/tulip/Makefile Sat Jul 9 07:33:40 2016 (r418267) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= tulip -PORTVERSION= 4.8.1 +PORTVERSION= 4.9.0 DISTVERSIONSUFFIX= _src CATEGORIES= graphics MASTER_SITES= SF/auber/${PORTNAME}/${PORTNAME}-${PORTVERSION} @@ -17,13 +17,13 @@ LIB_DEPENDS= libquazip.so:archivers/quaz libOGDF.so:math/ogdf \ libfreetype.so:print/freetype2 -WRKSRC= ${WRKDIR}/${PORTNAME}- +WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION} USES= cmake:outsource compiler:c++11-lib dos2unix execinfo jpeg python \ shebangfix SHEBANG_FILES= tulip-config.in DOS2UNIX_FILES= software/tulip/src/main.cpp -USE_GL= glew glut +USE_GL= gl glew glut USE_GNOME= libxml2 CMAKE_ARGS= -DBUILD_DOC:BOOL=OFF \ -DOGDFInclude:STRING=${LOCALBASE}/include \ Modified: branches/2016Q3/graphics/tulip/distinfo ============================================================================== --- branches/2016Q3/graphics/tulip/distinfo Sat Jul 9 07:31:13 2016 (r418266) +++ branches/2016Q3/graphics/tulip/distinfo Sat Jul 9 07:33:40 2016 (r418267) @@ -1,2 +1,3 @@ -SHA256 (tulip-4.8.1_src.tar.gz) = 36ce910330df3233f00205637f76d1e6f56e173d41e739923fd6ed53cb23daf4 -SIZE (tulip-4.8.1_src.tar.gz) = 152134621 +TIMESTAMP = 1468022227 +SHA256 (tulip-4.9.0_src.tar.gz) = 432d9e12839d41b8ed5bb497c08cd4922cb112868f4c47cd0675e7254e3a0c5e +SIZE (tulip-4.9.0_src.tar.gz) = 76325634 Modified: branches/2016Q3/graphics/tulip/files/patch-CMakeLists.txt ============================================================================== --- branches/2016Q3/graphics/tulip/files/patch-CMakeLists.txt Sat Jul 9 07:31:13 2016 (r418266) +++ branches/2016Q3/graphics/tulip/files/patch-CMakeLists.txt Sat Jul 9 07:33:40 2016 (r418267) @@ -1,6 +1,6 @@ ---- CMakeLists.txt.orig 2015-10-16 02:14:39 UTC +--- CMakeLists.txt.orig 2016-07-07 20:16:41 UTC +++ CMakeLists.txt -@@ -501,8 +501,8 @@ IF(NOT BUILD_CORE_ONLY) +@@ -564,8 +564,8 @@ IF(NOT BUILD_CORE_ONLY) SET(Tess2Library tess2-tulip-${TulipMMVersion}) ENDIF(NOT BUILD_CORE_ONLY) Modified: branches/2016Q3/graphics/tulip/files/patch-library_tulip-core_src_PluginLibraryLoader.cpp ============================================================================== --- branches/2016Q3/graphics/tulip/files/patch-library_tulip-core_src_PluginLibraryLoader.cpp Sat Jul 9 07:31:13 2016 (r418266) +++ branches/2016Q3/graphics/tulip/files/patch-library_tulip-core_src_PluginLibraryLoader.cpp Sat Jul 9 07:33:40 2016 (r418267) @@ -1,6 +1,6 @@ ---- library/tulip-core/src/PluginLibraryLoader.cpp.orig 2015-04-18 20:15:27 UTC +--- library/tulip-core/src/PluginLibraryLoader.cpp.orig 2016-07-07 20:15:54 UTC +++ library/tulip-core/src/PluginLibraryLoader.cpp -@@ -130,7 +130,14 @@ bool PluginLibraryLoader::loadPluginLibr +@@ -138,7 +138,14 @@ bool PluginLibraryLoader::loadPluginLibr } // accepts only file whose name matches *.so or *.dylib Modified: branches/2016Q3/graphics/tulip/files/patch-software_crash__handling_CrashHandling.cpp ============================================================================== --- branches/2016Q3/graphics/tulip/files/patch-software_crash__handling_CrashHandling.cpp Sat Jul 9 07:31:13 2016 (r418266) +++ branches/2016Q3/graphics/tulip/files/patch-software_crash__handling_CrashHandling.cpp Sat Jul 9 07:33:40 2016 (r418267) @@ -1,11 +1,11 @@ ---- software/crash_handling/CrashHandling.cpp.orig 2015-04-18 20:15:52 UTC +--- software/crash_handling/CrashHandling.cpp.orig 2016-07-07 20:15:39 UTC +++ software/crash_handling/CrashHandling.cpp -@@ -48,7 +48,7 @@ void setExtraSymbolsSearchPaths(const st +@@ -78,7 +78,7 @@ static void dumpStackTrace(StackWalker & /* Linux/MacOS-specific handling */ -#if defined(__unix__) || defined(__APPLE__) +#if (defined(__unix__) || defined(__APPLE__)) && !defined(__FreeBSD__) - # if defined(__i386__) || defined(__amd64__) + #if defined(__i386__) || defined(__amd64__) Modified: branches/2016Q3/graphics/tulip/files/patch-software_tulip__perspective_src_main.cpp ============================================================================== --- branches/2016Q3/graphics/tulip/files/patch-software_tulip__perspective_src_main.cpp Sat Jul 9 07:31:13 2016 (r418266) +++ branches/2016Q3/graphics/tulip/files/patch-software_tulip__perspective_src_main.cpp Sat Jul 9 07:33:40 2016 (r418267) @@ -1,11 +1,11 @@ ---- software/tulip_perspective/src/main.cpp.orig 2015-04-18 20:15:52 UTC +--- software/tulip_perspective/src/main.cpp.orig 2016-07-07 20:15:39 UTC +++ software/tulip_perspective/src/main.cpp -@@ -134,7 +134,9 @@ void usage(const QString &error) { - } +@@ -135,7 +135,9 @@ void usage(const QString &error) { int main(int argc,char **argv) { + +#ifndef __FreeBSD__ - start_crash_handler(); + CrashHandling::installCrashHandler(); +#endif QString appName("Tulip "); Modified: branches/2016Q3/graphics/tulip/files/patch-software_tulip_src_main.cpp ============================================================================== --- branches/2016Q3/graphics/tulip/files/patch-software_tulip_src_main.cpp Sat Jul 9 07:31:13 2016 (r418266) +++ branches/2016Q3/graphics/tulip/files/patch-software_tulip_src_main.cpp Sat Jul 9 07:33:40 2016 (r418267) @@ -1,11 +1,11 @@ ---- software/tulip/src/main.cpp.orig 2015-04-22 14:45:04 UTC +--- software/tulip/src/main.cpp.orig 2016-07-07 20:15:40 UTC +++ software/tulip/src/main.cpp @@ -124,7 +124,9 @@ void checkTulipRunning(const QString& pe } int main(int argc, char **argv) { +#ifndef __FreeBSD__ - start_crash_handler(); + CrashHandling::installCrashHandler(); +#endif QApplication tulip_agent(argc, argv); Modified: branches/2016Q3/graphics/tulip/files/patch-thirdparty_CMakeLists.txt ============================================================================== --- branches/2016Q3/graphics/tulip/files/patch-thirdparty_CMakeLists.txt Sat Jul 9 07:31:13 2016 (r418266) +++ branches/2016Q3/graphics/tulip/files/patch-thirdparty_CMakeLists.txt Sat Jul 9 07:33:40 2016 (r418267) @@ -1,11 +1,11 @@ ---- thirdparty/CMakeLists.txt.orig 2015-04-18 20:15:20 UTC +--- thirdparty/CMakeLists.txt.orig 2016-07-07 20:15:36 UTC +++ thirdparty/CMakeLists.txt -@@ -3,7 +3,7 @@ DISABLE_COMPILER_WARNINGS() - ADD_CORE_FILES(CMakeLists.txt) +@@ -8,7 +8,7 @@ ADD_CORE_FILES(CMakeLists.txt + ) ADD_SUBDIRECTORY(gzstream) -ADD_SUBDIRECTORY(OGDF) +#ADD_SUBDIRECTORY(OGDF) ADD_SUBDIRECTORY(libqhull) ADD_SUBDIRECTORY(yajl) - + IF(NOT BUILD_CORE_ONLY) Modified: branches/2016Q3/graphics/tulip/pkg-plist ============================================================================== --- branches/2016Q3/graphics/tulip/pkg-plist Sat Jul 9 07:31:13 2016 (r418266) +++ branches/2016Q3/graphics/tulip/pkg-plist Sat Jul 9 07:33:40 2016 (r418267) @@ -45,7 +45,6 @@ include/tulip/CopyPropertyDialog.h include/tulip/Curves.h include/tulip/DataSet.h include/tulip/Delaunay.h -include/tulip/DocumentationNavigator.h include/tulip/DoubleProperty.h include/tulip/DoublePropertyAnimation.h include/tulip/DoubleStringsListSelectionWidget.h @@ -241,13 +240,13 @@ include/tulip/StringsListSelectionWidget include/tulip/StringsListSelectionWidgetInterface.h include/tulip/SystemDefinition.h include/tulip/TemplateAlgorithm.h +include/tulip/TextureFileDialog.h include/tulip/TlpQtTools.h include/tulip/TlpTools.h include/tulip/TreeTest.h include/tulip/TreeViewComboBox.h include/tulip/TriconnectedTest.h include/tulip/TulipException.h -include/tulip/TulipFileDescriptorWidget.h include/tulip/TulipFont.h include/tulip/TulipFontAwesome.h include/tulip/TulipFontDialog.h @@ -306,6 +305,9 @@ lib/libftgl-tulip-%%TULIP_VERS%%.so.2 lib/libftgl-tulip-%%TULIP_VERS%%.so.2.1 lib/libgzstream-tulip-%%TULIP_VERS%%.so lib/libgzstream-tulip-%%TULIP_VERS%%.so.0 +lib/libquazip-tulip-%%TULIP_VERS%%.so +lib/libquazip-tulip-%%TULIP_VERS%%.so.1 +lib/libquazip-tulip-%%TULIP_VERS%%.so.1.0.0 lib/libqxt-tulip-%%TULIP_VERS%%.so lib/libqxt-tulip-%%TULIP_VERS%%.so.0 lib/libtess2-tulip-%%TULIP_VERS%%.so @@ -326,163 +328,163 @@ lib/python/tulipogl/__init__.py lib/python/tulipogl/native/_tulipogl.so lib/python/tulipplugins.py lib/python/tulipsip.so -lib/tulip/glyph/libBillboard-%%TULIP_VERS%%.0.so -lib/tulip/glyph/libChristmasTree-%%TULIP_VERS%%.0.so -lib/tulip/glyph/libCircle-%%TULIP_VERS%%.0.so -lib/tulip/glyph/libCone-%%TULIP_VERS%%.0.so -lib/tulip/glyph/libCross-%%TULIP_VERS%%.0.so -lib/tulip/glyph/libCube-%%TULIP_VERS%%.0.so -lib/tulip/glyph/libCubeOutlinedTransparent-%%TULIP_VERS%%.0.so -lib/tulip/glyph/libCylinder-%%TULIP_VERS%%.0.so -lib/tulip/glyph/libDiamond-%%TULIP_VERS%%.0.so -lib/tulip/glyph/libFontAwesomeIcon-%%TULIP_VERS%%.0.so -lib/tulip/glyph/libGlowSphere-%%TULIP_VERS%%.0.so -lib/tulip/glyph/libHexagone-%%TULIP_VERS%%.0.so -lib/tulip/glyph/libPentagone-%%TULIP_VERS%%.0.so -lib/tulip/glyph/libRing-%%TULIP_VERS%%.0.so -lib/tulip/glyph/libRoundedBox-%%TULIP_VERS%%.0.so -lib/tulip/glyph/libSphere-%%TULIP_VERS%%.0.so -lib/tulip/glyph/libSquare-%%TULIP_VERS%%.0.so -lib/tulip/glyph/libStar-%%TULIP_VERS%%.0.so -lib/tulip/glyph/libTriangle-%%TULIP_VERS%%.0.so -lib/tulip/glyph/libWindow-%%TULIP_VERS%%.0.so -lib/tulip/interactor/libFishEyeInteractor-%%TULIP_VERS%%.0.so -lib/tulip/interactor/libInteractorAddNodeEdge-%%TULIP_VERS%%.0.so -lib/tulip/interactor/libInteractorDeleteElement-%%TULIP_VERS%%.0.so -lib/tulip/interactor/libInteractorEditEdgeBends-%%TULIP_VERS%%.0.so -lib/tulip/interactor/libInteractorGetInformation-%%TULIP_VERS%%.0.so -lib/tulip/interactor/libInteractorNavigation-%%TULIP_VERS%%.0.so -lib/tulip/interactor/libInteractorRectangleZoom-%%TULIP_VERS%%.0.so -lib/tulip/interactor/libInteractorSelection-%%TULIP_VERS%%.0.so -lib/tulip/interactor/libInteractorSelectionModifier-%%TULIP_VERS%%.0.so -lib/tulip/interactor/libMouseLassoNodesSelector-%%TULIP_VERS%%.0.so -lib/tulip/interactor/libMouseMagnifyingGlass-%%TULIP_VERS%%.0.so -lib/tulip/interactor/libNeighborhoodHighlighter-%%TULIP_VERS%%.0.so -lib/tulip/interactor/libPathFinder-%%TULIP_VERS%%.0.so -lib/tulip/libAcyclic-%%TULIP_VERS%%.0.so -lib/tulip/libAdjacencyMatrixImport-%%TULIP_VERS%%.0.so -lib/tulip/libAutoSize-%%TULIP_VERS%%.0.so -lib/tulip/libBetweennessCentrality-%%TULIP_VERS%%.0.so -lib/tulip/libBiconnected-%%TULIP_VERS%%.0.so -lib/tulip/libBiconnectedComponent-%%TULIP_VERS%%.0.so -lib/tulip/libBubbleTree-%%TULIP_VERS%%.0.so -lib/tulip/libCircular-%%TULIP_VERS%%.0.so -lib/tulip/libClusterMetric-%%TULIP_VERS%%.0.so -lib/tulip/libColorMapping-%%TULIP_VERS%%.0.so -lib/tulip/libCompleteGraph-%%TULIP_VERS%%.0.so -lib/tulip/libCompleteTree-%%TULIP_VERS%%.0.so -lib/tulip/libConeTreeExtended-%%TULIP_VERS%%.0.so -lib/tulip/libConnected-%%TULIP_VERS%%.0.so -lib/tulip/libConnectedComponent-%%TULIP_VERS%%.0.so -lib/tulip/libConnectedComponentPacking-%%TULIP_VERS%%.0.so -lib/tulip/libConvolutionClustering-%%TULIP_VERS%%.0.so -lib/tulip/libCurveEdges-%%TULIP_VERS%%.0.so -lib/tulip/libDagLevelMetric-%%TULIP_VERS%%.0.so -lib/tulip/libDegreeMetric-%%TULIP_VERS%%.0.so -lib/tulip/libDelaunay-%%TULIP_VERS%%.0.so -lib/tulip/libDendrogram-%%TULIP_VERS%%.0.so -lib/tulip/libDepthMetric-%%TULIP_VERS%%.0.so -lib/tulip/libDotImport-%%TULIP_VERS%%.0.so -lib/tulip/libEccentricity-%%TULIP_VERS%%.0.so -lib/tulip/libEdgeBundling-%%TULIP_VERS%%.0.so -lib/tulip/libEmptyGraph-%%TULIP_VERS%%.0.so -lib/tulip/libEqualValueClustering-%%TULIP_VERS%%.0.so -lib/tulip/libFastOverlapRemoval-%%TULIP_VERS%%.0.so -lib/tulip/libFileSystem-%%TULIP_VERS%%.0.so -lib/tulip/libGEXFImport-%%TULIP_VERS%%.0.so -lib/tulip/libGMLExport-%%TULIP_VERS%%.0.so -lib/tulip/libGMLImport-%%TULIP_VERS%%.0.so -lib/tulip/libGemLayout-%%TULIP_VERS%%.0.so -lib/tulip/libGrid-%%TULIP_VERS%%.0.so -lib/tulip/libGrip-%%TULIP_VERS%%.0.so -lib/tulip/libHierarchicalClustering-%%TULIP_VERS%%.0.so -lib/tulip/libHierarchicalGraph-%%TULIP_VERS%%.0.so -lib/tulip/libIdMetric-%%TULIP_VERS%%.0.so -lib/tulip/libImportPajek-%%TULIP_VERS%%.0.so -lib/tulip/libImportUCINET-%%TULIP_VERS%%.0.so -lib/tulip/libImprovedWalker-%%TULIP_VERS%%.0.so -lib/tulip/libInducedSubGraphSelection-%%TULIP_VERS%%.0.so -lib/tulip/libKCores-%%TULIP_VERS%%.0.so -lib/tulip/libKruskal-%%TULIP_VERS%%.0.so -lib/tulip/libLeafMetric-%%TULIP_VERS%%.0.so -lib/tulip/libLinLog-%%TULIP_VERS%%.0.so -lib/tulip/libLinkCommunities-%%TULIP_VERS%%.0.so -lib/tulip/libLoopSelection-%%TULIP_VERS%%.0.so -lib/tulip/libLouvainClustering-%%TULIP_VERS%%.0.so -lib/tulip/libMCLClustering-%%TULIP_VERS%%.0.so -lib/tulip/libMetricSizeMapping-%%TULIP_VERS%%.0.so -lib/tulip/libMixedModel-%%TULIP_VERS%%.0.so -lib/tulip/libMultipleSelection-%%TULIP_VERS%%.0.so -lib/tulip/libNodeMetric-%%TULIP_VERS%%.0.so -lib/tulip/libOGDFBalloon-%%TULIP_VERS%%.0.so -lib/tulip/libOGDFBertaultLayout-%%TULIP_VERS%%.0.so -lib/tulip/libOGDFCircular-%%TULIP_VERS%%.0.so -lib/tulip/libOGDFDavidsonHarel-%%TULIP_VERS%%.0.so -lib/tulip/libOGDFDominance-%%TULIP_VERS%%.0.so -lib/tulip/libOGDFFastMultipoleEmbedder-%%TULIP_VERS%%.0.so -lib/tulip/libOGDFFastMultipoleMultilevelEmbedder-%%TULIP_VERS%%.0.so -lib/tulip/libOGDFFm3-%%TULIP_VERS%%.0.so -lib/tulip/libOGDFFrutchermanReingold-%%TULIP_VERS%%.0.so -lib/tulip/libOGDFGemFrick-%%TULIP_VERS%%.0.so -lib/tulip/libOGDFKamadaKawai-%%TULIP_VERS%%.0.so -lib/tulip/libOGDFMMMExampleFastLayout-%%TULIP_VERS%%.0.so -lib/tulip/libOGDFMMMExampleNiceLayout-%%TULIP_VERS%%.0.so -lib/tulip/libOGDFMMMExampleNoTwistLayout-%%TULIP_VERS%%.0.so -lib/tulip/libOGDFPivotMDS-%%TULIP_VERS%%.0.so -lib/tulip/libOGDFPlanarizationGrid-%%TULIP_VERS%%.0.so -lib/tulip/libOGDFPlanarizationLayout-%%TULIP_VERS%%.0.so -lib/tulip/libOGDFStressMajorization-%%TULIP_VERS%%.0.so -lib/tulip/libOGDFSugiyama-%%TULIP_VERS%%.0.so -lib/tulip/libOGDFTileToRowsPacking-%%TULIP_VERS%%.0.so -lib/tulip/libOGDFTree-%%TULIP_VERS%%.0.so -lib/tulip/libOGDFUpwardPlanarization-%%TULIP_VERS%%.0.so -lib/tulip/libOGDFVisibility-%%TULIP_VERS%%.0.so -lib/tulip/libOuterplanar-%%TULIP_VERS%%.0.so -lib/tulip/libPageRank-%%TULIP_VERS%%.0.so -lib/tulip/libPathLengthMetric-%%TULIP_VERS%%.0.so -lib/tulip/libPerfectLayout-%%TULIP_VERS%%.0.so -lib/tulip/libPlanarGraph-%%TULIP_VERS%%.0.so -lib/tulip/libPlanarity-%%TULIP_VERS%%.0.so -lib/tulip/libPolyominoPacking-%%TULIP_VERS%%.0.so -lib/tulip/libQuotientClustering-%%TULIP_VERS%%.0.so -lib/tulip/libRandom-%%TULIP_VERS%%.0.so -lib/tulip/libRandomGraph-%%TULIP_VERS%%.0.so -lib/tulip/libRandomMetric-%%TULIP_VERS%%.0.so -lib/tulip/libRandomSimpleGraph-%%TULIP_VERS%%.0.so -lib/tulip/libRandomTree-%%TULIP_VERS%%.0.so -lib/tulip/libRandomTreeGeneral-%%TULIP_VERS%%.0.so -lib/tulip/libReachableSubGraphSelection-%%TULIP_VERS%%.0.so -lib/tulip/libReverseEdges-%%TULIP_VERS%%.0.so -lib/tulip/libSVGExport-%%TULIP_VERS%%.0.so -lib/tulip/libSimple-%%TULIP_VERS%%.0.so -lib/tulip/libSmallWorldGraph-%%TULIP_VERS%%.0.so -lib/tulip/libSpanningDagSelection-%%TULIP_VERS%%.0.so -lib/tulip/libSpanningTreeSelection-%%TULIP_VERS%%.0.so -lib/tulip/libSquarifiedTreeMap-%%TULIP_VERS%%.0.so -lib/tulip/libStrahlerMetric-%%TULIP_VERS%%.0.so -lib/tulip/libStrengthClustering-%%TULIP_VERS%%.0.so -lib/tulip/libStrengthMetric-%%TULIP_VERS%%.0.so -lib/tulip/libStrongComponent-%%TULIP_VERS%%.0.so -lib/tulip/libToLabels-%%TULIP_VERS%%.0.so -lib/tulip/libTree-%%TULIP_VERS%%.0.so -lib/tulip/libTreeLeaf-%%TULIP_VERS%%.0.so -lib/tulip/libTreeRadial-%%TULIP_VERS%%.0.so -lib/tulip/libTreeReingoldAndTilforExtended-%%TULIP_VERS%%.0.so -lib/tulip/libTriconnected-%%TULIP_VERS%%.0.so -lib/tulip/libTutte-%%TULIP_VERS%%.0.so -lib/tulip/libVoronoi-%%TULIP_VERS%%.0.so -lib/tulip/libWebImport-%%TULIP_VERS%%.0.so -lib/tulip/libWelshPowell-%%TULIP_VERS%%.0.so -lib/tulip/perspective/libGraphPerspective-%%TULIP_VERS%%.0.so -lib/tulip/view/libGeographicView-%%TULIP_VERS%%.0.so -lib/tulip/view/libHistogramView-%%TULIP_VERS%%.0.so -lib/tulip/view/libMatrixView-%%TULIP_VERS%%.0.so -lib/tulip/view/libParallelCoordinatesView-%%TULIP_VERS%%.0.so -lib/tulip/view/libPixelOrientedView-%%TULIP_VERS%%.0.so -lib/tulip/view/libPythonScriptView-%%TULIP_VERS%%.0.so -lib/tulip/view/libSOMView-%%TULIP_VERS%%.0.so -lib/tulip/view/libScatterPlot2DView-%%TULIP_VERS%%.0.so -lib/tulip/view/libTableView-%%TULIP_VERS%%.0.so +lib/tulip/glyph/libBillboard-%%TULIP_VERSION%%.so +lib/tulip/glyph/libChristmasTree-%%TULIP_VERSION%%.so +lib/tulip/glyph/libCircle-%%TULIP_VERSION%%.so +lib/tulip/glyph/libCone-%%TULIP_VERSION%%.so +lib/tulip/glyph/libCross-%%TULIP_VERSION%%.so +lib/tulip/glyph/libCube-%%TULIP_VERSION%%.so +lib/tulip/glyph/libCubeOutlinedTransparent-%%TULIP_VERSION%%.so +lib/tulip/glyph/libCylinder-%%TULIP_VERSION%%.so +lib/tulip/glyph/libDiamond-%%TULIP_VERSION%%.so +lib/tulip/glyph/libFontAwesomeIcon-%%TULIP_VERSION%%.so +lib/tulip/glyph/libGlowSphere-%%TULIP_VERSION%%.so +lib/tulip/glyph/libHexagone-%%TULIP_VERSION%%.so +lib/tulip/glyph/libPentagone-%%TULIP_VERSION%%.so +lib/tulip/glyph/libRing-%%TULIP_VERSION%%.so +lib/tulip/glyph/libRoundedBox-%%TULIP_VERSION%%.so +lib/tulip/glyph/libSphere-%%TULIP_VERSION%%.so +lib/tulip/glyph/libSquare-%%TULIP_VERSION%%.so +lib/tulip/glyph/libStar-%%TULIP_VERSION%%.so +lib/tulip/glyph/libTriangle-%%TULIP_VERSION%%.so +lib/tulip/glyph/libWindow-%%TULIP_VERSION%%.so +lib/tulip/interactor/libFishEyeInteractor-%%TULIP_VERSION%%.so +lib/tulip/interactor/libInteractorAddNodeEdge-%%TULIP_VERSION%%.so +lib/tulip/interactor/libInteractorDeleteElement-%%TULIP_VERSION%%.so +lib/tulip/interactor/libInteractorEditEdgeBends-%%TULIP_VERSION%%.so +lib/tulip/interactor/libInteractorGetInformation-%%TULIP_VERSION%%.so +lib/tulip/interactor/libInteractorNavigation-%%TULIP_VERSION%%.so +lib/tulip/interactor/libInteractorRectangleZoom-%%TULIP_VERSION%%.so +lib/tulip/interactor/libInteractorSelection-%%TULIP_VERSION%%.so +lib/tulip/interactor/libInteractorSelectionModifier-%%TULIP_VERSION%%.so +lib/tulip/interactor/libMouseLassoNodesSelector-%%TULIP_VERSION%%.so +lib/tulip/interactor/libMouseMagnifyingGlass-%%TULIP_VERSION%%.so +lib/tulip/interactor/libNeighborhoodHighlighter-%%TULIP_VERSION%%.so +lib/tulip/interactor/libPathFinder-%%TULIP_VERSION%%.so +lib/tulip/libAcyclic-%%TULIP_VERSION%%.so +lib/tulip/libAdjacencyMatrixImport-%%TULIP_VERSION%%.so +lib/tulip/libAutoSize-%%TULIP_VERSION%%.so +lib/tulip/libBetweennessCentrality-%%TULIP_VERSION%%.so +lib/tulip/libBiconnected-%%TULIP_VERSION%%.so +lib/tulip/libBiconnectedComponent-%%TULIP_VERSION%%.so +lib/tulip/libBubbleTree-%%TULIP_VERSION%%.so +lib/tulip/libCircular-%%TULIP_VERSION%%.so +lib/tulip/libClusterMetric-%%TULIP_VERSION%%.so +lib/tulip/libColorMapping-%%TULIP_VERSION%%.so +lib/tulip/libCompleteGraph-%%TULIP_VERSION%%.so +lib/tulip/libCompleteTree-%%TULIP_VERSION%%.so +lib/tulip/libConeTreeExtended-%%TULIP_VERSION%%.so +lib/tulip/libConnected-%%TULIP_VERSION%%.so +lib/tulip/libConnectedComponent-%%TULIP_VERSION%%.so +lib/tulip/libConnectedComponentPacking-%%TULIP_VERSION%%.so +lib/tulip/libConvolutionClustering-%%TULIP_VERSION%%.so +lib/tulip/libCurveEdges-%%TULIP_VERSION%%.so +lib/tulip/libDagLevelMetric-%%TULIP_VERSION%%.so +lib/tulip/libDegreeMetric-%%TULIP_VERSION%%.so +lib/tulip/libDelaunay-%%TULIP_VERSION%%.so +lib/tulip/libDendrogram-%%TULIP_VERSION%%.so +lib/tulip/libDepthMetric-%%TULIP_VERSION%%.so +lib/tulip/libDotImport-%%TULIP_VERSION%%.so +lib/tulip/libEccentricity-%%TULIP_VERSION%%.so +lib/tulip/libEdgeBundling-%%TULIP_VERSION%%.so +lib/tulip/libEmptyGraph-%%TULIP_VERSION%%.so +lib/tulip/libEqualValueClustering-%%TULIP_VERSION%%.so +lib/tulip/libFastOverlapRemoval-%%TULIP_VERSION%%.so +lib/tulip/libFileSystem-%%TULIP_VERSION%%.so +lib/tulip/libGEXFImport-%%TULIP_VERSION%%.so +lib/tulip/libGMLExport-%%TULIP_VERSION%%.so +lib/tulip/libGMLImport-%%TULIP_VERSION%%.so +lib/tulip/libGemLayout-%%TULIP_VERSION%%.so +lib/tulip/libGrid-%%TULIP_VERSION%%.so +lib/tulip/libGrip-%%TULIP_VERSION%%.so +lib/tulip/libHierarchicalClustering-%%TULIP_VERSION%%.so +lib/tulip/libHierarchicalGraph-%%TULIP_VERSION%%.so +lib/tulip/libIdMetric-%%TULIP_VERSION%%.so +lib/tulip/libImportPajek-%%TULIP_VERSION%%.so +lib/tulip/libImportUCINET-%%TULIP_VERSION%%.so +lib/tulip/libImprovedWalker-%%TULIP_VERSION%%.so +lib/tulip/libInducedSubGraphSelection-%%TULIP_VERSION%%.so +lib/tulip/libKCores-%%TULIP_VERSION%%.so +lib/tulip/libKruskal-%%TULIP_VERSION%%.so +lib/tulip/libLeafMetric-%%TULIP_VERSION%%.so +lib/tulip/libLinLog-%%TULIP_VERSION%%.so +lib/tulip/libLinkCommunities-%%TULIP_VERSION%%.so +lib/tulip/libLoopSelection-%%TULIP_VERSION%%.so +lib/tulip/libLouvainClustering-%%TULIP_VERSION%%.so +lib/tulip/libMCLClustering-%%TULIP_VERSION%%.so +lib/tulip/libMetricSizeMapping-%%TULIP_VERSION%%.so +lib/tulip/libMixedModel-%%TULIP_VERSION%%.so +lib/tulip/libMultipleSelection-%%TULIP_VERSION%%.so +lib/tulip/libNodeMetric-%%TULIP_VERSION%%.so +lib/tulip/libOGDFBalloon-%%TULIP_VERSION%%.so +lib/tulip/libOGDFBertaultLayout-%%TULIP_VERSION%%.so +lib/tulip/libOGDFCircular-%%TULIP_VERSION%%.so +lib/tulip/libOGDFDavidsonHarel-%%TULIP_VERSION%%.so +lib/tulip/libOGDFDominance-%%TULIP_VERSION%%.so +lib/tulip/libOGDFFastMultipoleEmbedder-%%TULIP_VERSION%%.so +lib/tulip/libOGDFFastMultipoleMultilevelEmbedder-%%TULIP_VERSION%%.so +lib/tulip/libOGDFFm3-%%TULIP_VERSION%%.so +lib/tulip/libOGDFFrutchermanReingold-%%TULIP_VERSION%%.so +lib/tulip/libOGDFGemFrick-%%TULIP_VERSION%%.so +lib/tulip/libOGDFKamadaKawai-%%TULIP_VERSION%%.so +lib/tulip/libOGDFMMMExampleFastLayout-%%TULIP_VERSION%%.so +lib/tulip/libOGDFMMMExampleNiceLayout-%%TULIP_VERSION%%.so +lib/tulip/libOGDFMMMExampleNoTwistLayout-%%TULIP_VERSION%%.so +lib/tulip/libOGDFPivotMDS-%%TULIP_VERSION%%.so +lib/tulip/libOGDFPlanarizationGrid-%%TULIP_VERSION%%.so +lib/tulip/libOGDFPlanarizationLayout-%%TULIP_VERSION%%.so +lib/tulip/libOGDFStressMajorization-%%TULIP_VERSION%%.so +lib/tulip/libOGDFSugiyama-%%TULIP_VERSION%%.so +lib/tulip/libOGDFTileToRowsPacking-%%TULIP_VERSION%%.so +lib/tulip/libOGDFTree-%%TULIP_VERSION%%.so +lib/tulip/libOGDFUpwardPlanarization-%%TULIP_VERSION%%.so +lib/tulip/libOGDFVisibility-%%TULIP_VERSION%%.so +lib/tulip/libOuterplanar-%%TULIP_VERSION%%.so +lib/tulip/libPageRank-%%TULIP_VERSION%%.so +lib/tulip/libPathLengthMetric-%%TULIP_VERSION%%.so +lib/tulip/libPerfectLayout-%%TULIP_VERSION%%.so +lib/tulip/libPlanarGraph-%%TULIP_VERSION%%.so +lib/tulip/libPlanarity-%%TULIP_VERSION%%.so +lib/tulip/libPolyominoPacking-%%TULIP_VERSION%%.so +lib/tulip/libQuotientClustering-%%TULIP_VERSION%%.so +lib/tulip/libRandom-%%TULIP_VERSION%%.so +lib/tulip/libRandomGraph-%%TULIP_VERSION%%.so +lib/tulip/libRandomMetric-%%TULIP_VERSION%%.so +lib/tulip/libRandomSimpleGraph-%%TULIP_VERSION%%.so +lib/tulip/libRandomTree-%%TULIP_VERSION%%.so +lib/tulip/libRandomTreeGeneral-%%TULIP_VERSION%%.so +lib/tulip/libReachableSubGraphSelection-%%TULIP_VERSION%%.so +lib/tulip/libReverseEdges-%%TULIP_VERSION%%.so +lib/tulip/libSVGExport-%%TULIP_VERSION%%.so +lib/tulip/libSimple-%%TULIP_VERSION%%.so +lib/tulip/libSmallWorldGraph-%%TULIP_VERSION%%.so +lib/tulip/libSpanningDagSelection-%%TULIP_VERSION%%.so +lib/tulip/libSpanningTreeSelection-%%TULIP_VERSION%%.so +lib/tulip/libSquarifiedTreeMap-%%TULIP_VERSION%%.so +lib/tulip/libStrahlerMetric-%%TULIP_VERSION%%.so +lib/tulip/libStrengthClustering-%%TULIP_VERSION%%.so +lib/tulip/libStrengthMetric-%%TULIP_VERSION%%.so +lib/tulip/libStrongComponent-%%TULIP_VERSION%%.so +lib/tulip/libToLabels-%%TULIP_VERSION%%.so +lib/tulip/libTree-%%TULIP_VERSION%%.so +lib/tulip/libTreeLeaf-%%TULIP_VERSION%%.so +lib/tulip/libTreeRadial-%%TULIP_VERSION%%.so +lib/tulip/libTreeReingoldAndTilforExtended-%%TULIP_VERSION%%.so +lib/tulip/libTriconnected-%%TULIP_VERSION%%.so +lib/tulip/libTutte-%%TULIP_VERSION%%.so +lib/tulip/libVoronoi-%%TULIP_VERSION%%.so +lib/tulip/libWebImport-%%TULIP_VERSION%%.so +lib/tulip/libWelshPowell-%%TULIP_VERSION%%.so +lib/tulip/perspective/libGraphPerspective-%%TULIP_VERSION%%.so +lib/tulip/view/libGeographicView-%%TULIP_VERSION%%.so +lib/tulip/view/libHistogramView-%%TULIP_VERSION%%.so +lib/tulip/view/libMatrixView-%%TULIP_VERSION%%.so +lib/tulip/view/libParallelCoordinatesView-%%TULIP_VERSION%%.so +lib/tulip/view/libPixelOrientedView-%%TULIP_VERSION%%.so +lib/tulip/view/libPythonScriptView-%%TULIP_VERSION%%.so +lib/tulip/view/libSOMView-%%TULIP_VERSION%%.so +lib/tulip/view/libScatterPlot2DView-%%TULIP_VERSION%%.so +lib/tulip/view/libTableView-%%TULIP_VERSION%%.so share/pixmaps/tulip.png %%DATADIR%%/FindGLEW.cmake %%DATADIR%%/FindQtX.cmake @@ -788,6 +790,8 @@ share/pixmaps/tulip.png %%DATADIR%%/bitmaps/edgeSpring.png %%DATADIR%%/bitmaps/font.ttf %%DATADIR%%/bitmaps/fontawesome-webfont.ttf +%%DATADIR%%/bitmaps/fontawesome-webfont.woff +%%DATADIR%%/bitmaps/fontawesome-webfont.woff2 %%DATADIR%%/bitmaps/fontb.ttf %%DATADIR%%/bitmaps/fonts/DejaVuMono/DejaVuMono.ttf %%DATADIR%%/bitmaps/fonts/DejaVuMono/DejaVuMono_Bold.ttf From owner-svn-ports-all@freebsd.org Sat Jul 9 09:00:13 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 376C2B85284; Sat, 9 Jul 2016 09:00:13 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 07BC714D1; Sat, 9 Jul 2016 09:00: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 u6990C4O031704; Sat, 9 Jul 2016 09:00:12 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u6990Clt031703; Sat, 9 Jul 2016 09:00:12 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201607090900.u6990Clt031703@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Sat, 9 Jul 2016 09:00:12 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418268 - head/graphics/cbviewer X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 09 Jul 2016 09:00:13 -0000 Author: amdmi3 Date: Sat Jul 9 09:00:12 2016 New Revision: 418268 URL: https://svnweb.freebsd.org/changeset/ports/418268 Log: - Add LICENSE_FILE - Switch to options helpers Modified: head/graphics/cbviewer/Makefile Modified: head/graphics/cbviewer/Makefile ============================================================================== --- head/graphics/cbviewer/Makefile Sat Jul 9 07:33:40 2016 (r418267) +++ head/graphics/cbviewer/Makefile Sat Jul 9 09:00:12 2016 (r418268) @@ -16,6 +16,7 @@ MAINTAINER= ports@FreeBSD.org COMMENT= Comic book viewer for comic book archives in cbz, cbr, zip, rar LICENSE= GPLv2 +LICENSE_FILE= ${WRKSRC}/COPYING RUN_DEPENDS= unrar:archivers/unrar @@ -32,22 +33,22 @@ PLIST_FILES= bin/${PORTNAME} \ share/pixmaps/${PORTNAME}.png PORTDOCS= CREDITS -OPTIONS_DEFINE= DOCS SUB_FILES= ${PORTNAME} DESKTOP_ENTRIES="CBViewer" "Comic book viewer" "${PORTNAME}" \ "${PORTNAME}" "Graphics;Viewer;Java;" "" +OPTIONS_DEFINE= DOCS + do-install: ${INSTALL_SCRIPT} ${WRKDIR}/${PORTNAME} ${STAGEDIR}${PREFIX}/bin/ @${MKDIR} ${STAGEDIR}${DATADIR} ${INSTALL_DATA} ${WRKSRC}/*.jar ${STAGEDIR}${DATADIR} - -post-install: ${INSTALL_DATA} ${_DISTDIR}/${PORTNAME}.png \ ${STAGEDIR}${PREFIX}/share/pixmaps/ +do-install-DOCS-on: @${MKDIR} ${STAGEDIR}${DOCSDIR} ${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/|} ${STAGEDIR}${DOCSDIR} From owner-svn-ports-all@freebsd.org Sat Jul 9 11:37:38 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 3EC55B84498; Sat, 9 Jul 2016 11:37:38 +0000 (UTC) (envelope-from pi@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 0024E1C3D; Sat, 9 Jul 2016 11:37: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 u69Bbb5i090506; Sat, 9 Jul 2016 11:37:37 GMT (envelope-from pi@FreeBSD.org) Received: (from pi@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u69BbadT090497; Sat, 9 Jul 2016 11:37:36 GMT (envelope-from pi@FreeBSD.org) Message-Id: <201607091137.u69BbadT090497@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pi set sender to pi@FreeBSD.org using -f From: Kurt Jaeger Date: Sat, 9 Jul 2016 11:37:36 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418269 - in head/chinese/fcitx: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 09 Jul 2016 11:37:38 -0000 Author: pi Date: Sat Jul 9 11:37:36 2016 New Revision: 418269 URL: https://svnweb.freebsd.org/changeset/ports/418269 Log: chinese/fcitx: 4.2.8.6 -> 4.2.9.1 PR: 210782 Submitted by: Iblis Lin Approved by: lichray@gmail.com (maintainer) Modified: head/chinese/fcitx/Makefile head/chinese/fcitx/distinfo head/chinese/fcitx/files/patch-CMakeLists.txt head/chinese/fcitx/files/patch-cmake__FcitxConfig.cmake head/chinese/fcitx/files/patch-cmake__FcitxMacro.cmake head/chinese/fcitx/files/patch-data__script__fcitx4-config.in head/chinese/fcitx/files/patch-tools__cli__CMakeLists.txt head/chinese/fcitx/files/patch-tools__gui__quickphrase-editor__CMakeLists.txt head/chinese/fcitx/files/patch-tools__gui__wrapper__CMakeLists.txt Modified: head/chinese/fcitx/Makefile ============================================================================== --- head/chinese/fcitx/Makefile Sat Jul 9 09:00:12 2016 (r418268) +++ head/chinese/fcitx/Makefile Sat Jul 9 11:37:36 2016 (r418269) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= fcitx -PORTVERSION= 4.2.8.6 -PORTREVISION= 3 +PORTVERSION= 4.2.9.1 CATEGORIES= chinese x11 MASTER_SITES= http://download.fcitx-im.org/fcitx/:fcitx \ http://download.fcitx-im.org/data/:data @@ -21,9 +20,15 @@ COMMENT= Flexible Input Method Framework LICENSE= GPLv2 -BUILD_DEPENDS= ${LOCALBASE}/libdata/pkgconfig/iso-codes.pc:misc/iso-codes -LIB_DEPENDS= libdbus-1.so:devel/dbus \ - libicuuc.so:devel/icu +BUILD_DEPENDS= ${LOCALBASE}/libdata/pkgconfig/iso-codes.pc:misc/iso-codes \ + ${LOCALBASE}/share/ECM/cmake/ECMConfig.cmake:devel/extra-cmake-modules +LIB_DEPENDS= libcairo.so:graphics/cairo \ + libdbus-1.so:devel/dbus \ + libicuuc.so:devel/icu \ + libXfixes.so:x11/libXfixes \ + libXinerama.so:x11/libXinerama \ + libXrender.so:x11/libXrender \ + libxkbcommon.so:x11/libxkbcommon RUN_DEPENDS= xdg-open:devel/xdg-utils SUB_FILES= pkg-message @@ -40,9 +45,16 @@ INSTALLS_ICONS= yes OPTIONS_DEFINE= GTK2 GTK3 QT4 OPENCC TPUNC DOCS OPTIONS_DEFAULT=GTK2 QT4 +OPTIONS_SUB= yes GTK2_DESC= Enable Gtk2 IM module +GTK2_USE= GNOME=gtk20 +GTK2_CMAKE_ON= -DENABLE_GTK2_IM_MODULE=ON + GTK3_DESC= Enable Gtk3 IM module +GTK3_USE= GNOME=gtk30 +GTK3_CMAKE_ON= -DENABLE_GTK3_IM_MODULE=ON + QT4_DESC= Enable Qt4 IM module OPENCC_DESC= Enable OpenCC for Chinese Transform TPUNC_DESC= Use traditional quotation marks @@ -60,18 +72,12 @@ CMAKE_ARGS+= -DENABLE_XDGAUTOSTART=OFF - -DQT_PLUGINS_DIR=${PREFIX}/lib/qt4/plugins .if ${PORT_OPTIONS:MGTK2} -USE_GNOME+= gtk20 -PLIST_SUB+= GTK2="" SUB_LIST+= GTK2_IM=fcitx .else -CMAKE_ARGS+= -DENABLE_GTK2_IM_MODULE=OFF -PLIST_SUB+= GTK2="@comment " SUB_LIST+= GTK2_IM=xim .endif .if ${PORT_OPTIONS:MGTK3} -USE_GNOME+= gtk30 -CMAKE_ARGS+= -DENABLE_GTK3_IM_MODULE=ON PLIST_SUB+= GTK3="" SUB_LIST+= GTK3_IM=fcitx .else Modified: head/chinese/fcitx/distinfo ============================================================================== --- head/chinese/fcitx/distinfo Sat Jul 9 09:00:12 2016 (r418268) +++ head/chinese/fcitx/distinfo Sat Jul 9 11:37:36 2016 (r418269) @@ -1,5 +1,6 @@ -SHA256 (fcitx/fcitx-4.2.8.6.tar.xz) = 60cbaaf73d2a8b96b6e1c3772473f4fba5271521af7edbdacaed92ea284a125b -SIZE (fcitx/fcitx-4.2.8.6.tar.xz) = 1664648 +TIMESTAMP = 1464749421 +SHA256 (fcitx/fcitx-4.2.9.1.tar.xz) = 25661907903e4ccaa4cf62cc389c006e280d31bce84147e203d7310fb4cd42ed +SIZE (fcitx/fcitx-4.2.9.1.tar.xz) = 1655504 SHA256 (fcitx/en_dict-20121020.tar.gz) = c44a5d7847925eea9e4d2d04748d442cd28dd9299a0b572ef7d91eac4f5a6ceb SIZE (fcitx/en_dict-20121020.tar.gz) = 630491 SHA256 (fcitx/pinyin.tar.gz) = 583829b24a758c087c08de4a69480d0bf5946354fe77db360d6d7f467c2bd8e1 Modified: head/chinese/fcitx/files/patch-CMakeLists.txt ============================================================================== --- head/chinese/fcitx/files/patch-CMakeLists.txt Sat Jul 9 09:00:12 2016 (r418268) +++ head/chinese/fcitx/files/patch-CMakeLists.txt Sat Jul 9 11:37:36 2016 (r418269) @@ -1,6 +1,6 @@ ---- ./CMakeLists.txt.orig 2013-09-28 17:33:14.000000000 +0900 -+++ ./CMakeLists.txt 2014-03-19 13:45:08.000000000 +0900 -@@ -207,16 +207,21 @@ +--- CMakeLists.txt.orig 2015-12-12 08:02:09 UTC ++++ CMakeLists.txt +@@ -206,16 +206,21 @@ if (NOT DEFINED SYSCONFDIR) set(SYSCONFDIR "${CMAKE_INSTALL_PREFIX}/etc" CACHE PATH "sys config directory [default=PREFIX/etc/]") endif() @@ -28,7 +28,7 @@ list(FIND CMAKE_PLATFORM_IMPLICIT_LINK_DIRECTORIES "${LIB_INSTALL_DIR}" _isSystemPlatformLibDir) list(FIND CMAKE_CXX_IMPLICIT_LINK_DIRECTORIES "${LIB_INSTALL_DIR}" _isSystemCxxLibDir) -@@ -229,9 +234,13 @@ +@@ -228,9 +233,13 @@ endif("${_isSystemPlatformLibDir}" STREQ # For FcitxMacro set(FCITX4_ADDON_INSTALL_DIR ${addondir}) Modified: head/chinese/fcitx/files/patch-cmake__FcitxConfig.cmake ============================================================================== --- head/chinese/fcitx/files/patch-cmake__FcitxConfig.cmake Sat Jul 9 09:00:12 2016 (r418268) +++ head/chinese/fcitx/files/patch-cmake__FcitxConfig.cmake Sat Jul 9 11:37:36 2016 (r418269) @@ -1,6 +1,6 @@ ---- ./cmake/FcitxConfig.cmake.orig 2013-09-28 17:33:14.000000000 +0900 -+++ ./cmake/FcitxConfig.cmake 2014-03-19 13:45:08.000000000 +0900 -@@ -76,9 +76,13 @@ +--- cmake/FcitxConfig.cmake.orig 2015-12-12 08:02:09 UTC ++++ cmake/FcitxConfig.cmake +@@ -76,9 +76,13 @@ FIND_PROGRAM(FCITX4_FCITXCONFIG_EXECUTAB IF(FCITX4_FCITXCONFIG_EXECUTABLE) message(STATUS "fcitx4-config found ${FCITX4_FCITXCONFIG_EXECUTABLE}") EXECUTE_PROCESS(COMMAND "${FCITX4_FCITXCONFIG_EXECUTABLE}" --addondir OUTPUT_VARIABLE FCITX4_ADDON_INSTALL_DIR ERROR_QUIET OUTPUT_STRIP_TRAILING_WHITESPACE) Modified: head/chinese/fcitx/files/patch-cmake__FcitxMacro.cmake ============================================================================== --- head/chinese/fcitx/files/patch-cmake__FcitxMacro.cmake Sat Jul 9 09:00:12 2016 (r418268) +++ head/chinese/fcitx/files/patch-cmake__FcitxMacro.cmake Sat Jul 9 11:37:36 2016 (r418269) @@ -1,6 +1,6 @@ ---- ./cmake/FcitxMacro.cmake.orig 2013-09-28 17:33:14.000000000 +0900 -+++ ./cmake/FcitxMacro.cmake 2014-03-19 13:46:27.000000000 +0900 -@@ -366,10 +366,10 @@ +--- cmake/FcitxMacro.cmake.orig 2015-12-12 08:02:09 UTC ++++ cmake/FcitxMacro.cmake +@@ -366,10 +366,10 @@ function(fcitx_add_addon_full short_name add_custom_target("${target_name}" ALL) __fcitx_addon_config_file("${target_name}" "${FCITX_ADDON_CONF_SRC}" @@ -13,7 +13,7 @@ endforeach() __fcitx_add_addon_lib("${FCITX_ADDON_LIB_NAME}" ${FCITX_ADDON_SOURCES}) if(FCITX_ADDON_LINK_LIBS) -@@ -393,7 +393,7 @@ +@@ -393,7 +393,7 @@ function(__fcitx_add_addon_lib lib_name) set_target_properties("${lib_name}" PROPERTIES PREFIX "" COMPILE_FLAGS "-fvisibility=hidden") add_dependencies("${lib_name}" fcitx-scan-addons.target) @@ -22,7 +22,7 @@ endfunction() function(__fcitx_install_addon_desc target_name) -@@ -402,7 +402,7 @@ +@@ -402,7 +402,7 @@ function(__fcitx_install_addon_desc targ add_custom_target("${desc_target}" DEPENDS ${descs}) add_dependencies("${target_name}" "${desc_target}") install(FILES ${descs} @@ -31,7 +31,7 @@ endfunction() # Add additional config-desc files, the file will be added to extracte -@@ -893,7 +893,7 @@ +@@ -897,7 +897,7 @@ MACRO(FCITX_ADD_ADDON_CONF_FILE conffile __FCITX_CONF_FILE_GET_UNIQUE_TARGET_NAME(fcitx_addon_conf targetname) add_custom_target(${targetname} ALL DEPENDS ${conffilename}) install(FILES "${CMAKE_CURRENT_BINARY_DIR}/${conffilename}" @@ -40,7 +40,7 @@ ENDMACRO(FCITX_ADD_ADDON_CONF_FILE conffilename) MACRO(FCITX_ADD_INPUTMETHOD_CONF_FILE conffilename) -@@ -902,7 +902,7 @@ +@@ -906,7 +906,7 @@ MACRO(FCITX_ADD_INPUTMETHOD_CONF_FILE co __FCITX_CONF_FILE_GET_UNIQUE_TARGET_NAME(fcitx_inputmethod_conf targetname) add_custom_target(${targetname} ALL DEPENDS ${conffilename}) install(FILES "${CMAKE_CURRENT_BINARY_DIR}/${conffilename}" Modified: head/chinese/fcitx/files/patch-data__script__fcitx4-config.in ============================================================================== --- head/chinese/fcitx/files/patch-data__script__fcitx4-config.in Sat Jul 9 09:00:12 2016 (r418268) +++ head/chinese/fcitx/files/patch-data__script__fcitx4-config.in Sat Jul 9 11:37:36 2016 (r418269) @@ -1,5 +1,5 @@ ---- ./data/script/fcitx4-config.in.orig 2013-09-28 17:33:14.000000000 +0900 -+++ ./data/script/fcitx4-config.in 2014-03-19 13:45:08.000000000 +0900 +--- data/script/fcitx4-config.in.orig 2015-12-12 08:02:09 UTC ++++ data/script/fcitx4-config.in @@ -1,14 +1,26 @@ #! /bin/sh @@ -27,7 +27,7 @@ usage() { -@@ -23,9 +35,13 @@ +@@ -23,9 +35,13 @@ Known values for OPTION are: --libdir Fcitx Library Prefix --includedir Fcitx Include Prefix --addondir Fcitx Addon Library Dir @@ -41,7 +41,7 @@ --help display this help and exit --version output version information EOF -@@ -72,18 +88,34 @@ +@@ -72,18 +88,34 @@ while test $# -gt 0; do echo $addondir ;; Modified: head/chinese/fcitx/files/patch-tools__cli__CMakeLists.txt ============================================================================== --- head/chinese/fcitx/files/patch-tools__cli__CMakeLists.txt Sat Jul 9 09:00:12 2016 (r418268) +++ head/chinese/fcitx/files/patch-tools__cli__CMakeLists.txt Sat Jul 9 11:37:36 2016 (r418269) @@ -1,5 +1,5 @@ ---- ./tools/cli/CMakeLists.txt.orig 2013-09-28 17:33:14.000000000 +0900 -+++ ./tools/cli/CMakeLists.txt 2014-03-19 13:45:08.000000000 +0900 +--- tools/cli/CMakeLists.txt.orig 2015-12-12 08:02:09 UTC ++++ tools/cli/CMakeLists.txt @@ -1,3 +1,7 @@ +include_directories ( + ${LIBICONV_INCLUDE_DIR} Modified: head/chinese/fcitx/files/patch-tools__gui__quickphrase-editor__CMakeLists.txt ============================================================================== --- head/chinese/fcitx/files/patch-tools__gui__quickphrase-editor__CMakeLists.txt Sat Jul 9 09:00:12 2016 (r418268) +++ head/chinese/fcitx/files/patch-tools__gui__quickphrase-editor__CMakeLists.txt Sat Jul 9 11:37:36 2016 (r418269) @@ -1,8 +1,8 @@ ---- ./tools/gui/quickphrase-editor/CMakeLists.txt.orig 2013-09-28 17:33:14.000000000 +0900 -+++ ./tools/gui/quickphrase-editor/CMakeLists.txt 2014-03-19 13:45:08.000000000 +0900 -@@ -17,6 +17,7 @@ - ${QT_QTCORE_INCLUDE_DIR} +--- tools/gui/quickphrase-editor/CMakeLists.txt.orig 2015-12-12 08:02:09 UTC ++++ tools/gui/quickphrase-editor/CMakeLists.txt +@@ -18,6 +18,7 @@ include_directories( ${QT_QTGUI_INCLUDE_DIR} + ${LIBINTL_INCLUDE_DIR} ${CMAKE_CURRENT_BINARY_DIR} + ${LIBINTL_INCLUDE_DIR} ) Modified: head/chinese/fcitx/files/patch-tools__gui__wrapper__CMakeLists.txt ============================================================================== --- head/chinese/fcitx/files/patch-tools__gui__wrapper__CMakeLists.txt Sat Jul 9 09:00:12 2016 (r418268) +++ head/chinese/fcitx/files/patch-tools__gui__wrapper__CMakeLists.txt Sat Jul 9 11:37:36 2016 (r418269) @@ -1,8 +1,8 @@ ---- ./tools/gui/wrapper/CMakeLists.txt.orig 2013-09-28 17:33:14.000000000 +0900 -+++ ./tools/gui/wrapper/CMakeLists.txt 2014-03-19 13:45:08.000000000 +0900 -@@ -14,6 +14,7 @@ - ${QT_QTCORE_INCLUDE_DIR} +--- tools/gui/wrapper/CMakeLists.txt.orig 2015-12-12 08:02:09 UTC ++++ tools/gui/wrapper/CMakeLists.txt +@@ -15,6 +15,7 @@ include_directories( ${QT_QTGUI_INCLUDE_DIR} + ${LIBINTL_INCLUDE_DIR} ${CMAKE_CURRENT_BINARY_DIR} + ${LIBINTL_INCLUDE_DIR} ) From owner-svn-ports-all@freebsd.org Sat Jul 9 11:47:44 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id C24B6B84941; Sat, 9 Jul 2016 11:47:44 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 838161758; Sat, 9 Jul 2016 11:47:44 +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 u69BlhPg094437; Sat, 9 Jul 2016 11:47:43 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u69BlhQp094433; Sat, 9 Jul 2016 11:47:43 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201607091147.u69BlhQp094433@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Sat, 9 Jul 2016 11:47:43 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418270 - in head/devel: . py-rebulk X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 09 Jul 2016 11:47:44 -0000 Author: jbeich Date: Sat Jul 9 11:47:43 2016 New Revision: 418270 URL: https://svnweb.freebsd.org/changeset/ports/418270 Log: devel/py-rebulk: add new port PR: 210774 Submitted by: Andrej Ebert ReBulk is a python library that performs advanced searches in strings that would be hard to implement using re module or String methods only. It includes some features like Patterns, Match, Rule that allows developers to build a custom and complex string matcher using a readable and extendable API. https://github.com/Toilal/rebulk Added: head/devel/py-rebulk/ head/devel/py-rebulk/Makefile (contents, props changed) head/devel/py-rebulk/distinfo (contents, props changed) head/devel/py-rebulk/pkg-descr (contents, props changed) Modified: head/devel/Makefile (contents, props changed) Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Sat Jul 9 11:37:36 2016 (r418269) +++ head/devel/Makefile Sat Jul 9 11:47:43 2016 (r418270) @@ -4364,6 +4364,7 @@ SUBDIR += py-raven SUBDIR += py-rcsparse SUBDIR += py-re2 + SUBDIR += py-rebulk SUBDIR += py-rednose SUBDIR += py-repl SUBDIR += py-repoze.lru Added: head/devel/py-rebulk/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-rebulk/Makefile Sat Jul 9 11:47:43 2016 (r418270) @@ -0,0 +1,30 @@ +# Created by: Andrej Ebert +# $FreeBSD$ + +PORTNAME= rebulk +PORTVERSION= 0.7.2 +CATEGORIES= devel python +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= andrej@ebert.su +COMMENT= Python library that performs advanced searches in strings + +LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE + +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}six>0:devel/py-six +TEST_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pytest>0:devel/py-pytest + +USES= python +USE_PYTHON= autoplist distutils + +USE_GITHUB= yes +GH_ACCOUNT= Toilal + +post-patch: + @${REINPLACE_CMD} -e '/setup_requires/d' ${WRKSRC}/${PYSETUP} + +do-test: + @cd ${WRKSRC} && ${PYTHON_CMD} -m pytest + +.include Added: head/devel/py-rebulk/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-rebulk/distinfo Sat Jul 9 11:47:43 2016 (r418270) @@ -0,0 +1,2 @@ +SHA256 (Toilal-rebulk-0.7.2_GH0.tar.gz) = ffbda3562a3234318a9972084564501f9a4654df08ef2735a47d16b49e1ce5c4 +SIZE (Toilal-rebulk-0.7.2_GH0.tar.gz) = 247011 Added: head/devel/py-rebulk/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-rebulk/pkg-descr Sat Jul 9 11:47:43 2016 (r418270) @@ -0,0 +1,7 @@ +ReBulk is a python library that performs advanced searches in strings +that would be hard to implement using re module or String methods only. +It includes some features like Patterns, Match, Rule that allows +developers to build a custom and complex string matcher using a readable +and extendable API. + +WWW: https://github.com/Toilal/rebulk From owner-svn-ports-all@freebsd.org Sat Jul 9 12:26:42 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id E7966B75396; Sat, 9 Jul 2016 12:26:42 +0000 (UTC) (envelope-from pi@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id A934E1894; Sat, 9 Jul 2016 12:26: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 u69CQflZ009574; Sat, 9 Jul 2016 12:26:41 GMT (envelope-from pi@FreeBSD.org) Received: (from pi@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u69CQfM6009571; Sat, 9 Jul 2016 12:26:41 GMT (envelope-from pi@FreeBSD.org) Message-Id: <201607091226.u69CQfM6009571@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pi set sender to pi@FreeBSD.org using -f From: Kurt Jaeger Date: Sat, 9 Jul 2016 12:26:41 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418271 - in head/graphics/aseprite: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 09 Jul 2016 12:26:43 -0000 Author: pi Date: Sat Jul 9 12:26:41 2016 New Revision: 418271 URL: https://svnweb.freebsd.org/changeset/ports/418271 Log: graphics/aseprite: 1.1.5.6 -> 1.1.6 PR: 210852 Changes: http://www.aseprite.org/release-notes/ Submitted by: Yuri Victorovich (maintainer) Deleted: head/graphics/aseprite/files/patch-src_app_resource__finder.cpp head/graphics/aseprite/files/patch-src_app_util_freetype__utils.cpp Modified: head/graphics/aseprite/Makefile head/graphics/aseprite/distinfo head/graphics/aseprite/pkg-plist Modified: head/graphics/aseprite/Makefile ============================================================================== --- head/graphics/aseprite/Makefile Sat Jul 9 11:47:43 2016 (r418270) +++ head/graphics/aseprite/Makefile Sat Jul 9 12:26:41 2016 (r418271) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= aseprite -PORTVERSION= 1.1.5.6 +PORTVERSION= 1.1.6 DISTVERSIONPREFIX= v CATEGORIES= graphics @@ -28,11 +28,13 @@ OPTIONS_DEFAULT= WEBP WEBP_LIB_DEPENDS= libwebp.so:graphics/webp USE_GITHUB= yes -GH_TUPLE= aseprite:aseprite:b659747 +GH_TUPLE= aseprite:aseprite:${DISTVERSIONFULL} +GH_TUPLE+= aseprite:clip:8e92c5d:clip GH_TUPLE+= aseprite:flic:da184cb:flic GH_TUPLE+= aseprite:gtest:d63c625:gtest -GH_TUPLE+= aseprite:simpleini:d4a436a:simpleini -GH_TUPLE+= aseprite:duktape:90090c7:duk +GH_TUPLE+= aseprite:simpleini:0687587:simpleini +GH_TUPLE+= aseprite:duktape:0de771c:duk +GH_TUPLE+= dacap:observable:89c9740:observable USES= cmake:outsource compiler:c++11-lib jpeg pkgconfig USE_XORG= x11 xcursor xext xpm ice pixman sm xxf86dga xxf86vm @@ -54,19 +56,19 @@ CXXFLAGS+= -I${LOCALBASE}/include/freet CXXFLAGS+= -I${LOCALBASE}/include/freetype2/freetype post-extract: - @${RMDIR} ${WRKSRC}/src/flic ${WRKSRC}/third_party/gtest ${WRKSRC}/third_party/simpleini ${WRKSRC}/third_party/duktape - @${MV} ${WRKDIR}/flic-* ${WRKSRC}/src/flic + @${RMDIR} ${WRKSRC}/third_party/gtest ${WRKSRC}/third_party/simpleini ${WRKSRC}/third_party/duktape \ + ${WRKSRC}/src/clip ${WRKSRC}/src/flic ${WRKSRC}/src/observable @${MV} ${WRKDIR}/gtest-* ${WRKSRC}/third_party/gtest @${MV} ${WRKDIR}/simpleini-* ${WRKSRC}/third_party/simpleini @${MV} ${WRKDIR}/duktape-* ${WRKSRC}/third_party/duktape + @${MV} ${WRKDIR}/clip-* ${WRKSRC}/src/clip + @${MV} ${WRKDIR}/flic-* ${WRKSRC}/src/flic + @${MV} ${WRKDIR}/observable-* ${WRKSRC}/src/observable @${MKDIR} ${WRKSRC}/third_party/pixman/pixman @${CP} `${MAKE} -C ${PORTSDIR}/x11/pixman -V WRKSRC`/pixman/pixman-combine32.h \ ${WRKSRC}/third_party/pixman/pixman/ -post-configure: - @${REINPLACE_CMD} -e 's|-lXxf86dga |-L${LOCALBASE}/lib -lXxf86dga |g' \ - `find ${WRKDIR} -name link.txt` - @${REINPLACE_CMD} -e 's|%%LOCALBASE%%|${LOCALBASE}|g' \ - ${WRKSRC}/src/app/resource_finder.cpp +post-patch: + @${REINPLACE_CMD} -e 's|1.1.6-dev|${PORTVERSION}|' ${WRKSRC}/src/config.h ${WRKSRC}/data/gui.xml .include Modified: head/graphics/aseprite/distinfo ============================================================================== --- head/graphics/aseprite/distinfo Sat Jul 9 11:47:43 2016 (r418270) +++ head/graphics/aseprite/distinfo Sat Jul 9 12:26:41 2016 (r418271) @@ -1,11 +1,15 @@ -TIMESTAMP = 1463713231 -SHA256 (aseprite-aseprite-v1.1.5.6-b659747_GH0.tar.gz) = 45b08dcf5fd02a8759c1cfbf5cd7b2c80b988993bd2d7a1f24b8e3601a60245c -SIZE (aseprite-aseprite-v1.1.5.6-b659747_GH0.tar.gz) = 2979354 +TIMESTAMP = 1467919676 +SHA256 (aseprite-aseprite-v1.1.6_GH0.tar.gz) = 770c2d1a8b68264f10204d815c72df4e25de5e1aeb482348e6909b107048b3fd +SIZE (aseprite-aseprite-v1.1.6_GH0.tar.gz) = 2576949 +SHA256 (aseprite-clip-8e92c5d_GH0.tar.gz) = 65cd36c5942fb23d4128ff31381a1170264655af8180a4e2f8c0aade489525bf +SIZE (aseprite-clip-8e92c5d_GH0.tar.gz) = 10561 SHA256 (aseprite-flic-da184cb_GH0.tar.gz) = 118f422957ea59121a14f0474471cfb09fcf62fe9834b9b683671e53fb675075 SIZE (aseprite-flic-da184cb_GH0.tar.gz) = 6552 SHA256 (aseprite-gtest-d63c625_GH0.tar.gz) = 9f8be975b8672f7e2e14053744bc9433aa8d0f613378ca1a9ab99ac87ba11a39 SIZE (aseprite-gtest-d63c625_GH0.tar.gz) = 989187 -SHA256 (aseprite-simpleini-d4a436a_GH0.tar.gz) = d78bdc44396b81501c5ad1b59d06db9055b037db53ef2a30dd583194ed3133fa -SIZE (aseprite-simpleini-d4a436a_GH0.tar.gz) = 54668 -SHA256 (aseprite-duktape-90090c7_GH0.tar.gz) = a188d14e622a10429588376da8d77c3a79dd268a241e15a1bc6f2a3e04d126ce -SIZE (aseprite-duktape-90090c7_GH0.tar.gz) = 608122 +SHA256 (aseprite-simpleini-0687587_GH0.tar.gz) = 136c942b13809f3bd3f1ff3bdcc160039217a7006d052e5f005f38a0bd80174b +SIZE (aseprite-simpleini-0687587_GH0.tar.gz) = 54947 +SHA256 (aseprite-duktape-0de771c_GH0.tar.gz) = 6983173676090b750f866ace66e1462ed1e59619632906abc26804f2e43445a7 +SIZE (aseprite-duktape-0de771c_GH0.tar.gz) = 840744 +SHA256 (dacap-observable-89c9740_GH0.tar.gz) = 05604ada80009d608289b7ec67cf4c47e65d430c678cc838d7fe77ffdcf80e9d +SIZE (dacap-observable-89c9740_GH0.tar.gz) = 10795 Modified: head/graphics/aseprite/pkg-plist ============================================================================== --- head/graphics/aseprite/pkg-plist Sat Jul 9 11:47:43 2016 (r418270) +++ head/graphics/aseprite/pkg-plist Sat Jul 9 12:26:41 2016 (r418271) @@ -16,25 +16,40 @@ bin/aseprite %%DATADIR%%/data/icons/doc32.png %%DATADIR%%/data/icons/doc48.png %%DATADIR%%/data/icons/doc64.png +%%DATADIR%%/data/palettes/a64.gpl %%DATADIR%%/data/palettes/apple-ii.gpl +%%DATADIR%%/data/palettes/arne-paldac.gpl %%DATADIR%%/data/palettes/arne16.gpl %%DATADIR%%/data/palettes/arne32.gpl %%DATADIR%%/data/palettes/atari2600-ntsc.gpl %%DATADIR%%/data/palettes/atari2600-pal.gpl +%%DATADIR%%/data/palettes/cg-arne.gpl %%DATADIR%%/data/palettes/cga.gpl %%DATADIR%%/data/palettes/commodore-plus4.gpl %%DATADIR%%/data/palettes/commodore-vic20.gpl %%DATADIR%%/data/palettes/commodore64.gpl +%%DATADIR%%/data/palettes/copper-tech.gpl +%%DATADIR%%/data/palettes/cpc-boy.gpl %%DATADIR%%/data/palettes/db16.gpl %%DATADIR%%/data/palettes/db32.gpl +%%DATADIR%%/data/palettes/eroge-copper.gpl +%%DATADIR%%/data/palettes/gameboy-color-type1.gpl %%DATADIR%%/data/palettes/gameboy.gpl %%DATADIR%%/data/palettes/google-ui.gpl +%%DATADIR%%/data/palettes/jmp.gpl %%DATADIR%%/data/palettes/master-system.gpl +%%DATADIR%%/data/palettes/monokai.gpl %%DATADIR%%/data/palettes/nes-ntsc.gpl %%DATADIR%%/data/palettes/nes.gpl +%%DATADIR%%/data/palettes/pico-8.gpl +%%DATADIR%%/data/palettes/psygnork.gpl +%%DATADIR%%/data/palettes/smile-basic.gpl %%DATADIR%%/data/palettes/solarized.gpl %%DATADIR%%/data/palettes/teletext.gpl +%%DATADIR%%/data/palettes/vga-13h.gpl +%%DATADIR%%/data/palettes/web-safe-colors.gpl %%DATADIR%%/data/palettes/win16.gpl +%%DATADIR%%/data/palettes/x11.gpl %%DATADIR%%/data/palettes/zx-spectrum.gpl %%DATADIR%%/data/pref.xml %%DATADIR%%/data/scripts/white_to_alpha.js @@ -44,6 +59,7 @@ bin/aseprite %%DATADIR%%/data/skins/default/sheet.png %%DATADIR%%/data/skins/default/skin.xml %%DATADIR%%/data/widgets/advanced_mode.xml +%%DATADIR%%/data/widgets/brush_slot_params.xml %%DATADIR%%/data/widgets/canvas_size.xml %%DATADIR%%/data/widgets/cel_properties.xml %%DATADIR%%/data/widgets/color_curve_point.xml @@ -64,6 +80,7 @@ bin/aseprite %%DATADIR%%/data/widgets/keyboard_shortcuts.xml %%DATADIR%%/data/widgets/layer_properties.xml %%DATADIR%%/data/widgets/main_window.xml +%%DATADIR%%/data/widgets/modify_selection.xml %%DATADIR%%/data/widgets/new_folder_window.xml %%DATADIR%%/data/widgets/new_layer.xml %%DATADIR%%/data/widgets/new_sprite.xml @@ -79,6 +96,7 @@ bin/aseprite %%DATADIR%%/data/widgets/sprite_size.xml %%DATADIR%%/data/widgets/timeline_conf.xml %%DATADIR%%/data/widgets/undo_history.xml +%%DATADIR%%/data/widgets/user_data.xml %%DATADIR%%/data/widgets/webp_options.xml %%DATADIR%%/data/%%WWWDIR%%.css %%DATADIR%%/data/%%WWWDIR%%.js From owner-svn-ports-all@freebsd.org Sat Jul 9 12:36:03 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id B0CA9B75692; Sat, 9 Jul 2016 12:36:03 +0000 (UTC) (envelope-from junovitch@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 80CE51D12; Sat, 9 Jul 2016 12:36:03 +0000 (UTC) (envelope-from junovitch@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u69Ca2uM013292; Sat, 9 Jul 2016 12:36:02 GMT (envelope-from junovitch@FreeBSD.org) Received: (from junovitch@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u69Ca2Hs013290; Sat, 9 Jul 2016 12:36:02 GMT (envelope-from junovitch@FreeBSD.org) Message-Id: <201607091236.u69Ca2Hs013290@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: junovitch set sender to junovitch@FreeBSD.org using -f From: Jason Unovitch Date: Sat, 9 Jul 2016 12:36:02 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r418272 - branches/2016Q3/www/grafana3 X-SVN-Group: ports-branches MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 09 Jul 2016 12:36:03 -0000 Author: junovitch Date: Sat Jul 9 12:36:02 2016 New Revision: 418272 URL: https://svnweb.freebsd.org/changeset/ports/418272 Log: MFH: r417896 - Add patch to install CLI tool PR: 210659 [1] PR: 210942 [2] Submitted by: Maintainer [1] Submitted by: James O'Gorman [2] Approved by: ports-secteam (with hat) Modified: branches/2016Q3/www/grafana3/Makefile branches/2016Q3/www/grafana3/pkg-plist Directory Properties: branches/2016Q3/ (props changed) Modified: branches/2016Q3/www/grafana3/Makefile ============================================================================== --- branches/2016Q3/www/grafana3/Makefile Sat Jul 9 12:26:41 2016 (r418271) +++ branches/2016Q3/www/grafana3/Makefile Sat Jul 9 12:36:02 2016 (r418272) @@ -3,6 +3,7 @@ PORTNAME= grafana3 PORTVERSION= 3.0.4 DISTVERSIONPREFIX= v +PORTREVISION= 1 CATEGORIES= www MAINTAINER= john@pcbsd.org @@ -230,6 +231,8 @@ do-build: do-install: ${INSTALL_PROGRAM} ${WRKSRC}/src/github.com/grafana/grafana/bin/grafana-server \ ${STAGEDIR}${PREFIX}/bin/grafana-server + ${INSTALL_PROGRAM} ${WRKSRC}/src/github.com/grafana/grafana/bin/grafana-cli \ + ${STAGEDIR}${PREFIX}/bin/grafana-cli cd ${WRKSRC}/src/github.com/grafana/grafana && \ ${COPYTREE_SHARE} public ${STAGEDIR}${PREFIX}/share/grafana cd ${WRKSRC}/src/github.com/grafana/grafana && \ Modified: branches/2016Q3/www/grafana3/pkg-plist ============================================================================== --- branches/2016Q3/www/grafana3/pkg-plist Sat Jul 9 12:26:41 2016 (r418271) +++ branches/2016Q3/www/grafana3/pkg-plist Sat Jul 9 12:36:02 2016 (r418272) @@ -1,3 +1,4 @@ +bin/grafana-cli bin/grafana-server @sample etc/grafana3.conf.sample share/grafana/conf/defaults.ini From owner-svn-ports-all@freebsd.org Sat Jul 9 12:43:56 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 1EC5DB759B7; Sat, 9 Jul 2016 12:43:56 +0000 (UTC) (envelope-from junovitch@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id E43651386; Sat, 9 Jul 2016 12:43:55 +0000 (UTC) (envelope-from junovitch@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u69ChtDh016920; Sat, 9 Jul 2016 12:43:55 GMT (envelope-from junovitch@FreeBSD.org) Received: (from junovitch@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u69ChtNR016919; Sat, 9 Jul 2016 12:43:55 GMT (envelope-from junovitch@FreeBSD.org) Message-Id: <201607091243.u69ChtNR016919@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: junovitch set sender to junovitch@FreeBSD.org using -f From: Jason Unovitch Date: Sat, 9 Jul 2016 12:43:55 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418273 - head/www/kanboard X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 09 Jul 2016 12:43:56 -0000 Author: junovitch Date: Sat Jul 9 12:43:54 2016 New Revision: 418273 URL: https://svnweb.freebsd.org/changeset/ports/418273 Log: www/kanboard: fix URL on one of the MASTER_SITES PR: 210818 Approved by: Bart Wrobel (maintainer) Modified: head/www/kanboard/Makefile Modified: head/www/kanboard/Makefile ============================================================================== --- head/www/kanboard/Makefile Sat Jul 9 12:36:02 2016 (r418272) +++ head/www/kanboard/Makefile Sat Jul 9 12:43:54 2016 (r418273) @@ -5,7 +5,7 @@ PORTVERSION= 1.0.31 CATEGORIES= www MASTER_SITES= http://kanboard.net/ \ https://bitbucket.org/if0/kanboard-archives/downloads/ \ - https://github.com/freebsd-kanboard/archives/blob/master/ + https://github.com/freebsd-kanboard/archives/raw/master/ MAINTAINER= bsd@if0.eu COMMENT= Simple visual task board software From owner-svn-ports-all@freebsd.org Sat Jul 9 12:44:41 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 1A5E7B75A24; Sat, 9 Jul 2016 12:44:41 +0000 (UTC) (envelope-from riggs@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id DAD8014CD; Sat, 9 Jul 2016 12:44:40 +0000 (UTC) (envelope-from riggs@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u69Cieu0017091; Sat, 9 Jul 2016 12:44:40 GMT (envelope-from riggs@FreeBSD.org) Received: (from riggs@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u69CieAW017090; Sat, 9 Jul 2016 12:44:40 GMT (envelope-from riggs@FreeBSD.org) Message-Id: <201607091244.u69CieAW017090@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: riggs set sender to riggs@FreeBSD.org using -f From: Thomas Zander Date: Sat, 9 Jul 2016 12:44:40 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r418274 - branches/2016Q3/multimedia/mkvtoolnix X-SVN-Group: ports-branches MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 09 Jul 2016 12:44:41 -0000 Author: riggs Date: Sat Jul 9 12:44:39 2016 New Revision: 418274 URL: https://svnweb.freebsd.org/changeset/ports/418274 Log: MFH: r418191 Take maintainership Details: mkvtoolnix shows spurious build issues due to a gcc-internal segfault on the build cluster on 9.x. However, this is not perfectly reproducible and on other hardware setups it builds reliably, so we don't want to mark it broken on 9.x. Taking maintainership so pkg-fallout won't continue spam the multimedia@ mailing list. Approved by: ports-secteam (junovitch) Modified: branches/2016Q3/multimedia/mkvtoolnix/Makefile Directory Properties: branches/2016Q3/ (props changed) Modified: branches/2016Q3/multimedia/mkvtoolnix/Makefile ============================================================================== --- branches/2016Q3/multimedia/mkvtoolnix/Makefile Sat Jul 9 12:43:54 2016 (r418273) +++ branches/2016Q3/multimedia/mkvtoolnix/Makefile Sat Jul 9 12:44:39 2016 (r418274) @@ -7,7 +7,7 @@ CATEGORIES= multimedia audio MASTER_SITES= http://www.bunkus.org/videotools/mkvtoolnix/sources/ \ https://mkvtoolnix.download/sources/ -MAINTAINER= multimedia@FreeBSD.org +MAINTAINER= riggs@FreeBSD.org COMMENT= Tools to extract from/get info about/create Matroska media streams LICENSE= GPLv2 From owner-svn-ports-all@freebsd.org Sat Jul 9 12:52:42 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 0AB79B75CA2; Sat, 9 Jul 2016 12:52:42 +0000 (UTC) (envelope-from junovitch@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id BF9001955; Sat, 9 Jul 2016 12:52:41 +0000 (UTC) (envelope-from junovitch@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u69CqeQq020897; Sat, 9 Jul 2016 12:52:40 GMT (envelope-from junovitch@FreeBSD.org) Received: (from junovitch@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u69CqeQt020892; Sat, 9 Jul 2016 12:52:40 GMT (envelope-from junovitch@FreeBSD.org) Message-Id: <201607091252.u69CqeQt020892@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: junovitch set sender to junovitch@FreeBSD.org using -f From: Jason Unovitch Date: Sat, 9 Jul 2016 12:52:40 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418275 - in head/security/afl: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 09 Jul 2016 12:52:42 -0000 Author: junovitch Date: Sat Jul 9 12:52:40 2016 New Revision: 418275 URL: https://svnweb.freebsd.org/changeset/ports/418275 Log: security/afl: update 2.07b -> 2.19b PR: 210832 Submitted by: Tobias Kortkamp (maintainer) Modified: head/security/afl/Makefile head/security/afl/distinfo head/security/afl/files/patch-Makefile head/security/afl/files/patch-llvm__mode_afl-clang-fast.c head/security/afl/pkg-plist Modified: head/security/afl/Makefile ============================================================================== --- head/security/afl/Makefile Sat Jul 9 12:44:39 2016 (r418274) +++ head/security/afl/Makefile Sat Jul 9 12:52:40 2016 (r418275) @@ -2,7 +2,8 @@ # $FreeBSD$ PORTNAME= afl -PORTVERSION= 2.07b +PORTVERSION= 2.19 +DISTVERSIONSUFFIX= b CATEGORIES= security MASTER_SITES= http://lcamtuf.coredump.cx/afl/releases/ @@ -74,7 +75,6 @@ post-build-LLVM-on: post-install: ${INSTALL_DATA} ${WRKSRC}/docs/COPYING ${STAGEDIR}${DOCSDIR}/ - .for afl_script in afl-cmin afl-plot afl-whatsup ${INSTALL_SCRIPT} ${WRKSRC}/${afl_script} ${STAGEDIR}${PREFIX}/bin/ .endfor Modified: head/security/afl/distinfo ============================================================================== --- head/security/afl/distinfo Sat Jul 9 12:44:39 2016 (r418274) +++ head/security/afl/distinfo Sat Jul 9 12:52:40 2016 (r418275) @@ -1,2 +1,3 @@ -SHA256 (afl-2.07b.tgz) = 9dd324bc3930ec1dbb44d00df8dcf8a3c8ca54b765665cc7f20b89e71d70b184 -SIZE (afl-2.07b.tgz) = 814913 +TIMESTAMP = 1467977424 +SHA256 (afl-2.19b.tgz) = be12df9920c9cf68c412fb06ef5c7153f4b17e450b0195535a69663e749d8af2 +SIZE (afl-2.19b.tgz) = 817294 Modified: head/security/afl/files/patch-Makefile ============================================================================== --- head/security/afl/files/patch-Makefile Sat Jul 9 12:44:39 2016 (r418274) +++ head/security/afl/files/patch-Makefile Sat Jul 9 12:52:40 2016 (r418275) @@ -1,15 +1,15 @@ ---- Makefile.orig 2016-02-16 07:14:22 UTC +--- Makefile.orig 2016-06-24 02:35:35 UTC +++ Makefile @@ -21,6 +21,8 @@ BIN_PATH = $(PREFIX)/bin HELPER_PATH = $(PREFIX)/lib/afl DOC_PATH = $(PREFIX)/share/doc/afl MISC_PATH = $(PREFIX)/share/afl +INSTALL_PROGRAM?= install -s -m755 -+INSTALL_SCRIPT?= isntall -m755 ++INSTALL_SCRIPT?= install -m755 - PROGS = afl-gcc afl-fuzz afl-showmap afl-tmin afl-gotcpu afl-analyze - SH_PROGS = afl-plot afl-cmin afl-whatsup -@@ -115,12 +117,13 @@ clean: + # PROGS intentionally omit afl-as, which gets installed to its own dir. + +@@ -118,14 +120,15 @@ clean: install: all mkdir -p -m 755 $${DESTDIR}$(BIN_PATH) $${DESTDIR}$(HELPER_PATH) $${DESTDIR}$(DOC_PATH) $${DESTDIR}$(MISC_PATH) rm -f $${DESTDIR}$(BIN_PATH)/afl-plot.sh @@ -20,7 +20,9 @@ - if [ -f afl-qemu-trace ]; then install -m 755 afl-qemu-trace $${DESTDIR}$(BIN_PATH); fi - if [ -f afl-clang-fast -a -f afl-llvm-pass.so -a -f afl-llvm-rt.o ]; then set -e; install -m 755 afl-clang-fast $${DESTDIR}$(BIN_PATH); ln -sf afl-clang-fast $${DESTDIR}$(BIN_PATH)/afl-clang-fast++; install -m 755 afl-llvm-pass.so afl-llvm-rt.o $${DESTDIR}$(HELPER_PATH); fi + if [ -f afl-qemu-trace ]; then ${INSTALL_PROGRAM} afl-qemu-trace $${DESTDIR}$(BIN_PATH); fi -+ if [ -f afl-clang-fast -a -f afl-llvm-pass.so -a -f afl-llvm-rt.o ]; then set -e; ${INSTALL_PROGRAM} afl-clang-fast $${DESTDIR}$(BIN_PATH); ln -sf afl-clang-fast $${DESTDIR}$(BIN_PATH)/afl-clang-fast++; ${INSTALL_PROGRAM} afl-llvm-pass.so $${DESTDIR}$(HELPER_PATH); install -m 755 afl-llvm-rt.o $${DESTDIR}$(HELPER_PATH); fi ++ if [ -f afl-clang-fast -a -f afl-llvm-pass.so -a -f afl-llvm-rt.o ]; then set -e; ${INSTALL_PROGRAM} afl-clang-fast $${DESTDIR}$(BIN_PATH); ln -sf afl-clang-fast $${DESTDIR}$(BIN_PATH)/afl-clang-fast++; ${INSTALL_PROGRAM} afl-llvm-pass.so afl-llvm-rt.o $${DESTDIR}$(HELPER_PATH); fi + if [ -f afl-llvm-rt-32.o ]; then set -e; install -m 755 afl-llvm-rt-32.o $${DESTDIR}$(HELPER_PATH); fi + if [ -f afl-llvm-rt-64.o ]; then set -e; install -m 755 afl-llvm-rt-64.o $${DESTDIR}$(HELPER_PATH); fi set -e; for i in afl-g++ afl-clang afl-clang++; do ln -sf afl-gcc $${DESTDIR}$(BIN_PATH)/$$i; done - install -m 755 afl-as $${DESTDIR}$(HELPER_PATH) + ${INSTALL_PROGRAM} afl-as $${DESTDIR}$(HELPER_PATH) Modified: head/security/afl/files/patch-llvm__mode_afl-clang-fast.c ============================================================================== --- head/security/afl/files/patch-llvm__mode_afl-clang-fast.c Sat Jul 9 12:44:39 2016 (r418274) +++ head/security/afl/files/patch-llvm__mode_afl-clang-fast.c Sat Jul 9 12:52:40 2016 (r418275) @@ -1,4 +1,4 @@ ---- llvm_mode/afl-clang-fast.c.orig 2015-09-08 22:37:25 UTC +--- llvm_mode/afl-clang-fast.c.orig 2016-06-07 18:07:43 UTC +++ llvm_mode/afl-clang-fast.c @@ -106,10 +106,10 @@ static void edit_params(u32 argc, char** @@ -12,4 +12,4 @@ + cc_params[0] = alt_cc ? alt_cc : (u8*)"clang37"; } - cc_params[cc_par_cnt++] = "-Xclang"; + /* There are two ways to compile afl-clang-fast. In the traditional mode, we Modified: head/security/afl/pkg-plist ============================================================================== --- head/security/afl/pkg-plist Sat Jul 9 12:44:39 2016 (r418274) +++ head/security/afl/pkg-plist Sat Jul 9 12:52:40 2016 (r418275) @@ -5,6 +5,8 @@ bin/afl-clang++ %%LLVM_SUB%%%%LLVM%%bin/afl-clang-fast++ %%LLVM_SUB%%%%LLVM%%lib/afl/afl-llvm-pass.so %%LLVM_SUB%%%%LLVM%%lib/afl/afl-llvm-rt.o +%%LLVM_SUB%%%%LLVM%%lib/afl/afl-llvm-rt-32.o +%%LLVM_SUB%%%%LLVM%%lib/afl/afl-llvm-rt-64.o %%MINIMIZE_CORPUS%%bin/afl-cmin bin/afl-fuzz bin/afl-g++ From owner-svn-ports-all@freebsd.org Sat Jul 9 13:06:54 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 80AC1B75F30; Sat, 9 Jul 2016 13:06:54 +0000 (UTC) (envelope-from pi@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 42EB51D60; Sat, 9 Jul 2016 13:06:54 +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 u69D6rDP024801; Sat, 9 Jul 2016 13:06:53 GMT (envelope-from pi@FreeBSD.org) Received: (from pi@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u69D6r6j024799; Sat, 9 Jul 2016 13:06:53 GMT (envelope-from pi@FreeBSD.org) Message-Id: <201607091306.u69D6r6j024799@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pi set sender to pi@FreeBSD.org using -f From: Kurt Jaeger Date: Sat, 9 Jul 2016 13:06:53 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418276 - in head/www: node node4 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 09 Jul 2016 13:06:54 -0000 Author: pi Date: Sat Jul 9 13:06:53 2016 New Revision: 418276 URL: https://svnweb.freebsd.org/changeset/ports/418276 Log: www/node[4]: Use NLS option to enable system-icu PR: 210786 Submitted by: Bradley T. Hughes (maintainer) Modified: head/www/node/Makefile head/www/node4/Makefile Modified: head/www/node/Makefile ============================================================================== --- head/www/node/Makefile Sat Jul 9 12:52:40 2016 (r418275) +++ head/www/node/Makefile Sat Jul 9 13:06:53 2016 (r418276) @@ -2,8 +2,8 @@ PORTNAME= node PORTVERSION= 6.2.2 -PORTREVISION= 2 DISTVERSIONPREFIX= v +PORTREVISION= 3 CATEGORIES= www MASTER_SITES= http://nodejs.org/dist/v${PORTVERSION}/ @@ -13,12 +13,15 @@ COMMENT= V8 JavaScript for client and se LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE -OPTIONS_DEFINE= BUNDLED_SSL DOCS +OPTIONS_DEFINE= BUNDLED_SSL DOCS NLS OPTIONS_SUB= yes BUNDLED_SSL_DESC= Use node.js's bundled OpenSSL implementation BUNDLED_SSL_USE_OFF= OPENSSL=yes +NLS_CONFIGURE_ON= --with-intl=system-icu +NLS_LIB_DEPENDS= libicui18n.so:devel/icu + USES= compiler execinfo gmake python:2,build pkgconfig localbase HAS_CONFIGURE= yes USE_LDCONFIG= yes @@ -28,7 +31,6 @@ CONFLICTS_INSTALL= node4-* node-0.[02-9] ONLY_FOR_ARCHS= i386 amd64 armv6 CONFIGURE_ARGS= --prefix=${PREFIX_RELDEST} \ --without-npm \ - --with-intl=system-icu \ --shared-cares \ --shared-libuv \ --shared-zlib @@ -38,7 +40,6 @@ REINPLACE_ARGS= -i '' MAKE_ENV+= CC.host=${CC} CXX.host=${CXX} LINK.host=${CXX} LINK.target=${CXX} LIB_DEPENDS+= libcares.so:dns/c-ares\ - libicui18n.so:devel/icu \ libuv.so:devel/libuv .include Modified: head/www/node4/Makefile ============================================================================== --- head/www/node4/Makefile Sat Jul 9 12:52:40 2016 (r418275) +++ head/www/node4/Makefile Sat Jul 9 13:06:53 2016 (r418276) @@ -3,8 +3,8 @@ PORTNAME= node PORTVERSION= 4.4.7 -PORTREVISION= 2 DISTVERSIONPREFIX= v +PORTREVISION= 3 CATEGORIES= www MASTER_SITES= http://nodejs.org/dist/v${PORTVERSION}/ PKGNAMESUFFIX= 4 @@ -15,12 +15,15 @@ COMMENT= V8 JavaScript for client and se LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE -OPTIONS_DEFINE= BUNDLED_SSL DOCS +OPTIONS_DEFINE= BUNDLED_SSL DOCS NLS OPTIONS_SUB= yes BUNDLED_SSL_DESC= Use node.js's bundled OpenSSL implementation BUNDLED_SSL_USE_OFF= OPENSSL=yes +NLS_CONFIGURE_ON= --with-intl=system-icu +NLS_LIB_DEPENDS= libicui18n.so:devel/icu + USES= compiler execinfo gmake python:2 pkgconfig localbase HAS_CONFIGURE= yes USE_LDCONFIG= yes @@ -29,7 +32,6 @@ CONFLICTS_INSTALL= node-[0-9]* node-deve ONLY_FOR_ARCHS= i386 amd64 CONFIGURE_ARGS= --prefix=${PREFIX_RELDEST} \ - --with-intl=system-icu \ --without-npm \ --shared-libuv \ --shared-zlib @@ -37,8 +39,7 @@ PREFIX_RELDEST= ${PREFIX:S,^${DESTDIR},, REINPLACE_ARGS= -i '' MAKE_ENV+= CC.host=${CC} CXX.host=${CXX} LINK.host=${CXX} LINK.target=${CXX} -LIB_DEPENDS+= libicui18n.so:devel/icu \ - libuv.so:devel/libuv +LIB_DEPENDS+= libuv.so:devel/libuv .include From owner-svn-ports-all@freebsd.org Sat Jul 9 13:16:53 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 7A9F9B8239E; Sat, 9 Jul 2016 13:16:53 +0000 (UTC) (envelope-from cmt@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 4B85413D7; Sat, 9 Jul 2016 13:16:53 +0000 (UTC) (envelope-from cmt@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u69DGq0Z028508; Sat, 9 Jul 2016 13:16:52 GMT (envelope-from cmt@FreeBSD.org) Received: (from cmt@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u69DGqig028507; Sat, 9 Jul 2016 13:16:52 GMT (envelope-from cmt@FreeBSD.org) Message-Id: <201607091316.u69DGqig028507@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: cmt set sender to cmt@FreeBSD.org using -f From: Christoph Moench-Tegeder Date: Sat, 9 Jul 2016 13:16:52 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418277 - head/databases/postgresql92-server X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 09 Jul 2016 13:16:53 -0000 Author: cmt Date: Sat Jul 9 13:16:52 2016 New Revision: 418277 URL: https://svnweb.freebsd.org/changeset/ports/418277 Log: do not strip binaries when building with DTRACE stripping would destroy some probes and might result in instable behaviour when trying to access those probes. PR: 204314 Approved by: rene (mentor), maintainer-timeout Modified: head/databases/postgresql92-server/Makefile Modified: head/databases/postgresql92-server/Makefile ============================================================================== --- head/databases/postgresql92-server/Makefile Sat Jul 9 13:06:53 2016 (r418276) +++ head/databases/postgresql92-server/Makefile Sat Jul 9 13:16:52 2016 (r418277) @@ -166,6 +166,7 @@ PATCH_DIST_STRIP=-p1 . if ${PORT_OPTIONS:MDTRACE} CONFIGURE_ARGS+=--enable-dtrace LDFLAGS+=-lelf +INSTALL_TARGET=install . endif .if ${PORT_OPTIONS:MGSSAPI} From owner-svn-ports-all@freebsd.org Sat Jul 9 13:21:08 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 32076B82466; Sat, 9 Jul 2016 13:21:08 +0000 (UTC) (envelope-from cmt@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id F1A61161B; Sat, 9 Jul 2016 13:21:07 +0000 (UTC) (envelope-from cmt@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u69DL7j5030855; Sat, 9 Jul 2016 13:21:07 GMT (envelope-from cmt@FreeBSD.org) Received: (from cmt@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u69DL6JF030848; Sat, 9 Jul 2016 13:21:06 GMT (envelope-from cmt@FreeBSD.org) Message-Id: <201607091321.u69DL6JF030848@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: cmt set sender to cmt@FreeBSD.org using -f From: Christoph Moench-Tegeder Date: Sat, 9 Jul 2016 13:21:06 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418278 - in head: Mk mail/linux-thunderbird mail/thunderbird mail/thunderbird-i18n X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 09 Jul 2016 13:21:08 -0000 Author: cmt Date: Sat Jul 9 13:21:06 2016 New Revision: 418278 URL: https://svnweb.freebsd.org/changeset/ports/418278 Log: update thunderbird to 45.2.0 PR: 210749 Approved by: jbeich (maintainer), rene (mentor) MFH: 2016Q3 Security: 8065d37b-8e7c-4707-a608-1b0a2b8509c3 Modified: head/Mk/bsd.gecko.mk head/mail/linux-thunderbird/Makefile head/mail/linux-thunderbird/distinfo head/mail/thunderbird-i18n/Makefile head/mail/thunderbird-i18n/distinfo head/mail/thunderbird/Makefile head/mail/thunderbird/distinfo Modified: head/Mk/bsd.gecko.mk ============================================================================== --- head/Mk/bsd.gecko.mk Sat Jul 9 13:16:52 2016 (r418277) +++ head/Mk/bsd.gecko.mk Sat Jul 9 13:21:06 2016 (r418278) @@ -89,7 +89,7 @@ USES+= cpe compiler:c++11-lang gmake ic python:2.7,build desktop-file-utils CPE_VENDOR?=mozilla USE_PERL5= build -USE_XORG= xext xrender xt +USE_XORG= x11 xcomposite xdamage xext xfixes xrender xt .if ${MOZILLA} != "libxul" BUNDLE_LIBS= yes @@ -126,7 +126,8 @@ MOZ_OPTIONS+= ${CONFIGURE_TARGET} --pref MOZ_MK_OPTIONS+=MOZ_OBJDIR="${MOZ_OBJDIR}" CPPFLAGS+= -isystem${LOCALBASE}/include -LDFLAGS+= -L${LOCALBASE}/lib -Wl,-rpath,${PREFIX}/lib/${MOZILLA} +LDFLAGS+= -L${LOCALBASE}/lib \ + -Wl,-rpath,${PREFIX}/lib/${MOZILLA} -Wl,--as-needed .if ${OPSYS} != DragonFly # XXX xpcshell crash during install # use jemalloc 3.0.0 (4.0 for firefox 43+) API for stats/tuning @@ -212,10 +213,10 @@ sqlite_MOZ_OPTIONS= --enable-system-sqli theora_LIB_DEPENDS= libtheora.so:multimedia/libtheora theora_MOZ_OPTIONS= --with-system-theora -tremor_LIB_DEPENDS= libvorbisidec.so:audio/libtremor +tremor_LIB_DEPENDS= libogg.so:audio/libogg libvorbisidec.so:audio/libtremor tremor_MOZ_OPTIONS= --with-system-tremor --with-system-ogg -vorbis_LIB_DEPENDS= libvorbis.so:audio/libvorbis +vorbis_LIB_DEPENDS= libogg.so:audio/libogg libvorbis.so:audio/libvorbis vorbis_MOZ_OPTIONS= --with-system-vorbis --with-system-ogg .endif @@ -227,6 +228,9 @@ vpx_MOZ_OPTIONS= --with-system-libvpx ${use:S/-/_WITHOUT_/}= ${TRUE} .endfor +LIB_DEPENDS+= libfontconfig.so:x11-fonts/fontconfig \ + libfreetype.so:print/freetype2 + .for dep in ${_ALL_DEPENDS} ${USE_MOZILLA:M+*:S/+//} .if !defined(_WITHOUT_${dep}) BUILD_DEPENDS+= ${${dep}_BUILD_DEPENDS} @@ -291,12 +295,12 @@ USE_QT5+= qmake_build buildtools_build g MOZ_EXPORT+= HOST_QMAKE="${QMAKE}" HOST_MOC="${MOC}" HOST_RCC="${RCC}" .elif ${MOZ_TOOLKIT:Mcairo-gtk3} BUILD_DEPENDS+= gtk3>=3.14.6:x11-toolkits/gtk30 -USE_GNOME+= gtk30 +USE_GNOME+= gdkpixbuf2 gtk30 . if ${MOZILLA_VER:R:R} >= 32 USE_GNOME+= gtk20 # bug 624422 . endif .else # gtk2, cairo-gtk2 -USE_GNOME+= gtk20 +USE_GNOME+= gdkpixbuf2 gtk20 .endif .if ${PORT_OPTIONS:MOPTIMIZED_CFLAGS} @@ -317,7 +321,8 @@ RUN_DEPENDS+= libcanberra>0:audio/libcan .if ${PORT_OPTIONS:MDBUS} BUILD_DEPENDS+= libnotify>0:devel/libnotify -LIB_DEPENDS+= libdbus-glib-1.so:devel/dbus-glib \ +LIB_DEPENDS+= libdbus-1.so:devel/dbus \ + libdbus-glib-1.so:devel/dbus-glib \ libstartup-notification-1.so:x11/startup-notification MOZ_OPTIONS+= --enable-startup-notification .else Modified: head/mail/linux-thunderbird/Makefile ============================================================================== --- head/mail/linux-thunderbird/Makefile Sat Jul 9 13:16:52 2016 (r418277) +++ head/mail/linux-thunderbird/Makefile Sat Jul 9 13:21:06 2016 (r418278) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= thunderbird -DISTVERSION= 45.1.1 +DISTVERSION= 45.2.0 CATEGORIES= mail news net-im ipv6 MASTER_SITES= MOZILLA/${PORTNAME}/releases/${DISTVERSION}/linux-i686/en-US \ MOZILLA/${PORTNAME}/candidates/${DISTVERSION}-candidates/build1/linux-i686/en-US Modified: head/mail/linux-thunderbird/distinfo ============================================================================== --- head/mail/linux-thunderbird/distinfo Sat Jul 9 13:16:52 2016 (r418277) +++ head/mail/linux-thunderbird/distinfo Sat Jul 9 13:21:06 2016 (r418278) @@ -1,5 +1,5 @@ -SHA256 (thunderbird-45.1.1.tar.bz2) = f40cfa03c6c557417b78536b3d636dbccdf945c732621bad985d9f027b7e08ff -SIZE (thunderbird-45.1.1.tar.bz2) = 44113727 +SHA256 (thunderbird-45.2.0.tar.bz2) = ab45e9a29901e6d9643e5605182662b7efa6cc54a73642a96745e74197e68c27 +SIZE (thunderbird-45.2.0.tar.bz2) = 44163764 SHA256 (glib2-2.22.2-2.fc12.i686.rpm) = e3b459c245ec14e7248e9de4b506963a4773407f3e58835db5070d0ed02ecc99 SIZE (glib2-2.22.2-2.fc12.i686.rpm) = 1162908 SHA256 (gtk2-2.18.3-19.fc12.i686.rpm) = aea9cf7ffe9c8dae0faa2bf3d2aa1b2117c55dce03da72dcce8c268279ec0a4b Modified: head/mail/thunderbird-i18n/Makefile ============================================================================== --- head/mail/thunderbird-i18n/Makefile Sat Jul 9 13:16:52 2016 (r418277) +++ head/mail/thunderbird-i18n/Makefile Sat Jul 9 13:21:06 2016 (r418278) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= thunderbird-i18n -PORTVERSION= 45.1.1 +PORTVERSION= 45.2.0 CATEGORIES= mail news net-im MASTER_SITES= MOZILLA/${PORTNAME:S|-i18n||}/releases/${DISTVERSION}/linux-i686/xpi \ MOZILLA/${PORTNAME:S|-i18n||}/candidates/${DISTVERSION}-candidates/build1/linux-i686/xpi Modified: head/mail/thunderbird-i18n/distinfo ============================================================================== --- head/mail/thunderbird-i18n/distinfo Sat Jul 9 13:16:52 2016 (r418277) +++ head/mail/thunderbird-i18n/distinfo Sat Jul 9 13:21:06 2016 (r418278) @@ -1,117 +1,117 @@ -TIMESTAMP = 1465151206 -SHA256 (xpi/thunderbird-i18n-45.1.1/ar.xpi) = c535c621cd989d46942058f14c90ec3d9c9236c45c4dde52af8be4614ddd7140 -SIZE (xpi/thunderbird-i18n-45.1.1/ar.xpi) = 490774 -SHA256 (xpi/thunderbird-i18n-45.1.1/ast.xpi) = 9e2f93f4851ce6fb7a180738823b8286f107e1380b1ec8f884fdc3758174c05b -SIZE (xpi/thunderbird-i18n-45.1.1/ast.xpi) = 428058 -SHA256 (xpi/thunderbird-i18n-45.1.1/be.xpi) = 25ca69a539f92f53eb0b7fff142989bf6dbaa7231e28d43ff9f5c12c46450d0a -SIZE (xpi/thunderbird-i18n-45.1.1/be.xpi) = 469096 -SHA256 (xpi/thunderbird-i18n-45.1.1/bg.xpi) = 13ed61e0d9d6dccd8fdecf432dc6deec87d554239676fe7c96767b58aa8dcc49 -SIZE (xpi/thunderbird-i18n-45.1.1/bg.xpi) = 524304 -SHA256 (xpi/thunderbird-i18n-45.1.1/bn-BD.xpi) = 65530a9adc3f442c9fa5032bd9e5e9d74f984397a227c34e36a07f888b69aa60 -SIZE (xpi/thunderbird-i18n-45.1.1/bn-BD.xpi) = 581439 -SHA256 (xpi/thunderbird-i18n-45.1.1/br.xpi) = 6b3c787ebc50c41eed5410f22402da6e7415c72dcc67c4a655e1931572a3e5a6 -SIZE (xpi/thunderbird-i18n-45.1.1/br.xpi) = 465999 -SHA256 (xpi/thunderbird-i18n-45.1.1/ca.xpi) = 059a4d68d8319b6b66e6946a6b4add2ffb8b13a689c1cace70a5bcff56b49731 -SIZE (xpi/thunderbird-i18n-45.1.1/ca.xpi) = 467979 -SHA256 (xpi/thunderbird-i18n-45.1.1/cs.xpi) = 76c4f7643a72b3a57ec123beba2aee25de553d71a700f3c739090ea580554b3d -SIZE (xpi/thunderbird-i18n-45.1.1/cs.xpi) = 474328 -SHA256 (xpi/thunderbird-i18n-45.1.1/cy.xpi) = 677eb544ddfd42a223d5f4858635ad00c6c2e2651f9820f737f8f0454cb5af5a -SIZE (xpi/thunderbird-i18n-45.1.1/cy.xpi) = 456120 -SHA256 (xpi/thunderbird-i18n-45.1.1/da.xpi) = 899e09b81ccbc88cc441e24c4a8d511ffd18d56fd247bd9164c15900b22e32be -SIZE (xpi/thunderbird-i18n-45.1.1/da.xpi) = 445594 -SHA256 (xpi/thunderbird-i18n-45.1.1/de.xpi) = 971d977956cf3e3a0ec9ff8d5f862abf4ea8829411c10c894750c232b35d5739 -SIZE (xpi/thunderbird-i18n-45.1.1/de.xpi) = 451955 -SHA256 (xpi/thunderbird-i18n-45.1.1/dsb.xpi) = 29b8599995c0b00fff4d86f4e60196838efff0010c757b08d6ef79515d0c577d -SIZE (xpi/thunderbird-i18n-45.1.1/dsb.xpi) = 481647 -SHA256 (xpi/thunderbird-i18n-45.1.1/el.xpi) = 5adb9671a58c732de677242f7bebefb8203bd00568f99a78ab3f1e09b80962f5 -SIZE (xpi/thunderbird-i18n-45.1.1/el.xpi) = 514358 -SHA256 (xpi/thunderbird-i18n-45.1.1/en-GB.xpi) = b0afd91d607111545d251b9b51894bb25276e3aef11624a35b6c67b6947ad1b6 -SIZE (xpi/thunderbird-i18n-45.1.1/en-GB.xpi) = 437602 -SHA256 (xpi/thunderbird-i18n-45.1.1/en-US.xpi) = 44f2ce58c56d39216ff6167bdeb39747eed2396bf6e1a28bf80c0beda391a0a7 -SIZE (xpi/thunderbird-i18n-45.1.1/en-US.xpi) = 435472 -SHA256 (xpi/thunderbird-i18n-45.1.1/es-AR.xpi) = 09e3d97c0dbd7ea39f5fca8fd372ecd43b5075a86ca3f5afaa80af6fb7fe6669 -SIZE (xpi/thunderbird-i18n-45.1.1/es-AR.xpi) = 464683 -SHA256 (xpi/thunderbird-i18n-45.1.1/es-ES.xpi) = 1a277653c49a1a5ad7f859dc70ac9959ab026b9f5dcbef28081a901b876a67ec -SIZE (xpi/thunderbird-i18n-45.1.1/es-ES.xpi) = 387999 -SHA256 (xpi/thunderbird-i18n-45.1.1/et.xpi) = bd3a19cf288f41d1b867ffa757bc5b2f8dfc300406958669981d61b74af4d3ef -SIZE (xpi/thunderbird-i18n-45.1.1/et.xpi) = 458418 -SHA256 (xpi/thunderbird-i18n-45.1.1/eu.xpi) = 85ddf6c308c847e3102e813feb87c3ca2b585401ab9e17ef523b43d0c866097a -SIZE (xpi/thunderbird-i18n-45.1.1/eu.xpi) = 456707 -SHA256 (xpi/thunderbird-i18n-45.1.1/fi.xpi) = bdef4f4923042b7ac90e4e908965a56f75813d92cc0c6b678e492e8a2369f21a -SIZE (xpi/thunderbird-i18n-45.1.1/fi.xpi) = 458335 -SHA256 (xpi/thunderbird-i18n-45.1.1/fr.xpi) = 9f0b1ccec04d4f5178e4ba76ddef4f130b9346e18e59b73f9183a717c11dd132 -SIZE (xpi/thunderbird-i18n-45.1.1/fr.xpi) = 475465 -SHA256 (xpi/thunderbird-i18n-45.1.1/fy-NL.xpi) = ccca231508908ae9125a00b737a45d71e40006ba8bf9b3ca168553f15eb3d367 -SIZE (xpi/thunderbird-i18n-45.1.1/fy-NL.xpi) = 464756 -SHA256 (xpi/thunderbird-i18n-45.1.1/ga-IE.xpi) = ccc8cd8d80aae1cfc58e63b8a9ee66bfb6247fa6d79859f5d3f6ed15333aaf45 -SIZE (xpi/thunderbird-i18n-45.1.1/ga-IE.xpi) = 480317 -SHA256 (xpi/thunderbird-i18n-45.1.1/gd.xpi) = f9b89e925ce69bccf7284872f47fd010d26efc5ad9aa97c7c454b2d54462eb17 -SIZE (xpi/thunderbird-i18n-45.1.1/gd.xpi) = 478296 -SHA256 (xpi/thunderbird-i18n-45.1.1/gl.xpi) = 8c896fa15d69ac8f829391b47051d596420fd2175058c6e0852d66af932d30c1 -SIZE (xpi/thunderbird-i18n-45.1.1/gl.xpi) = 478580 -SHA256 (xpi/thunderbird-i18n-45.1.1/he.xpi) = f8a78f0483a070fe619d9e0a918d736664edfdb56fdfa9db71c0a990c0c5b631 -SIZE (xpi/thunderbird-i18n-45.1.1/he.xpi) = 497962 -SHA256 (xpi/thunderbird-i18n-45.1.1/hr.xpi) = dcab60dcadc2cac63cd854868bd7c731af592b5da292a335a3a98393f1e6eb4b -SIZE (xpi/thunderbird-i18n-45.1.1/hr.xpi) = 463958 -SHA256 (xpi/thunderbird-i18n-45.1.1/hsb.xpi) = ecc2e8fc7a6068555465aa3f7d7db4fb468fc13197e331e78055659af062988b -SIZE (xpi/thunderbird-i18n-45.1.1/hsb.xpi) = 479414 -SHA256 (xpi/thunderbird-i18n-45.1.1/hu.xpi) = 69f71f459a486c4e8030025b3507fc2e3bacf77023b68d65a4ecf61a2994b7e9 -SIZE (xpi/thunderbird-i18n-45.1.1/hu.xpi) = 479584 -SHA256 (xpi/thunderbird-i18n-45.1.1/hy-AM.xpi) = 8215b28e46869204378b961eae14b3261247798573ef788d7e2befdb4efff419 -SIZE (xpi/thunderbird-i18n-45.1.1/hy-AM.xpi) = 518882 -SHA256 (xpi/thunderbird-i18n-45.1.1/id.xpi) = 5395263dd7af3767df9f930a202aadce4687373e7e152dd1843111fcf2bce52d -SIZE (xpi/thunderbird-i18n-45.1.1/id.xpi) = 499982 -SHA256 (xpi/thunderbird-i18n-45.1.1/is.xpi) = 92dd8e5c854c8572d267efb8392c182ecf3488203da4dd2f85c33db9a93b07e3 -SIZE (xpi/thunderbird-i18n-45.1.1/is.xpi) = 462190 -SHA256 (xpi/thunderbird-i18n-45.1.1/it.xpi) = 98ef0facbb0a51b620c9846bf84d159cd1f66a3443465ccf4e63a8662b83dc4b -SIZE (xpi/thunderbird-i18n-45.1.1/it.xpi) = 376888 -SHA256 (xpi/thunderbird-i18n-45.1.1/ja.xpi) = 4f3fb68bc679a263d09287fd33d7348392eeb1340046bf907edbed3df7aaf64f -SIZE (xpi/thunderbird-i18n-45.1.1/ja.xpi) = 519552 -SHA256 (xpi/thunderbird-i18n-45.1.1/ko.xpi) = 88a22ca155e94151e835dd86f7bf13db8b38309210339344eb1e17785b6f1143 -SIZE (xpi/thunderbird-i18n-45.1.1/ko.xpi) = 487417 -SHA256 (xpi/thunderbird-i18n-45.1.1/lt.xpi) = 21908a4d42b989c1949cfa5fe81a4a72f661c24b0e049489305e7ac0149d995a -SIZE (xpi/thunderbird-i18n-45.1.1/lt.xpi) = 477735 -SHA256 (xpi/thunderbird-i18n-45.1.1/nb-NO.xpi) = 191ec40d25a7714b34000075d18b20c215e2fdec4cf747b0dfc4e923a3ddc732 -SIZE (xpi/thunderbird-i18n-45.1.1/nb-NO.xpi) = 460011 -SHA256 (xpi/thunderbird-i18n-45.1.1/nl.xpi) = 5fb155e70095f2104c912e0773df1d0fc4a87515672b9a4b5f15377950e01bdd -SIZE (xpi/thunderbird-i18n-45.1.1/nl.xpi) = 456664 -SHA256 (xpi/thunderbird-i18n-45.1.1/nn-NO.xpi) = 9384271d6c39b69e31f74dcf96327a26469c915163b9e187a4b3996700ab75c4 -SIZE (xpi/thunderbird-i18n-45.1.1/nn-NO.xpi) = 460879 -SHA256 (xpi/thunderbird-i18n-45.1.1/pa-IN.xpi) = 2cf05a30f1a240e47ce6996f9f879d3046fabfc39a18ca5d42dc19fae35fb86f -SIZE (xpi/thunderbird-i18n-45.1.1/pa-IN.xpi) = 551068 -SHA256 (xpi/thunderbird-i18n-45.1.1/pl.xpi) = c06c0421f53003cb38d7a1b293944ecbc0bcc4b70349ed09dec3f01ef5e100cf -SIZE (xpi/thunderbird-i18n-45.1.1/pl.xpi) = 423867 -SHA256 (xpi/thunderbird-i18n-45.1.1/pt-BR.xpi) = 737136c3a556ff64dd162a5adf423856de8beacec2075b566c86538e6dc611be -SIZE (xpi/thunderbird-i18n-45.1.1/pt-BR.xpi) = 464682 -SHA256 (xpi/thunderbird-i18n-45.1.1/pt-PT.xpi) = f2aa87ab0f584f4c8e358ba4043f16a4021f6d5f236050fa27002b0663d78b60 -SIZE (xpi/thunderbird-i18n-45.1.1/pt-PT.xpi) = 463751 -SHA256 (xpi/thunderbird-i18n-45.1.1/rm.xpi) = cffdbb8f425afa026e667f1cbacff05cba999b452dd002f66cd9470e2be002fa -SIZE (xpi/thunderbird-i18n-45.1.1/rm.xpi) = 462650 -SHA256 (xpi/thunderbird-i18n-45.1.1/ro.xpi) = 8107706cfc2eb68b1663c62b6e02bce98a3bbb72688133502bc8b44b93251a94 -SIZE (xpi/thunderbird-i18n-45.1.1/ro.xpi) = 468518 -SHA256 (xpi/thunderbird-i18n-45.1.1/ru.xpi) = 90a897492fda811c989b6ac6720f7c7a36153d452b7c4299be1837305bb7421c -SIZE (xpi/thunderbird-i18n-45.1.1/ru.xpi) = 463892 -SHA256 (xpi/thunderbird-i18n-45.1.1/si.xpi) = 8a8308b82e663addc40bd0235afc4d2d480e3aa296c49b8083627d5eed822df2 -SIZE (xpi/thunderbird-i18n-45.1.1/si.xpi) = 555995 -SHA256 (xpi/thunderbird-i18n-45.1.1/sk.xpi) = 3e3b26829625652ec2a1c43580a0b7b0b94cc0603cb8c21758306ba2cb857c14 -SIZE (xpi/thunderbird-i18n-45.1.1/sk.xpi) = 481492 -SHA256 (xpi/thunderbird-i18n-45.1.1/sl.xpi) = b0a150bfae8660dcef15e0e5c90795b61a1c78c4f65f9c3054755ba949c8b2b9 -SIZE (xpi/thunderbird-i18n-45.1.1/sl.xpi) = 462780 -SHA256 (xpi/thunderbird-i18n-45.1.1/sq.xpi) = 51cc95ca790168f32697f7248c502e4e88a4229846e044892503cafa80a44750 -SIZE (xpi/thunderbird-i18n-45.1.1/sq.xpi) = 469535 -SHA256 (xpi/thunderbird-i18n-45.1.1/sr.xpi) = 5d1a3c814f31aadb8782f7e0c540f5b8fe84fe984b772b16fb592469feab02f6 -SIZE (xpi/thunderbird-i18n-45.1.1/sr.xpi) = 565465 -SHA256 (xpi/thunderbird-i18n-45.1.1/sv-SE.xpi) = 3e99ca9ad562f247b8d80fae10867bf5ed7605ded5e877a91592af9c6f28f128 -SIZE (xpi/thunderbird-i18n-45.1.1/sv-SE.xpi) = 465433 -SHA256 (xpi/thunderbird-i18n-45.1.1/ta-LK.xpi) = f82cc68c2a2f5a0869c78d96f12ead30f77ebb6a984a0058445d75d38c4f5376 -SIZE (xpi/thunderbird-i18n-45.1.1/ta-LK.xpi) = 579218 -SHA256 (xpi/thunderbird-i18n-45.1.1/tr.xpi) = 324a8a9fee18a407824387e5544d9de1d46d467143ee45100576b1499f034da5 -SIZE (xpi/thunderbird-i18n-45.1.1/tr.xpi) = 467622 -SHA256 (xpi/thunderbird-i18n-45.1.1/uk.xpi) = 0d5c01967f6a5a7c42051ce2fdf5f22ae25056e4e55ef1519c77a961694dae5c -SIZE (xpi/thunderbird-i18n-45.1.1/uk.xpi) = 536438 -SHA256 (xpi/thunderbird-i18n-45.1.1/vi.xpi) = 4219170416d1c3cf5bcb3e78fde7747e3bbbf44bb8dca3d9d826c93782a36ff2 -SIZE (xpi/thunderbird-i18n-45.1.1/vi.xpi) = 540497 -SHA256 (xpi/thunderbird-i18n-45.1.1/zh-CN.xpi) = b75726022d753a4fb55df7a47b83a36227b88382b2a91775252b7e909b34f979 -SIZE (xpi/thunderbird-i18n-45.1.1/zh-CN.xpi) = 489209 -SHA256 (xpi/thunderbird-i18n-45.1.1/zh-TW.xpi) = fcbb98c5bb083bcb036bca8651e3edb00a1efff9b5aebc69a5f02492ab09719a -SIZE (xpi/thunderbird-i18n-45.1.1/zh-TW.xpi) = 490850 +TIMESTAMP = 1467391621 +SHA256 (xpi/thunderbird-i18n-45.2.0/ar.xpi) = a978e30fff1f2da8f420f512a3956a7381fbafcc1fbb9692cdcdeb9277259739 +SIZE (xpi/thunderbird-i18n-45.2.0/ar.xpi) = 490775 +SHA256 (xpi/thunderbird-i18n-45.2.0/ast.xpi) = 396c5eda1408bd303d848be10f836603f325166097741857a6eff27d10dfa5d5 +SIZE (xpi/thunderbird-i18n-45.2.0/ast.xpi) = 428059 +SHA256 (xpi/thunderbird-i18n-45.2.0/be.xpi) = daf2f8099263ba47043284431abfffb9621be3f73fbc66be4d392e233cabb166 +SIZE (xpi/thunderbird-i18n-45.2.0/be.xpi) = 469096 +SHA256 (xpi/thunderbird-i18n-45.2.0/bg.xpi) = 118c047b82bbc37f249447d9f5a77d994b2d01e60347ad63241940e9944aaa3a +SIZE (xpi/thunderbird-i18n-45.2.0/bg.xpi) = 524299 +SHA256 (xpi/thunderbird-i18n-45.2.0/bn-BD.xpi) = ea259b4d5ebeab67d9791aab7f6da8f3d88bb97f679c805f4517a981816d08d7 +SIZE (xpi/thunderbird-i18n-45.2.0/bn-BD.xpi) = 581439 +SHA256 (xpi/thunderbird-i18n-45.2.0/br.xpi) = 899f9afb7fcd889dc4da068d3a35feb6d4a84928124505830e6d5cd4f66c1eef +SIZE (xpi/thunderbird-i18n-45.2.0/br.xpi) = 465999 +SHA256 (xpi/thunderbird-i18n-45.2.0/ca.xpi) = b066d9d80a17244f03b996158fa16b8fcf9049a1b922249d2bf09823ea3deaa4 +SIZE (xpi/thunderbird-i18n-45.2.0/ca.xpi) = 467980 +SHA256 (xpi/thunderbird-i18n-45.2.0/cs.xpi) = be80f75b6db1e345c79f61aebf918127754d8aad943219dc2631e5eb82a9ae4e +SIZE (xpi/thunderbird-i18n-45.2.0/cs.xpi) = 474327 +SHA256 (xpi/thunderbird-i18n-45.2.0/cy.xpi) = 0f5db3def36ae7e0fa829c3fad44e11c1363bda38ae779efdf38cd6ee563dbd6 +SIZE (xpi/thunderbird-i18n-45.2.0/cy.xpi) = 456120 +SHA256 (xpi/thunderbird-i18n-45.2.0/da.xpi) = 7a62a915897cf2ce2c0c45a2cc683f8df2770bad0aa818eef9e8bd2fcd031566 +SIZE (xpi/thunderbird-i18n-45.2.0/da.xpi) = 445594 +SHA256 (xpi/thunderbird-i18n-45.2.0/de.xpi) = 9e1ec973a715740a857c3aae15fe8bfcd01209d80d64d2cafc6ad086dd0ed2d2 +SIZE (xpi/thunderbird-i18n-45.2.0/de.xpi) = 451956 +SHA256 (xpi/thunderbird-i18n-45.2.0/dsb.xpi) = 2bf37620b68eb21911fecba483463bf6a3066c16a4db0fdd9496c9bf680c1f76 +SIZE (xpi/thunderbird-i18n-45.2.0/dsb.xpi) = 481644 +SHA256 (xpi/thunderbird-i18n-45.2.0/el.xpi) = 9ba451a5b06685f43387f56304745dfb5ccd0d946b5b7e2571fe7490328fa761 +SIZE (xpi/thunderbird-i18n-45.2.0/el.xpi) = 514358 +SHA256 (xpi/thunderbird-i18n-45.2.0/en-GB.xpi) = aa5c3e259439988ae44ff97ba743c044cd5ef731350b07fe90e430b4e9e7b326 +SIZE (xpi/thunderbird-i18n-45.2.0/en-GB.xpi) = 437603 +SHA256 (xpi/thunderbird-i18n-45.2.0/en-US.xpi) = 478da2fe644b6bc8c982c29cdec48183c38fc6898dabfe6afe5607effd843185 +SIZE (xpi/thunderbird-i18n-45.2.0/en-US.xpi) = 435474 +SHA256 (xpi/thunderbird-i18n-45.2.0/es-AR.xpi) = 53206d90dde7e7eb7e43b6eafe0c01c5b0f38bd36ba82987fe182846da676ce2 +SIZE (xpi/thunderbird-i18n-45.2.0/es-AR.xpi) = 464683 +SHA256 (xpi/thunderbird-i18n-45.2.0/es-ES.xpi) = b0d650684043e9ea4aa480b32303dcf457830611e6ec0d60471f71d6a74d206e +SIZE (xpi/thunderbird-i18n-45.2.0/es-ES.xpi) = 388000 +SHA256 (xpi/thunderbird-i18n-45.2.0/et.xpi) = 15b674575aa8aa5019ccdcb0c851ddc40c4e0359147efbf750f05e2fef9c93a3 +SIZE (xpi/thunderbird-i18n-45.2.0/et.xpi) = 458418 +SHA256 (xpi/thunderbird-i18n-45.2.0/eu.xpi) = cf1689340d3443fcdbf8bb2a81257f7c7acde63509d59fd516d78c0b9585da74 +SIZE (xpi/thunderbird-i18n-45.2.0/eu.xpi) = 456708 +SHA256 (xpi/thunderbird-i18n-45.2.0/fi.xpi) = 3ef09752756290132951a80261ba93d1160bffeeb30392f3e348ac7a843a6b6b +SIZE (xpi/thunderbird-i18n-45.2.0/fi.xpi) = 458335 +SHA256 (xpi/thunderbird-i18n-45.2.0/fr.xpi) = 8a0ed16318f1f15e52e31042f5af8c368afd2479d685e8be31b78f3f7d5ad232 +SIZE (xpi/thunderbird-i18n-45.2.0/fr.xpi) = 475466 +SHA256 (xpi/thunderbird-i18n-45.2.0/fy-NL.xpi) = d6dc477d2f567a966c5a5c96164265da5804e352f3a3df63c869953634385c7e +SIZE (xpi/thunderbird-i18n-45.2.0/fy-NL.xpi) = 464757 +SHA256 (xpi/thunderbird-i18n-45.2.0/ga-IE.xpi) = a3f80339ef6e980fd45dd0877357497ffba73b05e04e0911e1dd2ba5f626e65e +SIZE (xpi/thunderbird-i18n-45.2.0/ga-IE.xpi) = 480317 +SHA256 (xpi/thunderbird-i18n-45.2.0/gd.xpi) = c48487d6fca86519b3b773fb37044bef7387505c45c37b2f302eabce8201d1ed +SIZE (xpi/thunderbird-i18n-45.2.0/gd.xpi) = 478296 +SHA256 (xpi/thunderbird-i18n-45.2.0/gl.xpi) = 496153b62e38876d23d4f7b5da826be8d158ee7a7e5294025202c1944c0ad667 +SIZE (xpi/thunderbird-i18n-45.2.0/gl.xpi) = 478580 +SHA256 (xpi/thunderbird-i18n-45.2.0/he.xpi) = ca89bc13f9126abe02c9a72191ea59667aaa9c0ba90c0618c6b3f152687707a7 +SIZE (xpi/thunderbird-i18n-45.2.0/he.xpi) = 497962 +SHA256 (xpi/thunderbird-i18n-45.2.0/hr.xpi) = 013a5e1146f1126e839aff7cdba5b96bfc03a7faece0b60ce68a780ba32ef4f5 +SIZE (xpi/thunderbird-i18n-45.2.0/hr.xpi) = 463959 +SHA256 (xpi/thunderbird-i18n-45.2.0/hsb.xpi) = 99b232001e2bfa81a938d23fa6142660055aba5ad126b6e1e161389a948dcbd8 +SIZE (xpi/thunderbird-i18n-45.2.0/hsb.xpi) = 479414 +SHA256 (xpi/thunderbird-i18n-45.2.0/hu.xpi) = 607362dd26f7d530589dc02ca78441eaeafe6a78ae356967d8f87c23087d3c84 +SIZE (xpi/thunderbird-i18n-45.2.0/hu.xpi) = 479583 +SHA256 (xpi/thunderbird-i18n-45.2.0/hy-AM.xpi) = c57aff249ba9a5974c0a25f99eff35c9d6b9e6e01596059068003416681477ad +SIZE (xpi/thunderbird-i18n-45.2.0/hy-AM.xpi) = 518883 +SHA256 (xpi/thunderbird-i18n-45.2.0/id.xpi) = 785c4ba30e8b3d41b4b7989febcf03fa6f89c5d6024e12df6860e52ef5fd1de2 +SIZE (xpi/thunderbird-i18n-45.2.0/id.xpi) = 499982 +SHA256 (xpi/thunderbird-i18n-45.2.0/is.xpi) = 427f2f3b8676d925fa0ff5b59515da6f67b222bcc7c0e9039063283425433e83 +SIZE (xpi/thunderbird-i18n-45.2.0/is.xpi) = 462190 +SHA256 (xpi/thunderbird-i18n-45.2.0/it.xpi) = c8cde3092ea42720f9824fe9fb0fefe2a354ebab846b430ce14a020d2d1f2ce0 +SIZE (xpi/thunderbird-i18n-45.2.0/it.xpi) = 376889 +SHA256 (xpi/thunderbird-i18n-45.2.0/ja.xpi) = 0a2927586939524e1b3ebb5d63cbba6c4124c0fcf7de034e184e6509522bcee4 +SIZE (xpi/thunderbird-i18n-45.2.0/ja.xpi) = 519552 +SHA256 (xpi/thunderbird-i18n-45.2.0/ko.xpi) = 20c3e0bcae68cee6c00b788763ccf17dc9bf4d69667fd8ad635f13035aa85699 +SIZE (xpi/thunderbird-i18n-45.2.0/ko.xpi) = 487418 +SHA256 (xpi/thunderbird-i18n-45.2.0/lt.xpi) = f8f6a6ea5d6719acd9fefaef9286083a9322b87e9926298896972716956a4c85 +SIZE (xpi/thunderbird-i18n-45.2.0/lt.xpi) = 477735 +SHA256 (xpi/thunderbird-i18n-45.2.0/nb-NO.xpi) = 3360d3d7f0c3a04e595a9de3cff3fbfffed3889bd09b1d3eae7e663d12fa0c35 +SIZE (xpi/thunderbird-i18n-45.2.0/nb-NO.xpi) = 460011 +SHA256 (xpi/thunderbird-i18n-45.2.0/nl.xpi) = 1c8e9ebb0b08ad58588dce9043dca6c5fe22420836e8d810863cd35e78e0c677 +SIZE (xpi/thunderbird-i18n-45.2.0/nl.xpi) = 456664 +SHA256 (xpi/thunderbird-i18n-45.2.0/nn-NO.xpi) = 5a6e2c6d762241d986e7e9e07487b8b228951c7ae5343fa90a95333b18b352dc +SIZE (xpi/thunderbird-i18n-45.2.0/nn-NO.xpi) = 460880 +SHA256 (xpi/thunderbird-i18n-45.2.0/pa-IN.xpi) = cc2083bd72177ea77ce84e82477a70a07d69442260a8c2d9b922385ce0eb475d +SIZE (xpi/thunderbird-i18n-45.2.0/pa-IN.xpi) = 551067 +SHA256 (xpi/thunderbird-i18n-45.2.0/pl.xpi) = e93ed1f99303670926ee40da34987204382806cfa5a738bc7964084b0f40ccb0 +SIZE (xpi/thunderbird-i18n-45.2.0/pl.xpi) = 423867 +SHA256 (xpi/thunderbird-i18n-45.2.0/pt-BR.xpi) = d8115c3268771c3b1465bc230d13aa5da97f598c3e292a6234f7509732bef448 +SIZE (xpi/thunderbird-i18n-45.2.0/pt-BR.xpi) = 464682 +SHA256 (xpi/thunderbird-i18n-45.2.0/pt-PT.xpi) = 9bdaf161f7dcbacaddb3c00f6a44bfed5e30d61f738343e413613507fb1a7575 +SIZE (xpi/thunderbird-i18n-45.2.0/pt-PT.xpi) = 463751 +SHA256 (xpi/thunderbird-i18n-45.2.0/rm.xpi) = 34d759713de25905ef526d9f0e615339d0c79c42a1f7bcddd5cb87c59f32cc09 +SIZE (xpi/thunderbird-i18n-45.2.0/rm.xpi) = 462650 +SHA256 (xpi/thunderbird-i18n-45.2.0/ro.xpi) = da26f4d97f0df751f032e14f057504d4bd6d640e1d0b0add9eaf15243d7debea +SIZE (xpi/thunderbird-i18n-45.2.0/ro.xpi) = 468518 +SHA256 (xpi/thunderbird-i18n-45.2.0/ru.xpi) = 5a20ab55ad711289126c40c322cf520f93c91e490db3bddced1784d1504403d9 +SIZE (xpi/thunderbird-i18n-45.2.0/ru.xpi) = 463891 +SHA256 (xpi/thunderbird-i18n-45.2.0/si.xpi) = 56bb13177f104227caf0a2b11e96b997e466f0d1e3d932e4858d79b86aeb92ab +SIZE (xpi/thunderbird-i18n-45.2.0/si.xpi) = 555994 +SHA256 (xpi/thunderbird-i18n-45.2.0/sk.xpi) = f43fe29427604817ff0fe912232a513b04560f1ff4438a3dea3ac82d0943379a +SIZE (xpi/thunderbird-i18n-45.2.0/sk.xpi) = 481492 +SHA256 (xpi/thunderbird-i18n-45.2.0/sl.xpi) = 5275f45f8e621681d65ce85c0582ac49056af43130eee5a47f81210096875a9b +SIZE (xpi/thunderbird-i18n-45.2.0/sl.xpi) = 462781 +SHA256 (xpi/thunderbird-i18n-45.2.0/sq.xpi) = c3c71505de44e585323fa927afeb8c93f5c90cfdee744f5e44768a3eafa8d872 +SIZE (xpi/thunderbird-i18n-45.2.0/sq.xpi) = 469535 +SHA256 (xpi/thunderbird-i18n-45.2.0/sr.xpi) = 0675a05d99555f8ea8e9d77b351d5f8a9c694362d8a421663ad9cb4c7257dcdd +SIZE (xpi/thunderbird-i18n-45.2.0/sr.xpi) = 565464 +SHA256 (xpi/thunderbird-i18n-45.2.0/sv-SE.xpi) = cbd64d87bb674279e5e241542359138399f77608e7f23f1a73f7e08d2e000bd1 +SIZE (xpi/thunderbird-i18n-45.2.0/sv-SE.xpi) = 465434 +SHA256 (xpi/thunderbird-i18n-45.2.0/ta-LK.xpi) = 3365a20f6a97745f6550b1be5710fd1fdac8d6277ab63ebf5c16909e397e140b +SIZE (xpi/thunderbird-i18n-45.2.0/ta-LK.xpi) = 579218 +SHA256 (xpi/thunderbird-i18n-45.2.0/tr.xpi) = ab2bbf3016773dfa422604e89562c41d30df8beff34b5b9c9602ed00aad6774c +SIZE (xpi/thunderbird-i18n-45.2.0/tr.xpi) = 467621 +SHA256 (xpi/thunderbird-i18n-45.2.0/uk.xpi) = 29701e0f882973ca8f4a6028608b27be3350883e55040cdc46355dbce4c2dd01 +SIZE (xpi/thunderbird-i18n-45.2.0/uk.xpi) = 536438 +SHA256 (xpi/thunderbird-i18n-45.2.0/vi.xpi) = 760db86b7c8f851ba3416b50f0a5a44655629f9c4f9c1ef4282fc3c1c9e71778 +SIZE (xpi/thunderbird-i18n-45.2.0/vi.xpi) = 540497 +SHA256 (xpi/thunderbird-i18n-45.2.0/zh-CN.xpi) = 0a876c51d52eefc894102dcc1d9c867d33122672e76e0393941f3af13fcaf1bd +SIZE (xpi/thunderbird-i18n-45.2.0/zh-CN.xpi) = 489209 +SHA256 (xpi/thunderbird-i18n-45.2.0/zh-TW.xpi) = 14aa68a367c79a9f87788c304966d3a60e99a77a2c42db9ce05d5755cc67b93e +SIZE (xpi/thunderbird-i18n-45.2.0/zh-TW.xpi) = 490850 Modified: head/mail/thunderbird/Makefile ============================================================================== --- head/mail/thunderbird/Makefile Sat Jul 9 13:16:52 2016 (r418277) +++ head/mail/thunderbird/Makefile Sat Jul 9 13:21:06 2016 (r418278) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= thunderbird -DISTVERSION= 45.1.1 -PORTREVISION= 2 +DISTVERSION= 45.2.0 CATEGORIES= mail news net-im ipv6 MASTER_SITES= MOZILLA/${PORTNAME}/releases/${DISTVERSION}/source \ MOZILLA/${PORTNAME}/candidates/${DISTVERSION}-candidates/build1/source @@ -33,7 +32,7 @@ BUILD_DEPENDS= nspr>=4.12:devel/nspr \ LIB_DEPENDS= libv4l2.so:multimedia/libv4l EM_VERSION= 1.9.3 -L_VERSION= 4.7.1.1 +L_VERSION= 4.7.2 SSP_UNSAFE= yes USE_GECKO= gecko Modified: head/mail/thunderbird/distinfo ============================================================================== --- head/mail/thunderbird/distinfo Sat Jul 9 13:16:52 2016 (r418277) +++ head/mail/thunderbird/distinfo Sat Jul 9 13:21:06 2016 (r418278) @@ -1,5 +1,5 @@ -TIMESTAMP = 1465154624 -SHA256 (thunderbird-45.1.1.source.tar.xz) = 107d103c30b4f666ede1ec197156f94456117783087518fe1af4557d548b718e -SIZE (thunderbird-45.1.1.source.tar.xz) = 201012896 +TIMESTAMP = 1467307995 +SHA256 (thunderbird-45.2.0.source.tar.xz) = bd2389cbb28138668ab41b26f1dce49c455807e09b43fd370ee765ae3f0937c0 +SIZE (thunderbird-45.2.0.source.tar.xz) = 201023884 SHA256 (enigmail-1.9.3.tar.gz) = 1dee90ff4ad51d361335686ab4ed722d34d2502b36b609680e2aabe3bb50729a SIZE (enigmail-1.9.3.tar.gz) = 1741831 From owner-svn-ports-all@freebsd.org Sat Jul 9 13:38:50 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 63B07B82B70; Sat, 9 Jul 2016 13:38:50 +0000 (UTC) (envelope-from cmt@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 2F5FD11DE; Sat, 9 Jul 2016 13:38:50 +0000 (UTC) (envelope-from cmt@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u69DcnhH036715; Sat, 9 Jul 2016 13:38:49 GMT (envelope-from cmt@FreeBSD.org) Received: (from cmt@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u69Dcmce036708; Sat, 9 Jul 2016 13:38:48 GMT (envelope-from cmt@FreeBSD.org) Message-Id: <201607091338.u69Dcmce036708@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: cmt set sender to cmt@FreeBSD.org using -f From: Christoph Moench-Tegeder Date: Sat, 9 Jul 2016 13:38:48 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r418279 - in branches/2016Q3: Mk mail/linux-thunderbird mail/thunderbird mail/thunderbird-i18n X-SVN-Group: ports-branches MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 09 Jul 2016 13:38:50 -0000 Author: cmt Date: Sat Jul 9 13:38:48 2016 New Revision: 418279 URL: https://svnweb.freebsd.org/changeset/ports/418279 Log: MFH: r418278 update thunderbird to 45.2.0 PR: 210749 Approved by: jbeich (maintainer), rene (mentor) Security: 8065d37b-8e7c-4707-a608-1b0a2b8509c3 Approved by: ports-secteam (junovitch) Modified: branches/2016Q3/Mk/bsd.gecko.mk branches/2016Q3/mail/linux-thunderbird/Makefile branches/2016Q3/mail/linux-thunderbird/distinfo branches/2016Q3/mail/thunderbird-i18n/Makefile branches/2016Q3/mail/thunderbird-i18n/distinfo branches/2016Q3/mail/thunderbird/Makefile branches/2016Q3/mail/thunderbird/distinfo Directory Properties: branches/2016Q3/ (props changed) Modified: branches/2016Q3/Mk/bsd.gecko.mk ============================================================================== --- branches/2016Q3/Mk/bsd.gecko.mk Sat Jul 9 13:21:06 2016 (r418278) +++ branches/2016Q3/Mk/bsd.gecko.mk Sat Jul 9 13:38:48 2016 (r418279) @@ -89,7 +89,7 @@ USES+= cpe compiler:c++11-lang gmake ic python:2.7,build desktop-file-utils CPE_VENDOR?=mozilla USE_PERL5= build -USE_XORG= xext xrender xt +USE_XORG= x11 xcomposite xdamage xext xfixes xrender xt .if ${MOZILLA} != "libxul" BUNDLE_LIBS= yes @@ -126,7 +126,8 @@ MOZ_OPTIONS+= ${CONFIGURE_TARGET} --pref MOZ_MK_OPTIONS+=MOZ_OBJDIR="${MOZ_OBJDIR}" CPPFLAGS+= -isystem${LOCALBASE}/include -LDFLAGS+= -L${LOCALBASE}/lib -Wl,-rpath,${PREFIX}/lib/${MOZILLA} +LDFLAGS+= -L${LOCALBASE}/lib \ + -Wl,-rpath,${PREFIX}/lib/${MOZILLA} -Wl,--as-needed .if ${OPSYS} != DragonFly # XXX xpcshell crash during install # use jemalloc 3.0.0 (4.0 for firefox 43+) API for stats/tuning @@ -212,10 +213,10 @@ sqlite_MOZ_OPTIONS= --enable-system-sqli theora_LIB_DEPENDS= libtheora.so:multimedia/libtheora theora_MOZ_OPTIONS= --with-system-theora -tremor_LIB_DEPENDS= libvorbisidec.so:audio/libtremor +tremor_LIB_DEPENDS= libogg.so:audio/libogg libvorbisidec.so:audio/libtremor tremor_MOZ_OPTIONS= --with-system-tremor --with-system-ogg -vorbis_LIB_DEPENDS= libvorbis.so:audio/libvorbis +vorbis_LIB_DEPENDS= libogg.so:audio/libogg libvorbis.so:audio/libvorbis vorbis_MOZ_OPTIONS= --with-system-vorbis --with-system-ogg .endif @@ -227,6 +228,9 @@ vpx_MOZ_OPTIONS= --with-system-libvpx ${use:S/-/_WITHOUT_/}= ${TRUE} .endfor +LIB_DEPENDS+= libfontconfig.so:x11-fonts/fontconfig \ + libfreetype.so:print/freetype2 + .for dep in ${_ALL_DEPENDS} ${USE_MOZILLA:M+*:S/+//} .if !defined(_WITHOUT_${dep}) BUILD_DEPENDS+= ${${dep}_BUILD_DEPENDS} @@ -291,12 +295,12 @@ USE_QT5+= qmake_build buildtools_build g MOZ_EXPORT+= HOST_QMAKE="${QMAKE}" HOST_MOC="${MOC}" HOST_RCC="${RCC}" .elif ${MOZ_TOOLKIT:Mcairo-gtk3} BUILD_DEPENDS+= gtk3>=3.14.6:x11-toolkits/gtk30 -USE_GNOME+= gtk30 +USE_GNOME+= gdkpixbuf2 gtk30 . if ${MOZILLA_VER:R:R} >= 32 USE_GNOME+= gtk20 # bug 624422 . endif .else # gtk2, cairo-gtk2 -USE_GNOME+= gtk20 +USE_GNOME+= gdkpixbuf2 gtk20 .endif .if ${PORT_OPTIONS:MOPTIMIZED_CFLAGS} @@ -317,7 +321,8 @@ RUN_DEPENDS+= libcanberra>0:audio/libcan .if ${PORT_OPTIONS:MDBUS} BUILD_DEPENDS+= libnotify>0:devel/libnotify -LIB_DEPENDS+= libdbus-glib-1.so:devel/dbus-glib \ +LIB_DEPENDS+= libdbus-1.so:devel/dbus \ + libdbus-glib-1.so:devel/dbus-glib \ libstartup-notification-1.so:x11/startup-notification MOZ_OPTIONS+= --enable-startup-notification .else Modified: branches/2016Q3/mail/linux-thunderbird/Makefile ============================================================================== --- branches/2016Q3/mail/linux-thunderbird/Makefile Sat Jul 9 13:21:06 2016 (r418278) +++ branches/2016Q3/mail/linux-thunderbird/Makefile Sat Jul 9 13:38:48 2016 (r418279) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= thunderbird -DISTVERSION= 45.1.1 +DISTVERSION= 45.2.0 CATEGORIES= mail news net-im ipv6 MASTER_SITES= MOZILLA/${PORTNAME}/releases/${DISTVERSION}/linux-i686/en-US \ MOZILLA/${PORTNAME}/candidates/${DISTVERSION}-candidates/build1/linux-i686/en-US Modified: branches/2016Q3/mail/linux-thunderbird/distinfo ============================================================================== --- branches/2016Q3/mail/linux-thunderbird/distinfo Sat Jul 9 13:21:06 2016 (r418278) +++ branches/2016Q3/mail/linux-thunderbird/distinfo Sat Jul 9 13:38:48 2016 (r418279) @@ -1,5 +1,5 @@ -SHA256 (thunderbird-45.1.1.tar.bz2) = f40cfa03c6c557417b78536b3d636dbccdf945c732621bad985d9f027b7e08ff -SIZE (thunderbird-45.1.1.tar.bz2) = 44113727 +SHA256 (thunderbird-45.2.0.tar.bz2) = ab45e9a29901e6d9643e5605182662b7efa6cc54a73642a96745e74197e68c27 +SIZE (thunderbird-45.2.0.tar.bz2) = 44163764 SHA256 (glib2-2.22.2-2.fc12.i686.rpm) = e3b459c245ec14e7248e9de4b506963a4773407f3e58835db5070d0ed02ecc99 SIZE (glib2-2.22.2-2.fc12.i686.rpm) = 1162908 SHA256 (gtk2-2.18.3-19.fc12.i686.rpm) = aea9cf7ffe9c8dae0faa2bf3d2aa1b2117c55dce03da72dcce8c268279ec0a4b Modified: branches/2016Q3/mail/thunderbird-i18n/Makefile ============================================================================== --- branches/2016Q3/mail/thunderbird-i18n/Makefile Sat Jul 9 13:21:06 2016 (r418278) +++ branches/2016Q3/mail/thunderbird-i18n/Makefile Sat Jul 9 13:38:48 2016 (r418279) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= thunderbird-i18n -PORTVERSION= 45.1.1 +PORTVERSION= 45.2.0 CATEGORIES= mail news net-im MASTER_SITES= MOZILLA/${PORTNAME:S|-i18n||}/releases/${DISTVERSION}/linux-i686/xpi \ MOZILLA/${PORTNAME:S|-i18n||}/candidates/${DISTVERSION}-candidates/build1/linux-i686/xpi Modified: branches/2016Q3/mail/thunderbird-i18n/distinfo ============================================================================== --- branches/2016Q3/mail/thunderbird-i18n/distinfo Sat Jul 9 13:21:06 2016 (r418278) +++ branches/2016Q3/mail/thunderbird-i18n/distinfo Sat Jul 9 13:38:48 2016 (r418279) @@ -1,117 +1,117 @@ -TIMESTAMP = 1465151206 -SHA256 (xpi/thunderbird-i18n-45.1.1/ar.xpi) = c535c621cd989d46942058f14c90ec3d9c9236c45c4dde52af8be4614ddd7140 -SIZE (xpi/thunderbird-i18n-45.1.1/ar.xpi) = 490774 -SHA256 (xpi/thunderbird-i18n-45.1.1/ast.xpi) = 9e2f93f4851ce6fb7a180738823b8286f107e1380b1ec8f884fdc3758174c05b -SIZE (xpi/thunderbird-i18n-45.1.1/ast.xpi) = 428058 -SHA256 (xpi/thunderbird-i18n-45.1.1/be.xpi) = 25ca69a539f92f53eb0b7fff142989bf6dbaa7231e28d43ff9f5c12c46450d0a -SIZE (xpi/thunderbird-i18n-45.1.1/be.xpi) = 469096 -SHA256 (xpi/thunderbird-i18n-45.1.1/bg.xpi) = 13ed61e0d9d6dccd8fdecf432dc6deec87d554239676fe7c96767b58aa8dcc49 -SIZE (xpi/thunderbird-i18n-45.1.1/bg.xpi) = 524304 -SHA256 (xpi/thunderbird-i18n-45.1.1/bn-BD.xpi) = 65530a9adc3f442c9fa5032bd9e5e9d74f984397a227c34e36a07f888b69aa60 -SIZE (xpi/thunderbird-i18n-45.1.1/bn-BD.xpi) = 581439 -SHA256 (xpi/thunderbird-i18n-45.1.1/br.xpi) = 6b3c787ebc50c41eed5410f22402da6e7415c72dcc67c4a655e1931572a3e5a6 -SIZE (xpi/thunderbird-i18n-45.1.1/br.xpi) = 465999 -SHA256 (xpi/thunderbird-i18n-45.1.1/ca.xpi) = 059a4d68d8319b6b66e6946a6b4add2ffb8b13a689c1cace70a5bcff56b49731 -SIZE (xpi/thunderbird-i18n-45.1.1/ca.xpi) = 467979 -SHA256 (xpi/thunderbird-i18n-45.1.1/cs.xpi) = 76c4f7643a72b3a57ec123beba2aee25de553d71a700f3c739090ea580554b3d -SIZE (xpi/thunderbird-i18n-45.1.1/cs.xpi) = 474328 -SHA256 (xpi/thunderbird-i18n-45.1.1/cy.xpi) = 677eb544ddfd42a223d5f4858635ad00c6c2e2651f9820f737f8f0454cb5af5a -SIZE (xpi/thunderbird-i18n-45.1.1/cy.xpi) = 456120 -SHA256 (xpi/thunderbird-i18n-45.1.1/da.xpi) = 899e09b81ccbc88cc441e24c4a8d511ffd18d56fd247bd9164c15900b22e32be -SIZE (xpi/thunderbird-i18n-45.1.1/da.xpi) = 445594 -SHA256 (xpi/thunderbird-i18n-45.1.1/de.xpi) = 971d977956cf3e3a0ec9ff8d5f862abf4ea8829411c10c894750c232b35d5739 -SIZE (xpi/thunderbird-i18n-45.1.1/de.xpi) = 451955 -SHA256 (xpi/thunderbird-i18n-45.1.1/dsb.xpi) = 29b8599995c0b00fff4d86f4e60196838efff0010c757b08d6ef79515d0c577d -SIZE (xpi/thunderbird-i18n-45.1.1/dsb.xpi) = 481647 -SHA256 (xpi/thunderbird-i18n-45.1.1/el.xpi) = 5adb9671a58c732de677242f7bebefb8203bd00568f99a78ab3f1e09b80962f5 -SIZE (xpi/thunderbird-i18n-45.1.1/el.xpi) = 514358 -SHA256 (xpi/thunderbird-i18n-45.1.1/en-GB.xpi) = b0afd91d607111545d251b9b51894bb25276e3aef11624a35b6c67b6947ad1b6 -SIZE (xpi/thunderbird-i18n-45.1.1/en-GB.xpi) = 437602 -SHA256 (xpi/thunderbird-i18n-45.1.1/en-US.xpi) = 44f2ce58c56d39216ff6167bdeb39747eed2396bf6e1a28bf80c0beda391a0a7 -SIZE (xpi/thunderbird-i18n-45.1.1/en-US.xpi) = 435472 -SHA256 (xpi/thunderbird-i18n-45.1.1/es-AR.xpi) = 09e3d97c0dbd7ea39f5fca8fd372ecd43b5075a86ca3f5afaa80af6fb7fe6669 -SIZE (xpi/thunderbird-i18n-45.1.1/es-AR.xpi) = 464683 -SHA256 (xpi/thunderbird-i18n-45.1.1/es-ES.xpi) = 1a277653c49a1a5ad7f859dc70ac9959ab026b9f5dcbef28081a901b876a67ec -SIZE (xpi/thunderbird-i18n-45.1.1/es-ES.xpi) = 387999 -SHA256 (xpi/thunderbird-i18n-45.1.1/et.xpi) = bd3a19cf288f41d1b867ffa757bc5b2f8dfc300406958669981d61b74af4d3ef -SIZE (xpi/thunderbird-i18n-45.1.1/et.xpi) = 458418 -SHA256 (xpi/thunderbird-i18n-45.1.1/eu.xpi) = 85ddf6c308c847e3102e813feb87c3ca2b585401ab9e17ef523b43d0c866097a -SIZE (xpi/thunderbird-i18n-45.1.1/eu.xpi) = 456707 -SHA256 (xpi/thunderbird-i18n-45.1.1/fi.xpi) = bdef4f4923042b7ac90e4e908965a56f75813d92cc0c6b678e492e8a2369f21a -SIZE (xpi/thunderbird-i18n-45.1.1/fi.xpi) = 458335 -SHA256 (xpi/thunderbird-i18n-45.1.1/fr.xpi) = 9f0b1ccec04d4f5178e4ba76ddef4f130b9346e18e59b73f9183a717c11dd132 -SIZE (xpi/thunderbird-i18n-45.1.1/fr.xpi) = 475465 -SHA256 (xpi/thunderbird-i18n-45.1.1/fy-NL.xpi) = ccca231508908ae9125a00b737a45d71e40006ba8bf9b3ca168553f15eb3d367 -SIZE (xpi/thunderbird-i18n-45.1.1/fy-NL.xpi) = 464756 -SHA256 (xpi/thunderbird-i18n-45.1.1/ga-IE.xpi) = ccc8cd8d80aae1cfc58e63b8a9ee66bfb6247fa6d79859f5d3f6ed15333aaf45 -SIZE (xpi/thunderbird-i18n-45.1.1/ga-IE.xpi) = 480317 -SHA256 (xpi/thunderbird-i18n-45.1.1/gd.xpi) = f9b89e925ce69bccf7284872f47fd010d26efc5ad9aa97c7c454b2d54462eb17 -SIZE (xpi/thunderbird-i18n-45.1.1/gd.xpi) = 478296 -SHA256 (xpi/thunderbird-i18n-45.1.1/gl.xpi) = 8c896fa15d69ac8f829391b47051d596420fd2175058c6e0852d66af932d30c1 -SIZE (xpi/thunderbird-i18n-45.1.1/gl.xpi) = 478580 -SHA256 (xpi/thunderbird-i18n-45.1.1/he.xpi) = f8a78f0483a070fe619d9e0a918d736664edfdb56fdfa9db71c0a990c0c5b631 -SIZE (xpi/thunderbird-i18n-45.1.1/he.xpi) = 497962 -SHA256 (xpi/thunderbird-i18n-45.1.1/hr.xpi) = dcab60dcadc2cac63cd854868bd7c731af592b5da292a335a3a98393f1e6eb4b -SIZE (xpi/thunderbird-i18n-45.1.1/hr.xpi) = 463958 -SHA256 (xpi/thunderbird-i18n-45.1.1/hsb.xpi) = ecc2e8fc7a6068555465aa3f7d7db4fb468fc13197e331e78055659af062988b -SIZE (xpi/thunderbird-i18n-45.1.1/hsb.xpi) = 479414 -SHA256 (xpi/thunderbird-i18n-45.1.1/hu.xpi) = 69f71f459a486c4e8030025b3507fc2e3bacf77023b68d65a4ecf61a2994b7e9 -SIZE (xpi/thunderbird-i18n-45.1.1/hu.xpi) = 479584 -SHA256 (xpi/thunderbird-i18n-45.1.1/hy-AM.xpi) = 8215b28e46869204378b961eae14b3261247798573ef788d7e2befdb4efff419 -SIZE (xpi/thunderbird-i18n-45.1.1/hy-AM.xpi) = 518882 -SHA256 (xpi/thunderbird-i18n-45.1.1/id.xpi) = 5395263dd7af3767df9f930a202aadce4687373e7e152dd1843111fcf2bce52d -SIZE (xpi/thunderbird-i18n-45.1.1/id.xpi) = 499982 -SHA256 (xpi/thunderbird-i18n-45.1.1/is.xpi) = 92dd8e5c854c8572d267efb8392c182ecf3488203da4dd2f85c33db9a93b07e3 -SIZE (xpi/thunderbird-i18n-45.1.1/is.xpi) = 462190 -SHA256 (xpi/thunderbird-i18n-45.1.1/it.xpi) = 98ef0facbb0a51b620c9846bf84d159cd1f66a3443465ccf4e63a8662b83dc4b -SIZE (xpi/thunderbird-i18n-45.1.1/it.xpi) = 376888 -SHA256 (xpi/thunderbird-i18n-45.1.1/ja.xpi) = 4f3fb68bc679a263d09287fd33d7348392eeb1340046bf907edbed3df7aaf64f -SIZE (xpi/thunderbird-i18n-45.1.1/ja.xpi) = 519552 -SHA256 (xpi/thunderbird-i18n-45.1.1/ko.xpi) = 88a22ca155e94151e835dd86f7bf13db8b38309210339344eb1e17785b6f1143 -SIZE (xpi/thunderbird-i18n-45.1.1/ko.xpi) = 487417 -SHA256 (xpi/thunderbird-i18n-45.1.1/lt.xpi) = 21908a4d42b989c1949cfa5fe81a4a72f661c24b0e049489305e7ac0149d995a -SIZE (xpi/thunderbird-i18n-45.1.1/lt.xpi) = 477735 -SHA256 (xpi/thunderbird-i18n-45.1.1/nb-NO.xpi) = 191ec40d25a7714b34000075d18b20c215e2fdec4cf747b0dfc4e923a3ddc732 -SIZE (xpi/thunderbird-i18n-45.1.1/nb-NO.xpi) = 460011 -SHA256 (xpi/thunderbird-i18n-45.1.1/nl.xpi) = 5fb155e70095f2104c912e0773df1d0fc4a87515672b9a4b5f15377950e01bdd -SIZE (xpi/thunderbird-i18n-45.1.1/nl.xpi) = 456664 -SHA256 (xpi/thunderbird-i18n-45.1.1/nn-NO.xpi) = 9384271d6c39b69e31f74dcf96327a26469c915163b9e187a4b3996700ab75c4 -SIZE (xpi/thunderbird-i18n-45.1.1/nn-NO.xpi) = 460879 -SHA256 (xpi/thunderbird-i18n-45.1.1/pa-IN.xpi) = 2cf05a30f1a240e47ce6996f9f879d3046fabfc39a18ca5d42dc19fae35fb86f -SIZE (xpi/thunderbird-i18n-45.1.1/pa-IN.xpi) = 551068 -SHA256 (xpi/thunderbird-i18n-45.1.1/pl.xpi) = c06c0421f53003cb38d7a1b293944ecbc0bcc4b70349ed09dec3f01ef5e100cf -SIZE (xpi/thunderbird-i18n-45.1.1/pl.xpi) = 423867 -SHA256 (xpi/thunderbird-i18n-45.1.1/pt-BR.xpi) = 737136c3a556ff64dd162a5adf423856de8beacec2075b566c86538e6dc611be -SIZE (xpi/thunderbird-i18n-45.1.1/pt-BR.xpi) = 464682 -SHA256 (xpi/thunderbird-i18n-45.1.1/pt-PT.xpi) = f2aa87ab0f584f4c8e358ba4043f16a4021f6d5f236050fa27002b0663d78b60 -SIZE (xpi/thunderbird-i18n-45.1.1/pt-PT.xpi) = 463751 -SHA256 (xpi/thunderbird-i18n-45.1.1/rm.xpi) = cffdbb8f425afa026e667f1cbacff05cba999b452dd002f66cd9470e2be002fa -SIZE (xpi/thunderbird-i18n-45.1.1/rm.xpi) = 462650 -SHA256 (xpi/thunderbird-i18n-45.1.1/ro.xpi) = 8107706cfc2eb68b1663c62b6e02bce98a3bbb72688133502bc8b44b93251a94 -SIZE (xpi/thunderbird-i18n-45.1.1/ro.xpi) = 468518 -SHA256 (xpi/thunderbird-i18n-45.1.1/ru.xpi) = 90a897492fda811c989b6ac6720f7c7a36153d452b7c4299be1837305bb7421c -SIZE (xpi/thunderbird-i18n-45.1.1/ru.xpi) = 463892 -SHA256 (xpi/thunderbird-i18n-45.1.1/si.xpi) = 8a8308b82e663addc40bd0235afc4d2d480e3aa296c49b8083627d5eed822df2 -SIZE (xpi/thunderbird-i18n-45.1.1/si.xpi) = 555995 -SHA256 (xpi/thunderbird-i18n-45.1.1/sk.xpi) = 3e3b26829625652ec2a1c43580a0b7b0b94cc0603cb8c21758306ba2cb857c14 -SIZE (xpi/thunderbird-i18n-45.1.1/sk.xpi) = 481492 -SHA256 (xpi/thunderbird-i18n-45.1.1/sl.xpi) = b0a150bfae8660dcef15e0e5c90795b61a1c78c4f65f9c3054755ba949c8b2b9 -SIZE (xpi/thunderbird-i18n-45.1.1/sl.xpi) = 462780 -SHA256 (xpi/thunderbird-i18n-45.1.1/sq.xpi) = 51cc95ca790168f32697f7248c502e4e88a4229846e044892503cafa80a44750 -SIZE (xpi/thunderbird-i18n-45.1.1/sq.xpi) = 469535 -SHA256 (xpi/thunderbird-i18n-45.1.1/sr.xpi) = 5d1a3c814f31aadb8782f7e0c540f5b8fe84fe984b772b16fb592469feab02f6 -SIZE (xpi/thunderbird-i18n-45.1.1/sr.xpi) = 565465 -SHA256 (xpi/thunderbird-i18n-45.1.1/sv-SE.xpi) = 3e99ca9ad562f247b8d80fae10867bf5ed7605ded5e877a91592af9c6f28f128 -SIZE (xpi/thunderbird-i18n-45.1.1/sv-SE.xpi) = 465433 -SHA256 (xpi/thunderbird-i18n-45.1.1/ta-LK.xpi) = f82cc68c2a2f5a0869c78d96f12ead30f77ebb6a984a0058445d75d38c4f5376 -SIZE (xpi/thunderbird-i18n-45.1.1/ta-LK.xpi) = 579218 -SHA256 (xpi/thunderbird-i18n-45.1.1/tr.xpi) = 324a8a9fee18a407824387e5544d9de1d46d467143ee45100576b1499f034da5 -SIZE (xpi/thunderbird-i18n-45.1.1/tr.xpi) = 467622 -SHA256 (xpi/thunderbird-i18n-45.1.1/uk.xpi) = 0d5c01967f6a5a7c42051ce2fdf5f22ae25056e4e55ef1519c77a961694dae5c -SIZE (xpi/thunderbird-i18n-45.1.1/uk.xpi) = 536438 -SHA256 (xpi/thunderbird-i18n-45.1.1/vi.xpi) = 4219170416d1c3cf5bcb3e78fde7747e3bbbf44bb8dca3d9d826c93782a36ff2 -SIZE (xpi/thunderbird-i18n-45.1.1/vi.xpi) = 540497 -SHA256 (xpi/thunderbird-i18n-45.1.1/zh-CN.xpi) = b75726022d753a4fb55df7a47b83a36227b88382b2a91775252b7e909b34f979 -SIZE (xpi/thunderbird-i18n-45.1.1/zh-CN.xpi) = 489209 -SHA256 (xpi/thunderbird-i18n-45.1.1/zh-TW.xpi) = fcbb98c5bb083bcb036bca8651e3edb00a1efff9b5aebc69a5f02492ab09719a -SIZE (xpi/thunderbird-i18n-45.1.1/zh-TW.xpi) = 490850 +TIMESTAMP = 1467391621 +SHA256 (xpi/thunderbird-i18n-45.2.0/ar.xpi) = a978e30fff1f2da8f420f512a3956a7381fbafcc1fbb9692cdcdeb9277259739 +SIZE (xpi/thunderbird-i18n-45.2.0/ar.xpi) = 490775 +SHA256 (xpi/thunderbird-i18n-45.2.0/ast.xpi) = 396c5eda1408bd303d848be10f836603f325166097741857a6eff27d10dfa5d5 +SIZE (xpi/thunderbird-i18n-45.2.0/ast.xpi) = 428059 +SHA256 (xpi/thunderbird-i18n-45.2.0/be.xpi) = daf2f8099263ba47043284431abfffb9621be3f73fbc66be4d392e233cabb166 +SIZE (xpi/thunderbird-i18n-45.2.0/be.xpi) = 469096 +SHA256 (xpi/thunderbird-i18n-45.2.0/bg.xpi) = 118c047b82bbc37f249447d9f5a77d994b2d01e60347ad63241940e9944aaa3a +SIZE (xpi/thunderbird-i18n-45.2.0/bg.xpi) = 524299 +SHA256 (xpi/thunderbird-i18n-45.2.0/bn-BD.xpi) = ea259b4d5ebeab67d9791aab7f6da8f3d88bb97f679c805f4517a981816d08d7 +SIZE (xpi/thunderbird-i18n-45.2.0/bn-BD.xpi) = 581439 +SHA256 (xpi/thunderbird-i18n-45.2.0/br.xpi) = 899f9afb7fcd889dc4da068d3a35feb6d4a84928124505830e6d5cd4f66c1eef +SIZE (xpi/thunderbird-i18n-45.2.0/br.xpi) = 465999 +SHA256 (xpi/thunderbird-i18n-45.2.0/ca.xpi) = b066d9d80a17244f03b996158fa16b8fcf9049a1b922249d2bf09823ea3deaa4 +SIZE (xpi/thunderbird-i18n-45.2.0/ca.xpi) = 467980 +SHA256 (xpi/thunderbird-i18n-45.2.0/cs.xpi) = be80f75b6db1e345c79f61aebf918127754d8aad943219dc2631e5eb82a9ae4e +SIZE (xpi/thunderbird-i18n-45.2.0/cs.xpi) = 474327 +SHA256 (xpi/thunderbird-i18n-45.2.0/cy.xpi) = 0f5db3def36ae7e0fa829c3fad44e11c1363bda38ae779efdf38cd6ee563dbd6 +SIZE (xpi/thunderbird-i18n-45.2.0/cy.xpi) = 456120 +SHA256 (xpi/thunderbird-i18n-45.2.0/da.xpi) = 7a62a915897cf2ce2c0c45a2cc683f8df2770bad0aa818eef9e8bd2fcd031566 +SIZE (xpi/thunderbird-i18n-45.2.0/da.xpi) = 445594 +SHA256 (xpi/thunderbird-i18n-45.2.0/de.xpi) = 9e1ec973a715740a857c3aae15fe8bfcd01209d80d64d2cafc6ad086dd0ed2d2 +SIZE (xpi/thunderbird-i18n-45.2.0/de.xpi) = 451956 +SHA256 (xpi/thunderbird-i18n-45.2.0/dsb.xpi) = 2bf37620b68eb21911fecba483463bf6a3066c16a4db0fdd9496c9bf680c1f76 +SIZE (xpi/thunderbird-i18n-45.2.0/dsb.xpi) = 481644 +SHA256 (xpi/thunderbird-i18n-45.2.0/el.xpi) = 9ba451a5b06685f43387f56304745dfb5ccd0d946b5b7e2571fe7490328fa761 +SIZE (xpi/thunderbird-i18n-45.2.0/el.xpi) = 514358 +SHA256 (xpi/thunderbird-i18n-45.2.0/en-GB.xpi) = aa5c3e259439988ae44ff97ba743c044cd5ef731350b07fe90e430b4e9e7b326 +SIZE (xpi/thunderbird-i18n-45.2.0/en-GB.xpi) = 437603 +SHA256 (xpi/thunderbird-i18n-45.2.0/en-US.xpi) = 478da2fe644b6bc8c982c29cdec48183c38fc6898dabfe6afe5607effd843185 +SIZE (xpi/thunderbird-i18n-45.2.0/en-US.xpi) = 435474 +SHA256 (xpi/thunderbird-i18n-45.2.0/es-AR.xpi) = 53206d90dde7e7eb7e43b6eafe0c01c5b0f38bd36ba82987fe182846da676ce2 +SIZE (xpi/thunderbird-i18n-45.2.0/es-AR.xpi) = 464683 +SHA256 (xpi/thunderbird-i18n-45.2.0/es-ES.xpi) = b0d650684043e9ea4aa480b32303dcf457830611e6ec0d60471f71d6a74d206e +SIZE (xpi/thunderbird-i18n-45.2.0/es-ES.xpi) = 388000 +SHA256 (xpi/thunderbird-i18n-45.2.0/et.xpi) = 15b674575aa8aa5019ccdcb0c851ddc40c4e0359147efbf750f05e2fef9c93a3 +SIZE (xpi/thunderbird-i18n-45.2.0/et.xpi) = 458418 +SHA256 (xpi/thunderbird-i18n-45.2.0/eu.xpi) = cf1689340d3443fcdbf8bb2a81257f7c7acde63509d59fd516d78c0b9585da74 +SIZE (xpi/thunderbird-i18n-45.2.0/eu.xpi) = 456708 +SHA256 (xpi/thunderbird-i18n-45.2.0/fi.xpi) = 3ef09752756290132951a80261ba93d1160bffeeb30392f3e348ac7a843a6b6b +SIZE (xpi/thunderbird-i18n-45.2.0/fi.xpi) = 458335 +SHA256 (xpi/thunderbird-i18n-45.2.0/fr.xpi) = 8a0ed16318f1f15e52e31042f5af8c368afd2479d685e8be31b78f3f7d5ad232 +SIZE (xpi/thunderbird-i18n-45.2.0/fr.xpi) = 475466 +SHA256 (xpi/thunderbird-i18n-45.2.0/fy-NL.xpi) = d6dc477d2f567a966c5a5c96164265da5804e352f3a3df63c869953634385c7e +SIZE (xpi/thunderbird-i18n-45.2.0/fy-NL.xpi) = 464757 +SHA256 (xpi/thunderbird-i18n-45.2.0/ga-IE.xpi) = a3f80339ef6e980fd45dd0877357497ffba73b05e04e0911e1dd2ba5f626e65e +SIZE (xpi/thunderbird-i18n-45.2.0/ga-IE.xpi) = 480317 +SHA256 (xpi/thunderbird-i18n-45.2.0/gd.xpi) = c48487d6fca86519b3b773fb37044bef7387505c45c37b2f302eabce8201d1ed +SIZE (xpi/thunderbird-i18n-45.2.0/gd.xpi) = 478296 +SHA256 (xpi/thunderbird-i18n-45.2.0/gl.xpi) = 496153b62e38876d23d4f7b5da826be8d158ee7a7e5294025202c1944c0ad667 +SIZE (xpi/thunderbird-i18n-45.2.0/gl.xpi) = 478580 +SHA256 (xpi/thunderbird-i18n-45.2.0/he.xpi) = ca89bc13f9126abe02c9a72191ea59667aaa9c0ba90c0618c6b3f152687707a7 +SIZE (xpi/thunderbird-i18n-45.2.0/he.xpi) = 497962 +SHA256 (xpi/thunderbird-i18n-45.2.0/hr.xpi) = 013a5e1146f1126e839aff7cdba5b96bfc03a7faece0b60ce68a780ba32ef4f5 +SIZE (xpi/thunderbird-i18n-45.2.0/hr.xpi) = 463959 +SHA256 (xpi/thunderbird-i18n-45.2.0/hsb.xpi) = 99b232001e2bfa81a938d23fa6142660055aba5ad126b6e1e161389a948dcbd8 +SIZE (xpi/thunderbird-i18n-45.2.0/hsb.xpi) = 479414 +SHA256 (xpi/thunderbird-i18n-45.2.0/hu.xpi) = 607362dd26f7d530589dc02ca78441eaeafe6a78ae356967d8f87c23087d3c84 +SIZE (xpi/thunderbird-i18n-45.2.0/hu.xpi) = 479583 +SHA256 (xpi/thunderbird-i18n-45.2.0/hy-AM.xpi) = c57aff249ba9a5974c0a25f99eff35c9d6b9e6e01596059068003416681477ad +SIZE (xpi/thunderbird-i18n-45.2.0/hy-AM.xpi) = 518883 +SHA256 (xpi/thunderbird-i18n-45.2.0/id.xpi) = 785c4ba30e8b3d41b4b7989febcf03fa6f89c5d6024e12df6860e52ef5fd1de2 +SIZE (xpi/thunderbird-i18n-45.2.0/id.xpi) = 499982 +SHA256 (xpi/thunderbird-i18n-45.2.0/is.xpi) = 427f2f3b8676d925fa0ff5b59515da6f67b222bcc7c0e9039063283425433e83 +SIZE (xpi/thunderbird-i18n-45.2.0/is.xpi) = 462190 +SHA256 (xpi/thunderbird-i18n-45.2.0/it.xpi) = c8cde3092ea42720f9824fe9fb0fefe2a354ebab846b430ce14a020d2d1f2ce0 +SIZE (xpi/thunderbird-i18n-45.2.0/it.xpi) = 376889 +SHA256 (xpi/thunderbird-i18n-45.2.0/ja.xpi) = 0a2927586939524e1b3ebb5d63cbba6c4124c0fcf7de034e184e6509522bcee4 +SIZE (xpi/thunderbird-i18n-45.2.0/ja.xpi) = 519552 +SHA256 (xpi/thunderbird-i18n-45.2.0/ko.xpi) = 20c3e0bcae68cee6c00b788763ccf17dc9bf4d69667fd8ad635f13035aa85699 +SIZE (xpi/thunderbird-i18n-45.2.0/ko.xpi) = 487418 +SHA256 (xpi/thunderbird-i18n-45.2.0/lt.xpi) = f8f6a6ea5d6719acd9fefaef9286083a9322b87e9926298896972716956a4c85 +SIZE (xpi/thunderbird-i18n-45.2.0/lt.xpi) = 477735 +SHA256 (xpi/thunderbird-i18n-45.2.0/nb-NO.xpi) = 3360d3d7f0c3a04e595a9de3cff3fbfffed3889bd09b1d3eae7e663d12fa0c35 +SIZE (xpi/thunderbird-i18n-45.2.0/nb-NO.xpi) = 460011 +SHA256 (xpi/thunderbird-i18n-45.2.0/nl.xpi) = 1c8e9ebb0b08ad58588dce9043dca6c5fe22420836e8d810863cd35e78e0c677 +SIZE (xpi/thunderbird-i18n-45.2.0/nl.xpi) = 456664 +SHA256 (xpi/thunderbird-i18n-45.2.0/nn-NO.xpi) = 5a6e2c6d762241d986e7e9e07487b8b228951c7ae5343fa90a95333b18b352dc +SIZE (xpi/thunderbird-i18n-45.2.0/nn-NO.xpi) = 460880 +SHA256 (xpi/thunderbird-i18n-45.2.0/pa-IN.xpi) = cc2083bd72177ea77ce84e82477a70a07d69442260a8c2d9b922385ce0eb475d +SIZE (xpi/thunderbird-i18n-45.2.0/pa-IN.xpi) = 551067 +SHA256 (xpi/thunderbird-i18n-45.2.0/pl.xpi) = e93ed1f99303670926ee40da34987204382806cfa5a738bc7964084b0f40ccb0 +SIZE (xpi/thunderbird-i18n-45.2.0/pl.xpi) = 423867 +SHA256 (xpi/thunderbird-i18n-45.2.0/pt-BR.xpi) = d8115c3268771c3b1465bc230d13aa5da97f598c3e292a6234f7509732bef448 +SIZE (xpi/thunderbird-i18n-45.2.0/pt-BR.xpi) = 464682 +SHA256 (xpi/thunderbird-i18n-45.2.0/pt-PT.xpi) = 9bdaf161f7dcbacaddb3c00f6a44bfed5e30d61f738343e413613507fb1a7575 +SIZE (xpi/thunderbird-i18n-45.2.0/pt-PT.xpi) = 463751 +SHA256 (xpi/thunderbird-i18n-45.2.0/rm.xpi) = 34d759713de25905ef526d9f0e615339d0c79c42a1f7bcddd5cb87c59f32cc09 +SIZE (xpi/thunderbird-i18n-45.2.0/rm.xpi) = 462650 +SHA256 (xpi/thunderbird-i18n-45.2.0/ro.xpi) = da26f4d97f0df751f032e14f057504d4bd6d640e1d0b0add9eaf15243d7debea +SIZE (xpi/thunderbird-i18n-45.2.0/ro.xpi) = 468518 +SHA256 (xpi/thunderbird-i18n-45.2.0/ru.xpi) = 5a20ab55ad711289126c40c322cf520f93c91e490db3bddced1784d1504403d9 +SIZE (xpi/thunderbird-i18n-45.2.0/ru.xpi) = 463891 +SHA256 (xpi/thunderbird-i18n-45.2.0/si.xpi) = 56bb13177f104227caf0a2b11e96b997e466f0d1e3d932e4858d79b86aeb92ab +SIZE (xpi/thunderbird-i18n-45.2.0/si.xpi) = 555994 +SHA256 (xpi/thunderbird-i18n-45.2.0/sk.xpi) = f43fe29427604817ff0fe912232a513b04560f1ff4438a3dea3ac82d0943379a +SIZE (xpi/thunderbird-i18n-45.2.0/sk.xpi) = 481492 +SHA256 (xpi/thunderbird-i18n-45.2.0/sl.xpi) = 5275f45f8e621681d65ce85c0582ac49056af43130eee5a47f81210096875a9b +SIZE (xpi/thunderbird-i18n-45.2.0/sl.xpi) = 462781 +SHA256 (xpi/thunderbird-i18n-45.2.0/sq.xpi) = c3c71505de44e585323fa927afeb8c93f5c90cfdee744f5e44768a3eafa8d872 +SIZE (xpi/thunderbird-i18n-45.2.0/sq.xpi) = 469535 +SHA256 (xpi/thunderbird-i18n-45.2.0/sr.xpi) = 0675a05d99555f8ea8e9d77b351d5f8a9c694362d8a421663ad9cb4c7257dcdd +SIZE (xpi/thunderbird-i18n-45.2.0/sr.xpi) = 565464 +SHA256 (xpi/thunderbird-i18n-45.2.0/sv-SE.xpi) = cbd64d87bb674279e5e241542359138399f77608e7f23f1a73f7e08d2e000bd1 +SIZE (xpi/thunderbird-i18n-45.2.0/sv-SE.xpi) = 465434 +SHA256 (xpi/thunderbird-i18n-45.2.0/ta-LK.xpi) = 3365a20f6a97745f6550b1be5710fd1fdac8d6277ab63ebf5c16909e397e140b +SIZE (xpi/thunderbird-i18n-45.2.0/ta-LK.xpi) = 579218 +SHA256 (xpi/thunderbird-i18n-45.2.0/tr.xpi) = ab2bbf3016773dfa422604e89562c41d30df8beff34b5b9c9602ed00aad6774c +SIZE (xpi/thunderbird-i18n-45.2.0/tr.xpi) = 467621 +SHA256 (xpi/thunderbird-i18n-45.2.0/uk.xpi) = 29701e0f882973ca8f4a6028608b27be3350883e55040cdc46355dbce4c2dd01 +SIZE (xpi/thunderbird-i18n-45.2.0/uk.xpi) = 536438 +SHA256 (xpi/thunderbird-i18n-45.2.0/vi.xpi) = 760db86b7c8f851ba3416b50f0a5a44655629f9c4f9c1ef4282fc3c1c9e71778 +SIZE (xpi/thunderbird-i18n-45.2.0/vi.xpi) = 540497 +SHA256 (xpi/thunderbird-i18n-45.2.0/zh-CN.xpi) = 0a876c51d52eefc894102dcc1d9c867d33122672e76e0393941f3af13fcaf1bd +SIZE (xpi/thunderbird-i18n-45.2.0/zh-CN.xpi) = 489209 +SHA256 (xpi/thunderbird-i18n-45.2.0/zh-TW.xpi) = 14aa68a367c79a9f87788c304966d3a60e99a77a2c42db9ce05d5755cc67b93e +SIZE (xpi/thunderbird-i18n-45.2.0/zh-TW.xpi) = 490850 Modified: branches/2016Q3/mail/thunderbird/Makefile ============================================================================== --- branches/2016Q3/mail/thunderbird/Makefile Sat Jul 9 13:21:06 2016 (r418278) +++ branches/2016Q3/mail/thunderbird/Makefile Sat Jul 9 13:38:48 2016 (r418279) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= thunderbird -DISTVERSION= 45.1.1 +DISTVERSION= 45.2.0 CATEGORIES= mail news net-im ipv6 MASTER_SITES= MOZILLA/${PORTNAME}/releases/${DISTVERSION}/source \ MOZILLA/${PORTNAME}/candidates/${DISTVERSION}-candidates/build1/source @@ -32,7 +32,7 @@ BUILD_DEPENDS= nspr>=4.12:devel/nspr \ LIB_DEPENDS= libv4l2.so:multimedia/libv4l EM_VERSION= 1.9.3 -L_VERSION= 4.7.1.1 +L_VERSION= 4.7.2 SSP_UNSAFE= yes USE_GECKO= gecko Modified: branches/2016Q3/mail/thunderbird/distinfo ============================================================================== --- branches/2016Q3/mail/thunderbird/distinfo Sat Jul 9 13:21:06 2016 (r418278) +++ branches/2016Q3/mail/thunderbird/distinfo Sat Jul 9 13:38:48 2016 (r418279) @@ -1,5 +1,5 @@ -TIMESTAMP = 1465154624 -SHA256 (thunderbird-45.1.1.source.tar.xz) = 107d103c30b4f666ede1ec197156f94456117783087518fe1af4557d548b718e -SIZE (thunderbird-45.1.1.source.tar.xz) = 201012896 +TIMESTAMP = 1467307995 +SHA256 (thunderbird-45.2.0.source.tar.xz) = bd2389cbb28138668ab41b26f1dce49c455807e09b43fd370ee765ae3f0937c0 +SIZE (thunderbird-45.2.0.source.tar.xz) = 201023884 SHA256 (enigmail-1.9.3.tar.gz) = 1dee90ff4ad51d361335686ab4ed722d34d2502b36b609680e2aabe3bb50729a SIZE (enigmail-1.9.3.tar.gz) = 1741831 From owner-svn-ports-all@freebsd.org Sat Jul 9 13:42:55 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 630C7B82D0E; Sat, 9 Jul 2016 13:42: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 mx1.freebsd.org (Postfix) with ESMTPS id 1BB551752; Sat, 9 Jul 2016 13:42: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 u69DgsbN040187; Sat, 9 Jul 2016 13:42:54 GMT (envelope-from pi@FreeBSD.org) Received: (from pi@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u69DgsTb040185; Sat, 9 Jul 2016 13:42:54 GMT (envelope-from pi@FreeBSD.org) Message-Id: <201607091342.u69DgsTb040185@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pi set sender to pi@FreeBSD.org using -f From: Kurt Jaeger Date: Sat, 9 Jul 2016 13:42:54 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418280 - in head/www: node node4 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 09 Jul 2016 13:42:55 -0000 Author: pi Date: Sat Jul 9 13:42:53 2016 New Revision: 418280 URL: https://svnweb.freebsd.org/changeset/ports/418280 Log: www/node[4]: Fix OpenSSL dependencies after USES=ssl changes PR: 210891 Submitted by: Bradley T. Hughes (maintainer) Modified: head/www/node/Makefile head/www/node4/Makefile Modified: head/www/node/Makefile ============================================================================== --- head/www/node/Makefile Sat Jul 9 13:38:48 2016 (r418279) +++ head/www/node/Makefile Sat Jul 9 13:42:53 2016 (r418280) @@ -3,7 +3,7 @@ PORTNAME= node PORTVERSION= 6.2.2 DISTVERSIONPREFIX= v -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= www MASTER_SITES= http://nodejs.org/dist/v${PORTVERSION}/ @@ -16,8 +16,9 @@ LICENSE_FILE= ${WRKSRC}/LICENSE OPTIONS_DEFINE= BUNDLED_SSL DOCS NLS OPTIONS_SUB= yes -BUNDLED_SSL_DESC= Use node.js's bundled OpenSSL implementation -BUNDLED_SSL_USE_OFF= OPENSSL=yes +BUNDLED_SSL_DESC= Use node.js's bundled OpenSSL implementation +BUNDLED_SSL_USES_OFF= ssl:openssl +BUNDLED_SSL_CONFIGURE_OFF+= --shared-openssl NLS_CONFIGURE_ON= --with-intl=system-icu NLS_LIB_DEPENDS= libicui18n.so:devel/icu @@ -51,8 +52,6 @@ LIB_DEPENDS+= libcares.so:dns/c-ares\ WITH_OPENSSL_PORT= yes .endif -CONFIGURE_ARGS+= --shared-openssl - .endif .include Modified: head/www/node4/Makefile ============================================================================== --- head/www/node4/Makefile Sat Jul 9 13:38:48 2016 (r418279) +++ head/www/node4/Makefile Sat Jul 9 13:42:53 2016 (r418280) @@ -4,7 +4,7 @@ PORTNAME= node PORTVERSION= 4.4.7 DISTVERSIONPREFIX= v -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= www MASTER_SITES= http://nodejs.org/dist/v${PORTVERSION}/ PKGNAMESUFFIX= 4 @@ -18,8 +18,9 @@ LICENSE_FILE= ${WRKSRC}/LICENSE OPTIONS_DEFINE= BUNDLED_SSL DOCS NLS OPTIONS_SUB= yes -BUNDLED_SSL_DESC= Use node.js's bundled OpenSSL implementation -BUNDLED_SSL_USE_OFF= OPENSSL=yes +BUNDLED_SSL_DESC= Use node.js's bundled OpenSSL implementation +BUNDLED_SSL_USES_OFF= ssl:openssl +BUNDLED_SSL_CONFIGURE_OFF= --shared-openssl NLS_CONFIGURE_ON= --with-intl=system-icu NLS_LIB_DEPENDS= libicui18n.so:devel/icu @@ -50,8 +51,6 @@ LIB_DEPENDS+= libuv.so:devel/libuv WITH_OPENSSL_PORT=yes .endif -CONFIGURE_ARGS+= --shared-openssl - .endif .include From owner-svn-ports-all@freebsd.org Sat Jul 9 13:58:29 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id BA278B83136; Sat, 9 Jul 2016 13:58:29 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 7B9421C9A; Sat, 9 Jul 2016 13:58: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 u69DwSo7044056; Sat, 9 Jul 2016 13:58:28 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u69DwSPe044055; Sat, 9 Jul 2016 13:58:28 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201607091358.u69DwSPe044055@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Sat, 9 Jul 2016 13:58:28 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418281 - head/devel/git-cinnabar X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 09 Jul 2016 13:58:29 -0000 Author: jbeich Date: Sat Jul 9 13:58:28 2016 New Revision: 418281 URL: https://svnweb.freebsd.org/changeset/ports/418281 Log: devel/git-cinnabar: unbreak build-as-user poudriere's BUILD_AS_NON_ROOT actually builds dependencies as root and only the port in question as non-root. So, don't assume another's port WRKSRC is writable. =================================================== ===> Configuring for git-cinnabar-0.4.0.b1 mv: rename /wrkdirs/usr/ports/devel/git/work/git-2.9.0 to /wrkdirs/usr/ports/devel/git-cinnabar/work/git-cinnabar-0.4.0b1/git-core: Permission denied *** Error code 1 Reported by: pkg-fallout Modified: head/devel/git-cinnabar/Makefile (contents, props changed) Modified: head/devel/git-cinnabar/Makefile ============================================================================== --- head/devel/git-cinnabar/Makefile Sat Jul 9 13:42:53 2016 (r418280) +++ head/devel/git-cinnabar/Makefile Sat Jul 9 13:58:28 2016 (r418281) @@ -29,9 +29,8 @@ PORTDATA= * PORTDOCS= README.md post-configure: - @${RMDIR} ${WRKSRC}/git-core - @${MV} $$(${MAKE} -V WRKSRC -C ${PORTSDIR}/devel/git) \ - ${WRKSRC}/git-core + @${TAR} cf - -C$$(${MAKE} -V WRKSRC -C ${PORTSDIR}/devel/git) . | \ + ${TAR} xof - -C${WRKSRC}/git-core do-install: ${MKDIR} ${STAGEDIR}${DATADIR} From owner-svn-ports-all@freebsd.org Sat Jul 9 14:05:25 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 62E94B83380; Sat, 9 Jul 2016 14:05: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 mx1.freebsd.org (Postfix) with ESMTPS id 40BA911F9; Sat, 9 Jul 2016 14:05:25 +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 u69E5O33047883; Sat, 9 Jul 2016 14:05:24 GMT (envelope-from pi@FreeBSD.org) Received: (from pi@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u69E5OP7047881; Sat, 9 Jul 2016 14:05:24 GMT (envelope-from pi@FreeBSD.org) Message-Id: <201607091405.u69E5OP7047881@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pi set sender to pi@FreeBSD.org using -f From: Kurt Jaeger Date: Sat, 9 Jul 2016 14:05:24 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418282 - head/www/node X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 09 Jul 2016 14:05:25 -0000 Author: pi Date: Sat Jul 9 14:05:24 2016 New Revision: 418282 URL: https://svnweb.freebsd.org/changeset/ports/418282 Log: www/node: 6.2.2 -> 6.3.0 - buffer: Added buffer.swap64() to complement swap16() & swap32(). - build: New configure options have been added for building Node.js as a shared library. o The options are: --shared, --without-v8-platform & --without-bundled-v8. - crypto: Root certificates have been updated. - debugger: The server address is now configurable via --debug=
:. - npm: Upgraded npm to v3.10.3 - readline: Added the prompt option to the readline constructor. - repl / vm: sigint/ctrl+c will now break out of infinite loops without stopping the Node.js instance. - src: o Added a node::FreeEnvironment public C++ API. o Refactored require('constants'), constants are now available directly from their respective modules. (James M Snell) #6534 - stream: Improved readable.read() performance by up to 70%. - timers: setImmediate() is now up to 150% faster in some situations. - util: Added a breakLength option to util.inspect() to control how objects are formatted across lines. - v8-inspector: Experimental support has been added for debugging Node.js over the inspector protocol. o Note: This feature is experimental, and it could be altered or removed. o You can try this feature by running Node.js with the --inspect flag. PR: 210893 Changes: https://nodejs.org/en/blog/release/v6.3.0/ Submitted by: Bradley T. Hughes (maintainer) Modified: head/www/node/Makefile head/www/node/distinfo Modified: head/www/node/Makefile ============================================================================== --- head/www/node/Makefile Sat Jul 9 13:58:28 2016 (r418281) +++ head/www/node/Makefile Sat Jul 9 14:05:24 2016 (r418282) @@ -1,9 +1,8 @@ # $FreeBSD$ PORTNAME= node -PORTVERSION= 6.2.2 +PORTVERSION= 6.3.0 DISTVERSIONPREFIX= v -PORTREVISION= 4 CATEGORIES= www MASTER_SITES= http://nodejs.org/dist/v${PORTVERSION}/ @@ -83,16 +82,14 @@ USE_GCC= yes post-patch: @${REINPLACE_CMD} -e 's|/usr/local|${LOCALBASE}|' \ ${WRKSRC}/deps/v8/tools/gyp/v8.gyp + # So many different ways to run python. Fix them all. @${REINPLACE_CMD} -e 's|/usr/bin/env python|${PYTHON_CMD}|' \ ${WRKSRC}/configure - @${REINPLACE_CMD} -e "s|python -c|${PYTHON_CMD} -c|" \ - ${WRKSRC}/deps/v8/build/toolchain.gypi - @${REINPLACE_CMD} -e "s|'python',|'${PYTHON_CMD}',|" \ - ${WRKSRC}/tools/icu/icu-generic.gyp \ - ${WRKSRC}/deps/v8/build/shim_headers.gypi \ - ${WRKSRC}/deps/v8/tools/gyp/v8.gyp \ - ${WRKSRC}/deps/v8/src/d8.gyp \ - ${WRKSRC}/node.gyp + @${FIND} ${WRKSRC} -type f -name '*.gyp*' -print0 \ + | ${XARGS} -0 ${REINPLACE_CMD} \ + -e "s|'python'|'${PYTHON_CMD}'|" \ + -e 's| Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 56B01B84605; Sat, 9 Jul 2016 15:31:20 +0000 (UTC) (envelope-from pawel@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 2E80713DE; Sat, 9 Jul 2016 15:31:20 +0000 (UTC) (envelope-from pawel@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u69FVJdI077926; Sat, 9 Jul 2016 15:31:19 GMT (envelope-from pawel@FreeBSD.org) Received: (from pawel@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u69FVIdr077920; Sat, 9 Jul 2016 15:31:18 GMT (envelope-from pawel@FreeBSD.org) Message-Id: <201607091531.u69FVIdr077920@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pawel set sender to pawel@FreeBSD.org using -f From: Pawel Pekala Date: Sat, 9 Jul 2016 15:31:18 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418283 - in head/devel/upnp: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 09 Jul 2016 15:31:20 -0000 Author: pawel Date: Sat Jul 9 15:31:18 2016 New Revision: 418283 URL: https://svnweb.freebsd.org/changeset/ports/418283 Log: - Update to version 1.6.20 - Regenerate patches with make makepatch - Sort pkg-plist Modified: head/devel/upnp/Makefile head/devel/upnp/distinfo head/devel/upnp/files/patch-libupnp.pc.in head/devel/upnp/files/patch-threadutil__inc__ithread.h head/devel/upnp/files/patch-upnp-src-inc-uuid.h head/devel/upnp/pkg-plist Modified: head/devel/upnp/Makefile ============================================================================== --- head/devel/upnp/Makefile Sat Jul 9 14:05:24 2016 (r418282) +++ head/devel/upnp/Makefile Sat Jul 9 15:31:18 2016 (r418283) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= upnp -PORTVERSION= 1.6.19 -PORTREVISION= 2 +PORTVERSION= 1.6.20 PORTEPOCH= 1 CATEGORIES= devel MASTER_SITES= SF/p${PORTNAME}/p${PORTNAME}/libUPnP%20${PORTVERSION} Modified: head/devel/upnp/distinfo ============================================================================== --- head/devel/upnp/distinfo Sat Jul 9 14:05:24 2016 (r418282) +++ head/devel/upnp/distinfo Sat Jul 9 15:31:18 2016 (r418283) @@ -1,2 +1,3 @@ -SHA256 (libupnp-1.6.19.tar.bz2) = b3142b39601243b50532eec90f4a27dba85eb86f58d4b849ac94edeb29d9b22a -SIZE (libupnp-1.6.19.tar.bz2) = 1213439 +TIMESTAMP = 1467990222 +SHA256 (libupnp-1.6.20.tar.bz2) = ee3537081e3ea56f66ada10387486823989210bc98002f098305551c966e3a63 +SIZE (libupnp-1.6.20.tar.bz2) = 1243637 Modified: head/devel/upnp/files/patch-libupnp.pc.in ============================================================================== --- head/devel/upnp/files/patch-libupnp.pc.in Sat Jul 9 14:05:24 2016 (r418282) +++ head/devel/upnp/files/patch-libupnp.pc.in Sat Jul 9 15:31:18 2016 (r418283) @@ -1,11 +1,11 @@ ---- libupnp.pc.in.orig 2010-10-09 13:09:32.000000000 +0200 -+++ libupnp.pc.in 2010-10-09 13:12:31.000000000 +0200 -@@ -6,6 +6,6 @@ +--- libupnp.pc.in.orig 2010-10-19 17:31:19 UTC ++++ libupnp.pc.in +@@ -6,6 +6,6 @@ includedir=@includedir@ Name: libupnp Description: Linux SDK for UPnP Devices Version: @VERSION@ -Libs: @PTHREAD_CFLAGS@ @PTHREAD_LIBS@ -L${libdir} -lupnp -lthreadutil -lixml -+Libs: -pthread -L${libdir} -lupnp -lthreadutil -lixml @LIBS@ -Cflags: @PTHREAD_CFLAGS@ -I${includedir}/upnp ++Libs: -pthread -L${libdir} -lupnp -lthreadutil -lixml @LIBS@ +Cflags: -I${includedir}/upnp Modified: head/devel/upnp/files/patch-threadutil__inc__ithread.h ============================================================================== --- head/devel/upnp/files/patch-threadutil__inc__ithread.h Sat Jul 9 14:05:24 2016 (r418282) +++ head/devel/upnp/files/patch-threadutil__inc__ithread.h Sat Jul 9 15:31:18 2016 (r418283) @@ -1,6 +1,6 @@ ---- threadutil/inc/ithread.h.orig +--- threadutil/inc/ithread.h.orig 2013-11-14 17:14:44 UTC +++ threadutil/inc/ithread.h -@@ -50,12 +50,9 @@ +@@ -50,12 +50,9 @@ extern "C" { #include Modified: head/devel/upnp/files/patch-upnp-src-inc-uuid.h ============================================================================== --- head/devel/upnp/files/patch-upnp-src-inc-uuid.h Sat Jul 9 14:05:24 2016 (r418282) +++ head/devel/upnp/files/patch-upnp-src-inc-uuid.h Sat Jul 9 15:31:18 2016 (r418283) @@ -1,5 +1,5 @@ ---- upnp/src/inc/uuid.h.orig 2012-02-23 18:48:42.000000000 +0100 -+++ upnp/src/inc/uuid.h 2012-09-04 20:09:52.000000000 +0200 +--- upnp/src/inc/uuid.h.orig 2016-01-07 23:32:52 UTC ++++ upnp/src/inc/uuid.h @@ -22,6 +22,14 @@ #include "sysdep.h" Modified: head/devel/upnp/pkg-plist ============================================================================== --- head/devel/upnp/pkg-plist Sat Jul 9 14:05:24 2016 (r418282) +++ head/devel/upnp/pkg-plist Sat Jul 9 15:31:18 2016 (r418283) @@ -1,19 +1,19 @@ -include/upnp/ixml.h -include/upnp/ixmldebug.h include/upnp/FreeList.h include/upnp/LinkedList.h include/upnp/ThreadPool.h include/upnp/TimerThread.h -include/upnp/ithread.h -include/upnp/upnpconfig.h include/upnp/UpnpGlobal.h include/upnp/UpnpInet.h include/upnp/UpnpIntTypes.h include/upnp/UpnpStdInt.h +include/upnp/UpnpString.h include/upnp/UpnpUniStd.h +include/upnp/ithread.h +include/upnp/ixml.h +include/upnp/ixmldebug.h include/upnp/upnp.h +include/upnp/upnpconfig.h include/upnp/upnpdebug.h -include/upnp/UpnpString.h include/upnp/upnptools.h lib/libixml.a lib/libixml.so @@ -26,5 +26,5 @@ lib/libthreadutil.so.6.0.4 lib/libupnp.a lib/libupnp.so lib/libupnp.so.6 -lib/libupnp.so.6.3.3 +lib/libupnp.so.6.3.4 libdata/pkgconfig/libupnp.pc From owner-svn-ports-all@freebsd.org Sat Jul 9 15:47:27 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 44878B84AC5; Sat, 9 Jul 2016 15:47:27 +0000 (UTC) (envelope-from adamw@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id EBB0B1973; Sat, 9 Jul 2016 15:47:26 +0000 (UTC) (envelope-from adamw@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u69FlQPj084627; Sat, 9 Jul 2016 15:47:26 GMT (envelope-from adamw@FreeBSD.org) Received: (from adamw@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u69FlP9P084625; Sat, 9 Jul 2016 15:47:25 GMT (envelope-from adamw@FreeBSD.org) Message-Id: <201607091547.u69FlP9P084625@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: adamw set sender to adamw@FreeBSD.org using -f From: Adam Weinberger Date: Sat, 9 Jul 2016 15:47:25 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418284 - head/mail/dovecot2 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 09 Jul 2016 15:47:27 -0000 Author: adamw Date: Sat Jul 9 15:47:25 2016 New Revision: 418284 URL: https://svnweb.freebsd.org/changeset/ports/418284 Log: Fix packaging with SSL disabled. No PORTREVISION bump. While here, left-indent a comment so that 9.x doesn't log it to the console, and only set USES=ssl if SSL is enabled. Submitted by: Christian Bernard Modified: head/mail/dovecot2/Makefile head/mail/dovecot2/pkg-plist Modified: head/mail/dovecot2/Makefile ============================================================================== --- head/mail/dovecot2/Makefile Sat Jul 9 15:31:18 2016 (r418283) +++ head/mail/dovecot2/Makefile Sat Jul 9 15:47:25 2016 (r418284) @@ -27,7 +27,7 @@ LICENSE_COMB= dual CONFLICTS= dovecot-1.[0-9]* -USES= cpe iconv libtool ssl +USES= cpe iconv libtool USE_RC_SUBR= dovecot GNU_CONFIGURE= yes @@ -112,6 +112,7 @@ SOLR_LIB_DEPENDS= libexpat.so:textproc/e SQLITE_USES= sqlite:3 SQLITE_CONFIGURE_WITH= sqlite +SSL_USES= ssl SSL_CONFIGURE_WITH= ssl=openssl TEXTCAT_CONFIGURE_WITH= textcat @@ -152,7 +153,7 @@ post-patch: ${WRKSRC}/doc/example-config/*.conf ${WRKSRC}/doc/example-config/conf.d/* @${REINPLACE_CMD} -e '/^LIBS =/s/$$/ @LTLIBICONV@/' \ ${WRKSRC}/src/lib-mail/Makefile.in - # Install the sample config files into ETCDIR/example-config/ +# Install the sample config files into ETCDIR/example-config/ @${REINPLACE_CMD} -e '/^exampledir =/s|\$$(docdir)|${ETCDIR}|' \ ${WRKSRC}/doc/example-config/Makefile.in \ ${WRKSRC}/doc/example-config/conf.d/Makefile.in Modified: head/mail/dovecot2/pkg-plist ============================================================================== --- head/mail/dovecot2/pkg-plist Sat Jul 9 15:31:18 2016 (r418283) +++ head/mail/dovecot2/pkg-plist Sat Jul 9 15:47:25 2016 (r418284) @@ -620,7 +620,7 @@ lib/dovecot/lib95_imap_stats_plugin.a lib/dovecot/lib95_imap_stats_plugin.so lib/dovecot/lib99_welcome_plugin.a lib/dovecot/lib99_welcome_plugin.so -lib/dovecot/libdcrypt_openssl.so +%%SSL%%lib/dovecot/libdcrypt_openssl.so lib/dovecot/libdovecot-compression.a lib/dovecot/libdovecot-compression.so lib/dovecot/libdovecot-compression.so.0 From owner-svn-ports-all@freebsd.org Sat Jul 9 16:10:09 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 7ADBAB852D5; Sat, 9 Jul 2016 16:10:09 +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 mx1.freebsd.org (Postfix) with ESMTPS id 52B2812D7; Sat, 9 Jul 2016 16:10:09 +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 u69GA8Ao092186; Sat, 9 Jul 2016 16:10:08 GMT (envelope-from novel@FreeBSD.org) Received: (from novel@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u69GA8kt092183; Sat, 9 Jul 2016 16:10:08 GMT (envelope-from novel@FreeBSD.org) Message-Id: <201607091610.u69GA8kt092183@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: novel set sender to novel@FreeBSD.org using -f From: Roman Bogorodskiy Date: Sat, 9 Jul 2016 16:10:08 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418285 - in head/sysutils: . uefi-edk2-bhyve uefi-edk2-bhyve-csm X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 09 Jul 2016 16:10:09 -0000 Author: novel Date: Sat Jul 9 16:10:08 2016 New Revision: 418285 URL: https://svnweb.freebsd.org/changeset/ports/418285 Log: sysutils/uefi-edk2-bhyve: add slave port with CSM - add slave port for uefi-edk2-bhyve with CSM enabled. The CSM option was removed from the main port, and now the port uses different firmware name based on CSM setting, so master and slave ports can be installed simultaneously. - rename destination path: s/uefi-firmwares/uefi-firmware because "firmware" is plural already - Use USE_GCC instead of direct dependency Submitted by: maintainer Differential Revision: D7157 Added: head/sysutils/uefi-edk2-bhyve-csm/ head/sysutils/uefi-edk2-bhyve-csm/Makefile (contents, props changed) Modified: head/sysutils/Makefile head/sysutils/uefi-edk2-bhyve/Makefile Modified: head/sysutils/Makefile ============================================================================== --- head/sysutils/Makefile Sat Jul 9 15:47:25 2016 (r418284) +++ head/sysutils/Makefile Sat Jul 9 16:10:08 2016 (r418285) @@ -1107,6 +1107,7 @@ SUBDIR += ucspi-unix SUBDIR += udfclient SUBDIR += uefi-edk2-bhyve + SUBDIR += uefi-edk2-bhyve-csm SUBDIR += ufs_copy SUBDIR += uhidd SUBDIR += uif2iso Added: head/sysutils/uefi-edk2-bhyve-csm/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/uefi-edk2-bhyve-csm/Makefile Sat Jul 9 16:10:08 2016 (r418285) @@ -0,0 +1,11 @@ +# $FreeBSD$ + +PKGNAMESUFFIX= -csm + +COMMENT= UEFI-EDK2 firmware for bhyve with CSM + +MASTERDIR= ${.CURDIR}/../uefi-edk2-bhyve + +WITH_CSM= yes + +.include "${MASTERDIR}/Makefile" Modified: head/sysutils/uefi-edk2-bhyve/Makefile ============================================================================== --- head/sysutils/uefi-edk2-bhyve/Makefile Sat Jul 9 15:47:25 2016 (r418284) +++ head/sysutils/uefi-edk2-bhyve/Makefile Sat Jul 9 16:10:08 2016 (r418285) @@ -2,35 +2,33 @@ PORTNAME= uefi-edk2-bhyve PORTVERSION= 20160704 +PORTREVISION= 1 CATEGORIES= sysutils MAINTAINER= fabian.freyer@physik.tu-berlin.de -COMMENT= UEFI-EDK2 firmware for bhyve +COMMENT?= UEFI-EDK2 firmware for bhyve LICENSE= BSD2CLAUSE BUILD_DEPENDS= bash:shells/bash \ - gcc48:lang/gcc48 \ nasm:devel/nasm \ ${PYTHON_LIBDIR}/lib-dynload/_sqlite3.so:databases/py-sqlite3 USES= gmake \ python:build +USE_GCC= 4.8 USE_GITHUB= yes GH_ACCOUNT= freebsd GH_PROJECT= uefi-edk2 GH_TAGNAME= a36132939e259df79b16699c03c6f1d63c7454b9 -PLIST_FILES= ${PREFIX}/share/uefi-firmwares/BHYVE_UEFI.fd +PLIST_FILES= ${PREFIX}/share/uefi-firmware/BHYVE_UEFI${PLIST_SUFFIX}.fd ONLY_FOR_ARCHS= amd64 -OPTIONS_DEFINE= CSM DEBUG -OPTIONS_DEFAULT=CSM -CSM_DESC= Build with Compatibility Support Module (Legacy Boot) -CSM_VARS= build_args+=-DCSM_ENABLE=TRUE +OPTIONS_DEFINE= DEBUG -DEBUG_VARS= uefi_target=DEBUG +DEBUG_VARS= uefi_target=DEBUG DEBUG_VARS_OFF= uefi_target=RELEASE MAKE_ARGS+= AS=${LOCALBASE}/bin/as \ @@ -44,6 +42,11 @@ BUILD_ARGS=-DDEBUG_ON_SERIAL_PORT=TRUE - .include +.if defined(WITH_CSM) +PLIST_SUFFIX= _CSM +BUILD_ARGS+= -DCSM_ENABLE=TRUE +.endif + post-extract: @${REINPLACE_CMD} -e 's|python|${PYTHON_CMD}|' ${WRKSRC}/BaseTools/Tests/GNUmakefile \ ${WRKSRC}/BaseTools/BinWrappers/PosixLike/* @@ -57,7 +60,7 @@ do-build: ${LN} -sf ${LOCALBASE}/bin/ar ${BUILD_WRKSRC}/Build/ar ${LN} -sf ${LOCALBASE}/bin/objcopy ${BUILD_WRKSRC}/Build/objcopy ${LN} -sf ${LOCALBASE}/bin/nasm ${BUILD_WRKSRC}/Build/nasm -.if ${PORT_OPTIONS:MCSM} +.if defined(WITH_CSM) bash -c " \ cd ${BUILD_WRKSRC}; \ source edksetup.sh;\ @@ -73,8 +76,8 @@ do-build: " do-install: - ${MKDIR} ${STAGEDIR}${PREFIX}/share/uefi-firmwares/ + ${MKDIR} ${STAGEDIR}${PREFIX}/share/uefi-firmware/ ${INSTALL} ${BUILD_WRKSRC}/Build/BhyveX64/${UEFI_TARGET}_GCC48/FV/BHYVE.fd \ - ${STAGEDIR}${PREFIX}/share/uefi-firmwares/BHYVE_UEFI.fd + ${STAGEDIR}${PREFIX}/share/uefi-firmware/BHYVE_UEFI${PLIST_SUFFIX}.fd .include From owner-svn-ports-all@freebsd.org Sat Jul 9 17:11:53 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id C389EB833E5; Sat, 9 Jul 2016 17:11:53 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 748171CAA; Sat, 9 Jul 2016 17:11: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 u69HBqZj017601; Sat, 9 Jul 2016 17:11:52 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u69HBqnx017595; Sat, 9 Jul 2016 17:11:52 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201607091711.u69HBqnx017595@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Sat, 9 Jul 2016 17:11:52 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418286 - in head/math: . py-pysparse py-pysparse/files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 09 Jul 2016 17:11:53 -0000 Author: jbeich Date: Sat Jul 9 17:11:52 2016 New Revision: 418286 URL: https://svnweb.freebsd.org/changeset/ports/418286 Log: math/py-pysparse: add new port PR: 210595 Submitted by: yuri@rawbw.com PySparse extends the Python interpreter by a set of sparse matrix types holding double precision values. PySparse also includes modules that implement: - iterative methods for solving linear systems of equations - a set of standard preconditioners - an interface to a direct solver for sparse linear systems of equations (SuperLU) - a Jacobi-Davidson eigenvalue solver for the symmetric, generalised matrix eigenvalue problem (JDSYM) https://github.com/PythonOptimizers/pysparse Added: head/math/py-pysparse/ head/math/py-pysparse/Makefile (contents, props changed) head/math/py-pysparse/distinfo (contents, props changed) head/math/py-pysparse/files/ head/math/py-pysparse/files/patch-setup.py (contents, props changed) head/math/py-pysparse/pkg-descr (contents, props changed) Modified: head/math/Makefile (contents, props changed) Modified: head/math/Makefile ============================================================================== --- head/math/Makefile Sat Jul 9 16:10:08 2016 (r418285) +++ head/math/Makefile Sat Jul 9 17:11:52 2016 (r418286) @@ -620,6 +620,7 @@ SUBDIR += py-pyfst SUBDIR += py-pyhull SUBDIR += py-pymc + SUBDIR += py-pysparse SUBDIR += py-pyvtk SUBDIR += py-roman SUBDIR += py-scientific Added: head/math/py-pysparse/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/py-pysparse/Makefile Sat Jul 9 17:11:52 2016 (r418286) @@ -0,0 +1,32 @@ +# Created by: Yuri Victorovich +# $FreeBSD$ + +PORTNAME= pysparse +PORTVERSION= 1.3 +CATEGORIES= math python +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} +DISTNAME= ${PORTNAME}-${PORTVERSION}-dev + +MAINTAINER= yuri@rawbw.com +COMMENT= Fast sparse matrix library for Python + +LICENSE= BSD3CLAUSE +LICENSE_FILE= ${WRKSRC}/LICENSE + +BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}numpy>=1.2:math/py-numpy +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}numpy>=1.2:math/py-numpy +LIB_DEPENDS= liblapack.so:math/lapack \ + libblas.so:math/blas \ + libopenblas.so:math/openblas \ + libcblas.so:math/cblas + +USE_GITHUB= yes +GH_ACCOUNT= PythonOptimizers +GH_TAGNAME= f8430bd + +LDFLAGS+= -shared # Workaround for an obscure bug in py-numpy, see https://github.com/numpy/numpy/issues/7779 + +USES= fortran python # fortran is needed for the correct build flags passed to py-numpy extension build process +USE_PYTHON= distutils autoplist + +.include Added: head/math/py-pysparse/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/py-pysparse/distinfo Sat Jul 9 17:11:52 2016 (r418286) @@ -0,0 +1,3 @@ +TIMESTAMP = 1466932869 +SHA256 (pysparse-1.3-dev_GH0.tar.gz) = 4c4ad1e02a97ea257365331f677205c76e572d22eafbe818f39c4eb462987848 +SIZE (pysparse-1.3-dev_GH0.tar.gz) = 1301990 Added: head/math/py-pysparse/files/patch-setup.py ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/py-pysparse/files/patch-setup.py Sat Jul 9 17:11:52 2016 (r418286) @@ -0,0 +1,19 @@ +--- setup.py.orig 2016-06-10 21:29:48 UTC ++++ setup.py +@@ -109,7 +109,7 @@ def get_version(): + version = '1.3' + release = False + if not release: +- version += '-dev' + svn_version() ++ version += '-dev' + return version + + def write_version_py(filename=os.path.join('pysparse', 'version.py')): +@@ -142,7 +142,6 @@ def setup_package(): + author_email = "{hamsel,d-orban,wd15}@sf.net,", + maintainer = "PySparse Developers", + maintainer_email = "{hamsel,d-orban,wd15}@sf.net,", +- summary = "Fast sparse matrix library for Python", + description = "Fast sparse matrix library for Python", + long_description = "\n".join(DOCLINES[2:]), + url = "pysparse.sf.net", Added: head/math/py-pysparse/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/py-pysparse/pkg-descr Sat Jul 9 17:11:52 2016 (r418286) @@ -0,0 +1,12 @@ +PySparse extends the Python interpreter by a set of sparse matrix +types holding double precision values. PySparse also includes modules +that implement: + +- iterative methods for solving linear systems of equations +- a set of standard preconditioners +- an interface to a direct solver for sparse linear systems of + equations (SuperLU) +- a Jacobi-Davidson eigenvalue solver for the symmetric, generalised + matrix eigenvalue problem (JDSYM) + +WWW: https://github.com/PythonOptimizers/pysparse From owner-svn-ports-all@freebsd.org Sat Jul 9 18:43:42 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 0DB1CB849F1; Sat, 9 Jul 2016 18:43:42 +0000 (UTC) (envelope-from pi@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id CED0714EA; Sat, 9 Jul 2016 18:43:41 +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 u69IhetN050617; Sat, 9 Jul 2016 18:43:40 GMT (envelope-from pi@FreeBSD.org) Received: (from pi@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u69IhegC050615; Sat, 9 Jul 2016 18:43:40 GMT (envelope-from pi@FreeBSD.org) Message-Id: <201607091843.u69IhegC050615@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pi set sender to pi@FreeBSD.org using -f From: Kurt Jaeger Date: Sat, 9 Jul 2016 18:43:40 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418287 - in head/devel/gradle: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 09 Jul 2016 18:43:42 -0000 Author: pi Date: Sat Jul 9 18:43:40 2016 New Revision: 418287 URL: https://svnweb.freebsd.org/changeset/ports/418287 Log: devel/gradle: Add missing dependency Gradle uses native-platform which has compiled its native component with g++, and requires that libstdc++.so.6 is available. See https://github.com/adammurdoch/native-platform/issues/8. PR: 208471 MFH: 2016Q3 Submitted by: Tobias Kortkamp Approved by: gasol.wu@gmail.com (maintainer timeout) Modified: head/devel/gradle/Makefile head/devel/gradle/files/gradle.in Modified: head/devel/gradle/Makefile ============================================================================== --- head/devel/gradle/Makefile Sat Jul 9 17:11:52 2016 (r418286) +++ head/devel/gradle/Makefile Sat Jul 9 18:43:40 2016 (r418287) @@ -3,6 +3,7 @@ PORTNAME= gradle PORTVERSION= 2.12 +PORTREVISION= 1 CATEGORIES= devel java MASTER_SITES= https://services.gradle.org/distributions/ DISTNAME= ${PORTNAME}-${PORTVERSION}-bin @@ -12,6 +13,11 @@ COMMENT= Project automation tool LICENSE= APACHE20 +# Gradle depends on native-platform which has a native component that +# requires libstdc++.so.6, because it was compiled with g++. +# See https://github.com/adammurdoch/native-platform/issues/8 +LIB_DEPENDS= libstdc++.so.6:misc/compat9x + USES= zip USE_JAVA= yes NO_BUILD= yes Modified: head/devel/gradle/files/gradle.in ============================================================================== --- head/devel/gradle/files/gradle.in Sat Jul 9 17:11:52 2016 (r418286) +++ head/devel/gradle/files/gradle.in Sat Jul 9 18:43:40 2016 (r418287) @@ -1,2 +1,2 @@ -#!/usr/bin/env bash +#!/bin/sh exec "%%JAVA%%" -Dorg.gradle.native=false $JAVA_OPTS -classpath "%%DATADIR%%/lib/gradle-launcher-%%PORTVERSION%%.jar" org.gradle.launcher.GradleMain "$@" From owner-svn-ports-all@freebsd.org Sat Jul 9 18:59:21 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 178C5B84D07; Sat, 9 Jul 2016 18:59: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 mx1.freebsd.org (Postfix) with ESMTPS id DCC7C1BED; Sat, 9 Jul 2016 18:59: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 u69IxKZv054489; Sat, 9 Jul 2016 18:59:20 GMT (envelope-from pi@FreeBSD.org) Received: (from pi@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u69IxK7g054488; Sat, 9 Jul 2016 18:59:20 GMT (envelope-from pi@FreeBSD.org) Message-Id: <201607091859.u69IxK7g054488@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pi set sender to pi@FreeBSD.org using -f From: Kurt Jaeger Date: Sat, 9 Jul 2016 18:59:20 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418288 - head/audio/portaudio X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 09 Jul 2016 18:59:21 -0000 Author: pi Date: Sat Jul 9 18:59:19 2016 New Revision: 418288 URL: https://svnweb.freebsd.org/changeset/ports/418288 Log: audio/portaudio: fix test program installation - Before the patch the libtool wrapper scripts were installed instead of real test programs PR: 210455 Submitted by: Tobias Kortkamp Approved by: koalative@gmail.com (maintainer timeout) Modified: head/audio/portaudio/Makefile Modified: head/audio/portaudio/Makefile ============================================================================== --- head/audio/portaudio/Makefile Sat Jul 9 18:43:40 2016 (r418287) +++ head/audio/portaudio/Makefile Sat Jul 9 18:59:19 2016 (r418288) @@ -3,7 +3,7 @@ PORTNAME= portaudio DISTVERSION= 19_20140130 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= audio MASTER_SITES= http://www.portaudio.com/archives/ DISTNAME= pa_stable_v${DISTVERSION} @@ -60,7 +60,8 @@ post-install: post-install-PATEST-on: .for f in ${PATEST_BIN} - ${INSTALL_SCRIPT} ${WRKSRC}/bin/${f} ${STAGEDIR}${PREFIX}/bin/ + ${STRIP_CMD} ${WRKSRC}/bin/.libs/${f} + ${INSTALL_PROGRAM} ${WRKSRC}/bin/.libs/${f} ${STAGEDIR}${PREFIX}/bin/ .endfor post-install-DOCS-on: From owner-svn-ports-all@freebsd.org Sat Jul 9 19:28:22 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id E7471B85854; Sat, 9 Jul 2016 19:28:22 +0000 (UTC) (envelope-from riggs@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id B68341AEE; Sat, 9 Jul 2016 19:28:22 +0000 (UTC) (envelope-from riggs@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u69JSMGB065580; Sat, 9 Jul 2016 19:28:22 GMT (envelope-from riggs@FreeBSD.org) Received: (from riggs@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u69JSLvf065578; Sat, 9 Jul 2016 19:28:21 GMT (envelope-from riggs@FreeBSD.org) Message-Id: <201607091928.u69JSLvf065578@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: riggs set sender to riggs@FreeBSD.org using -f From: Thomas Zander Date: Sat, 9 Jul 2016 19:28:21 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418289 - head/math/R X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 09 Jul 2016 19:28:23 -0000 Author: riggs Date: Sat Jul 9 19:28:21 2016 New Revision: 418289 URL: https://svnweb.freebsd.org/changeset/ports/418289 Log: Modernize and simplify port PR: 210866 Submitted by: jrm@ftfl.ca (maintainer) Reviewed by: rhurlin@gwdg.de, bapt, riggs Modified: head/math/R/Makefile head/math/R/pkg-plist Modified: head/math/R/Makefile ============================================================================== --- head/math/R/Makefile Sat Jul 9 18:59:19 2016 (r418288) +++ head/math/R/Makefile Sat Jul 9 19:28:21 2016 (r418289) @@ -1,403 +1,235 @@ # Created by: Maurice Castro # $FreeBSD$ -PORTNAME?= R -PORTVERSION= 3.3.1 -PORTREVISION= 2 -CATEGORIES= math lang -MASTER_SITES= http://cran.r-project.org/%SUBDIR%/ \ - ftp://cran.r-project.org/pub/R/%SUBDIR%/ \ - http://cran.at.r-project.org/%SUBDIR%/ \ - http://cran.au.r-project.org/%SUBDIR%/ \ - http://cran.br.r-project.org/%SUBDIR%/ \ - http://cran.ch.r-project.org/%SUBDIR%/ \ - http://cran.es.r-project.org/%SUBDIR%/ \ - http://cran.dk.r-project.org/%SUBDIR%/ \ - http://cran.uk.r-project.org/%SUBDIR%/ \ - http://cran.us.r-project.org/%SUBDIR%/ \ - ftp://ftp.u-aizu.ac.jp/pub/lang/R/CRAN/%SUBDIR%/ \ - http://lib.stat.cmu.edu/R/CRAN/%SUBDIR%/ \ - http://cran.stat.ucla.edu/%SUBDIR%/ \ - http://probability.ca/cran/%SUBDIR%/ +PORTNAME= R +PORTVERSION= 3.3.1 +PORTREVISION= 2 +CATEGORIES= math lang +MASTER_SITES= http://cran.r-project.org/%SUBDIR%/ \ + ftp://cran.r-project.org/pub/R/%SUBDIR%/ \ + http://cran.at.r-project.org/%SUBDIR%/ \ + http://cran.au.r-project.org/%SUBDIR%/ \ + http://cran.br.r-project.org/%SUBDIR%/ \ + http://cran.ch.r-project.org/%SUBDIR%/ \ + http://cran.es.r-project.org/%SUBDIR%/ \ + http://cran.dk.r-project.org/%SUBDIR%/ \ + http://cran.uk.r-project.org/%SUBDIR%/ \ + http://cran.us.r-project.org/%SUBDIR%/ \ + ftp://ftp.u-aizu.ac.jp/pub/lang/R/CRAN/%SUBDIR%/ \ + http://lib.stat.cmu.edu/R/CRAN/%SUBDIR%/ \ + http://cran.stat.ucla.edu/%SUBDIR%/ \ + http://probability.ca/cran/%SUBDIR%/ MASTER_SITE_SUBDIR= src/base/R-${PORTVERSION:C|\..*||} -MAINTAINER= jrm@ftfl.ca -COMMENT?= Language for statistical computing and graphics +MAINTAINER= jrm@ftfl.ca +COMMENT= Language for statistical computing and graphics -LICENSE= GPLv2 +LICENSE= GPLv2 -BUILD_DEPENDS= ${LOCALBASE}/bin/gsed:textproc/gsed \ - texi2dvi:print/texinfo LIB_DEPENDS= libcurl.so:ftp/curl \ libpcre.so:devel/pcre +BUILD_DEPENDS= texi2dvi:print/texinfo -CONFIGURE_ENV= LIBR_LDFLAGS="${LDFLAGS}" OBJC="${CC}" \ - SED="${LOCALBASE}/bin/gsed" \ - ac_cv_have_decl_powl=yes ac_cv_have_decl_log1pl=yes - -OPTIONS_DEFINE= MISSING DOCS LTO OPENMP LONGDOUBLE - -MISSING_DESC= use libmissing rather than libquadmath -LTO_DESC= Try to produce faster code through LTO -LONGDOUBLE_DESC= Enable use of long double data type -LTO_CONFIGURE_ENABLE= lto -OPENMP_CONFIGURE_ENABLE= openmp -LONGDOUBLE_CONFIGURE_ENABLE= long-double - -OPTIONS_SINGLE= BLAS -OPTIONS_SINGLE_BLAS= RBLAS ATLAS OPENBLAS NETLIB -OPTIONS_DEFAULT= OPENBLAS - -RBLAS_DESC= Use internal blas implementation - -OPENBLAS_USES= blaslapack:openblas -NETLIB_USES= blaslapack:netlib -ATLAS_USES= blaslapack:atlas -RBLAS_CONFIGURE_ON= --without-blas --without-lapack -RBLAS_CONFIGURE_OFF= --with-blas="-L${LOCALBASE}/lib ${BLASLIB}" \ - --with-lapack="${LAPACKLIB}" +GNU_CONFIGURE= yes +USES= fortran iconv objc:compiler +USE_LDCONFIG= ${PREFIX}/lib/R/lib -OPTIONS_SUB= RBLAS +CONFIGURE_ARGS= --disable-java --enable-memory-profiling \ + rdocdir=${DOCSDIR} -.if defined(LIBRMATH_SLAVEPORT) -BUILD_WRKSRC= ${WRKSRC}/src/nmath/standalone -CONFIGURE_ARGS= --disable-nls --with-ICU=no --with-cairo=no \ - --with-jpeglib=no --with-libpng=no --with-libtiff=no \ - --with-readline=no --with-tcltk=no --with-x=no \ - --without-libintl-prefix -CONFIGURE_ENV+= ac_cv_header_iconv_h=no -PLIST_SUB= RMATH_SOVERSION="${RMATH_SOVERSION}" -USE_LDCONFIG= yes -.else # LIBRMATH_SLAVEPORT -ALL_TARGET= all INSTALL_TARGET= install-strip -CONFIGURE_ARGS= --enable-memory-profiling rdocdir=${DOCSDIR} \ - --with-system-bzlib --with-system-zlib -CONFIGURE_ENV+= FCFLAGS="${FFLAGS}" \ - R_LD_LIBRARY_PATH="${R_LD_LIBRARY_PATH}" TAR="${TAR}" -OPTIONS_DEFINE+= ICU THREADS +OPTIONS_DEFINE= DOCS ICU INFO LETTER LIBR LDOUBLE LTO MISSING NLS \ + OPENMP THREADS X11 -ICU_DESC= Use ICU for collation in multibyte locales +OPTIONS_GROUP= NEEDX11 +OPTIONS_GROUP_NEEDX11= GHOSTSCRIPT JPEG CAIROPANGO PDF PNG TCLTK TIFF -OPTIONS_DEFAULT+= ICU THREADS +OPTIONS_SINGLE= BLAS +OPTIONS_SINGLE_BLAS= ATLAS OPENBLAS NETLIB RBLAS -.if !defined(LIBR_SLAVEPORT) -RUN_DEPENDS+= ${LOCALBASE}/bin/gsed:textproc/gsed -USE_LDCONFIG= ${PREFIX}/lib/R/lib -#now only used to build the R.1 manpage: -USES+= perl5 -USE_PERL5= build - -OPTIONS_DEFINE+= GHOSTSCRIPT INFO_MANUALS JPEG LETTER_PAPER LIBR \ - PANGOCAIRO PDF_MANUALS PNG TCLTK TIFF X11 - -GHOSTSCRIPT_DESC= [dev2]bitmap() graphics devices -INFO_MANUALS_DESC= GNU info manuals -JPEG_DESC= jpeg() graphics device -LETTER_PAPER_DESC= US Letter paper -LIBR_DESC= R shared library and a dynamically-linked R -PANGOCAIRO_DESC= cairo and pango graphics support -PDF_MANUALS_DESC= PDF manuals (requires TeX) -PNG_DESC= png() graphics device -TCLTK_DESC= tcltk package -X11_DESC= X11() graphics device +OPTIONS_SUB= YES -OPTIONS_DEFAULT+= GHOSTSCRIPT INFO_MANUALS JPEG LTO LIBR OPENMP \ - PANGOCAIRO PNG TCLTK TIFF X11 +ATLAS_DESC= ATLAS BLAS implementation +GHOSTSCRIPT_DESC= Graphics Device for Bitmap Files via Ghostscript +CAIROPANGO_DESC= Cairo graphics device and Pango multi-language text +INFO_DESC= GNU info manuals +JPEG_DESC= JPEG graphics device +LDOUBLE_DESC= Enable long double data type +LETTER_DESC= US Letter paper +LIBR_DESC= Build dynamic (shared) R library +LTO_DESC= Try to produce faster code through LTO +MISSING_DESC= Use libmissing rather than libquadmath +NEEDX11_DESC= X11-Implying Options +NETLIB_DESC= Netlib BLAS implementation +OPENBLAS_DESC= OpenBLAS BLAS implementation +PDF_DESC= PDF manuals (requires TeX) +PNG_DESC= PNG graphics device +RBLAS_DESC= Use R-bundled BLAS implementation +X11_DESC= X11 graphics device + +OPTIONS_DEFAULT= GHOSTSCRIPT ICU INFO JPEG LTO LIBR OPENBLAS OPENMP \ + CAIROPANGO PNG TCLTK TIFF THREADS X11 OPTIONS_DEFAULT_armv6+= MISSING OPTIONS_DEFAULT_powerpc+= MISSING OPTIONS_DEFAULT_powerpc64+= MISSING OPTIONS_DEFAULT_sparc64+= MISSING -.endif # !LIBR_SLAVEPORT -PLIST_SUB= R_SOVERSION="${R_SOVERSION}" \ - RBLAS_SOVERSION="${RBLAS_SOVERSION}" \ - RLAPACK_SOVERSION="${RLAPACK_SOVERSION}" -R_LD_LIBRARY_PATH= ${_GCC_RUNTIME}:${LOCALBASE}/lib -USES+= iconv -.endif # LIBRMATH_SLAVEPORT -GNU_CONFIGURE= yes -MAKE_JOBS_UNSAFE= yes -R_SOVERSION= 1 -RBLAS_SOVERSION= 2 -RLAPACK_SOVERSION= 4 -RMATH_SOVERSION= 0 -USES+= fortran +ATLAS_USES= blaslapack:atlas -.include "compiler.mk" -.include +DOC_BUILD_DEPENDS= texi2any:print/texinfo -.if ${ARCH} == "sparc64" || ${ARCH} == "powerpc64" -PICFLAG?= -fPIC -.else -PICFLAG?= -fpic -.endif -.for flag in LD CXXLD -CONFIGURE_ENV += SHLIB_${flag}FLAGS="${PICFLAG}" -.endfor +GHOSTSCRIPT_IMPLIES= X11 +GHOSTSCRIPT_USES= ghostscript -.if ${OSVERSION} > 1000052 && \ -(${ARCH} == amd64 || ${ARCH} == i386 || ${ARCH} == ia64 || ${ARCH} == pc98 || ${ARCH} == sparc64) -.for _f in coshl erfcl erfl lgammal powl sinhl tanhl tgammal -CFLAGS+= -fno-builtin-${_f} -LDFLAGS+= -fno-builtin-${_f} -.endfor -.endif +ICU_CONFIGURE_WITH= ICU +ICU_LIB_DEPENDS= libicui18n.so:devel/icu -.if ${PORT_OPTIONS:MMISSING} -.for _f in acos asin atan cos cosh exp log pow sin sinh tan tanh -CONFIGURE_ENV+= ac_cv_have_decl_c${_f}=yes -.endfor -LIB_DEPENDS+= libmissing.so:math/libmissing -LIBM= -L${LOCALBASE}/lib -lmissing -lm -LIBMH= "missing_math.h" -.if defined(LIBRMATH_SLAVEPORT) -CPPFLAGS+= -I${LOCALBASE}/include -.endif -.else -LIBM= -lquadmath -lm -LIBMH= -.endif +INFO_IMPLIES= DOCS +INFO_INSTALL_TARGET= install-info +INFO_INFO= R-FAQ R-admin R-data R-exts R-ints R-intro R-lang -.if !defined(LIBRMATH_SLAVEPORT) +JPEG_IMPLIES= X11 +JPEG_CONFIGURE_WITH= jpeglib -.if ${PORT_OPTIONS:MICU} -LIB_DEPENDS+= libicui18n.so:devel/icu -CONFIGURE_ARGS+= --with-ICU -.else -CONFIGURE_ARGS+= --without-ICU -.endif +LETTER_CONFIGURE_ENV= R_PAPERSIZE=letter -.if ${PORT_OPTIONS:MNLS} -USES+= gettext -PLIST_SUB+= NLS="" -.else -CONFIGURE_ARGS+= --disable-nls -PLIST_SUB+= NLS="@comment " -.endif +LIBR_CONFIGURE_ENABLE= R-shlib -.if ${PORT_OPTIONS:MTHREADS} -CONFIGURE_ARGS+= --enable-threads=posix -.else -CONFIGURE_ARGS+= --disable-threads -.endif +LDOUBLE_CONFIGURE_ENABLE=long-double -.if defined(LIBR_SLAVEPORT) +LTO_CONFIGURE_ENABLE= lto -CONFIGURE_ARGS+= --disable-BLAS-shlib --without-pic --without-x -USES+= readline +.for i in acos asin atan cos cosh exp log pow sin sinh tan tanh +MISSING_CONFIGURE_ENV+= ac_cv_have_decl_c${i}=yes +.endfor +MISSING_LIB_DEPENDS= libmissing.so:math/libmissing +MISSING_VARS= LIBM="-L${LOCALBASE}/lib -lmissing -lm" \ + LIBMH= +MISSING_VARS_OFF= LIBM='-lquadmath -lm' \ + LIBMH= -.else # LIBR_SLAVEPORT +NETLIB_USES= blaslapack:netlib -.if ${PORT_OPTIONS:MGHOSTSCRIPT} -USES+= ghostscript -.endif +NLS_CONFIGURE_OFF= --disable-nls +NLS_USES= gettext -.if ${PORT_OPTIONS:MJPEG} -USES+= jpeg -CONFIGURE_ARGS+= --with-jpeglib -.else -CONFIGURE_ARGS+= --without-jpeglib -.endif +OPENBLAS_USES= blaslapack:openblas -.if ${PORT_OPTIONS:MLETTER_PAPER} -CONFIGURE_ENV += R_PAPERSIZE=letter -.endif +OPENMP_CONFIGURE_ENABLE=openmp -.if ${PORT_OPTIONS:MLIBR} -CONFIGURE_ARGS+= --enable-R-shlib -PLIST_SUB+= LIBR="" -.else -PLIST_SUB+= LIBR="@comment " -.endif +CAIROPANGO_IMPLIES= X11 +CAIROPANGO_CONFIGURE_WITH=cairo +CAIROPANGO_USES= gettext jpeg pkgconfig +CAIROPANGO_USE= gnome=pango,cairo + +PDF_IMPLIES= DOCS X11 +PDF_USE= tex=dvipsk:build,kpathsea:build,pdftex:build +PDF_INSTALL_TARGET= install-pdf +.for i in KPSEWHICH MAKEINDEX PDFLATEX PDFTEX TEX TEXI2DVI +PDF_CONFIGURE_ENV_OFF+= ac_cv_path_${i}="" +.endfor + +PNG_IMPLIES= X11 +PNG_LIB_DEPENDS= libpng.so:graphics/png +PNG_CONFIGURE_WITH= libpng -.if ${PORT_OPTIONS:MPANGOCAIRO} -USES+= pkgconfig -USE_GNOME+= pango cairo -PLIST_SUB+= PANGOCAIRO="" -.else -CONFIGURE_ARGS+= --without-cairo -PLIST_SUB+= PANGOCAIRO="@comment " -.endif +RBLAS_CONFIGURE_ON= --without-blas \ + --without-lapack +RBLAS_CONFIGURE_OFF= --with-blas="-L${LOCALBASE}/lib ${BLASLIB}" \ + --with-lapack="${LAPACKLIB}" -.if ${PORT_OPTIONS:MPNG} -LIB_DEPENDS+= libpng.so:graphics/png -CONFIGURE_ARGS+= --with-libpng -.else -CONFIGURE_ARGS+= --without-libpng -.endif +TCLTK_IMPLIES= X11 +TCLTK_USES= tcl tk:84+ +TCLTK_CONFIGURE_WITH= tcltk + +THREADS_CONFIGURE_ON= --enable-threads=posix +THREADS_CONFIGURE_OFF= --disable-threads + +TIFF_IMPLIES= X11 +TIFF_LIB_DEPENDS= libtiff.so:graphics/tiff +TIFF_CONFIGURE_WITH= libtiff -.if ${PORT_OPTIONS:MTCLTK} -USES+= tk:84+ -CONFIGURE_ARGS+= --with-tcltk \ - --with-tcl-config=${TCL_LIBDIR}/tclConfig.sh \ - --with-tk-config=${TK_LIBDIR}/tkConfig.sh -PLIST_SUB+= TCLTK="" -.else -CONFIGURE_ARGS+= --without-tcltk -PLIST_SUB+= TCLTK="@comment " -.endif +X11_CONFIGURE_WITH= x +X11_USE= xorg=ice,sm,x11,xext,xmu,xscrnsaver,xt -.if ${PORT_OPTIONS:MTIFF} -LIB_DEPENDS+= libtiff.so:graphics/tiff -CONFIGURE_ARGS+= --with-libtiff -.else -CONFIGURE_ARGS+= --without-libtiff -.endif +R_SOVERSION= 1 +RBLAS_SOVERSION= 2 +RLAPACK_SOVERSION= 4 -.if ${PORT_OPTIONS:MX11} -CONFIGURE_ARGS+= --with-x -USE_XORG= ice sm x11 xext xmu xscrnsaver xt -PLIST_SUB+= X11="" -.else -CONFIGURE_ARGS+= --without-x -PLIST_SUB+= X11="@comment " -.endif +PLIST_SUB= R_SOVERSION="${R_SOVERSION}" \ + RBLAS_SOVERSION="${RBLAS_SOVERSION}" \ + RLAPACK_SOVERSION="${RLAPACK_SOVERSION}" -.if ${PORT_OPTIONS:MINFO_MANUALS} && ${PORT_OPTIONS:MDOCS} -ALL_TARGET+= info -CONFIGURE_ENV+= INSTALL_INFO="${LOCALBASE}/bin/install-info" \ - MAKEINFO="${LOCALBASE}/bin/makeinfo" -INFO= R-FAQ R-admin R-data R-exts R-intro R-lang -.endif +.include "compiler.mk" +.include -.if ${PORT_OPTIONS:MPDF_MANUALS} && ${PORT_OPTIONS:MDOCS} -USE_TEX= texlive dvipsk kpathsea pdftex -#BUILD_DEPENDS += texi2dvi:print/texinfo -ALL_TARGET+= pdf -CONFIGURE_ENV += INSTALL_INFO="${LOCALBASE}/bin/install-info" \ - MAKEINFO="${LOCALBASE}/bin/makeinfo" -INSTALL_TARGET+= install-pdf -PLIST_SUB+= PDF_MANUAL="" -.else -.for _b in KPSEWHICH MAKEINDEX PDFLATEX PDFTEX TEX TEXI2DVI -CONFIGURE_ENV+= ac_cv_path_${_b}="" +.if ${OSVERSION} > 1000052 && \ +(${ARCH} == amd64 || ${ARCH} == i386 || ${ARCH} == ia64 || ${ARCH} == pc98 || \ +${ARCH} == sparc64) +.for i in coshl erfcl erfl lgammal powl sinhl tanhl tgammal +CFLAGS+= -fno-builtin-${i} +LDFLAGS+= -fno-builtin-${i} .endfor -PLIST_SUB+= PDF_MANUAL="@comment " .endif -.endif # LIBR_SLAVEPORT -.endif # !LIBRMATH_SLAVEPORT post-patch: - @${REINPLACE_CMD} -e '\|LIBS=|s|-lrt ||' \ - -e '\|-lm[". ]|s|-lm|${LIBM}|' \ - ${WRKSRC}/configure .if !${PORT_OPTIONS:MMISSING} .if ${OSVERSION} < 1000016 - @${REINPLACE_CMD} -e 's/# define EXP expl/# define EXP(x) (long double)expq((__float128)(x))/' \ - ${WRKSRC}/src/nmath/pnchisq.c\ + @${REINPLACE_CMD} -e \ +'s/# define EXP expl/# define EXP(x) (long double)expq((__float128)(x))/' \ + ${WRKSRC}/src/nmath/pnchisq.c \ ${WRKSRC}/src/nmath/pgamma.c - @${REINPLACE_CMD} -e 's/# define LOG logl/# define LOG(x) (long double)logq((__float128)(x))/' \ - ${WRKSRC}/src/nmath/pnchisq.c\ + @${REINPLACE_CMD} -e \ +'s/# define LOG logl/# define LOG(x) (long double)logq((__float128)(x))/' \ + ${WRKSRC}/src/nmath/pnchisq.c \ ${WRKSRC}/src/nmath/pgamma.c - .endif .if ${OSVERSION} < 1000034 - @${REINPLACE_CMD} -Ee 's/(log)(1p)?l\(/(long double)\1\2q((__float128)/' \ + @${REINPLACE_CMD} -Ee 's/(log)(1p)?l\(/(long double)\1\2q((__float128)/'\ ${WRKSRC}/src/nmath/dnbeta.c \ ${WRKSRC}/src/nmath/pnbeta.c .endif - @${REINPLACE_CMD} -Ee 's/powl\((.*)(long double)/(long double)powq((__float128)\1__float128/' \ + @${REINPLACE_CMD} -Ee \ +'s/powl\((.*)(long double)/(long double)powq((__float128)\1__float128/' \ ${WRKSRC}/src/main/format.c -.else +.else # !PORT_OPTIONS:MMISSING .if ${OSVERSION} > 1000052 && \ -(${ARCH} == amd64 || ${ARCH} == i386 || ${ARCH} == ia64 || ${ARCH} == pc98 || ${ARCH} == sparc64) +(${ARCH} == amd64 || ${ARCH} == i386 || ${ARCH} == ia64 || ${ARCH} == pc98 || \ +${ARCH} == sparc64) @${REINPLACE_CMD} -e '\|^FLIBS="$$ac_cv_f77_libs"|s|"|&${LIBM} |' \ ${WRKSRC}/configure .endif @${REINPLACE_CMD} -e \ - '\|#[[:blank:]]*include[[:blank:]]*|{x;s|^.*$$|#include "missing_complex.h"|;H;x;}' \ +'\|#[[:blank:]]*include[[:blank:]]*|{x;s|^.*$$|#include "missing_complex.h"|;H;x;}' \ ${WRKSRC}/src/main/complex.c -.endif +.endif # !PORT_OPTIONS:MMISSING @${REINPLACE_CMD} -e \ - '\|#[[:blank:]]*include[[:blank:]]*|{x;s|^.*$$|#include ${LIBMH}|;H;x;}' \ +'\|#[[:blank:]]*include[[:blank:]]*|{x;s|^.*$$|#include ${LIBMH}|;H;x;}'\ ${WRKSRC}/src/nmath/nmath.h \ ${WRKSRC}/src/include/Rmath.h0.in - @${REINPLACE_CMD} -e 's|(libdir)/pkgconfig|(prefix)/libdata/pkgconfig|g' \ + @${REINPLACE_CMD} -e 's|(libdir)/pkgconfig|(prefix)/libdata/pkgconfig|g'\ ${WRKSRC}/src/nmath/standalone/Makefile.in \ ${WRKSRC}/src/unix/Makefile.in @${REINPLACE_CMD} -e "s|/usr/local|${LOCALBASE}|g" \ ${WRKSRC}/configure \ ${WRKSRC}/src/library/profile/Rprofile.unix \ ${WRKSRC}/src/scripts/javareconf.in -.if !defined(LIBRMATH_SLAVEPORT) -.if !${PORT_OPTIONS:MNLS} - @(cd ${WRKSRC}/src/library/Recommended; \ - for tarfile in *.tgz *.tar.gz ; do \ - ${TAR} -czf temptgz --exclude='*/po/*' @$$tarfile ; \ - ${MV} temptgz $$tarfile ; \ - done) - @${REINPLACE_CMD} -e '/ls -d $$srcdir\/inst/d' \ - ${WRKSRC}/src/library/translations/Makefile.in -.endif .if !${PORT_OPTIONS:MMISSING} pre-configure: @if [ ! -f ${_GCC_RUNTIME}/libquadmath.a ] ; then \ - ${PRINTF} "\n\n\n%s\n\n\n" "libquadmath is not available for your\ - compiler and architecture: please enable the MISSING option." ; \ - exit 1 ; fi + IGNORE="\n\n\n%s\n\n\n" "libquadmath is not available for your\ + compiler and architecture: please enable the MISSING option."; \ + fi .endif -.if defined(LIBR_SLAVEPORT) -do-build: -.for d in include extra - @(cd ${WRKSRC}/src/${d}; ${SETENV} ${MAKE_ENV} ${MAKE} ${_MAKE_JOBS} \ - ${MAKE_ARGS} R) -.endfor - @(cd ${WRKSRC}/src/main; ${SETENV} ${MAKE_ENV} ${MAKE} ${_MAKE_JOBS} \ - ${MAKE_ARGS} Makefile Makedeps libR.a) - -do-install: - @${MKDIR} ${STAGEDIR}${PREFIX}/lib/R/lib - ${INSTALL_DATA} ${WRKSRC}/src/main/libR.a ${STAGEDIR}${PREFIX}/lib/R/lib - -.else # LIBR_SLAVEPORT - -pre-configure-script: - @${FIND} ${WRKSRC} \( -name '*.orig' -o -name '*.bak' \) -delete - -check regression-test test: build - @(cd ${WRKSRC}; ${SETENV} ${MAKE_ENV} LANGUAGE=en \ - LC_COLLATE=C LC_TIME=C ${MAKE} ${_MAKE_JOBS} ${MAKE_ARGS} \ - check) - -check-all: build - @(cd ${WRKSRC}; ${SETENV} ${MAKE_ENV} LANGUAGE=en \ - LC_COLLATE=C LC_TIME=C ${MAKE} ${_MAKE_JOBS} ${MAKE_ARGS} \ - check-all) - post-install: .for L in R Rblas Rlapack @if [ -d ${STAGEDIR}${PREFIX}/lib/R/lib ] ; then \ cd ${STAGEDIR}${PREFIX}/lib/R/lib; if [ -f lib${L}.so ] ; then \ ${LN} -sf lib${L}.so lib${L}.so.${${L:tu}_SOVERSION} ; fi; fi .endfor -.if ${PORT_OPTIONS:MINFO_MANUALS} && ${PORT_OPTIONS:MDOCS} - @(cd ${WRKSRC}/doc/manual; \ - for infofile in ${INFO}; do \ - ${INSTALL_DATA} $${infofile}.info* ${STAGEDIR}${PREFIX}/${INFO_PATH}/; \ - done) -.endif - - ${FIND} ${STAGEDIR}${PREFIX}/lib/ -name "*.so" | ${XARGS} ${STRIP_CMD} - -.endif # LIBR_SLAVEPORT -.else # !LIBRMATH_SLAVEPORT -do-install: - ${INSTALL_DATA} ${WRKSRC}/src/include/Rmath.h ${STAGEDIR}${PREFIX}/include - ${INSTALL_DATA} ${BUILD_WRKSRC}/libRmath.a ${STAGEDIR}${PREFIX}/lib - ${INSTALL_LIB} ${BUILD_WRKSRC}/libRmath.so \ - ${STAGEDIR}${PREFIX}/lib/libRmath.so.${RMATH_SOVERSION} - @(cd ${STAGEDIR}${PREFIX}/lib; ${LN} -sf libRmath.so.${RMATH_SOVERSION} libRmath.so) - -check regression-test test: build - @(cd ${BUILD_WRKSRC}; ${SETENV} ${MAKE_ENV} LANGUAGE=en \ - LC_COLLATE=C LC_TIME=C ${MAKE} ${_MAKE_JOBS} ${MAKE_ARGS} test; \ - ${SETENV} LD_LIBRARY_PATH="${BUILD_WRKSRC}" ${BUILD_WRKSRC}/test) - -.endif # !LIBRMATH_SLAVEPORT .include Modified: head/math/R/pkg-plist ============================================================================== --- head/math/R/pkg-plist Sat Jul 9 18:59:19 2016 (r418288) +++ head/math/R/pkg-plist Sat Jul 9 19:28:21 2016 (r418289) @@ -585,7 +585,7 @@ lib/R/library/grDevices/html/00Index.htm lib/R/library/grDevices/html/R.css lib/R/library/grDevices/icc/srgb lib/R/library/grDevices/icc/srgb.flate -%%PANGOCAIRO%%lib/R/library/grDevices/libs/cairo.so +%%CAIROPANGO%%lib/R/library/grDevices/libs/cairo.so lib/R/library/grDevices/libs/grDevices.so lib/R/library/graphics/DESCRIPTION lib/R/library/graphics/INDEX @@ -628,51 +628,51 @@ lib/R/library/grid/Meta/hsearch.rds lib/R/library/grid/Meta/links.rds lib/R/library/grid/Meta/nsInfo.rds lib/R/library/grid/Meta/package.rds -%%PORTDOCS%%%%PDF_MANUAL%%lib/R/library/grid/Meta/vignette.rds +%%PORTDOCS%%%%PDF%%lib/R/library/grid/Meta/vignette.rds lib/R/library/grid/NAMESPACE lib/R/library/grid/R/grid lib/R/library/grid/R/grid.rdb lib/R/library/grid/R/grid.rdx lib/R/library/grid/doc/changes.txt -%%PORTDOCS%%%%PDF_MANUAL%%lib/R/library/grid/doc/displaylist.R -%%PORTDOCS%%%%PDF_MANUAL%%lib/R/library/grid/doc/displaylist.Rnw +%%PORTDOCS%%%%PDF%%lib/R/library/grid/doc/displaylist.R +%%PORTDOCS%%%%PDF%%lib/R/library/grid/doc/displaylist.Rnw lib/R/library/grid/doc/displaylist.pdf -%%PORTDOCS%%%%PDF_MANUAL%%lib/R/library/grid/doc/frame.R -%%PORTDOCS%%%%PDF_MANUAL%%lib/R/library/grid/doc/frame.Rnw +%%PORTDOCS%%%%PDF%%lib/R/library/grid/doc/frame.R +%%PORTDOCS%%%%PDF%%lib/R/library/grid/doc/frame.Rnw lib/R/library/grid/doc/frame.pdf -%%PORTDOCS%%%%PDF_MANUAL%%lib/R/library/grid/doc/grid.R -%%PORTDOCS%%%%PDF_MANUAL%%lib/R/library/grid/doc/grid.Rnw +%%PORTDOCS%%%%PDF%%lib/R/library/grid/doc/grid.R +%%PORTDOCS%%%%PDF%%lib/R/library/grid/doc/grid.Rnw lib/R/library/grid/doc/grid.pdf -%%PORTDOCS%%%%PDF_MANUAL%%lib/R/library/grid/doc/grobs.R -%%PORTDOCS%%%%PDF_MANUAL%%lib/R/library/grid/doc/grobs.Rnw +%%PORTDOCS%%%%PDF%%lib/R/library/grid/doc/grobs.R +%%PORTDOCS%%%%PDF%%lib/R/library/grid/doc/grobs.Rnw lib/R/library/grid/doc/grobs.pdf -%%PORTDOCS%%%%PDF_MANUAL%%lib/R/library/grid/doc/index.html -%%PORTDOCS%%%%PDF_MANUAL%%lib/R/library/grid/doc/interactive.R -%%PORTDOCS%%%%PDF_MANUAL%%lib/R/library/grid/doc/interactive.Rnw +%%PORTDOCS%%%%PDF%%lib/R/library/grid/doc/index.html +%%PORTDOCS%%%%PDF%%lib/R/library/grid/doc/interactive.R +%%PORTDOCS%%%%PDF%%lib/R/library/grid/doc/interactive.Rnw lib/R/library/grid/doc/interactive.pdf -%%PORTDOCS%%%%PDF_MANUAL%%lib/R/library/grid/doc/locndimn.R -%%PORTDOCS%%%%PDF_MANUAL%%lib/R/library/grid/doc/locndimn.Rnw +%%PORTDOCS%%%%PDF%%lib/R/library/grid/doc/locndimn.R +%%PORTDOCS%%%%PDF%%lib/R/library/grid/doc/locndimn.Rnw lib/R/library/grid/doc/locndimn.pdf -%%PORTDOCS%%%%PDF_MANUAL%%lib/R/library/grid/doc/moveline.R -%%PORTDOCS%%%%PDF_MANUAL%%lib/R/library/grid/doc/moveline.Rnw +%%PORTDOCS%%%%PDF%%lib/R/library/grid/doc/moveline.R +%%PORTDOCS%%%%PDF%%lib/R/library/grid/doc/moveline.Rnw lib/R/library/grid/doc/moveline.pdf -%%PORTDOCS%%%%PDF_MANUAL%%lib/R/library/grid/doc/nonfinite.R -%%PORTDOCS%%%%PDF_MANUAL%%lib/R/library/grid/doc/nonfinite.Rnw +%%PORTDOCS%%%%PDF%%lib/R/library/grid/doc/nonfinite.R +%%PORTDOCS%%%%PDF%%lib/R/library/grid/doc/nonfinite.Rnw lib/R/library/grid/doc/nonfinite.pdf -%%PORTDOCS%%%%PDF_MANUAL%%lib/R/library/grid/doc/plotexample.R -%%PORTDOCS%%%%PDF_MANUAL%%lib/R/library/grid/doc/plotexample.Rnw +%%PORTDOCS%%%%PDF%%lib/R/library/grid/doc/plotexample.R +%%PORTDOCS%%%%PDF%%lib/R/library/grid/doc/plotexample.Rnw lib/R/library/grid/doc/plotexample.pdf -%%PORTDOCS%%%%PDF_MANUAL%%lib/R/library/grid/doc/rotated.R -%%PORTDOCS%%%%PDF_MANUAL%%lib/R/library/grid/doc/rotated.Rnw +%%PORTDOCS%%%%PDF%%lib/R/library/grid/doc/rotated.R +%%PORTDOCS%%%%PDF%%lib/R/library/grid/doc/rotated.Rnw lib/R/library/grid/doc/rotated.pdf -%%PORTDOCS%%%%PDF_MANUAL%%lib/R/library/grid/doc/saveload.R -%%PORTDOCS%%%%PDF_MANUAL%%lib/R/library/grid/doc/saveload.Rnw +%%PORTDOCS%%%%PDF%%lib/R/library/grid/doc/saveload.R +%%PORTDOCS%%%%PDF%%lib/R/library/grid/doc/saveload.Rnw lib/R/library/grid/doc/saveload.pdf -%%PORTDOCS%%%%PDF_MANUAL%%lib/R/library/grid/doc/sharing.R -%%PORTDOCS%%%%PDF_MANUAL%%lib/R/library/grid/doc/sharing.Rnw +%%PORTDOCS%%%%PDF%%lib/R/library/grid/doc/sharing.R +%%PORTDOCS%%%%PDF%%lib/R/library/grid/doc/sharing.Rnw lib/R/library/grid/doc/sharing.pdf -%%PORTDOCS%%%%PDF_MANUAL%%lib/R/library/grid/doc/viewports.R -%%PORTDOCS%%%%PDF_MANUAL%%lib/R/library/grid/doc/viewports.Rnw +%%PORTDOCS%%%%PDF%%lib/R/library/grid/doc/viewports.R +%%PORTDOCS%%%%PDF%%lib/R/library/grid/doc/viewports.Rnw lib/R/library/grid/doc/viewports.pdf lib/R/library/grid/help/AnIndex lib/R/library/grid/help/aliases.rds @@ -849,14 +849,14 @@ lib/R/library/parallel/Meta/hsearch.rds lib/R/library/parallel/Meta/links.rds lib/R/library/parallel/Meta/nsInfo.rds lib/R/library/parallel/Meta/package.rds -%%PORTDOCS%%%%PDF_MANUAL%%lib/R/library/parallel/Meta/vignette.rds +%%PORTDOCS%%%%PDF%%lib/R/library/parallel/Meta/vignette.rds lib/R/library/parallel/NAMESPACE lib/R/library/parallel/R/parallel lib/R/library/parallel/R/parallel.rdb lib/R/library/parallel/R/parallel.rdx -%%PORTDOCS%%%%PDF_MANUAL%%lib/R/library/parallel/doc/index.html -%%PORTDOCS%%%%PDF_MANUAL%%lib/R/library/parallel/doc/parallel.R -%%PORTDOCS%%%%PDF_MANUAL%%lib/R/library/parallel/doc/parallel.Rnw +%%PORTDOCS%%%%PDF%%lib/R/library/parallel/doc/index.html +%%PORTDOCS%%%%PDF%%lib/R/library/parallel/doc/parallel.R +%%PORTDOCS%%%%PDF%%lib/R/library/parallel/doc/parallel.Rnw lib/R/library/parallel/doc/parallel.pdf lib/R/library/parallel/help/AnIndex lib/R/library/parallel/help/aliases.rds @@ -1415,7 +1415,7 @@ lib/R/library/utils/Meta/hsearch.rds lib/R/library/utils/Meta/links.rds lib/R/library/utils/Meta/nsInfo.rds lib/R/library/utils/Meta/package.rds -%%PORTDOCS%%%%PDF_MANUAL%%lib/R/library/utils/Meta/vignette.rds +%%PORTDOCS%%%%PDF%%lib/R/library/utils/Meta/vignette.rds lib/R/library/utils/NAMESPACE lib/R/library/utils/R/sysdata.rdb lib/R/library/utils/R/sysdata.rdx @@ -1424,10 +1424,10 @@ lib/R/library/utils/R/utils.rdb lib/R/library/utils/R/utils.rdx lib/R/library/utils/Sweave/Sweave-test-1.Rnw lib/R/library/utils/Sweave/example-1.Rnw -%%PORTDOCS%%%%PDF_MANUAL%%lib/R/library/utils/doc/Sweave.R -%%PORTDOCS%%%%PDF_MANUAL%%lib/R/library/utils/doc/Sweave.Rnw +%%PORTDOCS%%%%PDF%%lib/R/library/utils/doc/Sweave.R +%%PORTDOCS%%%%PDF%%lib/R/library/utils/doc/Sweave.Rnw lib/R/library/utils/doc/Sweave.pdf -%%PORTDOCS%%%%PDF_MANUAL%%lib/R/library/utils/doc/index.html +%%PORTDOCS%%%%PDF%%lib/R/library/utils/doc/index.html lib/R/library/utils/help/AnIndex lib/R/library/utils/help/aliases.rds lib/R/library/utils/help/paths.rds @@ -1492,14 +1492,14 @@ man/man1/Rscript.1.gz %%DOCSDIR%%/html/NEWS.2.html %%PORTDOCS%%%%DOCSDIR%%/html/Rlogo.pdf %%PORTDOCS%%%%DOCSDIR%%/html/Rlogo.svg -%%PORTDOCS%%%%PDF_MANUAL%%%%DOCSDIR%%/manual/R-FAQ.pdf -%%PORTDOCS%%%%PDF_MANUAL%%%%DOCSDIR%%/manual/R-admin.pdf -%%PORTDOCS%%%%PDF_MANUAL%%%%DOCSDIR%%/manual/R-data.pdf -%%PORTDOCS%%%%PDF_MANUAL%%%%DOCSDIR%%/manual/R-exts.pdf -%%PORTDOCS%%%%PDF_MANUAL%%%%DOCSDIR%%/manual/R-intro.pdf -%%PORTDOCS%%%%PDF_MANUAL%%%%DOCSDIR%%/manual/R-ints.pdf -%%PORTDOCS%%%%PDF_MANUAL%%%%DOCSDIR%%/manual/R-lang.pdf -%%PORTDOCS%%%%PDF_MANUAL%%%%DOCSDIR%%/manual/fullrefman.pdf +%%PORTDOCS%%%%PDF%%%%DOCSDIR%%/manual/R-FAQ.pdf +%%PORTDOCS%%%%PDF%%%%DOCSDIR%%/manual/R-admin.pdf +%%PORTDOCS%%%%PDF%%%%DOCSDIR%%/manual/R-data.pdf +%%PORTDOCS%%%%PDF%%%%DOCSDIR%%/manual/R-exts.pdf +%%PORTDOCS%%%%PDF%%%%DOCSDIR%%/manual/R-intro.pdf +%%PORTDOCS%%%%PDF%%%%DOCSDIR%%/manual/R-ints.pdf +%%PORTDOCS%%%%PDF%%%%DOCSDIR%%/manual/R-lang.pdf +%%PORTDOCS%%%%PDF%%%%DOCSDIR%%/manual/fullrefman.pdf %%PORTDOCS%%%%DOCSDIR%%/BioC_mirrors.csv %%PORTDOCS%%%%DOCSDIR%%/NEWS %%PORTDOCS%%%%DOCSDIR%%/NEWS.0 From owner-svn-ports-all@freebsd.org Sat Jul 9 19:32:33 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 6C64DB85B66; Sat, 9 Jul 2016 19:32:33 +0000 (UTC) (envelope-from riggs@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 39C101E31; Sat, 9 Jul 2016 19:32:33 +0000 (UTC) (envelope-from riggs@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u69JWWDr069124; Sat, 9 Jul 2016 19:32:32 GMT (envelope-from riggs@FreeBSD.org) Received: (from riggs@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u69JWWLI069123; Sat, 9 Jul 2016 19:32:32 GMT (envelope-from riggs@FreeBSD.org) Message-Id: <201607091932.u69JWWLI069123@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: riggs set sender to riggs@FreeBSD.org using -f From: Thomas Zander Date: Sat, 9 Jul 2016 19:32:32 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418290 - head/math/libR X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 09 Jul 2016 19:32:33 -0000 Author: riggs Date: Sat Jul 9 19:32:32 2016 New Revision: 418290 URL: https://svnweb.freebsd.org/changeset/ports/418290 Log: Mark broken while restructuring the master port is ongoing PR: 210866 Reported by: jrm@ftfl.ca (maintainer) Modified: head/math/libR/Makefile Modified: head/math/libR/Makefile ============================================================================== --- head/math/libR/Makefile Sat Jul 9 19:28:21 2016 (r418289) +++ head/math/libR/Makefile Sat Jul 9 19:32:32 2016 (r418290) @@ -11,6 +11,6 @@ MASTERDIR= ${.CURDIR}/../R PLIST= ${.CURDIR}/pkg-plist PLIST_FILES= lib/R/lib/libR.a -BROKEN_powerpc64= Does not build +BROKEN= Transient breakage while restructuring the master port .include "${MASTERDIR}/Makefile" From owner-svn-ports-all@freebsd.org Sat Jul 9 19:55:36 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 70A37B7604D; Sat, 9 Jul 2016 19:55:36 +0000 (UTC) (envelope-from antoine@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 28DB9179E; Sat, 9 Jul 2016 19:55:36 +0000 (UTC) (envelope-from antoine@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u69JtZfV076643; Sat, 9 Jul 2016 19:55:35 GMT (envelope-from antoine@FreeBSD.org) Received: (from antoine@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u69JtZJg076642; Sat, 9 Jul 2016 19:55:35 GMT (envelope-from antoine@FreeBSD.org) Message-Id: <201607091955.u69JtZJg076642@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: antoine set sender to antoine@FreeBSD.org using -f From: Antoine Brodin Date: Sat, 9 Jul 2016 19:55:35 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418291 - head/devel/gmake-lite X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 09 Jul 2016 19:55:36 -0000 Author: antoine Date: Sat Jul 9 19:55:35 2016 New Revision: 418291 URL: https://svnweb.freebsd.org/changeset/ports/418291 Log: Finish removal of gmake-lite PR: 210623 Deleted: head/devel/gmake-lite/ From owner-svn-ports-all@freebsd.org Sat Jul 9 20:02:03 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id F38EFB76226; Sat, 9 Jul 2016 20:02:03 +0000 (UTC) (envelope-from antoine@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id C3FDC1CD1; Sat, 9 Jul 2016 20:02:03 +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 u69K22Ab079596; Sat, 9 Jul 2016 20:02:02 GMT (envelope-from antoine@FreeBSD.org) Received: (from antoine@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u69K22Z2079595; Sat, 9 Jul 2016 20:02:02 GMT (envelope-from antoine@FreeBSD.org) Message-Id: <201607092002.u69K22Z2079595@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: antoine set sender to antoine@FreeBSD.org using -f From: Antoine Brodin Date: Sat, 9 Jul 2016 20:02:02 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418292 - head/math/R X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 09 Jul 2016 20:02:04 -0000 Author: antoine Date: Sat Jul 9 20:02:02 2016 New Revision: 418292 URL: https://svnweb.freebsd.org/changeset/ports/418292 Log: Prevent PKGNAME collision with math/libR Modified: head/math/R/Makefile Modified: head/math/R/Makefile ============================================================================== --- head/math/R/Makefile Sat Jul 9 19:55:35 2016 (r418291) +++ head/math/R/Makefile Sat Jul 9 20:02:02 2016 (r418292) @@ -1,7 +1,7 @@ # Created by: Maurice Castro # $FreeBSD$ -PORTNAME= R +PORTNAME?= R PORTVERSION= 3.3.1 PORTREVISION= 2 CATEGORIES= math lang From owner-svn-ports-all@freebsd.org Sat Jul 9 20:18:32 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 12BC3B763ED; Sat, 9 Jul 2016 20:18:32 +0000 (UTC) (envelope-from ohauer@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id C86D4128E; Sat, 9 Jul 2016 20:18:31 +0000 (UTC) (envelope-from ohauer@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u69KIV3C084376; Sat, 9 Jul 2016 20:18:31 GMT (envelope-from ohauer@FreeBSD.org) Received: (from ohauer@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u69KIUEc084367; Sat, 9 Jul 2016 20:18:30 GMT (envelope-from ohauer@FreeBSD.org) Message-Id: <201607092018.u69KIUEc084367@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: ohauer set sender to ohauer@FreeBSD.org using -f From: Olli Hauer Date: Sat, 9 Jul 2016 20:18:30 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418293 - in head/mail: postfix postfix-current postfix-current/files postfix/files postfix211 postfix211/files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 09 Jul 2016 20:18:32 -0000 Author: ohauer Date: Sat Jul 9 20:18:29 2016 New Revision: 418293 URL: https://svnweb.freebsd.org/changeset/ports/418293 Log: - fix build on FreeBSD 12 - s/USE_OPENSSL=yes/USES=ssl/ Modified: head/mail/postfix-current/Makefile head/mail/postfix-current/files/patch-makedefs head/mail/postfix-current/files/patch-src__util__sys_defs.h head/mail/postfix/Makefile head/mail/postfix/files/patch-makedefs head/mail/postfix/files/patch-src__util__sys_defs.h head/mail/postfix211/Makefile head/mail/postfix211/files/patch-makedefs head/mail/postfix211/files/patch-src__util__sys_defs.h Modified: head/mail/postfix-current/Makefile ============================================================================== --- head/mail/postfix-current/Makefile Sat Jul 9 20:02:02 2016 (r418292) +++ head/mail/postfix-current/Makefile Sat Jul 9 20:18:29 2016 (r418293) @@ -57,7 +57,7 @@ PGSQL_USES= pgsql SASLKMIT_LIB_DEPENDS= libkrb5.so:security/krb5 SASL_LIB_DEPENDS= libsasl2.so:security/cyrus-sasl2 SQLITE_USES= sqlite -TLS_USE= OPENSSL=yes +TLS_USES= ssl CDB_DESC= CDB maps lookups INST_BASE_DESC= Install into /usr and /etc/postfix Modified: head/mail/postfix-current/files/patch-makedefs ============================================================================== --- head/mail/postfix-current/files/patch-makedefs Sat Jul 9 20:02:02 2016 (r418292) +++ head/mail/postfix-current/files/patch-makedefs Sat Jul 9 20:18:29 2016 (r418293) @@ -1,6 +1,6 @@ ---- makedefs.orig 2015-01-18 00:10:28 UTC +--- makedefs.orig 2016-06-26 00:02:58 UTC +++ makedefs -@@ -235,6 +235,15 @@ case "$SYSTEM.$RELEASE" in +@@ -279,6 +279,24 @@ case "$SYSTEM.$RELEASE" in : ${SHLIB_ENV="LD_LIBRARY_PATH=`pwd`/lib"} : ${PLUGIN_LD="${CC} -shared"} ;; @@ -13,6 +13,15 @@ + : ${SHLIB_ENV="LD_LIBRARY_PATH=`pwd`/lib"} + : ${PLUGIN_LD="${CC} -shared"} + ;; ++ FreeBSD.12*) SYSTYPE=FREEBSD12 ++ : ${CC=cc} ++ : ${SHLIB_SUFFIX=.so} ++ : ${SHLIB_CFLAGS=-fPIC} ++ : ${SHLIB_LD="${CC} -shared"' -Wl,-soname,${LIB}'} ++ : ${SHLIB_RPATH='-Wl,-rpath,${SHLIB_DIR}'} ++ : ${SHLIB_ENV="LD_LIBRARY_PATH=`pwd`/lib"} ++ : ${PLUGIN_LD="${CC} -shared"} ++ ;; DragonFly.*) SYSTYPE=DRAGONFLY ;; OpenBSD.2*) SYSTYPE=OPENBSD2 Modified: head/mail/postfix-current/files/patch-src__util__sys_defs.h ============================================================================== --- head/mail/postfix-current/files/patch-src__util__sys_defs.h Sat Jul 9 20:02:02 2016 (r418292) +++ head/mail/postfix-current/files/patch-src__util__sys_defs.h Sat Jul 9 20:18:29 2016 (r418293) @@ -1,10 +1,10 @@ ---- src/util/sys_defs.h.orig 2016-05-15 15:20:14 UTC +--- src/util/sys_defs.h.orig 2016-07-09 20:09:34 UTC +++ src/util/sys_defs.h @@ -27,6 +27,7 @@ #if defined(FREEBSD2) || defined(FREEBSD3) || defined(FREEBSD4) \ || defined(FREEBSD5) || defined(FREEBSD6) || defined(FREEBSD7) \ || defined(FREEBSD8) || defined(FREEBSD9) || defined(FREEBSD10) \ -+ || defined(FREEBSD11) \ ++ || defined(FREEBSD11) || defined(FREEBSD12) \ || defined(BSDI2) || defined(BSDI3) || defined(BSDI4) \ || defined(OPENBSD2) || defined(OPENBSD3) || defined(OPENBSD4) \ || defined(OPENBSD5) || defined(OPENBSD6) \ Modified: head/mail/postfix/Makefile ============================================================================== --- head/mail/postfix/Makefile Sat Jul 9 20:02:02 2016 (r418292) +++ head/mail/postfix/Makefile Sat Jul 9 20:18:29 2016 (r418293) @@ -58,7 +58,7 @@ PGSQL_USES= pgsql SASLKMIT_LIB_DEPENDS= libkrb5.so:security/krb5 SASL_LIB_DEPENDS= libsasl2.so:security/cyrus-sasl2 SQLITE_USES= sqlite -TLS_USE= OPENSSL=yes +TLS_USES= ssl CDB_DESC= CDB maps lookups INST_BASE_DESC= Install into /usr and /etc/postfix Modified: head/mail/postfix/files/patch-makedefs ============================================================================== --- head/mail/postfix/files/patch-makedefs Sat Jul 9 20:02:02 2016 (r418292) +++ head/mail/postfix/files/patch-makedefs Sat Jul 9 20:18:29 2016 (r418293) @@ -1,6 +1,6 @@ ---- makedefs.orig 2015-01-18 00:10:28 UTC +--- makedefs.orig 2016-05-15 16:39:11 UTC +++ makedefs -@@ -235,6 +235,15 @@ case "$SYSTEM.$RELEASE" in +@@ -272,6 +272,24 @@ case "$SYSTEM.$RELEASE" in : ${SHLIB_ENV="LD_LIBRARY_PATH=`pwd`/lib"} : ${PLUGIN_LD="${CC} -shared"} ;; @@ -13,6 +13,15 @@ + : ${SHLIB_ENV="LD_LIBRARY_PATH=`pwd`/lib"} + : ${PLUGIN_LD="${CC} -shared"} + ;; ++ FreeBSD.12*) SYSTYPE=FREEBSD12 ++ : ${CC=cc} ++ : ${SHLIB_SUFFIX=.so} ++ : ${SHLIB_CFLAGS=-fPIC} ++ : ${SHLIB_LD="${CC} -shared"' -Wl,-soname,${LIB}'} ++ : ${SHLIB_RPATH='-Wl,-rpath,${SHLIB_DIR}'} ++ : ${SHLIB_ENV="LD_LIBRARY_PATH=`pwd`/lib"} ++ : ${PLUGIN_LD="${CC} -shared"} ++ ;; DragonFly.*) SYSTYPE=DRAGONFLY ;; OpenBSD.2*) SYSTYPE=OPENBSD2 Modified: head/mail/postfix/files/patch-src__util__sys_defs.h ============================================================================== --- head/mail/postfix/files/patch-src__util__sys_defs.h Sat Jul 9 20:02:02 2016 (r418292) +++ head/mail/postfix/files/patch-src__util__sys_defs.h Sat Jul 9 20:18:29 2016 (r418293) @@ -1,10 +1,10 @@ ---- src/util/sys_defs.h.orig 2015-04-19 10:22:40 UTC +--- src/util/sys_defs.h.orig 2016-05-15 16:39:11 UTC +++ src/util/sys_defs.h @@ -26,6 +26,7 @@ #if defined(FREEBSD2) || defined(FREEBSD3) || defined(FREEBSD4) \ || defined(FREEBSD5) || defined(FREEBSD6) || defined(FREEBSD7) \ || defined(FREEBSD8) || defined(FREEBSD9) || defined(FREEBSD10) \ -+ || defined(FREEBSD11) \ ++ || defined(FREEBSD11) || defined(FREEBSD12) \ || defined(BSDI2) || defined(BSDI3) || defined(BSDI4) \ || defined(OPENBSD2) || defined(OPENBSD3) || defined(OPENBSD4) \ - || defined(OPENBSD5) \ + || defined(OPENBSD5) || defined(OPENBSD6) \ Modified: head/mail/postfix211/Makefile ============================================================================== --- head/mail/postfix211/Makefile Sat Jul 9 20:02:02 2016 (r418292) +++ head/mail/postfix211/Makefile Sat Jul 9 20:18:29 2016 (r418293) @@ -58,7 +58,7 @@ SASLKMIT_LIB_DEPENDS= libkrb5.so:securit SASL_LIB_DEPENDS= libsasl2.so:security/cyrus-sasl2 SPF_LIB_DEPENDS= libspf2.so:mail/libspf2 SQLITE_USES= sqlite -TLS_USE= OPENSSL=yes +TLS_USES= ssl CDB_DESC= CDB maps lookups INST_BASE_DESC= Install into /usr and /etc/postfix Modified: head/mail/postfix211/files/patch-makedefs ============================================================================== --- head/mail/postfix211/files/patch-makedefs Sat Jul 9 20:02:02 2016 (r418292) +++ head/mail/postfix211/files/patch-makedefs Sat Jul 9 20:18:29 2016 (r418293) @@ -1,12 +1,15 @@ ---- makedefs.orig 2015-04-19 10:19:57 UTC +--- makedefs.orig 2016-07-09 20:06:01 UTC +++ makedefs -@@ -161,6 +161,9 @@ case "$SYSTEM.$RELEASE" in +@@ -166,6 +166,12 @@ case "$SYSTEM.$RELEASE" in FreeBSD.10*) SYSTYPE=FREEBSD10 : ${CC=cc} ;; + FreeBSD.11*) SYSTYPE=FREEBSD11 + : ${CC=cc} + ;; ++ FreeBSD.12*) SYSTYPE=FREEBSD12 ++ : ${CC=cc} ++ ;; DragonFly.*) SYSTYPE=DRAGONFLY ;; OpenBSD.2*) SYSTYPE=OPENBSD2 Modified: head/mail/postfix211/files/patch-src__util__sys_defs.h ============================================================================== --- head/mail/postfix211/files/patch-src__util__sys_defs.h Sat Jul 9 20:02:02 2016 (r418292) +++ head/mail/postfix211/files/patch-src__util__sys_defs.h Sat Jul 9 20:18:29 2016 (r418293) @@ -1,10 +1,10 @@ ---- src/util/sys_defs.h.orig 2015-04-19 10:22:40 UTC +--- src/util/sys_defs.h.orig 2016-07-09 20:06:23 UTC +++ src/util/sys_defs.h @@ -26,6 +26,7 @@ #if defined(FREEBSD2) || defined(FREEBSD3) || defined(FREEBSD4) \ || defined(FREEBSD5) || defined(FREEBSD6) || defined(FREEBSD7) \ || defined(FREEBSD8) || defined(FREEBSD9) || defined(FREEBSD10) \ -+ || defined(FREEBSD11) \ ++ || defined(FREEBSD11) || defined(FREEBSD12) \ || defined(BSDI2) || defined(BSDI3) || defined(BSDI4) \ || defined(OPENBSD2) || defined(OPENBSD3) || defined(OPENBSD4) \ || defined(OPENBSD5) \ From owner-svn-ports-all@freebsd.org Sat Jul 9 23:12:00 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id F0F4FB84471; Sat, 9 Jul 2016 23:12:00 +0000 (UTC) (envelope-from dinoex@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id BE13012A3; Sat, 9 Jul 2016 23:12:00 +0000 (UTC) (envelope-from dinoex@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u69NBxTP050012; Sat, 9 Jul 2016 23:11:59 GMT (envelope-from dinoex@FreeBSD.org) Received: (from dinoex@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u69NBx1K050010; Sat, 9 Jul 2016 23:11:59 GMT (envelope-from dinoex@FreeBSD.org) Message-Id: <201607092311.u69NBx1K050010@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: dinoex set sender to dinoex@FreeBSD.org using -f From: Dirk Meyer Date: Sat, 9 Jul 2016 23:11:59 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418294 - head/graphics/gd X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 09 Jul 2016 23:12:01 -0000 Author: dinoex Date: Sat Jul 9 23:11:59 2016 New Revision: 418294 URL: https://svnweb.freebsd.org/changeset/ports/418294 Log: - update to 2.1.1 Modified: head/graphics/gd/Makefile head/graphics/gd/distinfo Modified: head/graphics/gd/Makefile ============================================================================== --- head/graphics/gd/Makefile Sat Jul 9 20:18:29 2016 (r418293) +++ head/graphics/gd/Makefile Sat Jul 9 23:11:59 2016 (r418294) @@ -2,8 +2,8 @@ # $FreeBSD$ PORTNAME= libgd -PORTVERSION= 2.1.0 -PORTREVISION?= 7 +PORTVERSION= 2.1.1 +PORTREVISION?= 0 PORTEPOCH= 1 CATEGORIES+= graphics MASTER_SITES= https://bitbucket.org/libgd/gd-libgd/downloads/ \ @@ -18,7 +18,7 @@ LIB_DEPENDS= libtiff.so:graphics/tiff \ CONFLICTS= bazaar-1.* -USES= jpeg libtool:keepla pathfix pkgconfig shebangfix tar:xz +USES= tar:xz pkgconfig pathfix libtool:keepla shebangfix jpeg iconv SHEBANG_FILES= ${WRKSRC}/src/bdftogd GNU_CONFIGURE= yes USE_LDCONFIG= yes Modified: head/graphics/gd/distinfo ============================================================================== --- head/graphics/gd/distinfo Sat Jul 9 20:18:29 2016 (r418293) +++ head/graphics/gd/distinfo Sat Jul 9 23:11:59 2016 (r418294) @@ -1,2 +1,3 @@ -SHA256 (libgd-2.1.0.tar.xz) = fa6665dfe3d898019671293c84d77067a3d2ede50884dbcb6df899d508370e5a -SIZE (libgd-2.1.0.tar.xz) = 2004304 +TIMESTAMP = 1468105350 +SHA256 (libgd-2.1.1.tar.xz) = 9ada1ed45594abc998ebc942cef12b032fbad672e73efc22bc9ff54f5df2b285 +SIZE (libgd-2.1.1.tar.xz) = 2039132