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 97172158091 for ; Thu, 16 Jun 2022 09:18:57 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id CEEFDE0891; Thu, 16 Jun 2022 09:18:56 +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)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id B7FF7E0891 for ; Thu, 16 Jun 2022 09:18:56 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 0997F341EDA for ; Thu, 16 Jun 2022 09:18:56 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 84B5050A for ; Thu, 16 Jun 2022 09:18:53 +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: <1655371123.1f4a0bd3bd5841790cc1e853a9ca7797de26d4c7.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/deprecated/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/deprecated/deprecated-1.2.13.ebuild X-VCS-Directories: dev-python/deprecated/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 1f4a0bd3bd5841790cc1e853a9ca7797de26d4c7 X-VCS-Branch: master Date: Thu, 16 Jun 2022 09:18:53 +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: 01fff985-a3c4-424f-ae90-e30d1e007915 X-Archives-Hash: c2cdb6ee7d8901837979527e3d66b559 commit: 1f4a0bd3bd5841790cc1e853a9ca7797de26d4c7 Author: Michał Górny gentoo org> AuthorDate: Thu Jun 16 09:14:12 2022 +0000 Commit: Michał Górny gentoo org> CommitDate: Thu Jun 16 09:18:43 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1f4a0bd3 dev-python/deprecated: Remove old Signed-off-by: Michał Górny gentoo.org> dev-python/deprecated/deprecated-1.2.13.ebuild | 32 -------------------------- 1 file changed, 32 deletions(-) diff --git a/dev-python/deprecated/deprecated-1.2.13.ebuild b/dev-python/deprecated/deprecated-1.2.13.ebuild deleted file mode 100644 index 000465c10a44..000000000000 --- a/dev-python/deprecated/deprecated-1.2.13.ebuild +++ /dev/null @@ -1,32 +0,0 @@ -# Copyright 2019-2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -PYTHON_COMPAT=( python3_{8..10} pypy3 ) -inherit distutils-r1 - -DESCRIPTION="Python @deprecated decorator to deprecate old API" -HOMEPAGE="https://github.com/tantale/deprecated" -SRC_URI=" - https://github.com/tantale/deprecated/archive/v${PV}.tar.gz - -> ${P}.gh.tar.gz" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="amd64 arm arm64 ~hppa ppc ppc64 ~riscv sparc x86" - -RDEPEND="dev-python/wrapt[${PYTHON_USEDEP}]" - -distutils_enable_tests pytest - -python_test() { - local EPYTEST_DESELECT=() - - [[ ${EPYTHON} == pypy3 ]] && EPYTEST_DESELECT+=( - tests/test_deprecated.py::test_respect_global_filter - tests/test_deprecated_class.py::test_class_respect_global_filter - ) - - epytest -}