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 BBC24138334 for ; Tue, 19 Feb 2019 11:26:25 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B94FCE0864; Tue, 19 Feb 2019 11:26:24 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 8DEEAE0864 for ; Tue, 19 Feb 2019 11:26:24 +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 C235D335CF2 for ; Tue, 19 Feb 2019 11:26:22 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 5F98F4FF for ; Tue, 19 Feb 2019 11:26:21 +0000 (UTC) From: "Martin Mokrejs" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Martin Mokrejs" Message-ID: <1550575574.b6846dd42e04e42c0103983272b6db0db248f75a.mmokrejs@gentoo> Subject: [gentoo-commits] proj/sci:master commit in: sci-biology/bowtie/ X-VCS-Repository: proj/sci X-VCS-Files: sci-biology/bowtie/bowtie-1.2.2.ebuild X-VCS-Directories: sci-biology/bowtie/ X-VCS-Committer: mmokrejs X-VCS-Committer-Name: Martin Mokrejs X-VCS-Revision: b6846dd42e04e42c0103983272b6db0db248f75a X-VCS-Branch: master Date: Tue, 19 Feb 2019 11:26:21 +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: 71affaa4-2969-4f18-843f-fe0912bc6cc1 X-Archives-Hash: 763f8710d1f6f27b9b43ebabc4bf66a3 commit: b6846dd42e04e42c0103983272b6db0db248f75a Author: Martin Mokrejs fold natur cuni cz> AuthorDate: Tue Feb 19 11:26:14 2019 +0000 Commit: Martin Mokrejs fold natur cuni cz> CommitDate: Tue Feb 19 11:26:14 2019 +0000 URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=b6846dd4 sci-biology/bowtie: removing not working -1.2.2 ebuild Package-Manager: Portage-2.3.61, Repoman-2.3.12 Signed-off-by: Martin Mokrejs fold.natur.cuni.cz> sci-biology/bowtie/bowtie-1.2.2.ebuild | 77 ---------------------------------- 1 file changed, 77 deletions(-) diff --git a/sci-biology/bowtie/bowtie-1.2.2.ebuild b/sci-biology/bowtie/bowtie-1.2.2.ebuild deleted file mode 100644 index cae085bff..000000000 --- a/sci-biology/bowtie/bowtie-1.2.2.ebuild +++ /dev/null @@ -1,77 +0,0 @@ -# Copyright 1999-2019 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit flag-o-matic toolchain-funcs - -DESCRIPTION="Popular short read aligner for Next-generation sequencing data" -HOMEPAGE="http://bowtie-bio.sourceforge.net/" -SRC_URI="mirror://sourceforge/bowtie-bio/${P}-src.zip" - -LICENSE="Artistic" -SLOT="1" -KEYWORDS="" - -IUSE="examples +tbb" - -RDEPEND="tbb? ( dev-cpp/tbb )" -DEPEND="${RDEPEND} - sci-biology/seqan:1.4 - app-arch/unzip" - -DOCS=( AUTHORS NEWS TUTORIAL doc/README ) -HTML_DOCS=( doc/{manual.html,style.css} ) - -PATCHES=( - "${FILESDIR}/${P}-_ContextLss-1.1-1.4.patch" - "${FILESDIR}/${P}-fix-Intel-compilation.patch" - "${FILESDIR}/${P}-unbundle-seqan.patch" -) -# other patches to be still considered -# "${FILESDIR}/${P}-fix-setBegin-call.patch" -# "${FILESDIR}/${P}-seqan-popcount.patch" -# "${FILESDIR}/${P}-seqan-rename-ChunkPool.patch" -# "${FILESDIR}/${P}-seqan-rename-fill-to-resize.patch" -# "${FILESDIR}/${P}-spelling.patch" -# "${FILESDIR}/${P}-tbb-tinythread-missing.patch" -#) - -src_prepare() { - default - - # remove bundled libraries, use system seqan 1.4 - rm -rf SeqAn-1.1/ third_party/ || die - - # innocuous non-security flags, prevent log pollution - append-cxxflags \ - -Wno-unused-local-typedefs \ - -Wno-unused-but-set-variable \ - -Wno-unused-variable -} - -src_compile() { - emake \ - CC="$(tc-getCC)" \ - CPP="$(tc-getCXX)" \ - CFLAGS="" \ - CXXFLAGS="" \ - EXTRA_FLAGS="${LDFLAGS}" \ - RELEASE_FLAGS="${CXXFLAGS}" \ - WITH_TBB="$(usex tbb 1 0)" -} - -src_install() { - dobin ${PN} ${PN}-* - - exeinto /usr/libexec/${PN} - doexe scripts/* - - newman MANUAL ${PN}.1 - einstalldocs - - if use examples; then - insinto /usr/share/${PN} - doins -r genomes indexes - fi -}