dev-python/pyminuit-1.2.1-r2 build with python 3.7

mhiretskiy
Ваше Имя 4 years ago
parent ee92ca4ee5
commit 73ab541f75

@ -0,0 +1,3 @@
DIST Minuit-1_7_9-patch1.tar.gz 430753 BLAKE2B 19c19177a19aa4af27e3feac9df7c526e6536a7e4fad45c94b83b5080e2286e26949bdd5055da298156c3468aced288b5e38d989d00cf93a07d7ad15f111da65 SHA512 741ded2e6e999e8edf1e067ce9c2583784f6c1a7e34709430074d1f312de3a5815249466fe0a1c5be0a2f77932f34cbdb4bd1eb9de1b3528223711f26cbc65b9
DIST pyminuit-1.2.1.tgz 17099 BLAKE2B 9cefc9e59896d82cb7efd39085ab117a57b874bdae9ecc43fa2011b3148538fc3eeca0f086fae0d7b00cc654ff14edd9d63649ea71be35a795236bbe96c0e2a1 SHA512 b5bd954288d57a6c043e336ddb62a42cd4e6cc340847fbd700573db288c4404ef80a86a76b3c4e458913cd73b08ea97b20a4e411043a6ce826d9d88ee54fbe1f
EBUILD pyminuit-1.2.1-r2.ebuild 811 BLAKE2B 16dd6bd54a70edccd9547d5c3e1a93243fedb103a92a4ac699ff0293f35a5571e5e6054aa4085654d87995ec22a392a93073d3b7c818a7f7980b86e68724cb38 SHA512 28693f460f0104f4446a6a519e251b11d1c111f0669c5efc49bfa0e2ed5071669659433d9ef8c557221a5e138c9808fa987ee6906fa8afd41687371d49f3f446

@ -0,0 +1,40 @@
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=5
PYTHON_COMPAT=( python3_7 )
inherit distutils-r1 flag-o-matic
DESCRIPTION="Minuit numerical function minimization in Python"
HOMEPAGE="https://github.com/jpivarski/pyminuit"
SRC_URI="
https://pyminuit.googlecode.com/files/${P}.tgz
https://pyminuit.googlecode.com/files/Minuit-1_7_9-patch1.tar.gz
"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="amd64 x86 ~amd64-linux ~x86-linux"
IUSE=""
S="${WORKDIR}"/${PN}
src_configure() {
cd "${WORKDIR}"/Minuit-1_7_9 || die
econf --disable-static
}
src_compile() {
cd "${WORKDIR}"/Minuit-1_7_9 || die
emake
cd "${S}" || die
distutils-r1_src_compile
}
python_install_all() {
cd "${WORKDIR}"/Minuit-1_7_9 || die
default
distutils-r1_python_install_all
}
Loading…
Cancel
Save