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 70CA3138359 for ; Mon, 3 Aug 2020 16:56:09 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A4F85E09B5; Mon, 3 Aug 2020 16:56:08 +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 8A911E09B5 for ; Mon, 3 Aug 2020 16:56:08 +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 9AA6334EF83 for ; Mon, 3 Aug 2020 16:56:07 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 97367309 for ; Mon, 3 Aug 2020 16:56:04 +0000 (UTC) From: "David Seifert" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "David Seifert" Message-ID: <1596473675.774908698f411d554226b066ec933a64afca0c4f.soap@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sci-biology/HTSeq/ X-VCS-Repository: repo/gentoo X-VCS-Files: sci-biology/HTSeq/HTSeq-9999.ebuild X-VCS-Directories: sci-biology/HTSeq/ X-VCS-Committer: soap X-VCS-Committer-Name: David Seifert X-VCS-Revision: 774908698f411d554226b066ec933a64afca0c4f X-VCS-Branch: master Date: Mon, 3 Aug 2020 16:56:04 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 2f38d97c-36a0-467e-aa5c-0661b2e12fdb X-Archives-Hash: 2db0e1375b9136707dfa1946c014e718 commit: 774908698f411d554226b066ec933a64afca0c4f Author: David Seifert gentoo org> AuthorDate: Mon Aug 3 16:54:35 2020 +0000 Commit: David Seifert gentoo org> CommitDate: Mon Aug 3 16:54:35 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=77490869 sci-biology/HTSeq: Sync live ebuild Package-Manager: Portage-3.0.1, Repoman-2.3.23 Signed-off-by: David Seifert gentoo.org> sci-biology/HTSeq/HTSeq-9999.ebuild | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/sci-biology/HTSeq/HTSeq-9999.ebuild b/sci-biology/HTSeq/HTSeq-9999.ebuild index 18a07a7b9f9..1f5693d9a13 100644 --- a/sci-biology/HTSeq/HTSeq-9999.ebuild +++ b/sci-biology/HTSeq/HTSeq-9999.ebuild @@ -1,9 +1,9 @@ # Copyright 1999-2020 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=6 +EAPI=7 -PYTHON_COMPAT=( python3_6 ) +PYTHON_COMPAT=( python3_{6..9} ) inherit distutils-r1 @@ -12,9 +12,11 @@ HOMEPAGE="https://htseq.readthedocs.io/" if [[ ${PV} == *9999 ]]; then inherit git-r3 - EGIT_REPO_URI="https://github.com/simon-anders/htseq.git" + EGIT_REPO_URI="https://github.com/htseq/htseq.git" else - SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + SRC_URI="https://github.com/htseq/htseq/archive/release_${PV}.tar.gz -> ${P}.tar.gz" + + S="${WORKDIR}"/htseq-release_${PV} KEYWORDS="~amd64" fi @@ -25,7 +27,7 @@ RDEPEND=" dev-python/numpy[${PYTHON_USEDEP}] dev-python/matplotlib[${PYTHON_USEDEP}] sci-biology/pysam[${PYTHON_USEDEP}]" -DEPEND=" - ${RDEPEND} +DEPEND="${RDEPEND}" +BDEPEND=" >=dev-lang/swig-3.0.8 dev-python/cython[${PYTHON_USEDEP}]"