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 57C1513835A for ; Mon, 23 Nov 2020 17:05:23 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 27851E081B; Mon, 23 Nov 2020 17:05:22 +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 0C85EE081B for ; Mon, 23 Nov 2020 17:05:22 +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 A9047335DBE for ; Mon, 23 Nov 2020 17:05:20 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 1BE2E466 for ; Mon, 23 Nov 2020 17:05:19 +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: <1606151112.f7e2af533f3836caa996963d67f9da27f39c9b32.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/multidict/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/multidict/Manifest dev-python/multidict/multidict-4.7.6.ebuild X-VCS-Directories: dev-python/multidict/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: f7e2af533f3836caa996963d67f9da27f39c9b32 X-VCS-Branch: master Date: Mon, 23 Nov 2020 17:05:19 +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: 40ab2a43-1864-4652-84a9-800ee46fd78a X-Archives-Hash: 411959aa83e9927839279208f2e73f18 commit: f7e2af533f3836caa996963d67f9da27f39c9b32 Author: Michał Górny gentoo org> AuthorDate: Mon Nov 23 08:30:00 2020 +0000 Commit: Michał Górny gentoo org> CommitDate: Mon Nov 23 17:05:12 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f7e2af53 dev-python/multidict: Remove old Signed-off-by: Michał Górny gentoo.org> dev-python/multidict/Manifest | 1 - dev-python/multidict/multidict-4.7.6.ebuild | 29 ----------------------------- 2 files changed, 30 deletions(-) diff --git a/dev-python/multidict/Manifest b/dev-python/multidict/Manifest index ac9868bcce0..ef5a0c54a84 100644 --- a/dev-python/multidict/Manifest +++ b/dev-python/multidict/Manifest @@ -1,2 +1 @@ -DIST multidict-4.7.6.tar.gz 57710 BLAKE2B f08a45d4ce404dbb64d2561ee2328c0aa3a8fbf65483082c11e5e1554bec23e5c711da2350e241308a1239256b942ef6c420e6e51aef342b380cc01f84d4ca72 SHA512 5f90cb04fe2562884c331018a5002e1370e2596e0afd21e4289ab696847a3028a074bbaa6717b3905161f823f8592d6572475307039f8f97c1ac65aad815a6b0 DIST multidict-5.0.0.tar.gz 57790 BLAKE2B cad5cac04ab8ea204bb98199a8b5985bd308f7db59e71514a78f0bc79cd92667f24329b101638d5cd14254187c344549a8ce8dd6c514b322b50bb05dfa15cc6e SHA512 067bad79b331a4b86d023f59af842e5fa99fa50d09df13538a86e6c1c754b1862b8fa812381149f2efcd19f1a7ec6934f583cddf47c635dce909ea8c7847f411 diff --git a/dev-python/multidict/multidict-4.7.6.ebuild b/dev-python/multidict/multidict-4.7.6.ebuild deleted file mode 100644 index 2e0a72a5166..00000000000 --- a/dev-python/multidict/multidict-4.7.6.ebuild +++ /dev/null @@ -1,29 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 -PYTHON_COMPAT=( python3_{6..9} pypy3 ) - -inherit distutils-r1 - -DESCRIPTION="multidict implementation" -HOMEPAGE="https://github.com/aio-libs/multidict/" -SRC_URI="https://github.com/aio-libs/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="Apache-2.0" -SLOT="0" -KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ppc ppc64 ~riscv ~s390 sparc x86" - -BDEPEND=" - >=dev-python/cython-0.28.4[${PYTHON_USEDEP}] -" - -distutils_enable_sphinx docs --no-autodoc -distutils_enable_tests pytest - -python_prepare_all() { - # don't enable coverage or other pytest settings - sed -i -e 's:--cov.*::' setup.cfg || die - - distutils-r1_python_prepare_all -}