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 F0751138359 for ; Sat, 22 Aug 2020 07:13:17 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9E39BE084E; Sat, 22 Aug 2020 07:13:13 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 88D44E0844 for ; Sat, 22 Aug 2020 07:13:13 +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 84F5A340E1B for ; Sat, 22 Aug 2020 07:13:12 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 9334A338 for ; Sat, 22 Aug 2020 07:13:09 +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: <1598080146.c02b3110d6fe1139ef87012f4ca757ac92e4fc56.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.0.ebuild X-VCS-Directories: dev-python/wurlitzer/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: c02b3110d6fe1139ef87012f4ca757ac92e4fc56 X-VCS-Branch: master Date: Sat, 22 Aug 2020 07:13:09 +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: 2f10283f-497d-44cd-8053-9ad0683ec3c6 X-Archives-Hash: 4051d2777a40f6cdab257173927b6583 commit: c02b3110d6fe1139ef87012f4ca757ac92e4fc56 Author: Michał Górny gentoo org> AuthorDate: Sat Aug 22 07:09:06 2020 +0000 Commit: Michał Górny gentoo org> CommitDate: Sat Aug 22 07:09:06 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c02b3110 dev-python/wurlitzer: Remove redundant versions Signed-off-by: Michał Górny gentoo.org> dev-python/wurlitzer/Manifest | 1 - dev-python/wurlitzer/wurlitzer-2.0.0.ebuild | 23 ----------------------- 2 files changed, 24 deletions(-) diff --git a/dev-python/wurlitzer/Manifest b/dev-python/wurlitzer/Manifest index ff37e88f7be..123051f4796 100644 --- a/dev-python/wurlitzer/Manifest +++ b/dev-python/wurlitzer/Manifest @@ -1,2 +1 @@ -DIST wurlitzer-2.0.0.tar.gz 10203 BLAKE2B 526f1fa1cf2f257c126a4f2c67b27b373b23e113552e72372029ab69a6b629d9453c39feac083c1376e3996a44af8ad823d1ca119515b420d9fefbbf326da38e SHA512 5cafdf84e47e6d18074f6ed3af6bab2eaa1f5cfd3d658ea02a49d387127e9a9101de05c864480af42f5a7650cc47e0a218e822912a4ba3ef826e71206dd2f3e9 DIST wurlitzer-2.0.1.tar.gz 10638 BLAKE2B e5350a3920ae072f93a0043ec368766d8e190558b3e897e68b272b06d0d6ff7907f2aeecfd41a99b54804a596ad9f7d7062995a5c465724a2b87419ee801daa3 SHA512 06f67b666c2a364b5ee497fa2f0ab8640aeb2953b678e35b13e1558ab29bc5554f479731f9942d8f033275f5151bb9f86408e0f04b1120bae0f29b27649d783c diff --git a/dev-python/wurlitzer/wurlitzer-2.0.0.ebuild b/dev-python/wurlitzer/wurlitzer-2.0.0.ebuild deleted file mode 100644 index 7ae94bdbdac..00000000000 --- a/dev-python/wurlitzer/wurlitzer-2.0.0.ebuild +++ /dev/null @@ -1,23 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -PYTHON_COMPAT=( python3_{6,7,8} ) - -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}" -}