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 7B750138350 for ; Fri, 27 Mar 2020 11:35:29 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9BDF2E0ECA; Fri, 27 Mar 2020 11:35:28 +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-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 249CBE0ECA for ; Fri, 27 Mar 2020 11:35:27 +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 177DF34F9F2 for ; Fri, 27 Mar 2020 11:35:26 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 0E5A713A for ; Fri, 27 Mar 2020 11:35:24 +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: <1585308905.8e9bc494ff838422d32803e22e49c8656ffc30f6.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/h11/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/h11/Manifest dev-python/h11/h11-0.7.0.ebuild X-VCS-Directories: dev-python/h11/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 8e9bc494ff838422d32803e22e49c8656ffc30f6 X-VCS-Branch: master Date: Fri, 27 Mar 2020 11:35:24 +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: f7f99839-2421-4cb1-a311-3341baecf412 X-Archives-Hash: ae0b512226fcb03d1ace1a11a5aee888 commit: 8e9bc494ff838422d32803e22e49c8656ffc30f6 Author: Michał Górny gentoo org> AuthorDate: Fri Mar 27 11:18:22 2020 +0000 Commit: Michał Górny gentoo org> CommitDate: Fri Mar 27 11:35:05 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8e9bc494 dev-python/h11: Remove redundant versions Signed-off-by: Michał Górny gentoo.org> dev-python/h11/Manifest | 1 - dev-python/h11/h11-0.7.0.ebuild | 29 ----------------------------- 2 files changed, 30 deletions(-) diff --git a/dev-python/h11/Manifest b/dev-python/h11/Manifest index a3a148963b6..12e594273e5 100644 --- a/dev-python/h11/Manifest +++ b/dev-python/h11/Manifest @@ -1,2 +1 @@ -DIST h11-0.7.0.zip 105979 BLAKE2B 46922a67a8496254845562e46432596cbc400e788adddc5df1b84583d16a090fbc1ac6a4dab1af9d05263abb33d2505627be1325ca9c3f6dd27dd3676ca99027 SHA512 abf9b8f7f12870804539049c3bfebbbe476e394636aed9967aa725d501fff983f28c7f14b4b882c17914d00fe3e74417ff8922128d0e4e07bf042a7db6d0b100 DIST h11-0.8.1.tar.gz 94009 BLAKE2B 34c43874ba8d1e59f89d9d71a5eb8033583aefc6659f6cf645067267a68769f01864b997623ad175e263d4918e2e572e2af49f4ddf743608fc259ab7b4a51022 SHA512 3310dcd8552de4440ed9669fd37b3fc4d76073a9801decb705bceee3c1e98ff83470bd124ecf36e1ec3457ff2fb4da6f4fbf077daa810c28ab73044dfab709d4 diff --git a/dev-python/h11/h11-0.7.0.ebuild b/dev-python/h11/h11-0.7.0.ebuild deleted file mode 100644 index d0336b31787..00000000000 --- a/dev-python/h11/h11-0.7.0.ebuild +++ /dev/null @@ -1,29 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -PYTHON_COMPAT=( python3_{6,7} ) - -inherit distutils-r1 - -DESCRIPTION="A pure-Python implementation of HTTP/1.1 inspired by hyper-h2" -HOMEPAGE="https://github.com/python-hyper/h11 https://pypi.python.org/pypi/h11" -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.zip" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="test" -RESTRICT="!test? ( test )" - -DEPEND=" - dev-python/setuptools[${PYTHON_USEDEP}] - test? ( - dev-python/pytest[${PYTHON_USEDEP}] - ) -" - -python_test() { - py.test -v || die "Testing failed" -}