Gentoo Archives: gentoo-commits

From: Christoph Junghans <junghans@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/sci:master commit in: sci-physics/quinoa/
Date: Mon, 23 Jan 2017 16:37:01
Message-Id: 1485188961.62e38ebc199e63d32e6343cebd332882f99e2dee.junghans@gentoo
1 commit: 62e38ebc199e63d32e6343cebd332882f99e2dee
2 Author: Christoph Junghans <junghans <AT> gentoo <DOT> org>
3 AuthorDate: Mon Jan 23 16:29:05 2017 +0000
4 Commit: Christoph Junghans <junghans <AT> gentoo <DOT> org>
5 CommitDate: Mon Jan 23 16:29:21 2017 +0000
6 URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=62e38ebc
7
8 sci-physics/quinoa: initial commit
9
10 Package-Manager: Portage-2.3.0, Repoman-2.3.1
11
12 sci-physics/quinoa/metadata.xml | 15 +++++++++++++++
13 sci-physics/quinoa/quinoa-9999.ebuild | 31 +++++++++++++++++++++++++++++++
14 2 files changed, 46 insertions(+)
15
16 diff --git a/sci-physics/quinoa/metadata.xml b/sci-physics/quinoa/metadata.xml
17 new file mode 100644
18 index 0000000..7d658f9
19 --- /dev/null
20 +++ b/sci-physics/quinoa/metadata.xml
21 @@ -0,0 +1,15 @@
22 +<?xml version="1.0" encoding="UTF-8"?>
23 +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
24 +<pkgmetadata>
25 + <maintainer type="person">
26 + <email>junghans@g.o</email>
27 + <name>Christoph Junghans</name>
28 + </maintainer>
29 + <maintainer type="project">
30 + <email>sci-physics@g.o</email>
31 + <name>Gentoo Physics Project</name>
32 + </maintainer>
33 + <upstream>
34 + <remote-id type="github">quinoacomputing/quinoa</remote-id>
35 + </upstream>
36 +</pkgmetadata>
37
38 diff --git a/sci-physics/quinoa/quinoa-9999.ebuild b/sci-physics/quinoa/quinoa-9999.ebuild
39 new file mode 100644
40 index 0000000..b5262ac
41 --- /dev/null
42 +++ b/sci-physics/quinoa/quinoa-9999.ebuild
43 @@ -0,0 +1,31 @@
44 +# Copyright 1999-2017 Gentoo Foundation
45 +# Distributed under the terms of the GNU General Public License v2
46 +# $Id$
47 +
48 +EAPI=6
49 +
50 +inherit cmake-utils git-r3
51 +
52 +DESCRIPTION="Adaptive computational fluid dynamics"
53 +HOMEPAGE="http://quinoacomputing.org/"
54 +EGIT_REPO_URI="git://github.com/quinoacomputing/${PN}.git https://github.com/quinoacomputing/${PN}.git"
55 +
56 +LICENSE="BSD"
57 +SLOT="0"
58 +KEYWORDS=""
59 +IUSE="test"
60 +
61 +DEPEND=">=sci-libs/trilinos-12.10.1[netcdf]
62 + sci-libs/h5part
63 + >=sys-cluster/charm-6.7.1[mpi]
64 + dev-libs/boost
65 + dev-libs/tut
66 + dev-libs/pugixml
67 + dev-cpp/pstreams
68 + sci-libs/hypre
69 + dev-libs/pegtl
70 + dev-cpp/random123
71 + virtual/lapacke"
72 +RDEPEND="${DEPEND}"
73 +
74 +CMAKE_USE_DIR="${S}/src"