commit: 1ce4834139112fbac00b1ce1a5b2abe2c9510aed Author: Tiziano Müller <dev-zero <AT> gentoo <DOT> org> AuthorDate: Mon Dec 8 09:02:26 2014 +0000 Commit: Tiziano Müller <dev-zero <AT> gentoo <DOT> org> CommitDate: Mon Dec 8 09:02:26 2014 +0000 URL: http://sources.gentoo.org/gitweb/?p=dev/dev-zero.git;a=commit;h=1ce48341
initial commit --- app-misc/bugwarrior/bugwarrior-scm.ebuild | 52 +++++++++++++++++++++++++++++++ 1 file changed, 52 insertions(+) diff --git a/app-misc/bugwarrior/bugwarrior-scm.ebuild b/app-misc/bugwarrior/bugwarrior-scm.ebuild new file mode 100644 index 0000000..06c8def --- /dev/null +++ b/app-misc/bugwarrior/bugwarrior-scm.ebuild @@ -0,0 +1,52 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: $ + +EAPI=5 + +DISTUTILS_SINGLE_IMPL=1 + +# due to Twiggy being incompatible with py3 (at least the released version) +PYTHON_COMPAT=( python2_7 ) + +inherit distutils-r1 git-r3 eutils + +DESCRIPTION="Pull github, bitbucket, and trac issues into taskwarrior" +HOMEPAGE="http://pypi.python.org/pypi/bugwarrior" +EGIT_REPO_URI="https://github.com/ralphbean/bugwarrior.git" + +LICENSE="GPL-3+" +SLOT="0" +KEYWORDS="~amd64" +IUSE="" + +DEPEND=">=dev-python/taskw-0.8[${PYTHON_USEDEP}] + dev-python/python-dateutil[${PYTHON_USEDEP}] + dev-python/pytz[${PYTHON_USEDEP}] + >=dev-python/jinja-2.7.2[${PYTHON_USEDEP}] + dev-python/pycurl[${PYTHON_USEDEP}] + >=dev-python/dogpile-cache-0.5.3[${PYTHON_USEDEP}] + >=dev-python/lockfile-0.9.1[${PYTHON_USEDEP}] + dev-python/click[${PYTHON_USEDEP}] + dev-python/Twiggy[${PYTHON_USEDEP}] + dev-python/requests[${PYTHON_USEDEP}] + dev-python/six[${PYTHON_USEDEP}] + dev-python/offtrac[${PYTHON_USEDEP}] + dev-python/python-bugzilla[${PYTHON_USEDEP}] + dev-python/keyring[${PYTHON_USEDEP}]" + +# optional services: +# * ActiveCollab 2 & 4: pypandoc, pyac +# * Jira: jira +# * Megaplan: megaplan +# * Phabricator: phabricator-python +# * VersionOne: v1pysdk +RDEPEND="${DEPEND}" + +pkg_postinst() { + optfeature "ActiveCollab 2/4 support" dev-python/pypandoc dev-python/pyac + optfeature "Jira support" dev-python/jira + optfeature "Megaplan support" dev-python/megaplan + optfeature "Phabricator support" dev-python/phabricator-python + optfeature "VersionOne support" dev-python/v1pysdk +}
