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/wgs_tools/
Date: Tue, 12 Jul 2016 14:52:03
Message-Id: 1468335099.6b020466331bf69a623d04b7f30b7a6b3f78fd50.mmokrejs@gentoo
1 commit: 6b020466331bf69a623d04b7f30b7a6b3f78fd50
2 Author: Martin Mokrejš <mmokrejs <AT> fold <DOT> natur <DOT> cuni <DOT> cz>
3 AuthorDate: Tue Jul 12 14:51:39 2016 +0000
4 Commit: Martin Mokrejs <mmokrejs <AT> fold <DOT> natur <DOT> cuni <DOT> cz>
5 CommitDate: Tue Jul 12 14:51:39 2016 +0000
6 URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=6b020466
7
8 sci-biology/wgs_tools: add taxonomy-related info to NCBI SRA and BLAST+
9
10 Package-Manager: portage-2.2.28
11
12 sci-biology/wgs_tools/metadata.xml | 12 ++++++++++
13 sci-biology/wgs_tools/wgs_tools-9999.ebuild | 36 +++++++++++++++++++++++++++++
14 2 files changed, 48 insertions(+)
15
16 diff --git a/sci-biology/wgs_tools/metadata.xml b/sci-biology/wgs_tools/metadata.xml
17 new file mode 100644
18 index 0000000..f68a1b6
19 --- /dev/null
20 +++ b/sci-biology/wgs_tools/metadata.xml
21 @@ -0,0 +1,12 @@
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/wgs_tools/wgs_tools-9999.ebuild b/sci-biology/wgs_tools/wgs_tools-9999.ebuild
36 new file mode 100644
37 index 0000000..d3c7656
38 --- /dev/null
39 +++ b/sci-biology/wgs_tools/wgs_tools-9999.ebuild
40 @@ -0,0 +1,36 @@
41 +# Copyright 1999-2016 Gentoo Foundation
42 +# Distributed under the terms of the GNU General Public License v2
43 +# $Id$
44 +
45 +EAPI=5
46 +
47 +DESCRIPTION="Scripts for ncbi-tools++ and SRA postprocessing using taxonomy"
48 +HOMEPAGE="ftp://ftp.ncbi.nih.gov/blast/WGS_TOOLS
49 + http://www.ncbi.nlm.nih.gov/books/NBK279690/
50 + http://www.ncbi.nlm.nih.gov/genbank/wgs"
51 +SRC_URI="ftp://ftp.ncbi.nih.gov/blast/WGS_TOOLS/taxid2tsa.pl
52 + ftp://ftp.ncbi.nih.gov/blast/WGS_TOOLS/taxid2wgs.pl"
53 +
54 +LICENSE="all-rights-reserved"
55 +SLOT="0"
56 +KEYWORDS="~amd64 ~x86"
57 +IUSE=""
58 +
59 +DEPEND=""
60 +RDEPEND="${DEPEND}
61 + dev-lang/perl"
62 +
63 +src_install(){
64 + dobin *.pl
65 + dodoc README*
66 +}
67 +
68 +pkg_postinst(){
69 + einfo "These scripts are helpful for VDB-enabled blast+ applications"
70 + einfo "and for tools from SRA toolkit sci-biology/sra_sdk or"
71 + einfo "sci-biology/sra_toolkit-bin. They are not added to DEPENDENCIES"
72 + einfo "yet until the packages are stable. Probably you want to download"
73 + einfo "Please read http://www.ncbi.nlm.nih.gov/books/NBK158899/"
74 + einfo "and unpack one of the prebuilt binaries from:"
75 + einfo "https://github.com/ncbi/sra-tools/wiki/Downloads"
76 +}