Gentoo Archives: gentoo-commits

From: Martin Mokrejs <mmokrejs@×××××××××××××××.cz>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/sci:master commit in: sci-biology/exomiser-bin/
Date: Wed, 30 Mar 2016 16:33:24
Message-Id: 1459355441.4215f67e0da1eb2a2600f0b30a9e6032ddea342c.mmokrejs@gentoo
1 commit: 4215f67e0da1eb2a2600f0b30a9e6032ddea342c
2 Author: Martin Mokrejš <mmokrejs <AT> fold <DOT> natur <DOT> cuni <DOT> cz>
3 AuthorDate: Wed Mar 30 16:30:41 2016 +0000
4 Commit: Martin Mokrejs <mmokrejs <AT> fold <DOT> natur <DOT> cuni <DOT> cz>
5 CommitDate: Wed Mar 30 16:30:41 2016 +0000
6 URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=4215f67e
7
8 sci-biology/exomiser-bin: improve ebuild, fix LICENSE, a 19GB files should be fetched manually but the ebuild should get access to it, unpack it and install as the files make grounding for a usable workspace
9
10 Package-Manager: portage-2.2.28
11
12 sci-biology/exomiser-bin/exomiser-bin-7.0.0.ebuild | 23 ----------------
13 sci-biology/exomiser-bin/exomiser-bin-7.2.1.ebuild | 31 ++++++++++++++++++++++
14 2 files changed, 31 insertions(+), 23 deletions(-)
15
16 diff --git a/sci-biology/exomiser-bin/exomiser-bin-7.0.0.ebuild b/sci-biology/exomiser-bin/exomiser-bin-7.0.0.ebuild
17 deleted file mode 100644
18 index c58cabf..0000000
19 --- a/sci-biology/exomiser-bin/exomiser-bin-7.0.0.ebuild
20 +++ /dev/null
21 @@ -1,23 +0,0 @@
22 -# Copyright 1999-2015 Gentoo Foundation
23 -# Distributed under the terms of the GNU General Public License v2
24 -# $Id$
25 -
26 -EAPI=5
27 -
28 -DESCRIPTION="Annotate VCF files from whole-exome sequencing (Jannovar, UCSC KnownGenes, hg19)"
29 -HOMEPAGE="http://www.sanger.ac.uk/resources/software/exomiser"
30 -SRC_URI="ftp://ftp.sanger.ac.uk/pub/resources/software/exomiser/downloads/exomiser/exomiser-cli-${PV}.BETA-distribution.zip"
31 -# 1.16GB !
32 -
33 -LICENSE="GPL-3+"
34 -SLOT="0"
35 -KEYWORDS=""
36 -IUSE=""
37 -
38 -DEPEND="sci-biology/Jannovar-bin"
39 -RDEPEND="${DEPEND}"
40 -
41 -pkg_postinst(){
42 - einfo "Please download 3.7GB file from ftp://ftp.sanger.ac.uk/pub/resources/software/exomiser/downloads/exomiser/h2_db_dumps/exomiser-${PV}.BETA.h2.db.gz"
43 - einfo "and follow README.md"
44 -}
45
46 diff --git a/sci-biology/exomiser-bin/exomiser-bin-7.2.1.ebuild b/sci-biology/exomiser-bin/exomiser-bin-7.2.1.ebuild
47 new file mode 100644
48 index 0000000..1346fd2
49 --- /dev/null
50 +++ b/sci-biology/exomiser-bin/exomiser-bin-7.2.1.ebuild
51 @@ -0,0 +1,31 @@
52 +# Copyright 1999-2016 Gentoo Foundation
53 +# Distributed under the terms of the GNU General Public License v2
54 +# $Id$
55 +
56 +EAPI=5
57 +
58 +DESCRIPTION="Annotate VCF files and prioritize genome/exome mutations (Jannovar, UCSC KnownGenes, hg19)"
59 +HOMEPAGE="http://www.sanger.ac.uk/science/tools/exomiser"
60 +SRC_URI="ftp://ftp.sanger.ac.uk/pub/resources/software/exomiser/downloads/exomiser/exomiser-cli-${PV}-distribution.zip
61 + ftp://ftp.sanger.ac.uk/pub/resources/software/exomiser/downloads/exomiser/GenomiserREADME -> ${PN}.README
62 + ftp://ftp.sanger.ac.uk/pub/resources/software/exomiser/downloads/exomiser/README.md -> ${PN}.README.md"
63 +# 1.16GB !
64 +
65 +LICENSE="AGPL-3+"
66 +SLOT="0"
67 +KEYWORDS=""
68 +IUSE=""
69 +
70 +DEPEND="sci-biology/Jannovar-bin"
71 +RDEPEND="${DEPEND}"
72 +
73 +src_install(){
74 + dodoc "${DISTDIR}"/${PN}.README "${DISTDIR}"/${PN}.README.md
75 +}
76 +
77 +pkg_postinst(){
78 + einfo "Please download 3.7GB file from ftp://ftp.sanger.ac.uk/pub/resources/software/exomiser/downloads/exomiser/h2_db_dumps/exomiser-${PV}.BETA.h2.db.gz"
79 + einfo "and follow README.md"
80 + einfo "The is also 19GB file ftp://ftp.sanger.ac.uk/pub/resources/software/exomiser/downloads/exomiser/exomiser-cli-7.2.1-data.zip"
81 + einfo "with test data"
82 +}