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 AF168138359 for ; Mon, 3 Aug 2020 17:40:37 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id DF03AE08F9; Mon, 3 Aug 2020 17:40:36 +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 C38CAE08F9 for ; Mon, 3 Aug 2020 17:40:36 +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 8931F34F20C for ; Mon, 3 Aug 2020 17:40:33 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id E4C82274 for ; Mon, 3 Aug 2020 17:40:24 +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: <1596476393.e4e256abcf64dccd8c72ad565bd988ef49e740be.soap@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sci-biology/samtools/ X-VCS-Repository: repo/gentoo X-VCS-Files: sci-biology/samtools/samtools-0.1.20-r3.ebuild sci-biology/samtools/samtools-0.1.20-r4.ebuild X-VCS-Directories: sci-biology/samtools/ X-VCS-Committer: soap X-VCS-Committer-Name: David Seifert X-VCS-Revision: e4e256abcf64dccd8c72ad565bd988ef49e740be X-VCS-Branch: master Date: Mon, 3 Aug 2020 17:40:24 +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: 7446ac43-7038-4235-b732-24405a0af59b X-Archives-Hash: 664aaea867ed0943248645b84664a3ab commit: e4e256abcf64dccd8c72ad565bd988ef49e740be Author: David Seifert gentoo org> AuthorDate: Mon Aug 3 17:39:53 2020 +0000 Commit: David Seifert gentoo org> CommitDate: Mon Aug 3 17:39:53 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e4e256ab sci-biology/samtools: Remove ancient py2 varfilter.py script Closes: https://bugs.gentoo.org/735444 Package-Manager: Portage-3.0.1, Repoman-2.3.23 Signed-off-by: David Seifert gentoo.org> ...-0.1.20-r3.ebuild => samtools-0.1.20-r4.ebuild} | 36 ++++++++-------------- 1 file changed, 13 insertions(+), 23 deletions(-) diff --git a/sci-biology/samtools/samtools-0.1.20-r3.ebuild b/sci-biology/samtools/samtools-0.1.20-r4.ebuild similarity index 66% rename from sci-biology/samtools/samtools-0.1.20-r3.ebuild rename to sci-biology/samtools/samtools-0.1.20-r4.ebuild index 5cfcfd7f6a7..2c76f0580f8 100644 --- a/sci-biology/samtools/samtools-0.1.20-r3.ebuild +++ b/sci-biology/samtools/samtools-0.1.20-r4.ebuild @@ -1,11 +1,9 @@ -# Copyright 1999-2016 Gentoo Foundation +# Copyright 1999-2020 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=6 +EAPI=7 -PYTHON_COMPAT=( python2_7 ) - -inherit python-single-r1 toolchain-funcs +inherit toolchain-funcs DESCRIPTION="Utilities for analysing and manipulating the SAM/BAM alignment formats" HOMEPAGE="http://samtools.sourceforge.net/" @@ -14,23 +12,17 @@ SRC_URI="https://github.com/samtools/samtools/archive/${PV}.tar.gz -> ${P}.tar.g LICENSE="MIT" SLOT="0.1-legacy" KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux ~x64-macos" -IUSE="examples" -REQUIRED_USE="${PYTHON_REQUIRED_USE}" -RDEPEND="${PYTHON_DEPS} +RDEPEND=" sys-libs/ncurses:0= dev-lang/perl" -DEPEND="${RDEPEND} - virtual/pkgconfig" +DEPEND="${RDEPEND}" +BDEPEND="virtual/pkgconfig" -PATCHES=( - "${FILESDIR}/${P}-buildsystem.patch" -) +PATCHES=( "${FILESDIR}"/${P}-buildsystem.patch ) src_prepare() { default - # required, otherwise python_fix_shebang errors out - sed -i 's~/software/bin/python~/usr/bin/env python~' misc/varfilter.py || die tc-export CC AR } @@ -48,9 +40,9 @@ src_install() { mkdir "${ED%/}"/usr/bin || die mv "${ED%/}"/usr/{${PN}-${SLOT},bin/} || die - # ... do the same with the python script, but also fix the shebang - mv "${ED%/}"/usr/bin/${PN}-${SLOT}/varfilter{,-${SLOT}}.py || die - python_fix_shebang "${ED%/}"/usr/bin/${PN}-${SLOT}/varfilter-${SLOT}.py + # remove py2 script, has been removed upstream anyways + # https://github.com/samtools/samtools/issues/1125 + rm "${ED%/}"/usr/bin/${PN}-${SLOT}/varfilter.py || die # fix perl shebangs pushd "${ED%/}"/usr/bin/${PN}-${SLOT} >/dev/null || die @@ -70,14 +62,12 @@ src_install() { doman ${PN}-${SLOT}.1 einstalldocs - if use examples; then - dodoc -r examples - docompress -x /usr/share/doc/${PF}/examples - fi + dodoc -r examples + docompress -x /usr/share/doc/${PF}/examples } pkg_postinst() { elog "This version of samtools should *not* be your first choice for working" elog "with NGS data. It is installed solely for programs requiring it." - elog "It is recommended that you use >=sci-biology/samtools-1.2." + elog "It is recommended that you use >=sci-biology/samtools-1.10." }