From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 34DEC1391DB for ; Sun, 23 Mar 2014 18:16:38 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D35A1E0B45; Sun, 23 Mar 2014 18:16:32 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 54085E0B45 for ; Sun, 23 Mar 2014 18:16:32 +0000 (UTC) Received: from spoonbill.gentoo.org (spoonbill.gentoo.org [81.93.255.5]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 00D7533EEB4 for ; Sun, 23 Mar 2014 18:16:31 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by spoonbill.gentoo.org (Postfix) with ESMTP id 9BA35188EA for ; Sun, 23 Mar 2014 18:16:29 +0000 (UTC) From: "Martin Mokrejs" 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" Message-ID: <1395598512.a7bf4e9d7d31c5c27213f618b1160b0d7006ac1c.mmokrejs@gentoo> Subject: [gentoo-commits] proj/sci:master commit in: sci-biology/bambino/ X-VCS-Repository: proj/sci X-VCS-Files: sci-biology/bambino/ChangeLog sci-biology/bambino/bambino-1.02.ebuild sci-biology/bambino/bambino-1.06.ebuild sci-biology/bambino/metadata.xml X-VCS-Directories: sci-biology/bambino/ X-VCS-Committer: mmokrejs X-VCS-Committer-Name: Martin Mokrejs X-VCS-Revision: a7bf4e9d7d31c5c27213f618b1160b0d7006ac1c X-VCS-Branch: master Date: Sun, 23 Mar 2014 18:16:29 +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-Archives-Salt: 378915ab-5c95-44d2-b265-264cd902b89c X-Archives-Hash: 653347513355e561b6a7d0022fbe31f7 commit: a7bf4e9d7d31c5c27213f618b1160b0d7006ac1c Author: Martin Mokrejš fold natur cuni cz> AuthorDate: Sun Mar 23 18:15:12 2014 +0000 Commit: Martin Mokrejs fold natur cuni cz> CommitDate: Sun Mar 23 18:15:12 2014 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=a7bf4e9d sci-biology/bambino: a new package, maybe should have -bin in its name?; needs decent inspection from java team for sure Package-Manager: portage-2.2.7 --- sci-biology/bambino/ChangeLog | 11 ++++++++++ sci-biology/bambino/bambino-1.02.ebuild | 36 +++++++++++++++++++++++++++++++++ sci-biology/bambino/bambino-1.06.ebuild | 36 +++++++++++++++++++++++++++++++++ sci-biology/bambino/metadata.xml | 9 +++++++++ 4 files changed, 92 insertions(+) diff --git a/sci-biology/bambino/ChangeLog b/sci-biology/bambino/ChangeLog new file mode 100644 index 0000000..1cc049f --- /dev/null +++ b/sci-biology/bambino/ChangeLog @@ -0,0 +1,11 @@ +# ChangeLog for sci-biology/bambino +# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 +# $Header: $ + +*bambino-1.02 (23 Mar 2014) +*bambino-1.06 (23 Mar 2014) + + 23 Mar 2014; Martin Mokrejs + +bambino-1.02.ebuild, +bambino-1.06.ebuild, +metadata.xml: + sci-biology/bambino: a new package, maybe should have -bin in its name?; needs + decent inspection from java team for sure diff --git a/sci-biology/bambino/bambino-1.02.ebuild b/sci-biology/bambino/bambino-1.02.ebuild new file mode 100644 index 0000000..4ea6c9d --- /dev/null +++ b/sci-biology/bambino/bambino-1.02.ebuild @@ -0,0 +1,36 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: $ + +EAPI=3 + +inherit java-pkg-2 eutils + +DESCRIPTION="Bambino / BAMview / bam_utils to display SAM/BAM files and for SNP/indel detection, report coverage in .wig files" +HOMEPAGE="https://cgwb.nci.nih.gov/goldenPath/bamview/documentation/index.html" + +# bug #377305 +SRC_URI="https://cgwb.nci.nih.gov/cgi-bin/bambino?download_bambino_jar=bundle -> bambino_core_1.02.jar + https://cgwb.nci.nih.gov/cgi-bin/bambino?download_bambino_jar=core -> bambino_bundle_1.02.jar" + +LICENSE="bambino" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +DEPEND="" +RDEPEND="${DEPEND} + >=virtual/jdk-1.6 + sci-biology/picard + dev-java/jdbc-mysql" + +src_install(){ + insinto "${DESTDIR}"/usr/share/"${PN}"/lib + doins "${DISTDIR}"/bambino_core_"${PV}".jar || die + doins "${DISTDIR}"/bambino_bundle_"${PV}".jar || die + + einfo "bambino can be run using 'java -jar /usr/share/bambino/lib/bambino_bundle_1.02.jar'" + einfo " or 'java -jar /usr/share/bambino/lib/bambino_core_1.02.jar'" + einfo "More info at "${HOMEPAGE} + +} diff --git a/sci-biology/bambino/bambino-1.06.ebuild b/sci-biology/bambino/bambino-1.06.ebuild new file mode 100644 index 0000000..864beee --- /dev/null +++ b/sci-biology/bambino/bambino-1.06.ebuild @@ -0,0 +1,36 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: $ + +EAPI=3 + +inherit java-pkg-2 eutils + +DESCRIPTION="Bambino / BAMview / bam_utils to display SAM/BAM files and for SNP/indel detection, report coverage in .wig files" +HOMEPAGE="https://cgwb.nci.nih.gov/goldenPath/bamview/documentation/index.html" + +# bug #377305 +SRC_URI="https://cgwb.nci.nih.gov/cgi-bin/bambino?download_bambino_jar=bundle -> bambino_core_1.06.jar + https://cgwb.nci.nih.gov/cgi-bin/bambino?download_bambino_jar=core -> bambino_bundle_1.06.jar" + +LICENSE="bambino" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +DEPEND="" +RDEPEND="${DEPEND} + >=virtual/jdk-1.6 + sci-biology/picard + dev-java/jdbc-mysql" + +src_install(){ + insinto "${DESTDIR}"/usr/share/"${PN}"/lib + doins "${DISTDIR}"/bambino_core_"${PV}".jar || die + doins "${DISTDIR}"/bambino_bundle_"${PV}".jar || die + + einfo "bambino can be run using 'java -jar /usr/share/bambino/lib/bambino_bundle_1.06.jar'" + einfo " or 'java -jar /usr/share/bambino/lib/bambino_core_1.06.jar'" + einfo "More info at "${HOMEPAGE} + +} diff --git a/sci-biology/bambino/metadata.xml b/sci-biology/bambino/metadata.xml new file mode 100644 index 0000000..07b5255 --- /dev/null +++ b/sci-biology/bambino/metadata.xml @@ -0,0 +1,9 @@ + + + + sci-biology + + mmokrejs@fold.natur.cuni.cz + Martin Mokrejs + +