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 BF6FA138334 for ; Fri, 13 Jul 2018 21:40:41 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 0E22FE0876; Fri, 13 Jul 2018 21:40:28 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 97B7CE086D for ; Fri, 13 Jul 2018 21:40:28 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 362B8335CC9 for ; Fri, 13 Jul 2018 21:40:27 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id E5A6B382 for ; Fri, 13 Jul 2018 21:40:22 +0000 (UTC) From: "gerion" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "gerion" Message-ID: <1526643404.0c751edeadca4581428b02a6b06dc3d77b4554be.gerion@gentoo> Subject: [gentoo-commits] repo/user/gerislay:master commit in: dev-python/sra/ X-VCS-Repository: repo/user/gerislay X-VCS-Files: dev-python/sra/Manifest dev-python/sra/sra-9999.ebuild X-VCS-Directories: dev-python/sra/ X-VCS-Committer: gerion X-VCS-Committer-Name: gerion X-VCS-Revision: 0c751edeadca4581428b02a6b06dc3d77b4554be X-VCS-Branch: master Date: Fri, 13 Jul 2018 21:40:22 +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: 8dab1e3e-6964-4379-998b-c5da37da140d X-Archives-Hash: 14235e6b081c84bdeedf34023deb596e commit: 0c751edeadca4581428b02a6b06dc3d77b4554be Author: Gerion Entrup flump de> AuthorDate: Fri May 18 11:36:44 2018 +0000 Commit: gerion flump de> CommitDate: Fri May 18 11:36:44 2018 +0000 URL: https://gitweb.gentoo.org/repo/user/gerislay.git/commit/?id=0c751ede add additional dependencies to dev-python/sra dev-python/sra/Manifest | 1 + dev-python/sra/sra-9999.ebuild | 24 ++++++++++++++++++++++++ 2 files changed, 25 insertions(+) diff --git a/dev-python/sra/Manifest b/dev-python/sra/Manifest new file mode 100644 index 0000000..ba36830 --- /dev/null +++ b/dev-python/sra/Manifest @@ -0,0 +1 @@ +EBUILD sra-9999.ebuild 610 BLAKE2B 267b12885119ccf8af311cced16e06155d41abd980d07fdf9c5e83e0a9e8cfdbab96ec50e50d7ac1f230fd142fd94144f0ae5b91a25fdaf66d4d052b134eb260 SHA512 8e0e36b39a77d812dfde76d921b756a85d4d19a93e23808744a9a29deccbdadc3aa784558936ed2f1e72ec34a7900bce2f808f67a8a575b703984fc44120e44c diff --git a/dev-python/sra/sra-9999.ebuild b/dev-python/sra/sra-9999.ebuild new file mode 100644 index 0000000..4e8df17 --- /dev/null +++ b/dev-python/sra/sra-9999.ebuild @@ -0,0 +1,24 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +PYTHON_COMPAT=( python3_5 python3_6 ) +inherit distutils-r1 git-r3 + +DESCRIPTION="SRA Command Line Tools" +HOMEPAGE="https://scm.sra.uni-hannover.de/source/sra-cli/" +EGIT_REPO_URI="file:///home/gerion/sourcecode/sra-cli" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64" +IUSE="" + +DEPEND=" + dev-python/pyyaml[${PYTHON_USEDEP}] + dev-python/python-dateutil[${PYTHON_USEDEP}] + dev-python/rauth[${PYTHON_USEDEP}] + dev-python/requests[${PYTHON_USEDEP}] + dev-python/fusepy[${PYTHON_USEDEP}]" +RDEPEND="${DEPEND}"