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/scythe/
Date: Mon, 24 Mar 2014 00:40:55
Message-Id: 1395621576.0272e6869c544d92b7d4f585ba1987fa6db1e8b3.mmokrejs@gentoo
1 commit: 0272e6869c544d92b7d4f585ba1987fa6db1e8b3
2 Author: Martin Mokrejš <mmokrejs <AT> fold <DOT> natur <DOT> cuni <DOT> cz>
3 AuthorDate: Mon Mar 24 00:39:36 2014 +0000
4 Commit: Martin Mokrejs <mmokrejs <AT> fold <DOT> natur <DOT> cuni <DOT> cz>
5 CommitDate: Mon Mar 24 00:39:36 2014 +0000
6 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=0272e686
7
8 sci-biology/scythe: new package, bundled Makefile forces -O3, wrong version number, but works
9
10 ---
11 sci-biology/scythe/ChangeLog | 10 ++++++++++
12 sci-biology/scythe/metadata.xml | 9 +++++++++
13 sci-biology/scythe/scythe-0.992.ebuild | 26 ++++++++++++++++++++++++++
14 3 files changed, 45 insertions(+)
15
16 diff --git a/sci-biology/scythe/ChangeLog b/sci-biology/scythe/ChangeLog
17 new file mode 100644
18 index 0000000..679d1b1
19 --- /dev/null
20 +++ b/sci-biology/scythe/ChangeLog
21 @@ -0,0 +1,10 @@
22 +# ChangeLog for sci-biology/scythe
23 +# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
24 +# $Header: $
25 +
26 +*scythe-0.992 (24 Mar 2014)
27 +
28 + 24 Mar 2014; Martin Mokrejs <mmokrejs@×××××××××××××××.cz>
29 + +scythe-0.992.ebuild, +metadata.xml:
30 + bundled Makefile forces -O3, wrong version number, but works
31 +
32
33 diff --git a/sci-biology/scythe/metadata.xml b/sci-biology/scythe/metadata.xml
34 new file mode 100644
35 index 0000000..2bc8930
36 --- /dev/null
37 +++ b/sci-biology/scythe/metadata.xml
38 @@ -0,0 +1,9 @@
39 +<?xml version="1.0" encoding="UTF-8"?>
40 +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
41 +<pkgmetadata>
42 + <herd>sci-biology</herd>
43 + <maintainer>
44 + <email>mmokrejs@×××××××××××××××.cz</email>
45 + <name>Martin Mokrejs</name>
46 + </maintainer>
47 +</pkgmetadata>
48
49 diff --git a/sci-biology/scythe/scythe-0.992.ebuild b/sci-biology/scythe/scythe-0.992.ebuild
50 new file mode 100644
51 index 0000000..608ac3f
52 --- /dev/null
53 +++ b/sci-biology/scythe/scythe-0.992.ebuild
54 @@ -0,0 +1,26 @@
55 +# Copyright 1999-2014 Gentoo Foundation
56 +# Distributed under the terms of the GNU General Public License v2
57 +# $Header: $
58 +
59 +EAPI=5
60 +
61 +inherit eutils git-r3
62 +
63 +DESCRIPTION="Bayesian adapter trimmer for Illumina/Solexa"
64 +HOMEPAGE="https://github.com/vsbuffalo/scythe"
65 +EGIT_REPO_URI="https://github.com/vsbuffalo/scythe"
66 +
67 +LICENSE="MIT"
68 +SLOT="0"
69 +KEYWORDS="~amd64"
70 +IUSE=""
71 +
72 +DEPEND=""
73 +RDEPEND="${DEPEND}
74 + sys-libs/zlib"
75 +
76 +src_install(){
77 + dobin scythe
78 + dodoc README.md
79 + dodoc illumina_adapters.fa
80 +}