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 B26DA158092 for ; Sat, 18 Sep 2021 19:44:02 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A8681E0922; Sat, 18 Sep 2021 19:44:01 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-CHACHA20-POLY1305 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 82BDBE091D for ; Sat, 18 Sep 2021 19:44:01 +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 20A0B34339A for ; Sat, 18 Sep 2021 19:44:00 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 9CE1110D for ; Sat, 18 Sep 2021 19:43:57 +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: <1631994225.2ff95dc9e09a258cd4c31841f222b796547a1e51.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pytest-describe/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/pytest-describe/Manifest dev-python/pytest-describe/pytest-describe-1.0.0.ebuild X-VCS-Directories: dev-python/pytest-describe/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 2ff95dc9e09a258cd4c31841f222b796547a1e51 X-VCS-Branch: master Date: Sat, 18 Sep 2021 19:43:57 +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: ca3d168c-ec6d-40a0-ac65-1e48ffa94e21 X-Archives-Hash: aa3b885ec4cbc2b77bcd790c80595b02 commit: 2ff95dc9e09a258cd4c31841f222b796547a1e51 Author: Michał Górny gentoo org> AuthorDate: Sat Sep 18 17:54:15 2021 +0000 Commit: Michał Górny gentoo org> CommitDate: Sat Sep 18 19:43:45 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2ff95dc9 dev-python/pytest-describe: Remove old Signed-off-by: Michał Górny gentoo.org> dev-python/pytest-describe/Manifest | 1 - .../pytest-describe/pytest-describe-1.0.0.ebuild | 27 ---------------------- 2 files changed, 28 deletions(-) diff --git a/dev-python/pytest-describe/Manifest b/dev-python/pytest-describe/Manifest index badacc490dc..dae1902de5d 100644 --- a/dev-python/pytest-describe/Manifest +++ b/dev-python/pytest-describe/Manifest @@ -1,2 +1 @@ -DIST pytest-describe-1.0.0.tar.gz 8917 BLAKE2B 8608a00151273ebb22da6a297580295abbd64c7d9e90bfba9611eac3be64247be20ee43bb64ead1a3f74e65719112a94535506f4402cb7084802360609ab0173 SHA512 1cefa2911e598063b3b9dce381750d204c925cb0dde890b79745c8b4f1cf6d0349f85dc9eaf895000a6f15f45a84fb920f27c01b0af1959125fbe3716cbebbbc DIST pytest-describe-2.0.0.tar.gz 9711 BLAKE2B d9a799afebf77166c81a9d2477a378d7664e9aa586460043c9a9448838eafebcb0679768d10d2439ab350b48ad7263ebe17eea6fdaef96ef14aceb6aa9ff943c SHA512 28edd2b10607424aff7b95dd834716fc1888a09c23d810e0b9870a5a93de3ca745d3506a6327ece6f92b3afcdcee0fb56f6f163e2868abcf2022175708ff58af diff --git a/dev-python/pytest-describe/pytest-describe-1.0.0.ebuild b/dev-python/pytest-describe/pytest-describe-1.0.0.ebuild deleted file mode 100644 index 7696495e056..00000000000 --- a/dev-python/pytest-describe/pytest-describe-1.0.0.ebuild +++ /dev/null @@ -1,27 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI="7" - -PYTHON_COMPAT=( python3_{7..10} ) - -inherit distutils-r1 - -DESCRIPTION="Describe-style plugin for pytest" -HOMEPAGE="https://github.com/pytest-dev/pytest-describe/ - https://pypi.org/project/pytest-describe/" -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="~alpha amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~sparc x86" - -RDEPEND=">=dev-python/pytest-2.6.0[${PYTHON_USEDEP}]" - -distutils_enable_tests pytest - -python_test() { - # We need to disable some plugins because tests don't like unexpected - # output - PYTEST_ADDOPTS="-p no:flaky -p no:capturelog" epytest -}