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 4F3871381F3 for ; Wed, 26 Jun 2013 20:12:48 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id CA510E0804; Wed, 26 Jun 2013 20:12:47 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 6A99CE0804 for ; Wed, 26 Jun 2013 20:12:47 +0000 (UTC) Received: from hornbill.gentoo.org (hornbill.gentoo.org [94.100.119.163]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 6B89933D3D7 for ; Wed, 26 Jun 2013 20:12:46 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id 04E2EE468F for ; Wed, 26 Jun 2013 20:12:45 +0000 (UTC) From: "Nicolas Bock" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Nicolas Bock" Message-ID: <1372277553.40c428936bbe89309bdcbf26a1a908536a3e70d9.nicolasbock@gentoo> Subject: [gentoo-commits] proj/sci:master commit in: sys-cluster/projections/ X-VCS-Repository: proj/sci X-VCS-Files: sys-cluster/projections/ChangeLog sys-cluster/projections/metadata.xml sys-cluster/projections/projections-6.2.1.ebuild X-VCS-Directories: sys-cluster/projections/ X-VCS-Committer: nicolasbock X-VCS-Committer-Name: Nicolas Bock X-VCS-Revision: 40c428936bbe89309bdcbf26a1a908536a3e70d9 X-VCS-Branch: master Date: Wed, 26 Jun 2013 20:12:45 +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: f61b6687-f7cd-4e28-b732-f9c405d602b3 X-Archives-Hash: 0d573e1c6b4b2433e9d43997db7f6303 commit: 40c428936bbe89309bdcbf26a1a908536a3e70d9 Author: Nicolas Bock gmail com> AuthorDate: Wed Jun 26 20:12:33 2013 +0000 Commit: Nicolas Bock gmail com> CommitDate: Wed Jun 26 20:12:33 2013 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=40c42893 Added new package: projections A performance analysis framework for Charm++ applications. Package-Manager: portage-2.2.0_alpha185 --- sys-cluster/projections/ChangeLog | 10 +++++++++ sys-cluster/projections/metadata.xml | 7 ++++++ sys-cluster/projections/projections-6.2.1.ebuild | 28 ++++++++++++++++++++++++ 3 files changed, 45 insertions(+) diff --git a/sys-cluster/projections/ChangeLog b/sys-cluster/projections/ChangeLog new file mode 100644 index 0000000..e51f6c3 --- /dev/null +++ b/sys-cluster/projections/ChangeLog @@ -0,0 +1,10 @@ +# ChangeLog for sys-cluster/projections +# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 +# $Header: $ + +*projections-6.2.1 (26 Jun 2013) + + 26 Jun 2013; Nicolas Bock +metadata.xml, + +projections-6.2.1.ebuild: + Added new package: projections A performance analysis framework for Charm++ + applications. diff --git a/sys-cluster/projections/metadata.xml b/sys-cluster/projections/metadata.xml new file mode 100644 index 0000000..334411a --- /dev/null +++ b/sys-cluster/projections/metadata.xml @@ -0,0 +1,7 @@ + + + + sci + + + diff --git a/sys-cluster/projections/projections-6.2.1.ebuild b/sys-cluster/projections/projections-6.2.1.ebuild new file mode 100644 index 0000000..c3ef139 --- /dev/null +++ b/sys-cluster/projections/projections-6.2.1.ebuild @@ -0,0 +1,28 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: $ + +EAPI=5 + +inherit java-pkg-2 + +DESCRIPTION="Projections Performance Analysis Framework for Charm++ Applications" +HOMEPAGE="http://charm.cs.uiuc.edu/" +SRC_URI="http://charm.cs.illinois.edu/distrib/binaries/projections/projections_${PV}.tar.gz" + +S="${WORKDIR}/${PN}_${PV}" + +LICENSE="charm" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +DEPEND="" +RDEPEND=">=virtual/jre-1.6" + +src_install() { + java-pkg_newjar ${PN}.jar + java-pkg_dolauncher ${PN} \ + --main projections.analysis.ProjMain \ + --jar ${PN}.jar +}