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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id A2767158094 for ; Wed, 5 Oct 2022 14:27:08 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 99842E08E0; Wed, 5 Oct 2022 14:27:07 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 7A25DE08E0 for ; Wed, 5 Oct 2022 14:27:07 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 74E26341017 for ; Wed, 5 Oct 2022 14:27:06 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B1C005BF for ; Wed, 5 Oct 2022 14:27:04 +0000 (UTC) From: "Andrew Ammerlaan" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andrew Ammerlaan" Message-ID: <1664979993.ef7a884b7d69b42c30a59c68bcd97f3e9d1fa7a4.andrewammerlaan@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sci-misc/vitables/ X-VCS-Repository: repo/gentoo X-VCS-Files: sci-misc/vitables/vitables-3.0.2-r1.ebuild X-VCS-Directories: sci-misc/vitables/ X-VCS-Committer: andrewammerlaan X-VCS-Committer-Name: Andrew Ammerlaan X-VCS-Revision: ef7a884b7d69b42c30a59c68bcd97f3e9d1fa7a4 X-VCS-Branch: master Date: Wed, 5 Oct 2022 14:27:04 +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: 9248811f-e28f-4b0a-9cca-7e09013c107d X-Archives-Hash: 16edac190d7055eda0120b956b88fc6a commit: ef7a884b7d69b42c30a59c68bcd97f3e9d1fa7a4 Author: Andrew Ammerlaan gentoo org> AuthorDate: Wed Oct 5 14:26:28 2022 +0000 Commit: Andrew Ammerlaan gentoo org> CommitDate: Wed Oct 5 14:26:33 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ef7a884b sci-misc/vitables: update EAPI 7 -> 8, PEP517, enable py3_10 Closes: https://bugs.gentoo.org/846284 Signed-off-by: Andrew Ammerlaan gentoo.org> sci-misc/vitables/vitables-3.0.2-r1.ebuild | 41 ++++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) diff --git a/sci-misc/vitables/vitables-3.0.2-r1.ebuild b/sci-misc/vitables/vitables-3.0.2-r1.ebuild new file mode 100644 index 000000000000..3b9e8f66f750 --- /dev/null +++ b/sci-misc/vitables/vitables-3.0.2-r1.ebuild @@ -0,0 +1,41 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_SINGLE_IMPL=1 +DISTUTILS_USE_PEP517=setuptools +PYTHON_COMPAT=( python3_{8..10} ) + +inherit distutils-r1 + +MY_PN="ViTables" +MY_P="${MY_PN}-${PV}" + +DESCRIPTION="A graphical tool for browsing / editing files in both PyTables and HDF5 formats" +HOMEPAGE="https://vitables.org/" +SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz" +S="${WORKDIR}/${MY_P}" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +RDEPEND=" + $(python_gen_cond_dep ' + dev-python/numpy[${PYTHON_USEDEP}] + dev-python/numexpr[${PYTHON_USEDEP}] + dev-python/pytables[${PYTHON_USEDEP}] + dev-python/QtPy[gui,${PYTHON_USEDEP}] + ')" +DEPEND="${RDEPEND}" +BDEPEND=" + test? ( + $(python_gen_cond_dep ' +