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/quast/
Date: Sun, 23 Mar 2014 16:48:04
Message-Id: 1395593202.ba8d30305983c8aec216c07d62218879a12793c9.mmokrejs@gentoo
1 commit: ba8d30305983c8aec216c07d62218879a12793c9
2 Author: Martin Mokrejš <mmokrejs <AT> fold <DOT> natur <DOT> cuni <DOT> cz>
3 AuthorDate: Sun Mar 23 16:46:42 2014 +0000
4 Commit: Martin Mokrejs <mmokrejs <AT> fold <DOT> natur <DOT> cuni <DOT> cz>
5 CommitDate: Sun Mar 23 16:46:42 2014 +0000
6 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=ba8d3030
7
8 sci-biology/quast: a skeleton for a new python-based package, need help
9
10 Package-Manager: portage-2.2.7
11
12 ---
13 sci-biology/quast/ChangeLog | 9 +++++++++
14 sci-biology/quast/metadata.xml | 9 +++++++++
15 sci-biology/quast/quast-2.2.ebuild | 35 +++++++++++++++++++++++++++++++++++
16 3 files changed, 53 insertions(+)
17
18 diff --git a/sci-biology/quast/ChangeLog b/sci-biology/quast/ChangeLog
19 new file mode 100644
20 index 0000000..578e834
21 --- /dev/null
22 +++ b/sci-biology/quast/ChangeLog
23 @@ -0,0 +1,9 @@
24 +# ChangeLog for sci-biology/quast
25 +# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
26 +# $Header: $
27 +
28 +*quast-2.2 (23 Mar 2014)
29 +
30 + 23 Mar 2014; Martin Mokrejs <mmokrejs@×××××××××××××××.cz> +metadata.xml,
31 + +quast-2.2.ebuild:
32 + sci-biology/quast: a skeleton for a new python-based package, need help
33
34 diff --git a/sci-biology/quast/metadata.xml b/sci-biology/quast/metadata.xml
35 new file mode 100644
36 index 0000000..07b5255
37 --- /dev/null
38 +++ b/sci-biology/quast/metadata.xml
39 @@ -0,0 +1,9 @@
40 +<?xml version="1.0" encoding="UTF-8"?>
41 +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
42 +<pkgmetadata>
43 + <herd>sci-biology</herd>
44 + <maintainer>
45 + <email>mmokrejs@×××××××××××××××.cz</email>
46 + <name>Martin Mokrejs</name>
47 + </maintainer>
48 +</pkgmetadata>
49
50 diff --git a/sci-biology/quast/quast-2.2.ebuild b/sci-biology/quast/quast-2.2.ebuild
51 new file mode 100644
52 index 0000000..5f6c9b9
53 --- /dev/null
54 +++ b/sci-biology/quast/quast-2.2.ebuild
55 @@ -0,0 +1,35 @@
56 +# Copyright 1999-2014 Gentoo Foundation
57 +# Distributed under the terms of the GNU General Public License v2
58 +# $Header: $
59 +
60 +EAPI=5
61 +
62 +inherit python
63 +
64 +DESCRIPTION="Compare quality of multiple genome assemblies to each other"
65 +HOMEPAGE="http://bioinf.spbau.ru/QUAST"
66 +SRC_URI="http://sourceforge.net/projects/quast/files/"$P".tar.gz"
67 +
68 +LICENSE="GPL-2"
69 +SLOT="0"
70 +KEYWORDS=""
71 +IUSE=""
72 +
73 +DEPEND="dev-python/matplotlib
74 + sci-biology/mummer
75 + sci-biology/glimmerhmm"
76 +# sci-biology/GAGE
77 +# sci-biology/GeneMarkS
78 +# sci-biology/MetaGeneMark"
79 +
80 +# the above packages need to be created first
81 +
82 +RDEPEND="${DEPEND}
83 + dev-lang/perl"
84 +
85 +src_install(){
86 + dobin quast.py metaquast.py
87 + dodoc manual.html CHANGES
88 +
89 + # TODO: install lib/ subdirectory contents into some PATH and PYTHON_PATH
90 +}