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/fastqc/
Date: Sat, 30 May 2015 17:51:57
Message-Id: 1433008255.59cbe00f7e3f09edbe45448df2f75cbcf2d0e0c0.mmokrejs@gentoo
1 commit: 59cbe00f7e3f09edbe45448df2f75cbcf2d0e0c0
2 Author: Martin Mokrejš <mmokrejs <AT> fold <DOT> natur <DOT> cuni <DOT> cz>
3 AuthorDate: Sat May 30 17:50:55 2015 +0000
4 Commit: Martin Mokrejs <mmokrejs <AT> fold <DOT> natur <DOT> cuni <DOT> cz>
5 CommitDate: Sat May 30 17:50:55 2015 +0000
6 URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=59cbe00f
7
8 sci-biology/fastqc: version bump, added perl dependency, Apache ant-building does not work still
9
10 Package-Manager: portage-2.2.18
11
12 sci-biology/fastqc/ChangeLog | 7 +++++++
13 sci-biology/fastqc/{fastqc-0.11.2.ebuild => fastqc-0.11.3.ebuild} | 8 +++++++-
14 2 files changed, 14 insertions(+), 1 deletion(-)
15
16 diff --git a/sci-biology/fastqc/ChangeLog b/sci-biology/fastqc/ChangeLog
17 index b828a60..3510855 100644
18 --- a/sci-biology/fastqc/ChangeLog
19 +++ b/sci-biology/fastqc/ChangeLog
20 @@ -2,6 +2,13 @@
21 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
22 # $Header: $
23
24 +*fastqc-0.11.3 (30 May 2015)
25 +
26 + 30 May 2015; Martin Mokrejs <mmokrejs@×××××××××××××××.cz>
27 + +fastqc-0.11.3.ebuild, -fastqc-0.11.2.ebuild:
28 + sci-biology/fastqc: version bump, added perl dependency, Apache ant-building
29 + does not work still
30 +
31 05 Mar 2015; Martin Mokrejs <mmokrejs@×××××××××××××××.cz> +files/build.xml,
32 fastqc-0.11.2.ebuild:
33 added build.xml exported by author from Eclipse IDE (it doesn't work under ant
34
35 diff --git a/sci-biology/fastqc/fastqc-0.11.2.ebuild b/sci-biology/fastqc/fastqc-0.11.3.ebuild
36 similarity index 82%
37 rename from sci-biology/fastqc/fastqc-0.11.2.ebuild
38 rename to sci-biology/fastqc/fastqc-0.11.3.ebuild
39 index dadc288..d2ae40e 100644
40 --- a/sci-biology/fastqc/fastqc-0.11.2.ebuild
41 +++ b/sci-biology/fastqc/fastqc-0.11.3.ebuild
42 @@ -18,6 +18,7 @@ IUSE=""
43 DEPEND="sci-biology/picard
44 >=virtual/jre-1.5:*"
45 RDEPEND="${DEPEND}
46 + dev-lang/perl
47 >=virtual/jdk-1.5:*
48 dev-java/ant-core"
49
50 @@ -27,11 +28,16 @@ src_prepare(){
51 cp "${FILESDIR}"/build.xml . || die
52 }
53
54 +src_compile(){
55 + ant build || die # TODO: this does not work somehow
56 +}
57 +
58 src_install(){
59 dobin fastqc run_fastqc.bat
60 dodoc README.txt RELEASE_NOTES.txt
61
62 # TODO: need to compile java in uk/ac/babraham/FastQC/
63 # and decide whether jbzip2-0.9.jar is a standard java lib or not
64 - # ignore the sam-1.32.jar, that is likely library already in sci-biology/picard
65 + # ignore the sam-1.103.jar, that is likely library already in sci-biology/picard
66 + # cisd-jhdf5.jar
67 }