Gentoo Archives: gentoo-commits

From: Andrew Ammerlaan <andrewammerlaan@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/sci:master commit in: sci-biology/mgblast/
Date: Tue, 31 Aug 2021 09:28:24
Message-Id: 1630402085.2175a5c65e6a29e243f25f7d1e237874d08020f0.andrewammerlaan@gentoo
1 commit: 2175a5c65e6a29e243f25f7d1e237874d08020f0
2 Author: Andrew Ammerlaan <andrewammerlaan <AT> gentoo <DOT> org>
3 AuthorDate: Tue Aug 31 09:28:05 2021 +0000
4 Commit: Andrew Ammerlaan <andrewammerlaan <AT> gentoo <DOT> org>
5 CommitDate: Tue Aug 31 09:28:05 2021 +0000
6 URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=2175a5c6
7
8 sci-biology/mgblast: remove last-rited pack
9
10 Signed-off-by: Andrew Ammerlaan <andrewammerlaan <AT> gentoo.org>
11
12 sci-biology/mgblast/metadata.xml | 12 ------------
13 sci-biology/mgblast/mgblast-0.1.ebuild | 34 ----------------------------------
14 2 files changed, 46 deletions(-)
15
16 diff --git a/sci-biology/mgblast/metadata.xml b/sci-biology/mgblast/metadata.xml
17 deleted file mode 100644
18 index 138cb7705..000000000
19 --- a/sci-biology/mgblast/metadata.xml
20 +++ /dev/null
21 @@ -1,12 +0,0 @@
22 -<?xml version="1.0" encoding="UTF-8"?>
23 -<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
24 -<pkgmetadata>
25 - <maintainer type="person">
26 - <email>mmokrejs@×××××××××××××××.cz</email>
27 - <name>Martin Mokrejs</name>
28 - </maintainer>
29 - <maintainer type="project">
30 - <email>sci-biology@g.o</email>
31 - <name>Gentoo Biology Project</name>
32 - </maintainer>
33 -</pkgmetadata>
34
35 diff --git a/sci-biology/mgblast/mgblast-0.1.ebuild b/sci-biology/mgblast/mgblast-0.1.ebuild
36 deleted file mode 100644
37 index 9eb877c27..000000000
38 --- a/sci-biology/mgblast/mgblast-0.1.ebuild
39 +++ /dev/null
40 @@ -1,34 +0,0 @@
41 -# Copyright 1999-2021 Gentoo Authors
42 -# Distributed under the terms of the GNU General Public License v2
43 -
44 -EAPI=7
45 -
46 -DESCRIPTION="Customized version of megablast from TIGR Gene Indices project"
47 -HOMEPAGE="https://web.archive.org/web/20140726030702/http://compbio.dfci.harvard.edu/tgi/software/"
48 -SRC_URI="ftp://occams.dfci.harvard.edu/pub/bio/tgi/software/tgicl/mgblast.tar.gz -> ${P}.tar.gz"
49 -
50 -LICENSE="Artistic"
51 -SLOT="0"
52 -KEYWORDS=""
53 -
54 -DEPEND="sci-biology/ncbi-tools"
55 -RDEPEND="${DEPEND}"
56 -
57 -S="${WORKDIR}/${PN}"
58 -
59 -# mgblast needs old version of ncbi-tools unpacked and compiled during its own compilation
60 -# from newer tools you need to include blfmtutl.h but the next error is no go for me:
61 -# mgblast.c:2205: error: too few arguments to function ‘BXMLBuildOneQueryIteration’
62 -
63 -# Quoting from mgblast/README: the present package was built and tested only with the release 20060507
64 -
65 -src_prepare(){
66 - # mgblast cannot be compiled against newer ncbi-tools but let's try
67 - mv makefile Makefile 2>/dev/null || true
68 - sed -i -e 's#/usr/local/projects/tgi/ncbitoolkit/ncbi#/usr#' \
69 - -e's#NCBIDIR = /mylocal/src/ncbi#NCBIDIR = /usr#' \
70 - -e's#NCBI_INCDIR = .*#NCBI_INCDIR = /usr/include/ncbi#' \
71 - -e 's#NCBI_LIBDIR = .*#NCBI_LIBDIR = /usr/lib#' \
72 - -e "s#-I-#-iquote#" Makefile || die # a PATH to NCBI-TOOLKIT (/usr/lib) while NOT /usr/lib/ncbi-tools++ !
73 - default
74 -}