From owner-svn-ports-head@FreeBSD.ORG Tue Jan 20 22:36:03 2015 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 6DDCB98E; Tue, 20 Jan 2015 22:36:03 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 58C0982E; Tue, 20 Jan 2015 22:36:03 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t0KMa3jE076590; Tue, 20 Jan 2015 22:36:03 GMT (envelope-from rakuco@FreeBSD.org) Received: (from rakuco@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t0KMa3U5076589; Tue, 20 Jan 2015 22:36:03 GMT (envelope-from rakuco@FreeBSD.org) Message-Id: <201501202236.t0KMa3U5076589@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: rakuco set sender to rakuco@FreeBSD.org using -f From: Raphael Kubo da Costa Date: Tue, 20 Jan 2015 22:36:03 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r377548 - head/devel/rbtools X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 20 Jan 2015 22:36:03 -0000 Author: rakuco Date: Tue Jan 20 22:36:02 2015 New Revision: 377548 URL: https://svnweb.freebsd.org/changeset/ports/377548 QAT: https://qat.redports.org/buildarchive/r377548/ Log: - Add dependencies on devel/py-six and databases/py-sqlite3. They were not announced but were introduced in this release. - Add USE_PYTHON=concurrent. As the dependency on devel/py-six makes evident, the port is now supposed to work with both Python 2 and Python 3. Modified: head/devel/rbtools/Makefile Modified: head/devel/rbtools/Makefile ============================================================================== --- head/devel/rbtools/Makefile Tue Jan 20 22:25:49 2015 (r377547) +++ head/devel/rbtools/Makefile Tue Jan 20 22:36:02 2015 (r377548) @@ -2,6 +2,7 @@ PORTNAME= ${ORIGNAME:tl} DISTVERSION= 0.7 +PORTREVISION= 1 CATEGORIES= devel MASTER_SITES= http://downloads.reviewboard.org/releases/${ORIGNAME}/${DISTVERSION}/ DISTNAME= ${ORIGNAME}-${DISTVERSION} @@ -11,9 +12,12 @@ COMMENT= Set of client tools to use with LICENSE= MIT +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}six>=1.8.0:${PORTSDIR}/devel/py-six \ + ${PYTHON_PKGNAMEPREFIX}sqlite3>0:${PORTSDIR}/databases/py-sqlite3 + ORIGNAME= RBTools -USES= python:2 -USE_PYTHON= distutils autoplist +USES= python +USE_PYTHON= autoplist concurrent distutils .include