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 A6DA9158170 for ; Sun, 21 Jul 2024 02:47:58 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 2BBCF2BC077; Sun, 21 Jul 2024 02:47:57 +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 0FFE12BC077 for ; Sun, 21 Jul 2024 02:47:57 +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 1FF1234307D for ; Sun, 21 Jul 2024 02:47:56 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id AD9E41DF4 for ; Sun, 21 Jul 2024 02:47:54 +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: <1721529960.4f751d8f94f073e9c26cad1f44dbac3f145d325e.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/humanfriendly/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/humanfriendly/humanfriendly-10.0-r1.ebuild X-VCS-Directories: dev-python/humanfriendly/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 4f751d8f94f073e9c26cad1f44dbac3f145d325e X-VCS-Branch: master Date: Sun, 21 Jul 2024 02:47:54 +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: 71cfe5b1-04d9-4b3c-9450-408d443824a2 X-Archives-Hash: b2d6e4ff5361faaad1a72db0d0bef182 commit: 4f751d8f94f073e9c26cad1f44dbac3f145d325e Author: Michał Górny gentoo org> AuthorDate: Sun Jul 21 02:46:00 2024 +0000 Commit: Michał Górny gentoo org> CommitDate: Sun Jul 21 02:46:00 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4f751d8f dev-python/humanfriendly: Remove old Signed-off-by: Michał Górny gentoo.org> .../humanfriendly/humanfriendly-10.0-r1.ebuild | 38 ---------------------- 1 file changed, 38 deletions(-) diff --git a/dev-python/humanfriendly/humanfriendly-10.0-r1.ebuild b/dev-python/humanfriendly/humanfriendly-10.0-r1.ebuild deleted file mode 100644 index 06e3fae0e80f..000000000000 --- a/dev-python/humanfriendly/humanfriendly-10.0-r1.ebuild +++ /dev/null @@ -1,38 +0,0 @@ -# Copyright 1999-2024 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -PYTHON_COMPAT=( pypy3 python3_{10..12} ) -PYTHON_REQ_USE="threads(+)" -DISTUTILS_USE_PEP517=setuptools -inherit distutils-r1 pypi - -DESCRIPTION="Human friendly output for text interfaces using Python" -HOMEPAGE="https://pypi.org/project/humanfriendly/ - https://github.com/xolox/python-humanfriendly/ - https://humanfriendly.readthedocs.io/" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="amd64 ~arm ~x86 ~amd64-linux ~x86-linux" - -# This is completely broken -# AttributeError: module 'humanfriendly.tests' has no attribute 'connect' -RESTRICT="test" - -BDEPEND=" - test? ( - dev-python/capturer[${PYTHON_USEDEP}] - >=dev-python/coloredlogs-15.0.1[${PYTHON_USEDEP}] - dev-python/docutils[${PYTHON_USEDEP}] - dev-python/mock[${PYTHON_USEDEP}] - ) -" - -distutils_enable_tests pytest -distutils_enable_sphinx docs - -python_test() { - epytest humanfriendly/tests.py -}