public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: dev-python/qiskit-aer/, dev-python/qiskit-aer/files/
@ 2022-07-15  2:12 Sam James
  0 siblings, 0 replies; 2+ messages in thread
From: Sam James @ 2022-07-15  2:12 UTC (permalink / raw
  To: gentoo-commits

commit:     750a63de656212034e3106e0a2685f02248ade81
Author:     Gábor Oszkár Dénes <gaboroszkar <AT> protonmail <DOT> com>
AuthorDate: Tue Mar  8 20:38:52 2022 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Fri Jul 15 02:12:01 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=750a63de

dev-python/qiskit-aer: new package

Closes: https://bugs.gentoo.org/834772
Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Gábor Oszkár Dénes <gaboroszkar <AT> protonmail.com>
Closes: https://github.com/gentoo/gentoo/pull/24455
Signed-off-by: Sam James <sam <AT> gentoo.org>

 dev-python/qiskit-aer/Manifest                     |  1 +
 ...qiskit-aer-0.10.3-remove-cmake-dependency.patch | 10 +++
 dev-python/qiskit-aer/metadata.xml                 | 21 +++++
 dev-python/qiskit-aer/qiskit-aer-0.10.3.ebuild     | 92 ++++++++++++++++++++++
 4 files changed, 124 insertions(+)

diff --git a/dev-python/qiskit-aer/Manifest b/dev-python/qiskit-aer/Manifest
new file mode 100644
index 000000000000..1dd95accffd1
--- /dev/null
+++ b/dev-python/qiskit-aer/Manifest
@@ -0,0 +1 @@
+DIST qiskit-aer-0.10.3.gh.tar.gz 6657490 BLAKE2B 443f7df2259c720fb93a60659da9b1cded25f9dbdf585bd0322e9f4effe4c5955daf6587d6c3964ab4a7e4a8bf6270f857abae1cf4e6b0718801daa6a96c2aec SHA512 c882624bac373566b003a01fffa6963d4ad8796ce18786b50ef85350daac26814c147b36067eb6fce4f264919b3680246e767b5c13ac338817fd394620392079

diff --git a/dev-python/qiskit-aer/files/qiskit-aer-0.10.3-remove-cmake-dependency.patch b/dev-python/qiskit-aer/files/qiskit-aer-0.10.3-remove-cmake-dependency.patch
new file mode 100644
index 000000000000..44917bbf8cca
--- /dev/null
+++ b/dev-python/qiskit-aer/files/qiskit-aer-0.10.3-remove-cmake-dependency.patch
@@ -0,0 +1,10 @@
+--- a/setup.py	2022-02-09 17:41:55.000000000 +0100
++++ b/setup.py	2022-03-02 14:44:04.344551645 +0100
+@@ -72,7 +72,6 @@
+ 
+ setup_requirements = common_requirements + [
+     'scikit-build>=0.11.0',
+-    'cmake!=3.17,!=3.17.0',
+     'pybind11>=2.6',
+ ]
+ 

diff --git a/dev-python/qiskit-aer/metadata.xml b/dev-python/qiskit-aer/metadata.xml
new file mode 100644
index 000000000000..766391b439a3
--- /dev/null
+++ b/dev-python/qiskit-aer/metadata.xml
@@ -0,0 +1,21 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+  <!-- comaintainers-welcomed -->
+  <maintainer type="person" proxied="yes">
+    <email>gaboroszkar@protonmail.com</email>
+    <name>Gábor Oszkár Dénes</name>
+  </maintainer>
+  <maintainer type="project" proxied="proxy">
+    <email>proxy-maint@gentoo.org</email>
+    <name>Proxy Maintainers</name>
+  </maintainer>
+  <longdescription>
+    Qiskit is an open-source framework for working with noisy quantum computers at the level of pulses, circuits, and algorithms.
+    Qiskit is made up of elements that each work together to enable quantum computing. This element is Aer, which provides high-performance quantum computing simulators with realistic noise models.
+  </longdescription>
+  <upstream>
+    <remote-id type="github">Qiskit/qiskit-aer</remote-id>
+    <remote-id type="pypi">qiskit-aer</remote-id>
+  </upstream>
+</pkgmetadata>

diff --git a/dev-python/qiskit-aer/qiskit-aer-0.10.3.ebuild b/dev-python/qiskit-aer/qiskit-aer-0.10.3.ebuild
new file mode 100644
index 000000000000..3fc6e2707460
--- /dev/null
+++ b/dev-python/qiskit-aer/qiskit-aer-0.10.3.ebuild
@@ -0,0 +1,92 @@
+# 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"
+SRC_URI="https://github.com/Qiskit/qiskit-aer/archive/refs/tags/${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).
+COMMON_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="
+	${COMMON_DEPEND}
+	>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="
+	${COMMON_DEPEND}
+	>=dev-python/qiskit-terra-0.19.1[${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"
+	distutils-r1_python_prepare_all
+}
+
+python_test() {
+	# We have to hide the source code directory so tests
+	# do not use these, but instead the compiled library.
+	mv qiskit qiskit.hidden || die
+	epytest
+	mv qiskit.hidden qiskit || die
+}
+
+pkg_postinst() {
+	check_openblas
+}


^ permalink raw reply related	[flat|nested] 2+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-python/qiskit-aer/, dev-python/qiskit-aer/files/
@ 2023-12-22 16:43 Michał Górny
  0 siblings, 0 replies; 2+ messages in thread
From: Michał Górny @ 2023-12-22 16:43 UTC (permalink / raw
  To: gentoo-commits

commit:     e26f5fc564f86a782f4e3478ec47492512d45477
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Fri Dec 22 16:21:31 2023 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Fri Dec 22 16:43:18 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e26f5fc5

dev-python/qiskit-aer: Remove old

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

 dev-python/qiskit-aer/Manifest                     |   2 -
 ...qiskit-aer-0.10.3-remove-cmake-dependency.patch |  10 --
 .../files/qiskit-aer-0.11.2-terra-test.patch       |  45 --------
 dev-python/qiskit-aer/qiskit-aer-0.11.2-r1.ebuild  | 111 ------------------
 dev-python/qiskit-aer/qiskit-aer-0.13.0-r1.ebuild  | 125 ---------------------
 5 files changed, 293 deletions(-)

diff --git a/dev-python/qiskit-aer/Manifest b/dev-python/qiskit-aer/Manifest
index d886abef6e28..ef5574dd4b16 100644
--- a/dev-python/qiskit-aer/Manifest
+++ b/dev-python/qiskit-aer/Manifest
@@ -1,4 +1,2 @@
-DIST qiskit-aer-0.11.2.gh.tar.gz 6707283 BLAKE2B ae32a469d23a31f202b9f970c59e9efb76c290243bce6179b0a58590d671f6dec0428245131e7cb2966b818dae9fbe7e7078a63fac107572e9e7d4a66e47a539 SHA512 48b28f6c54c898bb3984062ec772373e90899fd436c8e00f0c4abd57b6b98ea6c647283445fe551bd516483b66d25c9861ef519f01a0d1ddc6b3ddbce07bc56a
 DIST qiskit-aer-0.12.2.gh.tar.gz 6979559 BLAKE2B c7f12c9b8f53a9031844e123b8ef6d723e0099be028c5cfba03143fb8b3c7269768ade99d3ef3b4b82c0b36756bf8e82971a3f70c0f5735891eb77a78a6d9512 SHA512 2a9ed6777e5e4d60a393d5a1b21b44ea3fa90fb791aeafda8bbb4ca8b55c7e8161cd5a275fd14bf968a22537cede099dbd419d1a3c5edebe85fdb82501c4de90
-DIST qiskit-aer-0.13.0.gh.tar.gz 6976422 BLAKE2B ca38dc3ec718a2e1c29bb54e69b0c327e8b0b3b7be5de41aef92c45c4e192565e43e9a21bd53bd2fa55cff4b0259052c59112d45d413d4eb3ba091e1855de4ca SHA512 3e9b8c46dcd655f44a790c6c704f8fa4adb734e4adcb5e6b7b24d7d2f126bfe55340de9814b6b7a7fc276f510dd6fd9fed8525cc42a236ed97f48199435cebe5
 DIST qiskit-aer-0.13.1.gh.tar.gz 6979392 BLAKE2B a49f992a80ef644f34cb570d6cf85e147b7c897004c248ec749c43a64c5b950fe9d7f178c53b79202f73186c03e5bc61f36be76b904e22aa6f82a79b1b255bcf SHA512 45568fc1027bb530121a0c39b3bab7847e481e0dba57a005c1a1afb8f3523c098a11acddf96eac87bc750e19d2f7c4e47d8de797ae2501b464d68b849ec7b809

diff --git a/dev-python/qiskit-aer/files/qiskit-aer-0.10.3-remove-cmake-dependency.patch b/dev-python/qiskit-aer/files/qiskit-aer-0.10.3-remove-cmake-dependency.patch
deleted file mode 100644
index 44917bbf8cca..000000000000
--- a/dev-python/qiskit-aer/files/qiskit-aer-0.10.3-remove-cmake-dependency.patch
+++ /dev/null
@@ -1,10 +0,0 @@
---- a/setup.py	2022-02-09 17:41:55.000000000 +0100
-+++ b/setup.py	2022-03-02 14:44:04.344551645 +0100
-@@ -72,7 +72,6 @@
- 
- setup_requirements = common_requirements + [
-     'scikit-build>=0.11.0',
--    'cmake!=3.17,!=3.17.0',
-     'pybind11>=2.6',
- ]
- 

diff --git a/dev-python/qiskit-aer/files/qiskit-aer-0.11.2-terra-test.patch b/dev-python/qiskit-aer/files/qiskit-aer-0.11.2-terra-test.patch
deleted file mode 100644
index e9f65dd6a42a..000000000000
--- a/dev-python/qiskit-aer/files/qiskit-aer-0.11.2-terra-test.patch
+++ /dev/null
@@ -1,45 +0,0 @@
-https://github.com/Qiskit/qiskit-aer/commit/cec5c11513118fa8d701e2bef1376dc3db7263c3
-
-From cec5c11513118fa8d701e2bef1376dc3db7263c3 Mon Sep 17 00:00:00 2001
-From: Jun Doi <doichan@jp.ibm.com>
-Date: Fri, 27 Jan 2023 18:55:59 +0900
-Subject: [PATCH] Fix test_aer_statevector (#1710)
-
-* fix test_aer_statevector
-
-* add plot directive to docs
-
-* fix test_aer_statevector and remove reno
-
-Co-authored-by: Hiroshi Horii <horii@jp.ibm.com>
---- a/docs/conf.py
-+++ b/docs/conf.py
-@@ -67,6 +67,7 @@ extensions = [
-     'sphinx_tabs.tabs',
-     'jupyter_sphinx',
-     'reno.sphinxext',
-+    'matplotlib.sphinxext.plot_directive',
- ]
- html_static_path = ['_static']
- templates_path = ['_templates']
---- a/test/terra/states/test_aer_statevector.py
-+++ b/test/terra/states/test_aer_statevector.py
-@@ -1347,13 +1347,14 @@ class TestAerStatevector(common.QiskitAerTestCase):
-             ([-1, 1j], ["-", "+i"]),
-             ([1e-16 + 1j], ["i"]),
-             ([-1 + 1e-16 * 1j], ["-"]),
--            ([-1, -1 - 1j], ["-", "+ (-1 - i)"]),
-+            ([-1, -1 - 1j], ["-", "+(-1 - i)"]),
-             ([np.sqrt(2) / 2, np.sqrt(2) / 2], ["\\frac{\\sqrt{2}}{2}", "+\\frac{\\sqrt{2}}{2}"]),
-             ([1 + np.sqrt(2)], ["(1 + \\sqrt{2})"]),
-         ]
--        for numbers, latex_terms in cases:
--            terms = numbers_to_latex_terms(numbers)
--            self.assertListEqual(terms, latex_terms)
-+        with self.assertWarns(DeprecationWarning):
-+            for numbers, latex_terms in cases:
-+                terms = numbers_to_latex_terms(numbers, 15)
-+                self.assertListEqual(terms, latex_terms)
- 
-     def test_statevector_draw_latex_regression(self):
-         """Test numerical rounding errors are not printed"""

diff --git a/dev-python/qiskit-aer/qiskit-aer-0.11.2-r1.ebuild b/dev-python/qiskit-aer/qiskit-aer-0.11.2-r1.ebuild
deleted file mode 100644
index 157523e90315..000000000000
--- a/dev-python/qiskit-aer/qiskit-aer-0.11.2-r1.ebuild
+++ /dev/null
@@ -1,111 +0,0 @@
-# Copyright 2022-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_EXT=1
-DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{9..11} )
-
-inherit distutils-r1 multiprocessing
-
-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]
-"
-RDEPEND="
-	${DEPEND}
-	>=dev-python/qiskit-terra-0.21.0[${PYTHON_USEDEP}]
-	>=dev-python/scipy-1.0[${PYTHON_USEDEP}]
-"
-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}]
-		dev-python/pytest-xdist[${PYTHON_USEDEP}]
-	)
-"
-
-PATCHES=(
-	# Remove cmake dependency from setup.py because of
-	# invalid dependency description. We put this dependency check in BDEPEND.
-	"${FILESDIR}/qiskit-aer-0.10.3-remove-cmake-dependency.patch"
-	"${FILESDIR}/qiskit-aer-0.11.2-terra-test.patch"
-)
-
-distutils_enable_tests pytest
-
-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_drawings
-
-		# TODO: GLIBCXX_ASSERTIONS, bug #897758
-		test/terra/backends/aer_simulator/test_algorithms.py::TestAlgorithms::test_extended_stabilizer_sparse_output_probs
-		test/terra/backends/aer_simulator/test_options.py::TestOptions::test_mps_options
-	)
-
-	rm -rf qiskit_aer || die
-	epytest -n "$(makeopts_jobs)" -s
-}
-
-pkg_postinst() {
-	check_openblas
-}

diff --git a/dev-python/qiskit-aer/qiskit-aer-0.13.0-r1.ebuild b/dev-python/qiskit-aer/qiskit-aer-0.13.0-r1.ebuild
deleted file mode 100644
index 2619da85ec7d..000000000000
--- a/dev-python/qiskit-aer/qiskit-aer-0.13.0-r1.ebuild
+++ /dev/null
@@ -1,125 +0,0 @@
-# Copyright 2022-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_EXT=1
-DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{10..11} )
-
-inherit distutils-r1 multiprocessing
-
-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).
-#
-# <nlohmann_json-3.10.3 for https://github.com/Qiskit/qiskit-aer/issues/1742
-DEPEND="
-	>=dev-python/numpy-1.16.3[${PYTHON_USEDEP}]
-	<dev-cpp/nlohmann_json-3.10.3
-	>=dev-cpp/nlohmann_json-3.1.1
-	>=dev-libs/spdlog-1.9.2:=
-	>=dev-cpp/muParserX-4.0.8
-	virtual/cblas[eselect-ldso]
-	sci-libs/openblas[eselect-ldso]
-"
-RDEPEND="
-	${DEPEND}
-	>=dev-python/qiskit-terra-0.25.1-r1[${PYTHON_USEDEP}]
-	>=dev-python/scipy-1.0[${PYTHON_USEDEP}]
-"
-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}]
-		dev-python/pytest-xdist[${PYTHON_USEDEP}]
-	)
-"
-
-distutils_enable_tests pytest
-
-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="-DTEST_JSON=1"
-
-	# remove meaningless dep on the metapackage
-	sed -i -e '/qiskit>=/d' setup.py || die
-
-	distutils-r1_python_prepare_all
-}
-
-python_test() {
-	local EPYTEST_DESELECT=(
-		# TODO
-		test/terra/states/test_aer_state.py::TestAerState::test_appply_diagonal
-		test/terra/states/test_aer_state.py::TestAerState::test_appply_measure
-		test/terra/states/test_aer_state.py::TestAerState::test_appply_reset
-
-		# TODO: GLIBCXX_ASSERTIONS, bug #897758
-		test/terra/backends/aer_simulator/test_algorithms.py::TestAlgorithms::test_extended_stabilizer_sparse_output_probs
-		test/terra/backends/aer_simulator/test_options.py::TestOptions::test_mps_options
-		test/terra/backends/aer_simulator/test_fusion.py::TestGateFusion::test_parallel_fusion_diagonal
-
-		# requires qiskit_qasm3_import
-		test/terra/backends/aer_simulator/test_save_statevector.py::TestSaveStatevector::test_save_statevector_for_qasm3_circuit_1___automatic____CPU__
-		test/terra/backends/aer_simulator/test_save_statevector.py::TestSaveStatevector::test_save_statevector_for_qasm3_circuit_2___statevector____CPU__
-		test/terra/backends/aer_simulator/test_save_statevector.py::TestSaveStatevector::test_save_statevector_for_qasm3_circuit_3___matrix_product_state____CPU__
-		test/terra/backends/aer_simulator/test_save_statevector.py::TestSaveStatevector::test_save_statevector_for_qasm3_circuit_4___extended_stabilizer____CPU__
-	)
-
-	# From tox.ini/tests.yml in CI
-	# Needed to suppress a warning in jupyter-core 5.x by eagerly migrating to
-	# a new internal interface that will be the default in jupyter-core 6.x.
-	# This variable should become redundant on release of jupyter-core 6.
-	local -x JUPYTER_PLATFORM_DIRS=1
-
-	rm -rf qiskit_aer || die
-	epytest -n "$(makeopts_jobs)" -s
-}
-
-pkg_postinst() {
-	check_openblas
-}


^ permalink raw reply related	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2023-12-22 16:43 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-07-15  2:12 [gentoo-commits] repo/gentoo:master commit in: dev-python/qiskit-aer/, dev-python/qiskit-aer/files/ Sam James
  -- strict thread matches above, loose matches on Subject: below --
2023-12-22 16:43 Michał Górny

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox