blob: 17bc19178ab1b2fd0071ba6d7b01d04908ed9f4d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
|
# Copyright 2018-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
PYTHON_COMPAT=( python3_7 )
inherit distutils-r1
Pcommit="d3949bf812e1648892959a169a7ff849cd7b69d5"
DESCRIPTION="Quantum master equation package for Quantum dot transport calculations"
HOMEPAGE="https://github.com/gedaskir/qmeq"
SRC_URI="
https://github.com/gedaskir/qmeq/archive/${Pcommit}.tar.gz -> ${PN}-${PV}.tgz
examples? ( https://github.com/gedaskir/${PN}-examples/archive/1.0.tar.gz -> ${PN}-examples-1.0.tgz )
"
KEYWORDS="~amd64"
IUSE="examples"
LICENSE="BSD-2"
SLOT="0"
COMMON_DEPEND="
dev-python/numpy[${PYTHON_USEDEP}]
dev-python/scipy[${PYTHON_USEDEP}]
"
RDEPEND="
${COMMON_DEPEND}
examples? ( dev-python/jupyter[${PYTHON_USEDEP}] )
"
DEPEND="
${COMMON_DEPEND}
dev-python/setuptools[${PYTHON_USEDEP}]
dev-python/cython[${PYTHON_USEDEP}]
"
#PATCHES=( "${FILESDIR}/qmeq-1.0-py3.patch" )
#mydistutilsargs=( --cython )
src_unpack() {
default
mv -v "${PN}-${Pcommit}" "${PN}-${PV}" || die
}
src_install() {
distutils-r1_src_install
docompress -x "/usr/share/doc/${PF}"
use examples && dodoc -r "${WORKDIR}/${PN}-examples-${PV}"/*
}
|