public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Michał Górny" <mgorny@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/qiskit-aer/
Date: Thu,  8 Dec 2022 05:19:17 +0000 (UTC)	[thread overview]
Message-ID: <1670476736.d132b6ee57130c2e5844d05bc4b3d671a7ac2745.mgorny@gentoo> (raw)

commit:     d132b6ee57130c2e5844d05bc4b3d671a7ac2745
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Wed Dec  7 15:48:57 2022 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Thu Dec  8 05:18:56 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d132b6ee

dev-python/qiskit-aer: Bump to 0.11.2

Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

 dev-python/qiskit-aer/Manifest                 |   1 +
 dev-python/qiskit-aer/qiskit-aer-0.11.2.ebuild | 104 +++++++++++++++++++++++++
 2 files changed, 105 insertions(+)

diff --git a/dev-python/qiskit-aer/Manifest b/dev-python/qiskit-aer/Manifest
index f31df6058b1b..639c3afdf999 100644
--- a/dev-python/qiskit-aer/Manifest
+++ b/dev-python/qiskit-aer/Manifest
@@ -1 +1,2 @@
 DIST qiskit-aer-0.11.1.gh.tar.gz 6699343 BLAKE2B 3795e1f71914bbc0074a2eac10a82a28f3171d50f292a13dcb705f62daa5fa332a1eabd52391c1b168a822ca6428feb79fe08bb7c93cfd2f7ee5b0d38fed012b SHA512 7880f2ee99f34eca285b9e7cd096981db2f981d41c54881c4036e2745e4af1185b740d93cd157b83ce4adaf8c207c9c063b86e9a1fa514d1388437d6f33e219f
+DIST qiskit-aer-0.11.2.gh.tar.gz 6707283 BLAKE2B ae32a469d23a31f202b9f970c59e9efb76c290243bce6179b0a58590d671f6dec0428245131e7cb2966b818dae9fbe7e7078a63fac107572e9e7d4a66e47a539 SHA512 48b28f6c54c898bb3984062ec772373e90899fd436c8e00f0c4abd57b6b98ea6c647283445fe551bd516483b66d25c9861ef519f01a0d1ddc6b3ddbce07bc56a

diff --git a/dev-python/qiskit-aer/qiskit-aer-0.11.2.ebuild b/dev-python/qiskit-aer/qiskit-aer-0.11.2.ebuild
new file mode 100644
index 000000000000..922051220ec2
--- /dev/null
+++ b/dev-python/qiskit-aer/qiskit-aer-0.11.2.ebuild
@@ -0,0 +1,104 @@
+# Copyright 2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{8..10} )
+
+inherit distutils-r1
+
+DESCRIPTION="High performance simulator for quantum circuits that includes noise models"
+HOMEPAGE="
+	https://github.com/Qiskit/qiskit-aer/
+	https://pypi.org/project/qiskit-aer/
+"
+SRC_URI="
+	https://github.com/Qiskit/qiskit-aer/archive/${PV}.tar.gz
+		-> ${P}.gh.tar.gz
+"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64"
+
+# The reference implementation of BLAS/CBLAS is not compatible with qiskit-aer right now,
+# because importing library causes an error.
+# /usr/lib/python3.9/site-packages/qiskit/providers/aer/backends/controller_wrappers.cpython-39-x86_64-linux-gnu.so: undefined symbol: slamch_
+# Using sci-libs/openblas instead here,
+# with the option to switch between reference/openblas implementation runtime (eselect-ldso).
+DEPEND="
+	>=dev-python/numpy-1.16.3[${PYTHON_USEDEP}]
+	>=dev-cpp/nlohmann_json-3.1.1
+	>=dev-libs/spdlog-1.5.0
+	>=dev-cpp/muParserX-4.0.8
+	virtual/cblas[eselect-ldso]
+	sci-libs/openblas[eselect-ldso]
+"
+
+BDEPEND="
+	>=dev-util/cmake-3.17
+	>=dev-python/scikit-build-0.11.0[${PYTHON_USEDEP}]
+	>=dev-python/pybind11-2.6[${PYTHON_USEDEP}]
+	test? (
+		dev-python/ddt[${PYTHON_USEDEP}]
+		dev-python/fixtures[${PYTHON_USEDEP}]
+	)
+"
+
+RDEPEND="
+	${DEPEND}
+	>=dev-python/qiskit-terra-0.21.0[${PYTHON_USEDEP}]
+	>=dev-python/scipy-1.0[${PYTHON_USEDEP}]
+"
+
+distutils_enable_tests pytest
+
+# Remove cmake dependency from setup.py because of
+# invalid dependency description. We put this dependency check in BDEPEND.
+PATCHES=( "${FILESDIR}/qiskit-aer-0.10.3-remove-cmake-dependency.patch" )
+
+check_openblas() {
+	local libdir=$(get_libdir) me="openblas"
+
+	# check blas
+	local current_blas=$(eselect blas show ${libdir} | cut -d' ' -f2)
+	if [[ ${current_blas} != "${me}" ]]; then
+		eerror "Current eselect: BLAS/CBLAS ($libdir) -> [${current_blas}]."
+		eerror "To use qiskit-aer, you have to issue (as root):"
+		eerror "\t eselect blas set ${libdir} ${me}"
+		return 1
+	fi
+	return 0
+}
+
+pkg_setup() {
+	if use test; then
+		check_openblas
+		if [ $? -ne 0 ]; then
+			die "Set blas implementation to openblas using 'eselect blas set openblas'!"
+		fi
+	fi
+}
+
+python_prepare_all() {
+	export DISABLE_CONAN="ON"
+	export DISABLE_DEPENDENCY_INSTALL="ON"
+	#export SKBUILD_CONFIGURE_OPTIONS=""
+
+	distutils-r1_python_prepare_all
+}
+
+python_test() {
+	local EPYTEST_DESELECT=(
+		# TODO
+		test/terra/states/test_aer_statevector.py::TestAerStatevector::test_number_to_latex_terms
+	)
+
+	rm -rf qiskit_aer || die
+	epytest -s
+}
+
+pkg_postinst() {
+	check_openblas
+}


             reply	other threads:[~2022-12-08  5:19 UTC|newest]

Thread overview: 30+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-12-08  5:19 Michał Górny [this message]
  -- strict thread matches above, loose matches on Subject: below --
2024-09-13 13:47 [gentoo-commits] repo/gentoo:master commit in: dev-python/qiskit-aer/ Michał Górny
2024-09-13 13:47 Michał Górny
2024-08-23 16:44 Michał Górny
2024-07-12 16:27 Michał Górny
2024-07-12 16:10 Michał Górny
2024-05-31  5:28 Michał Górny
2024-05-31  5:22 Michał Górny
2024-05-28 15:27 Michał Górny
2024-02-26 14:25 Michał Górny
2024-02-07  7:39 Michał Górny
2024-01-17  7:41 Michał Górny
2023-11-24 13:42 Michał Górny
2023-10-29  5:07 Michał Górny
2023-10-29  5:07 Michał Górny
2023-10-26 12:19 Michał Górny
2023-08-30  5:16 Sam James
2023-08-29 16:20 Michał Górny
2023-08-29 16:20 Michał Górny
2023-08-29 14:56 Michał Górny
2023-08-29 14:56 Michał Górny
2023-08-29 11:33 Michał Górny
2023-05-04 16:56 Michał Górny
2023-03-10  6:20 Sam James
2023-01-27 20:10 Michał Górny
2022-12-21 23:19 Sam James
2022-11-24  9:50 Sam James
2022-11-06 14:06 Michał Górny
2022-10-30 20:41 Sam James
2022-08-08  6:08 Sam James

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1670476736.d132b6ee57130c2e5844d05bc4b3d671a7ac2745.mgorny@gentoo \
    --to=mgorny@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox