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 B723C138359 for ; Fri, 17 Jul 2020 04:14:16 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 65991E08FC; Fri, 17 Jul 2020 04:14: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 4FE97E08FC for ; Fri, 17 Jul 2020 04:14:13 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 0028F34F237 for ; Fri, 17 Jul 2020 04:14:11 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 8F6192ED for ; Fri, 17 Jul 2020 04:14:06 +0000 (UTC) From: "Matt Turner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Matt Turner" Message-ID: <1594959233.2d30afd0e43af530cd288d7926cbeb6146a9d794.mattst88@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: mattst88 X-VCS-Committer-Name: Matt Turner X-VCS-Revision: 2d30afd0e43af530cd288d7926cbeb6146a9d794 X-VCS-Branch: master Date: Fri, 17 Jul 2020 04:14:06 +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: e1233b5a-77a1-4416-a3f7-18e8692b60ba X-Archives-Hash: 32dc1571a66cd2d5ec1deee32f06a947 commit: 2d30afd0e43af530cd288d7926cbeb6146a9d794 Author: Andrew Ammerlaan riseup net> AuthorDate: Thu Jul 16 11:54:09 2020 +0000 Commit: Matt Turner gentoo org> CommitDate: Fri Jul 17 04:13:53 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2d30afd0 dev-python/wurlitzer: minor version bump Package-Manager: Portage-2.3.103, Repoman-2.3.23 Signed-off-by: Andrew Ammerlaan riseup.net> Signed-off-by: Matt Turner gentoo.org> dev-python/wurlitzer/Manifest | 1 + dev-python/wurlitzer/wurlitzer-2.0.1.ebuild | 24 ++++++++++++++++++++++++ 2 files changed, 25 insertions(+) diff --git a/dev-python/wurlitzer/Manifest b/dev-python/wurlitzer/Manifest index 03996c2f8cd..ff37e88f7be 100644 --- a/dev-python/wurlitzer/Manifest +++ b/dev-python/wurlitzer/Manifest @@ -1 +1,2 @@ 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.1.ebuild b/dev-python/wurlitzer/wurlitzer-2.0.1.ebuild new file mode 100644 index 00000000000..f920b819d1d --- /dev/null +++ b/dev-python/wurlitzer/wurlitzer-2.0.1.ebuild @@ -0,0 +1,24 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +PYTHON_COMPAT=( python3_{6,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}" +}