From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-933141-garchives=archives.gentoo.org@lists.gentoo.org> 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 18EF5139694 for <garchives@archives.gentoo.org>; Mon, 20 Feb 2017 18:51:32 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 01F23E0DEE; Mon, 20 Feb 2017 18:51:24 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id D4F95E0DEE for <gentoo-commits@lists.gentoo.org>; Mon, 20 Feb 2017 18:51:23 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 3FEFA340EE8 for <gentoo-commits@lists.gentoo.org>; Mon, 20 Feb 2017 18:51:22 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 723324EB0 for <gentoo-commits@lists.gentoo.org>; Mon, 20 Feb 2017 18:51:20 +0000 (UTC) From: "Martin Mokrejs" <mmokrejs@fold.natur.cuni.cz> To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Martin Mokrejs" <mmokrejs@fold.natur.cuni.cz> Message-ID: <1487616664.da001fc52d309509f4bc99d41b8b147672e8ac33.mmokrejs@gentoo> Subject: [gentoo-commits] proj/sci:master commit in: sci-biology/VarScan/ X-VCS-Repository: proj/sci X-VCS-Files: sci-biology/VarScan/VarScan-2.4.3.ebuild X-VCS-Directories: sci-biology/VarScan/ X-VCS-Committer: mmokrejs X-VCS-Committer-Name: Martin Mokrejs X-VCS-Revision: da001fc52d309509f4bc99d41b8b147672e8ac33 X-VCS-Branch: master Date: Mon, 20 Feb 2017 18:51:20 +0000 (UTC) Precedence: bulk List-Post: <mailto:gentoo-commits@lists.gentoo.org> List-Help: <mailto:gentoo-commits+help@lists.gentoo.org> List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org> List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org> List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org> X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: ecc1e057-8ea2-464a-8afe-172b3a8e56c2 X-Archives-Hash: a7841fc91b2400038c2843806a0592ea commit: da001fc52d309509f4bc99d41b8b147672e8ac33 Author: Martin Mokrejš <mmokrejs <AT> fold <DOT> natur <DOT> cuni <DOT> cz> AuthorDate: Mon Feb 20 18:51:04 2017 +0000 Commit: Martin Mokrejs <mmokrejs <AT> fold <DOT> natur <DOT> cuni <DOT> cz> CommitDate: Mon Feb 20 18:51:04 2017 +0000 URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=da001fc5 sci-biology/VarScan: version bump Package-Manager: Portage-2.3.3, Repoman-2.3.1 sci-biology/VarScan/VarScan-2.4.3.ebuild | 35 ++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) diff --git a/sci-biology/VarScan/VarScan-2.4.3.ebuild b/sci-biology/VarScan/VarScan-2.4.3.ebuild new file mode 100644 index 000000000..3ef29a10c --- /dev/null +++ b/sci-biology/VarScan/VarScan-2.4.3.ebuild @@ -0,0 +1,35 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 + +inherit java-pkg-2 + +DESCRIPTION="Variant detection (germline, multi-sample, somatic mutations, CNA, SNP calls)" +HOMEPAGE="http://varscan.sourceforge.net/" + +# binary +#https://github.com/dkoboldt/varscan/blob/master/VarScan.v2.4.3.jar +SRC_URI="https://github.com/dkoboldt/varscan/blob/master/VarScan.v2.4.3.source.jar?raw=true -> ${PN}.v${PV}.source.jar" + +LICENSE="Non-profit-OSL-3.0" +SLOT="0" +KEYWORDS="~amd64" +IUSE="" + +DEPEND=" + >=virtual/jdk-1.5:* + !sci-biology/VarScan-bin" +RDEPEND=">=virtual/jre-1.5:*" + +S="${WORKDIR}"/net/sf/varscan + +src_compile(){ + javac *.java +} + +src_install(){ + java-pkg_newjar "${DISTDIR}"/${PN}.v${PV}.source.jar ${PN}.source.jar + java-pkg_dolauncher VarScan +}