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 8820C138239 for ; Sun, 29 Mar 2020 11:51:17 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 5E670E0AD3; Sun, 29 Mar 2020 11:51:16 +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 418ACE0ADF for ; Sun, 29 Mar 2020 11:51:16 +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 2E1FE34FB0A for ; Sun, 29 Mar 2020 11:51:14 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id E5B181B9 for ; Sun, 29 Mar 2020 11:51:09 +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: <1585482646.609762e5ae99d1be032c0596d883fe8eaa53faab.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/webencodings/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/webencodings/webencodings-0.5.1.ebuild X-VCS-Directories: dev-python/webencodings/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 609762e5ae99d1be032c0596d883fe8eaa53faab X-VCS-Branch: master Date: Sun, 29 Mar 2020 11:51:09 +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: a155f3ff-e8e4-4a02-8cd6-f27b9a851e84 X-Archives-Hash: a6b8476ef17c4b75f626e9c3bf182d47 commit: 609762e5ae99d1be032c0596d883fe8eaa53faab Author: Michał Górny gentoo org> AuthorDate: Sun Mar 29 11:44:07 2020 +0000 Commit: Michał Górny gentoo org> CommitDate: Sun Mar 29 11:50:46 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=609762e5 dev-python/webencodings: Remove redundant versions Signed-off-by: Michał Górny gentoo.org> dev-python/webencodings/webencodings-0.5.1.ebuild | 38 ----------------------- 1 file changed, 38 deletions(-) diff --git a/dev-python/webencodings/webencodings-0.5.1.ebuild b/dev-python/webencodings/webencodings-0.5.1.ebuild deleted file mode 100644 index 0b9a60d4a67..00000000000 --- a/dev-python/webencodings/webencodings-0.5.1.ebuild +++ /dev/null @@ -1,38 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -PYTHON_COMPAT=( python2_7 python3_{6,7} pypy3 ) - -inherit distutils-r1 - -DESCRIPTION="Character encoding aliases for legacy web content" -HOMEPAGE="https://github.com/SimonSapin/python-webencodings https://pypi.org/project/webencodings/" -SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz" - -LICENSE="BSD" -SLOT="0" -KEYWORDS="~alpha amd64 arm arm64 hppa ia64 ~mips ppc ppc64 s390 sparc x86 ~amd64-linux ~x86-linux ~x64-macos" -IUSE="test" - -RDEPEND="" -DEPEND="${RDEPEND} - dev-python/setuptools[${PYTHON_USEDEP}] - test? ( - dev-python/pytest[${PYTHON_USEDEP}] - )" - -RESTRICT="!test? ( test )" - -python_prepare_all() { - cat >> setup.cfg <<- EOF - [pytest] - python_files=test*.py - EOF - distutils-r1_python_prepare_all -} - -python_test() { - py.test -v -v || die -}