From owner-svn-ports-head@freebsd.org Mon Mar 6 01:56:56 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 5F08CCF90B3; Mon, 6 Mar 2017 01:56:56 +0000 (UTC) (envelope-from rezny@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 371131F6C; Mon, 6 Mar 2017 01:56:56 +0000 (UTC) (envelope-from rezny@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v261utpl084687; Mon, 6 Mar 2017 01:56:55 GMT (envelope-from rezny@FreeBSD.org) Received: (from rezny@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v261utOZ084684; Mon, 6 Mar 2017 01:56:55 GMT (envelope-from rezny@FreeBSD.org) Message-Id: <201703060156.v261utOZ084684@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: rezny set sender to rezny@FreeBSD.org using -f From: Matthew Rezny Date: Mon, 6 Mar 2017 01:56:55 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r435511 - head/net-p2p/libtorrent-rasterbar X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 06 Mar 2017 01:56:56 -0000 Author: rezny Date: Mon Mar 6 01:56:54 2017 New Revision: 435511 URL: https://svnweb.freebsd.org/changeset/ports/435511 Log: Update to 1.1.2. Add an option for logging to disk and disk stats logging. Approved by: swills (mentor) Differential Revision: https://reviews.freebsd.org/D9888 Modified: head/net-p2p/libtorrent-rasterbar/Makefile head/net-p2p/libtorrent-rasterbar/distinfo head/net-p2p/libtorrent-rasterbar/pkg-plist Modified: head/net-p2p/libtorrent-rasterbar/Makefile ============================================================================== --- head/net-p2p/libtorrent-rasterbar/Makefile Mon Mar 6 01:30:40 2017 (r435510) +++ head/net-p2p/libtorrent-rasterbar/Makefile Mon Mar 6 01:56:54 2017 (r435511) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= libtorrent-rasterbar -PORTVERSION= 1.1.1 -PORTREVISION= 3 +PORTVERSION= 1.1.2 CATEGORIES?= net-p2p ipv6 MASTER_SITES= https://github.com/arvidn/libtorrent/releases/download/libtorrent-${PORTVERSION:S/./_/g}/ @@ -28,7 +27,6 @@ CONFIGURE_ARGS= --disable-static \ --enable-pool-allocators \ --enable-deprecated-functions \ --with-boost=${LOCALBASE} \ - --with-boost-system=boost_system \ --with-libiconv \ --with-openssl=${OPENSSLBASE} @@ -39,17 +37,19 @@ DOCFILES= AUTHORS ChangeLog PORTDOCS= ${DOCFILES} docs/* PORTEXAMPLES= *.cpp -OPTIONS_DEFINE= DEBUG DOCS EXAMPLES TEST -TEST_DESC= Build and run tests (increases library size) - -DEBUG_CONFIGURE_ENABLE= debug -TEST_CONFIGURE_ENABLE= tests +OPTIONS_DEFINE= DEBUG DOCS EXAMPLES LOGGING TEST +OPTIONS_SUB= yes +LOGGING_DESC= Enable disk stat logging and logging to disk + +DEBUG_CONFIGURE_ENABLE= debug +EXAMPLES_CONFIGURE_ENABLE= examples +LOGGING_CONFIGURE_ENABLE= logging disk-stats +TEST_CONFIGURE_ENABLE= tests .include .if defined(SLAVE_PORT) && ${SLAVE_PORT:tl} == "yes" && defined(USE_PYTHON) -CONFIGURE_ARGS+= --enable-python-binding \ - --with-boost-python=boost_python +CONFIGURE_ARGS+= --enable-python-binding .else CONFIGURE_ARGS+= --disable-python-binding .endif @@ -74,6 +74,7 @@ post-install-DOCS-on: @${MKDIR} ${STAGEDIR}${DOCSDIR} ${INSTALL_MAN} ${DOCFILES:S|^|${WRKSRC}/|} ${STAGEDIR}${DOCSDIR} (cd ${WRKSRC} && ${COPYTREE_SHARE} docs ${STAGEDIR}${DOCSDIR}) + ${RM} ${STAGEDIR}${DOCSDIR}/docs/._* post-install-EXAMPLES-on: @${MKDIR} ${STAGEDIR}${EXAMPLESDIR} Modified: head/net-p2p/libtorrent-rasterbar/distinfo ============================================================================== --- head/net-p2p/libtorrent-rasterbar/distinfo Mon Mar 6 01:30:40 2017 (r435510) +++ head/net-p2p/libtorrent-rasterbar/distinfo Mon Mar 6 01:56:54 2017 (r435511) @@ -1,3 +1,3 @@ -TIMESTAMP = 1472088233 -SHA256 (libtorrent-rasterbar-1.1.1.tar.gz) = f70c82367b0980460ef95aff3e117fd4a174477892d529beec434f74d615b31f -SIZE (libtorrent-rasterbar-1.1.1.tar.gz) = 3641815 +TIMESTAMP = 1488630247 +SHA256 (libtorrent-rasterbar-1.1.2.tar.gz) = 45e55f2374507bb67a9b9125f6b8d1c45e6cd33849c62b1d9cb56657354e359a +SIZE (libtorrent-rasterbar-1.1.2.tar.gz) = 3909420 Modified: head/net-p2p/libtorrent-rasterbar/pkg-plist ============================================================================== --- head/net-p2p/libtorrent-rasterbar/pkg-plist Mon Mar 6 01:30:40 2017 (r435510) +++ head/net-p2p/libtorrent-rasterbar/pkg-plist Mon Mar 6 01:56:54 2017 (r435511) @@ -1,3 +1,13 @@ +%%TEST%%bin/bt_get +%%TEST%%bin/bt_get2 +%%TEST%%bin/client_test +%%TEST%%bin/connection_tester +%%TEST%%bin/dump_torrent +%%TEST%%bin/fuzz_torrent +%%TEST%%bin/make_torrent +%%TEST%%bin/simple_client +%%TEST%%bin/stats_counters +%%TEST%%bin/upnp_test include/libtorrent/ConvertUTF.h include/libtorrent/add_torrent_params.hpp include/libtorrent/address.hpp