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 390951382C5 for ; Fri, 1 Jan 2021 01:56:04 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 3D8E7E086E; Fri, 1 Jan 2021 01:56:03 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 25615E086E for ; Fri, 1 Jan 2021 01:56:03 +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 0DA66340ED1 for ; Fri, 1 Jan 2021 01:56:02 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id BE1A7489 for ; Fri, 1 Jan 2021 01:56:00 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1609466152.10fd7ce01ffe16320d5143c89a44f145228a5bdb.mgorny@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.0-r1.ebuild X-VCS-Directories: sci-misc/vitables/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 10fd7ce01ffe16320d5143c89a44f145228a5bdb X-VCS-Branch: master Date: Fri, 1 Jan 2021 01:56:00 +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: b529603d-0294-4bf8-84a0-89ded2110b11 X-Archives-Hash: 3deeefbbe0d7533ab382aa878101b3c7 commit: 10fd7ce01ffe16320d5143c89a44f145228a5bdb Author: Michał Górny gentoo org> AuthorDate: Fri Jan 1 01:52:07 2021 +0000 Commit: Michał Górny gentoo org> CommitDate: Fri Jan 1 01:55:52 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=10fd7ce0 sci-misc/vitables: Remove old (py3.6) Signed-off-by: Michał Górny gentoo.org> sci-misc/vitables/vitables-3.0.0-r1.ebuild | 38 ------------------------------ 1 file changed, 38 deletions(-) diff --git a/sci-misc/vitables/vitables-3.0.0-r1.ebuild b/sci-misc/vitables/vitables-3.0.0-r1.ebuild deleted file mode 100644 index a39e483b204..00000000000 --- a/sci-misc/vitables/vitables-3.0.0-r1.ebuild +++ /dev/null @@ -1,38 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -DISTUTILS_SINGLE_IMPL=1 -PYTHON_COMPAT=( python3_6 ) - -inherit distutils-r1 - -MY_P=ViTables-${PV} - -DESCRIPTION="A graphical tool for browsing / editing files in both PyTables and HDF5 formats" -HOMEPAGE="https://vitables.org/" -SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tar.gz" - -LICENSE="GPL-3" -SLOT="0" -KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux" - -RDEPEND=" - $(python_gen_cond_dep ' - dev-python/setuptools[${PYTHON_MULTI_USEDEP}] - dev-python/pytables[${PYTHON_MULTI_USEDEP}] - dev-python/QtPy[gui,${PYTHON_MULTI_USEDEP}] - ')" -DEPEND="${RDEPEND}" - -S=${WORKDIR}/${MY_P} - -python_prepare_all() { - # remove the PyQt5 dependency - # because PyQt5 in Gentoo does not provide egg-info - # see also: https://github.com/pyqt/python-qt5/issues/18 - sed "s:'PyQt5 [^ ]*::" -i setup.py || die - - distutils-r1_python_prepare_all -}