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 E27DC1382C5 for ; Fri, 7 May 2021 13:44:40 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 0EBD5E087F; Fri, 7 May 2021 13:44:40 +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 E8303E087E for ; Fri, 7 May 2021 13:44:39 +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 19B01340E51 for ; Fri, 7 May 2021 13:44:39 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 998F774C for ; Fri, 7 May 2021 13:44:37 +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: <1620395073.12a7d84eab35636d80d4e0d4ed860cceb6e6f144.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.0.1.ebuild X-VCS-Directories: dev-python/wurlitzer/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 12a7d84eab35636d80d4e0d4ed860cceb6e6f144 X-VCS-Branch: master Date: Fri, 7 May 2021 13:44:37 +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: 568fb4db-dd31-4049-a2b4-97c373fe7a41 X-Archives-Hash: f8385dee8bfbf337f1d6c7cbe4d659a6 commit: 12a7d84eab35636d80d4e0d4ed860cceb6e6f144 Author: Michał Górny gentoo org> AuthorDate: Fri May 7 13:41:02 2021 +0000 Commit: Michał Górny gentoo org> CommitDate: Fri May 7 13:44:33 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=12a7d84e dev-python/wurlitzer: Remove old Signed-off-by: Michał Górny gentoo.org> dev-python/wurlitzer/Manifest | 1 - dev-python/wurlitzer/wurlitzer-2.0.1.ebuild | 26 -------------------------- 2 files changed, 27 deletions(-) diff --git a/dev-python/wurlitzer/Manifest b/dev-python/wurlitzer/Manifest index 19b28ae0e46..daa8702c8d2 100644 --- a/dev-python/wurlitzer/Manifest +++ b/dev-python/wurlitzer/Manifest @@ -1,2 +1 @@ -DIST wurlitzer-2.0.1.tar.gz 10638 BLAKE2B e5350a3920ae072f93a0043ec368766d8e190558b3e897e68b272b06d0d6ff7907f2aeecfd41a99b54804a596ad9f7d7062995a5c465724a2b87419ee801daa3 SHA512 06f67b666c2a364b5ee497fa2f0ab8640aeb2953b678e35b13e1558ab29bc5554f479731f9942d8f033275f5151bb9f86408e0f04b1120bae0f29b27649d783c DIST wurlitzer-2.1.0.tar.gz 8788 BLAKE2B 9a9e9696446fe31f0ff392eee011f341ee24c102e4e6bac195586b764386d1a835567560306cd3cb6e942b539a57ffa15aa9b3a20fac9224311ed7301130c84d SHA512 cc7291786b0505627129619094218f51c0679c0c3550645af3b94bdd3f10afd5fc8402d89dcb599d874a5c9e4f4966dc49a6f98a1ab0e2bb9adbc3f95d4fcc6a diff --git a/dev-python/wurlitzer/wurlitzer-2.0.1.ebuild b/dev-python/wurlitzer/wurlitzer-2.0.1.ebuild deleted file mode 100644 index f1ec7b6d0ad..00000000000 --- a/dev-python/wurlitzer/wurlitzer-2.0.1.ebuild +++ /dev/null @@ -1,26 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -PYTHON_COMPAT=( python3_{7,8,9} ) - -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" - -DEPEND="test? ( dev-python/mock[${PYTHON_USEDEP}] )" - -distutils_enable_tests pytest - -python_test() { - pytest -vv test.py || die "Tests fail with ${EPYTHON}" -}