Gentoo Archives: gentoo-commits

From: Andrew Ammerlaan <andrewammerlaan@××××××.net>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/sci:master commit in: sci-biology/MochiView/
Date: Mon, 01 Feb 2021 07:53:51
Message-Id: 1612166016.5bc6928cca2630e651f601fa8fba065ef5f9471e.andrewammerlaan@gentoo
1 commit: 5bc6928cca2630e651f601fa8fba065ef5f9471e
2 Author: Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
3 AuthorDate: Mon Feb 1 07:53:36 2021 +0000
4 Commit: Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
5 CommitDate: Mon Feb 1 07:53:36 2021 +0000
6 URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=5bc6928c
7
8 sci-biology/MochiView: fix empty ebuild
9
10 Package-Manager: Portage-3.0.14, Repoman-3.0.2
11 Signed-off-by: Andrew Ammerlaan <andrewammerlaan <AT> riseup.net>
12
13 sci-biology/MochiView/MochiView-1.45.ebuild | 16 ----------------
14 sci-biology/MochiView/MochiView-1.46.ebuild | 23 +++++++++++++++++++++++
15 2 files changed, 23 insertions(+), 16 deletions(-)
16
17 diff --git a/sci-biology/MochiView/MochiView-1.45.ebuild b/sci-biology/MochiView/MochiView-1.45.ebuild
18 deleted file mode 100644
19 index 61e0be859..000000000
20 --- a/sci-biology/MochiView/MochiView-1.45.ebuild
21 +++ /dev/null
22 @@ -1,16 +0,0 @@
23 -# Copyright 1999-2015 Gentoo Foundation
24 -# Distributed under the terms of the GNU General Public License v2
25 -
26 -EAPI=5
27 -
28 -DESCRIPTION="Genome browser and analysis"
29 -HOMEPAGE="http://johnsonlab.ucsf.edu/mochi.html"
30 -SRC_URI=""
31 -
32 -LICENSE="MIT"
33 -SLOT="0"
34 -KEYWORDS=""
35 -IUSE=""
36 -
37 -DEPEND=""
38 -RDEPEND="${DEPEND}"
39
40 diff --git a/sci-biology/MochiView/MochiView-1.46.ebuild b/sci-biology/MochiView/MochiView-1.46.ebuild
41 new file mode 100644
42 index 000000000..d9db425fa
43 --- /dev/null
44 +++ b/sci-biology/MochiView/MochiView-1.46.ebuild
45 @@ -0,0 +1,23 @@
46 +# Copyright 1999-2021 Gentoo Authors
47 +# Distributed under the terms of the GNU General Public License v2
48 +
49 +EAPI=7
50 +
51 +inherit java-utils-2
52 +
53 +DESCRIPTION="Genome browser and analysis"
54 +HOMEPAGE="http://johnsonlab.ucsf.edu/mochi.html"
55 +SRC_URI="https://www.johnsonlab.ucsf.edu/s/MochiView_v${PV//.}.zip"
56 +
57 +LICENSE="MIT LGPL-3 MPL-1.1 Apache-2.0"
58 +SLOT="0"
59 +KEYWORDS="~amd64"
60 +
61 +RDEPEND=">=virtual/jre-1.7:*"
62 +BDEPEND="app-arch/unzip"
63 +
64 +S="${WORKDIR}/${PN}_v${PV}"
65 +
66 +src_install() {
67 + java-pkg_dojar INTERNAL_USE/*.jar
68 +}