diff options
author | V3n3RiX <venerix@redcorelinux.org> | 2020-09-23 10:22:15 +0100 |
---|---|---|
committer | V3n3RiX <venerix@redcorelinux.org> | 2020-09-23 10:22:15 +0100 |
commit | 8b4ace9c50842c5b83401ea7b179dcab940387e1 (patch) | |
tree | 230f3135ceaace633cf93e9838b185c4a6664c2e /sci-physics/qutip | |
parent | 9ee6d97c2883d42f204a533a8bc1f4562df778fb (diff) |
gentoo resync : 23.09.2020
Diffstat (limited to 'sci-physics/qutip')
-rw-r--r-- | sci-physics/qutip/Manifest | 3 | ||||
-rw-r--r-- | sci-physics/qutip/metadata.xml | 14 | ||||
-rw-r--r-- | sci-physics/qutip/qutip-4.2.0.ebuild | 51 |
3 files changed, 0 insertions, 68 deletions
diff --git a/sci-physics/qutip/Manifest b/sci-physics/qutip/Manifest deleted file mode 100644 index 88c76dec8353..000000000000 --- a/sci-physics/qutip/Manifest +++ /dev/null @@ -1,3 +0,0 @@ -DIST qutip-4.2.0.tar.gz 424805 BLAKE2B 8f85e12402681b57bd4a612a2d5d9023f4c27a35aa78b70ad00d238123b2863a9b728e5ed1c24d81faf6892ca2b0a5b70652403fbd7b5dc02629e328e92a7e2b SHA512 888e569b30a1085162ecfa768967526f5ce34b19e1a1b0f76f1331eb3978159ba321e126a1bc57e0936c5819218f07a336a57c80193b33af1009d1cd87fa95de -EBUILD qutip-4.2.0.ebuild 1161 BLAKE2B 96f762f35519660b965e19e0fe905768a137accc10ac37d391224d6107def1a053e54fb3ccd8eedddc56c164d5217e48680310570041e6c986ae01296983272f SHA512 43841dfc5412a22d32a76e9f2e8f9d507020039849c4b57c99b64277557138587bf203cfe0889f25091e18e9f6a05e93cf8523726d4a05c48e527d126e473aa5 -MISC metadata.xml 921 BLAKE2B 2af496d40c3d246f2998bbc99f2a50b017c5f63e82ce0bc416a9a33354222c903afe71c665e2267257a146bc3a70f2772a9bac5b5044a5258f0206c3a80c45b1 SHA512 8a37b273e39902b78047da2df82154035a12055a06154b70ef829d6f94670f995d49278f4655075bc0f7f1f00e591a0e79dd0e6bcd584d93764634a3fcd62549 diff --git a/sci-physics/qutip/metadata.xml b/sci-physics/qutip/metadata.xml deleted file mode 100644 index d20d38f47016..000000000000 --- a/sci-physics/qutip/metadata.xml +++ /dev/null @@ -1,14 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> -<pkgmetadata> - <maintainer type="project"> - <email>sci@gentoo.org</email> - <name>Gentoo Science Project</name> - </maintainer> - <longdescription lang="en"> - QuTiP is open-source software for simulating the dynamics of open quantum systems. The QuTiP library depends on the excellent Numpy, Scipy, and Cython numerical packages. In addition, graphical output is provided by Matplotlib. QuTiP aims to provide user-friendly and efficient numerical simulations of a wide variety of Hamiltonians, including those with arbitrary time-dependence, commonly found in a wide range of physics applications such as quantum optics, trapped ions, superconducting circuits, and quantum nanomechanical resonators. - </longdescription> - <upstream> - <remote-id type="github">qutip/qutip</remote-id> - </upstream> -</pkgmetadata> diff --git a/sci-physics/qutip/qutip-4.2.0.ebuild b/sci-physics/qutip/qutip-4.2.0.ebuild deleted file mode 100644 index 9bbf6fe19d2b..000000000000 --- a/sci-physics/qutip/qutip-4.2.0.ebuild +++ /dev/null @@ -1,51 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -PYTHON_COMPAT=( python3_6 ) - -inherit distutils-r1 toolchain-funcs - -DESCRIPTION="Simulating dynamics of open quantum systems in Python." -HOMEPAGE="http://qutip.org" -SRC_URI="https://github.com/qutip/qutip/archive/v$PV.tar.gz -> $P.tar.gz" - -LICENSE="BSD" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="openmp test" -RESTRICT="!test? ( test )" - -RDEPEND="dev-python/cython[${PYTHON_USEDEP}] - dev-python/numpy[${PYTHON_USEDEP}] - dev-python/matplotlib[${PYTHON_USEDEP}] - sci-libs/scipy[${PYTHON_USEDEP}] -" -DEPEND="${RDEPEND} - test? ( dev-python/nose[${PYTHON_USEDEP}] ) -" - -pkg_pretend() { - [[ ${MERGE_TYPE} != binary ]] && use openmp && tc-check-openmp -} - -pkg_setup() { - [[ ${MERGE_TYPE} != binary ]] && use openmp && tc-check-openmp -} - -python_prepare_all() { - sed -i setup.py \ - -e 's/_compiler_flags = .*$/_compiler_flags = []/' || die - - distutils-r1_python_prepare_all -} - -python_configure_all() { - use openmp && mydistutilsargs=( --with-openmp ) -} - -python_test() { - cd "${BUILD_DIR}"/lib* || die - ${EPYTHON} -c "import qutip.testing as qt ; qt.run()" || die -} |