From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 1BE37138239 for ; Mon, 1 Feb 2021 07:53:51 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 04F60E09A2; Mon, 1 Feb 2021 07:53:50 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id E3241E09A2 for ; Mon, 1 Feb 2021 07:53:49 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id EBB03340DBD for ; Mon, 1 Feb 2021 07:53:48 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 99A31B9 for ; Mon, 1 Feb 2021 07:53:47 +0000 (UTC) From: "Andrew Ammerlaan" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andrew Ammerlaan" Message-ID: <1612166016.5bc6928cca2630e651f601fa8fba065ef5f9471e.andrewammerlaan@gentoo> Subject: [gentoo-commits] proj/sci:master commit in: sci-biology/MochiView/ X-VCS-Repository: proj/sci X-VCS-Files: sci-biology/MochiView/MochiView-1.45.ebuild sci-biology/MochiView/MochiView-1.46.ebuild X-VCS-Directories: sci-biology/MochiView/ X-VCS-Committer: andrewammerlaan X-VCS-Committer-Name: Andrew Ammerlaan X-VCS-Revision: 5bc6928cca2630e651f601fa8fba065ef5f9471e X-VCS-Branch: master Date: Mon, 1 Feb 2021 07:53:47 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 3fd83472-0f62-4578-ad93-091eb17c5215 X-Archives-Hash: e0e6565095d9b4a01a10929b08d6b54f commit: 5bc6928cca2630e651f601fa8fba065ef5f9471e Author: Andrew Ammerlaan riseup net> AuthorDate: Mon Feb 1 07:53:36 2021 +0000 Commit: Andrew Ammerlaan riseup net> CommitDate: Mon Feb 1 07:53:36 2021 +0000 URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=5bc6928c sci-biology/MochiView: fix empty ebuild Package-Manager: Portage-3.0.14, Repoman-3.0.2 Signed-off-by: Andrew Ammerlaan riseup.net> sci-biology/MochiView/MochiView-1.45.ebuild | 16 ---------------- sci-biology/MochiView/MochiView-1.46.ebuild | 23 +++++++++++++++++++++++ 2 files changed, 23 insertions(+), 16 deletions(-) diff --git a/sci-biology/MochiView/MochiView-1.45.ebuild b/sci-biology/MochiView/MochiView-1.45.ebuild deleted file mode 100644 index 61e0be859..000000000 --- a/sci-biology/MochiView/MochiView-1.45.ebuild +++ /dev/null @@ -1,16 +0,0 @@ -# Copyright 1999-2015 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 - -DESCRIPTION="Genome browser and analysis" -HOMEPAGE="http://johnsonlab.ucsf.edu/mochi.html" -SRC_URI="" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="" -IUSE="" - -DEPEND="" -RDEPEND="${DEPEND}" diff --git a/sci-biology/MochiView/MochiView-1.46.ebuild b/sci-biology/MochiView/MochiView-1.46.ebuild new file mode 100644 index 000000000..d9db425fa --- /dev/null +++ b/sci-biology/MochiView/MochiView-1.46.ebuild @@ -0,0 +1,23 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit java-utils-2 + +DESCRIPTION="Genome browser and analysis" +HOMEPAGE="http://johnsonlab.ucsf.edu/mochi.html" +SRC_URI="https://www.johnsonlab.ucsf.edu/s/MochiView_v${PV//.}.zip" + +LICENSE="MIT LGPL-3 MPL-1.1 Apache-2.0" +SLOT="0" +KEYWORDS="~amd64" + +RDEPEND=">=virtual/jre-1.7:*" +BDEPEND="app-arch/unzip" + +S="${WORKDIR}/${PN}_v${PV}" + +src_install() { + java-pkg_dojar INTERNAL_USE/*.jar +}