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 D61171382C5 for ; Thu, 25 Mar 2021 19:09:50 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 563D8E0833; Thu, 25 Mar 2021 19:09:49 +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 3E956E0831 for ; Thu, 25 Mar 2021 19:09:49 +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 DF241340D39 for ; Thu, 25 Mar 2021 19:09:47 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 0D19E63E for ; Thu, 25 Mar 2021 19:09:44 +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: <1616699371.c6dfbb3cf5d6ac94065fcb1667745c9cc10b598f.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/webob/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/webob/Manifest dev-python/webob/webob-1.8.6.ebuild X-VCS-Directories: dev-python/webob/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: c6dfbb3cf5d6ac94065fcb1667745c9cc10b598f X-VCS-Branch: master Date: Thu, 25 Mar 2021 19:09:44 +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: 6c317ac8-c52a-4dd0-b522-1f2e33a8d0fa X-Archives-Hash: 34d5ccd78c8d7f7cf8aff0f7b452296e commit: c6dfbb3cf5d6ac94065fcb1667745c9cc10b598f Author: Michał Górny gentoo org> AuthorDate: Thu Mar 25 16:54:29 2021 +0000 Commit: Michał Górny gentoo org> CommitDate: Thu Mar 25 19:09:31 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c6dfbb3c dev-python/webob: Remove old Signed-off-by: Michał Górny gentoo.org> dev-python/webob/Manifest | 1 - dev-python/webob/webob-1.8.6.ebuild | 29 ----------------------------- 2 files changed, 30 deletions(-) diff --git a/dev-python/webob/Manifest b/dev-python/webob/Manifest index ae883623344..782186a5938 100644 --- a/dev-python/webob/Manifest +++ b/dev-python/webob/Manifest @@ -1,2 +1 @@ -DIST WebOb-1.8.6.tar.gz 274606 BLAKE2B 0419e60faaefd4bb822387bf5624f77765c6ad528da791d54204b528b7c827d0cc506cbe260ccbfc7d23ffef73132254dcf133ffb1e0377d75ee5ae83d4deb84 SHA512 b9a3faac114c55f3e9a6eb71a78dd921d928da99a427dea05bc798bc1fe249f0f1cf8c9b9fcb1b73be2737b9132bbfe2250a8652e3a8a1199ac74fa62a59d44c DIST WebOb-1.8.7.tar.gz 278544 BLAKE2B 20d8b00f181f2966b918f106080907746dac33b64e75c31749bd774709ed8aa51024258240b89abddacb041073705410845993f93ecfa4b98a7a0fcb8a14e505 SHA512 ff6a1ce796a59d9c078dc908a0d6307a080230a5c806be2278eebcbb78016bed43067e78e3e4a6d72a5f51184c137e8267ac75cbb92b057db008b51a792ff489 diff --git a/dev-python/webob/webob-1.8.6.ebuild b/dev-python/webob/webob-1.8.6.ebuild deleted file mode 100644 index d12ed4b17e9..00000000000 --- a/dev-python/webob/webob-1.8.6.ebuild +++ /dev/null @@ -1,29 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -PYTHON_COMPAT=( pypy3 python3_{7,8,9} ) - -inherit distutils-r1 - -MY_PN=WebOb -MY_P=${MY_PN}-${PV} - -DESCRIPTION="WSGI request and response object" -HOMEPAGE="https://webob.org/" -SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz" -S="${WORKDIR}/${MY_P}" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ppc ppc64 s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos" - -distutils_enable_sphinx docs 'dev-python/alabaster' -distutils_enable_tests pytest - -src_prepare() { - # py3.9 - sed -i -e 's:isAlive:is_alive:' tests/conftest.py || die - distutils-r1_src_prepare -}