Gentoo Archives: gentoo-commits

From: Justin Lecher <jlec@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/sci:jlec/scilab commit in: sci-biology/pilon-bin/
Date: Sat, 27 Jan 2018 11:42:01
Message-Id: 1516484157.e4f568402bfead6e32904c59ce41578b7617b851.jlec@gentoo
1 commit: e4f568402bfead6e32904c59ce41578b7617b851
2 Author: Martin Mokrejš <mmokrejs <AT> fold <DOT> natur <DOT> cuni <DOT> cz>
3 AuthorDate: Sat Jan 20 21:35:57 2018 +0000
4 Commit: Justin Lecher <jlec <AT> gentoo <DOT> org>
5 CommitDate: Sat Jan 20 21:35:57 2018 +0000
6 URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=e4f56840
7
8 sci-biology/pilon-bin: new, albeit binary package
9
10 The sources are in scala language, btw.
11
12 Package-Manager: Portage-2.3.19, Repoman-2.3.6
13
14 sci-biology/pilon-bin/metadata.xml | 12 ++++++++++++
15 sci-biology/pilon-bin/pilon-bin-1.22.ebuild | 30 +++++++++++++++++++++++++++++
16 2 files changed, 42 insertions(+)
17
18 diff --git a/sci-biology/pilon-bin/metadata.xml b/sci-biology/pilon-bin/metadata.xml
19 new file mode 100644
20 index 000000000..138cb7705
21 --- /dev/null
22 +++ b/sci-biology/pilon-bin/metadata.xml
23 @@ -0,0 +1,12 @@
24 +<?xml version="1.0" encoding="UTF-8"?>
25 +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
26 +<pkgmetadata>
27 + <maintainer type="person">
28 + <email>mmokrejs@×××××××××××××××.cz</email>
29 + <name>Martin Mokrejs</name>
30 + </maintainer>
31 + <maintainer type="project">
32 + <email>sci-biology@g.o</email>
33 + <name>Gentoo Biology Project</name>
34 + </maintainer>
35 +</pkgmetadata>
36
37 diff --git a/sci-biology/pilon-bin/pilon-bin-1.22.ebuild b/sci-biology/pilon-bin/pilon-bin-1.22.ebuild
38 new file mode 100644
39 index 000000000..2284e6418
40 --- /dev/null
41 +++ b/sci-biology/pilon-bin/pilon-bin-1.22.ebuild
42 @@ -0,0 +1,30 @@
43 +# Copyright 1999-2018 Gentoo Foundation
44 +# Distributed under the terms of the GNU General Public License v2
45 +# $Id$
46 +
47 +EAPI=6
48 +
49 +inherit java-pkg-2
50 +
51 +DESCRIPTION="Fix assembled reference using BAM-aligned reads, call SNPs"
52 +HOMEPAGE="https://github.com/broadinstitute/pilon
53 + https://github.com/broadinstitute/pilon/wiki"
54 +SRC_URI="https://github.com/broadinstitute/pilon/releases/download/v${PV}/pilon-${PV}.jar"
55 +
56 +LICENSE="GPL-2"
57 +SLOT="0"
58 +KEYWORDS="~amd64"
59 +IUSE=""
60 +
61 +DEPEND="dev-java/sbt
62 + >=virtual/jdk-1.5:*"
63 +RDEPEND="${DEPEND}
64 + >=virtual/jre-1.5:*
65 + >=dev-java/htsjdk-1.130"
66 +
67 +S="${WORKDIR}"
68 +
69 +src_install(){
70 + cp -p "${DISTDIR}"/pilon-${PV}.jar . || die
71 + java-pkg_dojar pilon-${PV}.jar
72 +}