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 CD5D6158021 for ; Mon, 14 Nov 2022 04:36:26 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 238E3E0907; Mon, 14 Nov 2022 04:36:26 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 0AA63E0905 for ; Mon, 14 Nov 2022 04:36:26 +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)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 2B4C6335DEB for ; Mon, 14 Nov 2022 04:36:25 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 9784674E for ; Mon, 14 Nov 2022 04:36:22 +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: <1668400488.a7e219af729ce3ac1b2051b5eaaf5f3a81108f6e.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/dbfread/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/dbfread/dbfread-2.0.7.ebuild X-VCS-Directories: dev-python/dbfread/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: a7e219af729ce3ac1b2051b5eaaf5f3a81108f6e X-VCS-Branch: master Date: Mon, 14 Nov 2022 04:36:22 +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: f4480ede-a484-430e-aecb-f1a0a793cef0 X-Archives-Hash: 1fc450060e07ac6b68b5a2e3b0eae557 commit: a7e219af729ce3ac1b2051b5eaaf5f3a81108f6e Author: Michał Górny gentoo org> AuthorDate: Mon Nov 14 04:34:48 2022 +0000 Commit: Michał Górny gentoo org> CommitDate: Mon Nov 14 04:34:48 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a7e219af dev-python/dbfread: Remove old Signed-off-by: Michał Górny gentoo.org> dev-python/dbfread/dbfread-2.0.7.ebuild | 40 --------------------------------- 1 file changed, 40 deletions(-) diff --git a/dev-python/dbfread/dbfread-2.0.7.ebuild b/dev-python/dbfread/dbfread-2.0.7.ebuild deleted file mode 100644 index 4a571406dac8..000000000000 --- a/dev-python/dbfread/dbfread-2.0.7.ebuild +++ /dev/null @@ -1,40 +0,0 @@ -# Copyright 2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 -PYTHON_COMPAT=( python3_{8..10} ) -DISTUTILS_USE_SETUPTOOLS=bdepend - -inherit distutils-r1 - -DESCRIPTION="Read DBF Files with Python" -HOMEPAGE="https://github.com/olemb/dbfread https://pypi.org/project/dbfread/" -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz - test? ( https://github.com/olemb/dbfread/archive/refs/tags/${PV}.tar.gz -> ${P}-src.tar.gz )" -LICENSE="MIT" -SLOT="0" -KEYWORDS="~amd64" -IUSE="" -RDEPEND="" - -distutils_enable_tests pytest - -python_prepare_all() { - sed -e 's|\[pytest\]|[tool:pytest]|' -i setup.cfg || die - distutils-r1_python_prepare_all -} - -python_test() { - local pytest_args test_name xfails - - xfails=( - dbfread/test_read_and_length.py::test_len - dbfread/test_read_and_length.py::test_list - ) - - for test_name in "${xfails[@]}"; do - pytest_args+=(--deselect "${test_name}") - done - - epytest "${pytest_args[@]}" -}