From owner-svn-ports-all@freebsd.org Sat Jun 27 01:46:29 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 2F2E398C2BB; Sat, 27 Jun 2015 01:46:29 +0000 (UTC) (envelope-from koobs@FreeBSD.org) 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 133991C99; Sat, 27 Jun 2015 01:46:29 +0000 (UTC) (envelope-from koobs@FreeBSD.org) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t5R1kSJJ013281; Sat, 27 Jun 2015 01:46:28 GMT (envelope-from koobs@FreeBSD.org) Received: (from koobs@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t5R1kSB5013275; Sat, 27 Jun 2015 01:46:28 GMT (envelope-from koobs@FreeBSD.org) Message-Id: <201506270146.t5R1kSB5013275@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: koobs set sender to koobs@FreeBSD.org using -f From: Kubilay Kocak Date: Sat, 27 Jun 2015 01:46:28 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r390687 - in head/deskutils/py-bugwarrior: . 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.20 Precedence: 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, 27 Jun 2015 01:46:29 -0000 Author: koobs Date: Sat Jun 27 01:46:27 2015 New Revision: 390687 URL: https://svnweb.freebsd.org/changeset/ports/390687 Log: deskutils/py-bugwarrior: Update to 1.1.4 - Update to 1.1.4 - Add TEST_DEPENDS and regression-test target now that tests are included in the PyPI sdist [1] Thanks Ralph! - Patch setup.py to enable test command until PR #222 [2] is in release. Changes: https://github.com/ralphbean/bugwarrior/blob/1.1.4/CHANGELOG.rst [1] https://github.com/ralphbean/bugwarrior/pull/221 [2] https://github.com/ralphbean/bugwarrior/pull/222 Added: head/deskutils/py-bugwarrior/files/ head/deskutils/py-bugwarrior/files/patch-setup.py (contents, props changed) Modified: head/deskutils/py-bugwarrior/Makefile head/deskutils/py-bugwarrior/distinfo Modified: head/deskutils/py-bugwarrior/Makefile ============================================================================== --- head/deskutils/py-bugwarrior/Makefile Sat Jun 27 01:37:38 2015 (r390686) +++ head/deskutils/py-bugwarrior/Makefile Sat Jun 27 01:46:27 2015 (r390687) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= bugwarrior -PORTVERSION= 1.1.3 +PORTVERSION= 1.1.4 CATEGORIES= deskutils python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -28,8 +28,14 @@ RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}twig ${PYTHON_PKGNAMEPREFIX}lockfile>=0.9.1:${PORTSDIR}/devel/py-lockfile \ ${PYTHON_PKGNAMEPREFIX}click>0:${PORTSDIR}/devel/py-click \ ${PYTHON_PKGNAMEPREFIX}xdg>0:${PORTSDIR}/devel/py-xdg +TEST_DEPENDS= ${PYTHON_PKGNAMEPREFIX}mock>0:${PORTSDIR}/devel/py-mock \ + ${PYTHON_PKGNAMEPREFIX}unittest2>0:${PORTSDIR}/devel/py-mock \ + ${PYTHON_PKGNAMEPREFIX}nose>0:${PORTSDIR}/devel/py-nose USES= python:2 USE_PYTHON= autoplist concurrent distutils +regression-test: build + @cd ${WRKSRC} && ${PYTHON_CMD} ${PYDISTUTILS_SETUP} test + .include Modified: head/deskutils/py-bugwarrior/distinfo ============================================================================== --- head/deskutils/py-bugwarrior/distinfo Sat Jun 27 01:37:38 2015 (r390686) +++ head/deskutils/py-bugwarrior/distinfo Sat Jun 27 01:46:27 2015 (r390687) @@ -1,2 +1,2 @@ -SHA256 (bugwarrior-1.1.3.tar.gz) = a92d1785fc7975c8beb7e3426e839fb771d29c80b186670ea365ecffa0fcee64 -SIZE (bugwarrior-1.1.3.tar.gz) = 62439 +SHA256 (bugwarrior-1.1.4.tar.gz) = 6bb687d702b1a91cdd13f067928bcf3018f615954132697fcc287f4182dd2acf +SIZE (bugwarrior-1.1.4.tar.gz) = 81566 Added: head/deskutils/py-bugwarrior/files/patch-setup.py ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/deskutils/py-bugwarrior/files/patch-setup.py Sat Jun 27 01:46:27 2015 (r390687) @@ -0,0 +1,10 @@ +--- setup.py.orig 2015-02-25 17:30:21 UTC ++++ setup.py +@@ -52,6 +52,7 @@ setup(name='bugwarrior', + "jira>=0.22", + "megaplan>=1.4", + ], ++ test_suite='nose.collector', + entry_points=""" + [console_scripts] + bugwarrior-pull = bugwarrior:pull