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 B825A138350 for ; Mon, 4 May 2020 11:44:44 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 17732E09B0; Mon, 4 May 2020 11:44:41 +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 73884E09AB for ; Mon, 4 May 2020 11:44:40 +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 7AEFF34F55D for ; Mon, 4 May 2020 11:44:39 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 8BD8E219 for ; Mon, 4 May 2020 11:44:36 +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: <1588592620.23504838cdd4c90faf975a29412c0a382485dc36.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pytest-localserver/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/pytest-localserver/Manifest dev-python/pytest-localserver/pytest-localserver-0.3.7.ebuild X-VCS-Directories: dev-python/pytest-localserver/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 23504838cdd4c90faf975a29412c0a382485dc36 X-VCS-Branch: master Date: Mon, 4 May 2020 11:44:36 +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: b619213c-2471-4f5b-8236-7f42a2975474 X-Archives-Hash: a1691119aebe37e1b425c7d772a424ba commit: 23504838cdd4c90faf975a29412c0a382485dc36 Author: Michał Górny gentoo org> AuthorDate: Mon May 4 11:43:40 2020 +0000 Commit: Michał Górny gentoo org> CommitDate: Mon May 4 11:43:40 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=23504838 dev-python/pytest-localserver: Remove old Signed-off-by: Michał Górny gentoo.org> dev-python/pytest-localserver/Manifest | 1 - .../pytest-localserver-0.3.7.ebuild | 27 ---------------------- 2 files changed, 28 deletions(-) diff --git a/dev-python/pytest-localserver/Manifest b/dev-python/pytest-localserver/Manifest index 4b6c80df33c..f91bf879a7b 100644 --- a/dev-python/pytest-localserver/Manifest +++ b/dev-python/pytest-localserver/Manifest @@ -1,2 +1 @@ -DIST pytest-localserver-0.3.7.tar.gz 19772 BLAKE2B 388bb7c2cfd4867bc028c23dea775ee463d947bc9bcd0a3e671b3c240c025ceed8eac75a2d05011564ff4c8c1e1153759033272cde0ffa9c3b2128156ad1b38f SHA512 48d7e6a27965dafa1d5e5af1efb6118cc1c1c28ac4a46ae2d61b6b804292a126f481295bf13976f66f505789238f3365ff16e6f1207c8bc7fb4b258759fd4d99 DIST pytest-localserver-0.5.0.tar.gz 20409 BLAKE2B 62376065ee1aeb698ea5e3bd2d5ea3d6b511cc6793142aad458423513b0e3b358a0d0269a78a0f5aeda44fc53757ff85da786627840ee48cbed8b78ee34c2227 SHA512 aedf1e1c9563396457070df13df228ad0ebdd19173fa2ac5a598288d3e1a1ac8b8a0c0288cba0d8478e43d2e1de4848f2393bf640705916957f12ab31171c6cc diff --git a/dev-python/pytest-localserver/pytest-localserver-0.3.7.ebuild b/dev-python/pytest-localserver/pytest-localserver-0.3.7.ebuild deleted file mode 100644 index 2aca32cd624..00000000000 --- a/dev-python/pytest-localserver/pytest-localserver-0.3.7.ebuild +++ /dev/null @@ -1,27 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 -PYTHON_COMPAT=(python{2_7,3_6,3_7}) - -inherit distutils-r1 - -DESCRIPTION="Py.test plugin to test server connections locally" -HOMEPAGE="https://pypi.org/project/pytest-localserver/" -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="amd64 ~arm ~arm64 x86" -IUSE="test" -RESTRICT="!test? ( test )" - -RDEPEND=">=dev-python/werkzeug-0.10[${PYTHON_USEDEP}]" -DEPEND="test? ( ${RDEPEND} - dev-python/pytest[${PYTHON_USEDEP}] - dev-python/requests[${PYTHON_USEDEP}] - dev-python/six[${PYTHON_USEDEP}] )" - -python_test() { - py.test -v || die -}