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: Sun, 23 Mar 2014 17:07:14
Message-Id: 1395594344.0a17f05714124c90b425b51925dea9557a003422.mmokrejs@gentoo
1 commit: 0a17f05714124c90b425b51925dea9557a003422
2 Author: Martin Mokrejš <mmokrejs <AT> fold <DOT> natur <DOT> cuni <DOT> cz>
3 AuthorDate: Sun Mar 23 17:05:44 2014 +0000
4 Commit: Martin Mokrejs <mmokrejs <AT> fold <DOT> natur <DOT> cuni <DOT> cz>
5 CommitDate: Sun Mar 23 17:05:44 2014 +0000
6 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=0a17f057
7
8 sci-biology/fastqc: a skeleton for a new perl wrapper calling java libs, need help
9
10 Package-Manager: portage-2.2.7
11
12 ---
13 sci-biology/fastqc/ChangeLog | 10 ++++++++++
14 sci-biology/fastqc/fastqc-0.10.1.ebuild | 29 +++++++++++++++++++++++++++++
15 sci-biology/fastqc/metadata.xml | 9 +++++++++
16 3 files changed, 48 insertions(+)
17
18 diff --git a/sci-biology/fastqc/ChangeLog b/sci-biology/fastqc/ChangeLog
19 new file mode 100644
20 index 0000000..69015c4
21 --- /dev/null
22 +++ b/sci-biology/fastqc/ChangeLog
23 @@ -0,0 +1,10 @@
24 +# ChangeLog for sci-biology/fastqc
25 +# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
26 +# $Header: $
27 +
28 +*fastqc-0.10.1 (23 Mar 2014)
29 +
30 + 23 Mar 2014; Martin Mokrejs <mmokrejs@×××××××××××××××.cz>
31 + +fastqc-0.10.1.ebuild, +metadata.xml:
32 + sci-biology/fastqc: a skeleton for a new perl wrapper calling java libs, need
33 + help
34
35 diff --git a/sci-biology/fastqc/fastqc-0.10.1.ebuild b/sci-biology/fastqc/fastqc-0.10.1.ebuild
36 new file mode 100644
37 index 0000000..5274554
38 --- /dev/null
39 +++ b/sci-biology/fastqc/fastqc-0.10.1.ebuild
40 @@ -0,0 +1,29 @@
41 +# Copyright 1999-2014 Gentoo Foundation
42 +# Distributed under the terms of the GNU General Public License v2
43 +# $Header: $
44 +
45 +EAPI=5
46 +
47 +inherit java-pkg-2 eutils
48 +
49 +DESCRIPTION="Perl-based wrapper around java apps to quality control FASTA/FASTQ sequence files"
50 +HOMEPAGE="http://www.bioinformatics.babraham.ac.uk/projects/fastqc/"
51 +SRC_URI="http://www.bioinformatics.babraham.ac.uk/projects/fastqc/fastqc_v"${PV}"_source.zip"
52 +
53 +LICENSE="GPL-3+"
54 +SLOT="0"
55 +KEYWORDS=""
56 +IUSE=""
57 +
58 +DEPEND="sci-biology/picard
59 + >=virtual/jrei-1.6"
60 +RDEPEND="${DEPEND}"
61 +
62 +S="${WORKDIR}"/FastQC
63 +
64 +src_install(){
65 + dobin fastqc
66 +
67 + # TODO: need to compile java in uk/ac/babraham/FastQC/
68 + # and decide whether jbzip2-0.9.jar and sam-1.32.jar are standard java libs and from samtools or whetehr not
69 +}
70
71 diff --git a/sci-biology/fastqc/metadata.xml b/sci-biology/fastqc/metadata.xml
72 new file mode 100644
73 index 0000000..07b5255
74 --- /dev/null
75 +++ b/sci-biology/fastqc/metadata.xml
76 @@ -0,0 +1,9 @@
77 +<?xml version="1.0" encoding="UTF-8"?>
78 +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
79 +<pkgmetadata>
80 + <herd>sci-biology</herd>
81 + <maintainer>
82 + <email>mmokrejs@×××××××××××××××.cz</email>
83 + <name>Martin Mokrejs</name>
84 + </maintainer>
85 +</pkgmetadata>