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 56852139694 for ; Sat, 20 May 2017 05:39:05 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 90A7BE0D29; Sat, 20 May 2017 05:39:04 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 70705E0D29 for ; Sat, 20 May 2017 05:39:04 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 81DDC3416C2 for ; Sat, 20 May 2017 05:39:03 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 49BB3745C for ; Sat, 20 May 2017 05:39:02 +0000 (UTC) From: "Denis Dupeyron" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Denis Dupeyron" Message-ID: <1495258655.ab943748ba5e264c0b880ba65b0ce80f57df0d81.calchan@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/jira/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/jira/jira-1.0.10.ebuild dev-python/jira/metadata.xml X-VCS-Directories: dev-python/jira/ X-VCS-Committer: calchan X-VCS-Committer-Name: Denis Dupeyron X-VCS-Revision: ab943748ba5e264c0b880ba65b0ce80f57df0d81 X-VCS-Branch: master Date: Sat, 20 May 2017 05:39:02 +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: b78e7ded-2764-4b04-92a2-54f1d937caf9 X-Archives-Hash: 7e609188aaca41d3198414eee78be1d6 commit: ab943748ba5e264c0b880ba65b0ce80f57df0d81 Author: Denis Dupeyron gentoo org> AuthorDate: Sat May 20 05:37:35 2017 +0000 Commit: Denis Dupeyron gentoo org> CommitDate: Sat May 20 05:37:35 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ab943748 dev-python/jira: fix dependencies for 1.0.10 dev-python/jira/jira-1.0.10.ebuild | 15 ++++++++++----- dev-python/jira/metadata.xml | 4 ++++ 2 files changed, 14 insertions(+), 5 deletions(-) diff --git a/dev-python/jira/jira-1.0.10.ebuild b/dev-python/jira/jira-1.0.10.ebuild index 46a2952383b..d739f73a62c 100644 --- a/dev-python/jira/jira-1.0.10.ebuild +++ b/dev-python/jira/jira-1.0.10.ebuild @@ -14,13 +14,18 @@ SLOT="0" KEYWORDS="~amd64" IUSE="filemagic ipython oauth" -DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]" -RDEPEND="${DEPEND} +DEPEND=" + dev-python/pbr[${PYTHON_USEDEP}] + dev-python/pytest-runner[${PYTHON_USEDEP}] + dev-python/setuptools[${PYTHON_USEDEP}] + " +RDEPEND=" + dev-python/requests[${PYTHON_USEDEP}] + dev-python/six[${PYTHON_USEDEP}] filemagic? ( dev-python/filemagic[${PYTHON_USEDEP}] ) ipython? ( dev-python/ipython[${PYTHON_USEDEP}] ) oauth? ( - dev-python/requests-oauthlib[${PYTHON_USEDEP}] dev-python/pycrypto[${PYTHON_USEDEP}] + dev-python/requests-oauthlib[${PYTHON_USEDEP}] ) - dev-python/requests[${PYTHON_USEDEP}] - dev-python/six[${PYTHON_USEDEP}]" + " diff --git a/dev-python/jira/metadata.xml b/dev-python/jira/metadata.xml index 59096466c4b..59bf90305a6 100644 --- a/dev-python/jira/metadata.xml +++ b/dev-python/jira/metadata.xml @@ -5,6 +5,10 @@ wizardedit@gentoo.org Austin English + + calchan@gentoo.org + Denis Dupeyron + Python library for interacting with JIRA via REST APIs.