From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 20CEA1382C5 for ; Fri, 8 Jan 2021 00:00:12 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 3586DE082D; Fri, 8 Jan 2021 00:00:09 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 1AECEE082D for ; Fri, 8 Jan 2021 00:00:09 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 15063340CEA for ; Fri, 8 Jan 2021 00:00:06 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C67C5492 for ; Fri, 8 Jan 2021 00:00:03 +0000 (UTC) From: "Andreas Sturmlechner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas Sturmlechner" Message-ID: <1610063810.92595d086962ff071c90b94ab7364e52eddfe8ef.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sci-visualization/veusz/ X-VCS-Repository: repo/gentoo X-VCS-Files: sci-visualization/veusz/veusz-3.2.ebuild X-VCS-Directories: sci-visualization/veusz/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 92595d086962ff071c90b94ab7364e52eddfe8ef X-VCS-Branch: master Date: Fri, 8 Jan 2021 00:00:03 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: c9ec9b70-10d7-4aba-8b4d-665d2f19cf59 X-Archives-Hash: f45fca55cc87d5c603ed561a750efcaf commit: 92595d086962ff071c90b94ab7364e52eddfe8ef Author: Andreas Sturmlechner gentoo org> AuthorDate: Thu Jan 7 23:06:46 2021 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Thu Jan 7 23:56:50 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=92595d08 sci-visualization/veusz: Use qmake-utils Closes: https://bugs.gentoo.org/763921 Package-Manager: Portage-3.0.12, Repoman-3.0.2 Signed-off-by: Andreas Sturmlechner gentoo.org> sci-visualization/veusz/veusz-3.2.ebuild | 27 +++++++++++++++++---------- 1 file changed, 17 insertions(+), 10 deletions(-) diff --git a/sci-visualization/veusz/veusz-3.2.ebuild b/sci-visualization/veusz/veusz-3.2.ebuild index 54682cc5cd7..a3d3cdd68a2 100644 --- a/sci-visualization/veusz/veusz-3.2.ebuild +++ b/sci-visualization/veusz/veusz-3.2.ebuild @@ -1,37 +1,44 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 PYTHON_COMPAT=( python3_{6,7,8,9} ) - -inherit desktop distutils-r1 virtualx xdg +inherit desktop distutils-r1 qmake-utils virtualx xdg DESCRIPTION="Qt scientific plotting package with good Postscript output" HOMEPAGE="https://veusz.github.io/" SRC_URI="https://github.com/${PN}/${PN}/releases/download/${P}/${P}.tar.gz" -SLOT="0" LICENSE="GPL-2" +SLOT="0" KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux" IUSE="dbus doc hdf5" RESTRICT="!test? ( test )" -CDEPEND="dev-python/PyQt5[widgets,svg,printsupport,${PYTHON_USEDEP}] - dev-python/numpy[${PYTHON_USEDEP}]" -RDEPEND="${CDEPEND} +COMMON_DEPEND=" + dev-python/numpy[${PYTHON_USEDEP}] + dev-python/PyQt5[widgets,svg,printsupport,${PYTHON_USEDEP}] +" +RDEPEND="${COMMON_DEPEND} dbus? ( dev-python/dbus-python[${PYTHON_USEDEP}] ) - hdf5? ( dev-python/h5py[${PYTHON_USEDEP}] )" -DEPEND="${CDEPEND} + hdf5? ( dev-python/h5py[${PYTHON_USEDEP}] ) +" +DEPEND="${COMMON_DEPEND} dev-python/setuptools[${PYTHON_USEDEP}] dev-python/sip[${PYTHON_USEDEP}] - doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )" + doc? ( dev-python/sphinx[${PYTHON_USEDEP}] ) +" src_prepare() { distutils-r1_src_prepare xdg_environment_reset } +python_compile() { + distutils-r1_python_compile build_ext --qmake-exe=$(qt5_get_bindir)/qmake +} + python_test() { distutils_install_for_testing VIRTUALX_COMMAND="${EPYTHON}" \