From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 940EF1395E2 for ; Sun, 20 Nov 2016 14:01:51 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id ECA15E0C40; Sun, 20 Nov 2016 14:01:45 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id D5184E0C40 for ; Sun, 20 Nov 2016 14:01:45 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id AED033411FB for ; Sun, 20 Nov 2016 14:01:44 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 9EF72492 for ; Sun, 20 Nov 2016 14:01:42 +0000 (UTC) From: "Manuel Rüger" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Manuel Rüger" Message-ID: <1479650345.f7d95f28c2ba81e526811a6ea19354b6d8b0c667.mrueg@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-misc/jira-cli/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-misc/jira-cli/jira-cli-2.1.4-r1.ebuild X-VCS-Directories: app-misc/jira-cli/ X-VCS-Committer: mrueg X-VCS-Committer-Name: Manuel Rüger X-VCS-Revision: f7d95f28c2ba81e526811a6ea19354b6d8b0c667 X-VCS-Branch: master Date: Sun, 20 Nov 2016 14:01:42 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: b976693f-d767-44c9-806c-e58b38ae19e9 X-Archives-Hash: bdceba2f9547dc9d5e91f31b39ff48da commit: f7d95f28c2ba81e526811a6ea19354b6d8b0c667 Author: Manuel Rüger gentoo org> AuthorDate: Sun Nov 20 13:59:05 2016 +0000 Commit: Manuel Rüger gentoo org> CommitDate: Sun Nov 20 13:59:05 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f7d95f28 app-misc/jira-cli: Filter deps from requirements Package-Manager: portage-2.3.2 app-misc/jira-cli/jira-cli-2.1.4-r1.ebuild | 47 ++++++++++++++++++++++++++++++ 1 file changed, 47 insertions(+) diff --git a/app-misc/jira-cli/jira-cli-2.1.4-r1.ebuild b/app-misc/jira-cli/jira-cli-2.1.4-r1.ebuild new file mode 100644 index 00000000..9a827af --- /dev/null +++ b/app-misc/jira-cli/jira-cli-2.1.4-r1.ebuild @@ -0,0 +1,47 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 +PYTHON_COMPAT=(python{2_7,3_4}) + +inherit distutils-r1 + +DESCRIPTION="Simple command line utility to interact with your jira instance" +HOMEPAGE="https://github.com/alisaifee/jira-cli" +SRC_URI="https://github.com/alisaifee/jira-cli/archive/${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64" +IUSE="test" + +CDEPEND="dev-python/setuptools[${PYTHON_USEDEP}]" + +RDEPEND="${CDEPEND} + dev-python/requests[${PYTHON_USEDEP}] + dev-python/termcolor[${PYTHON_USEDEP}] + dev-python/six[${PYTHON_USEDEP}] + dev-python/jira[${PYTHON_USEDEP}] + dev-python/suds[${PYTHON_USEDEP}] + >=dev-python/keyring-10.0.2-r1[${PYTHON_USEDEP}] + dev-python/keyrings_alt[${PYTHON_USEDEP}]" + +DEPEND="${CDEPEND} + test? ( ${RDEPEND} + >=dev-python/coverage-4.0.3[${PYTHON_USEDEP}] + dev-python/hiro[${PYTHON_USEDEP}] + dev-python/nose[${PYTHON_USEDEP}] + dev-python/mock[${PYTHON_USEDEP}] + >=dev-python/vcrpy-1.7.4[${PYTHON_USEDEP}] )" + +RESTRICT="test" + +python_prepare_all() { + sed -i -e '/ordereddict/d' -e '/argparse/d' requirements/main.txt || die + distutils-r1_python_prepare_all +} + +python_test() { + nosetests || die +}