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 B4C5D158018 for ; Sun, 3 Oct 2021 19:24:43 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 18981E08F2; Sun, 3 Oct 2021 19:24:43 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-CHACHA20-POLY1305 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id EDFD9E08F2 for ; Sun, 3 Oct 2021 19:24:42 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-CHACHA20-POLY1305 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id CEC34342F55 for ; Sun, 3 Oct 2021 19:24:41 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 5E62D89 for ; Sun, 3 Oct 2021 19:24:40 +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: <1633288790.5f152b66e1265f7fe0d6a4423f942d25ddf573cb.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/wurlitzer/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/wurlitzer/Manifest dev-python/wurlitzer/wurlitzer-2.1.1.ebuild X-VCS-Directories: dev-python/wurlitzer/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 5f152b66e1265f7fe0d6a4423f942d25ddf573cb X-VCS-Branch: master Date: Sun, 3 Oct 2021 19:24:40 +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: ebdb6849-35b1-42e6-ac49-1bbc0851a1ce X-Archives-Hash: af763f397434acf88f27ca48fe9d9400 commit: 5f152b66e1265f7fe0d6a4423f942d25ddf573cb Author: Michał Górny gentoo org> AuthorDate: Sun Oct 3 19:19:50 2021 +0000 Commit: Michał Górny gentoo org> CommitDate: Sun Oct 3 19:19:50 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5f152b66 dev-python/wurlitzer: Remove old Signed-off-by: Michał Górny gentoo.org> dev-python/wurlitzer/Manifest | 1 - dev-python/wurlitzer/wurlitzer-2.1.1.ebuild | 23 ----------------------- 2 files changed, 24 deletions(-) diff --git a/dev-python/wurlitzer/Manifest b/dev-python/wurlitzer/Manifest index 5454d3bca17..6e56a56b9cf 100644 --- a/dev-python/wurlitzer/Manifest +++ b/dev-python/wurlitzer/Manifest @@ -1,2 +1 @@ -DIST wurlitzer-2.1.1.tar.gz 8674 BLAKE2B 08cad7fc0ba0852a5d54b9141b419ed822330b763bc6a906be0be0f7f6e4e0f8d6c83e62fc8a63f5179babbaa6fcd4d8fb1e4a876631e324bd53d21f4f116f68 SHA512 776dfbdbfbe6c87818ce527519730a20dbb43f140751195c67e73eb3fa5a9a9181b8b475336ee43a184dc5b712ddaccbfc74bb0279b47f2d3b3e4d7db4a471ea DIST wurlitzer-3.0.2.tar.gz 9846 BLAKE2B fe3223d1305891b60b9b3c361e05047d227f5682c63a47135b0d3e95bc373918266ec4cc141c947ff68795da12a8ea0c3c9c7e7a6ea31de8af22766b3354bbca SHA512 b0398699a15910511726053d32aa883fba249df9e7de393d645e4ac927d6ee9950fb459d27129d2806e39494245250b23ddf41acd349af514056dba1739cb1c8 diff --git a/dev-python/wurlitzer/wurlitzer-2.1.1.ebuild b/dev-python/wurlitzer/wurlitzer-2.1.1.ebuild deleted file mode 100644 index 57afebf5151..00000000000 --- a/dev-python/wurlitzer/wurlitzer-2.1.1.ebuild +++ /dev/null @@ -1,23 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -PYTHON_COMPAT=( python3_{8..10} ) -inherit distutils-r1 - -DESCRIPTION="Capture C-level stdout/stderr in Python" -HOMEPAGE=" - https://github.com/minrk/wurlitzer/ - https://pypi.org/project/wurlitzer/" -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="amd64 x86" - -distutils_enable_tests pytest - -python_test() { - epytest test.py -}