From owner-svn-ports-all@freebsd.org Thu Jun 25 15:17:15 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 167FA98C288; Thu, 25 Jun 2015 15:17:15 +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 0791E1DCF; Thu, 25 Jun 2015 15:17:15 +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 t5PFHEX9033585; Thu, 25 Jun 2015 15:17:14 GMT (envelope-from koobs@FreeBSD.org) Received: (from koobs@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t5PFHEdZ033580; Thu, 25 Jun 2015 15:17:14 GMT (envelope-from koobs@FreeBSD.org) Message-Id: <201506251517.t5PFHEdZ033580@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: koobs set sender to koobs@FreeBSD.org using -f From: Kubilay Kocak Date: Thu, 25 Jun 2015 15:17:13 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r390580 - in head/deskutils: . py-bugwarrior X-SVN-Group: ports-head MIME-Version: 1.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: Thu, 25 Jun 2015 15:17:15 -0000 Author: koobs Date: Thu Jun 25 15:17:13 2015 New Revision: 390580 URL: https://svnweb.freebsd.org/changeset/ports/390580 Log: [NEW] deskutils/py-bugwarrior: Sync issue & bug systems with taskwarrior bugwarrior is a command line utility for updating your local taskwarrior database from your forge issue trackers. It currently supports the following remote resources: * Github (api v3) * Gitlab (api v3) * BitBucket (Atlassian) * Trac * Bugzilla * Megaplan * Teamlab * Redmine * Jira (Atlassian) * Activecollab (2.x and 4.x) * Phabricator * VersionOne WWW: https://github.com/ralphbean/bugwarrior Added: head/deskutils/py-bugwarrior/ head/deskutils/py-bugwarrior/Makefile (contents, props changed) head/deskutils/py-bugwarrior/distinfo (contents, props changed) head/deskutils/py-bugwarrior/pkg-descr (contents, props changed) Modified: head/deskutils/Makefile Modified: head/deskutils/Makefile ============================================================================== --- head/deskutils/Makefile Thu Jun 25 15:11:02 2015 (r390579) +++ head/deskutils/Makefile Thu Jun 25 15:17:13 2015 (r390580) @@ -191,6 +191,7 @@ SUBDIR += plopfolio SUBDIR += preferences SUBDIR += py-khal + SUBDIR += py-bugwarrior SUBDIR += py-pycarddav SUBDIR += py-pystash SUBDIR += py-send2trash Added: head/deskutils/py-bugwarrior/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/deskutils/py-bugwarrior/Makefile Thu Jun 25 15:17:13 2015 (r390580) @@ -0,0 +1,35 @@ +# Created by: Kubilay Kocak +# $FreeBSD$ + +PORTNAME= bugwarrior +PORTVERSION= 1.1.3 +CATEGORIES= deskutils python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= koobs@FreeBSD.org +COMMENT= Sync issue & bug tracking systems with taskwarrior + +LICENSE= GPLv3 +LICENSE_FILE= ${WRKSRC}/LICENSE.txt + +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}twiggy>0:${PORTSDIR}/devel/py-twiggy \ + ${PYTHON_PKGNAMEPREFIX}requests>0:${PORTSDIR}/www/py-requests \ + ${PYTHON_PKGNAMEPREFIX}offtrac>0:${PORTSDIR}/devel/py-offtrac \ + ${PYTHON_PKGNAMEPREFIX}python-bugzilla>0:${PORTSDIR}/devel/py-python-bugzilla \ + ${PYTHON_PKGNAMEPREFIX}taskw>=0.8:${PORTSDIR}/deskutils/py-taskw \ + ${PYTHON_PKGNAMEPREFIX}dateutil>0:${PORTSDIR}/devel/py-dateutil \ + ${PYTHON_PKGNAMEPREFIX}pytz>0:${PORTSDIR}/devel/py-pytz \ + ${PYTHON_PKGNAMEPREFIX}keyring>0:${PORTSDIR}/security/py-keyring \ + ${PYTHON_PKGNAMEPREFIX}six>0:${PORTSDIR}/devel/py-six \ + ${PYTHON_PKGNAMEPREFIX}Jinja2>=2.7.2:${PORTSDIR}/devel/py-Jinja2 \ + ${PYTHON_PKGNAMEPREFIX}curl>0:${PORTSDIR}/ftp/py-curl \ + ${PYTHON_PKGNAMEPREFIX}dogpile.cache>=0.5.3:${PORTSDIR}/devel/py-dogpile.cache \ + ${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 + +USES= python:2 +USE_PYTHON= autoplist concurrent distutils + +.include Added: head/deskutils/py-bugwarrior/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/deskutils/py-bugwarrior/distinfo Thu Jun 25 15:17:13 2015 (r390580) @@ -0,0 +1,2 @@ +SHA256 (bugwarrior-1.1.3.tar.gz) = a92d1785fc7975c8beb7e3426e839fb771d29c80b186670ea365ecffa0fcee64 +SIZE (bugwarrior-1.1.3.tar.gz) = 62439 Added: head/deskutils/py-bugwarrior/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/deskutils/py-bugwarrior/pkg-descr Thu Jun 25 15:17:13 2015 (r390580) @@ -0,0 +1,19 @@ +bugwarrior is a command line utility for updating your local taskwarrior +database from your forge issue trackers. + +It currently supports the following remote resources: + + * Github (api v3) + * Gitlab (api v3) + * BitBucket (Atlassian) + * Trac + * Bugzilla + * Megaplan + * Teamlab + * Redmine + * Jira (Atlassian) + * Activecollab (2.x and 4.x) + * Phabricator + * VersionOne + +WWW: https://github.com/ralphbean/bugwarrior