Gentoo Archives: gentoo-commits

From: "Andreas Hüttel" <dilfridge@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sci-physics/qmeq/
Date: Sat, 03 Nov 2018 22:20:22
Message-Id: 1541283598.c53be5da17dbf26e1c7752d00f80ad6ec879f8ea.dilfridge@gentoo
1 commit: c53be5da17dbf26e1c7752d00f80ad6ec879f8ea
2 Author: Andreas K. Hüttel <dilfridge <AT> gentoo <DOT> org>
3 AuthorDate: Sat Nov 3 22:18:11 2018 +0000
4 Commit: Andreas Hüttel <dilfridge <AT> gentoo <DOT> org>
5 CommitDate: Sat Nov 3 22:19:58 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c53be5da
7
8 sci-physics/qmeq: New package
9
10 See also https://arxiv.org/abs/1706.10104
11 and http://dx.doi.org/10.1016/j.cpc.2017.07.024
12
13 Signed-off-by: Andreas K. Hüttel <dilfridge <AT> gentoo.org>
14 Package-Manager: Portage-2.3.51, Repoman-2.3.11
15
16 sci-physics/qmeq/Manifest | 1 +
17 sci-physics/qmeq/metadata.xml | 11 +++++++++++
18 sci-physics/qmeq/qmeq-1.0.ebuild | 26 ++++++++++++++++++++++++++
19 3 files changed, 38 insertions(+)
20
21 diff --git a/sci-physics/qmeq/Manifest b/sci-physics/qmeq/Manifest
22 new file mode 100644
23 index 00000000000..d4c5db05f3c
24 --- /dev/null
25 +++ b/sci-physics/qmeq/Manifest
26 @@ -0,0 +1 @@
27 +DIST qmeq-1.0.tar.gz 590715 BLAKE2B 7f091be0651236f2dcb45825df541813e27b43b2b8ec9184a342c962363921e29462726ba23530d0b956bba45793ed2036cec6287696e5fa58f91204d9267933 SHA512 3589fe927740cac5130a5b936e7fb8f73ce20f280878a326cdf91fe6340e8853f5e055c7e07170433c0977130cbb31644b0d9f84d23cd467aaa82557c8541e6f
28
29 diff --git a/sci-physics/qmeq/metadata.xml b/sci-physics/qmeq/metadata.xml
30 new file mode 100644
31 index 00000000000..02fe3b97774
32 --- /dev/null
33 +++ b/sci-physics/qmeq/metadata.xml
34 @@ -0,0 +1,11 @@
35 +<?xml version='1.0' encoding='UTF-8'?>
36 +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
37 +<pkgmetadata>
38 + <maintainer type="person">
39 + <email>dilfridge@g.o</email>
40 + <name>Andreas K. Huettel</name>
41 + </maintainer>
42 + <upstream>
43 + <remote-id type="github">gedaskir/qmeq</remote-id>
44 + </upstream>
45 +</pkgmetadata>
46
47 diff --git a/sci-physics/qmeq/qmeq-1.0.ebuild b/sci-physics/qmeq/qmeq-1.0.ebuild
48 new file mode 100644
49 index 00000000000..db03248cf2e
50 --- /dev/null
51 +++ b/sci-physics/qmeq/qmeq-1.0.ebuild
52 @@ -0,0 +1,26 @@
53 +# Copyright 2018 Gentoo Authors
54 +# Distributed under the terms of the GNU General Public License v2
55 +
56 +EAPI=7
57 +
58 +PYTHON_COMPAT=( python2_7 python3_{4,5,6} )
59 +
60 +inherit distutils-r1
61 +
62 +DESCRIPTION="Quantum master equation package for Quantum dot transport calculations"
63 +HOMEPAGE="https://github.com/gedaskir/qmeq"
64 +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
65 +
66 +KEYWORDS="~amd64"
67 +IUSE=""
68 +LICENSE="BSD-2"
69 +SLOT="0"
70 +
71 +RDEPEND="
72 + dev-python/numpy[${PYTHON_USEDEP}]
73 + sci-libs/scipy[${PYTHON_USEDEP}]
74 +"
75 +DEPEND="${RDEPEND}
76 + dev-python/setuptools[${PYTHON_USEDEP}]
77 + dev-python/cython[${PYTHON_USEDEP}]
78 +"