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 6E26B138350 for ; Sat, 7 Mar 2020 15:03:11 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 96DADE087C; Sat, 7 Mar 2020 15:03:10 +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 5127EE087C for ; Sat, 7 Mar 2020 15:03:10 +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 06D7434F14B for ; Sat, 7 Mar 2020 15:03:09 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id F34DB161 for ; Sat, 7 Mar 2020 15:03:06 +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: <1583593157.7c86d5fc7ffa9c2b202bc6c573033f0c31aaeb46.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/socketpool/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/socketpool/socketpool-0.5.3-r1.ebuild dev-python/socketpool/socketpool-0.5.3.ebuild X-VCS-Directories: dev-python/socketpool/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 7c86d5fc7ffa9c2b202bc6c573033f0c31aaeb46 X-VCS-Branch: master Date: Sat, 7 Mar 2020 15:03:06 +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: 81fa4363-35e3-4284-a162-9c1cf0899eff X-Archives-Hash: 3223a2e0e0e729879c604c9f21ee4385 commit: 7c86d5fc7ffa9c2b202bc6c573033f0c31aaeb46 Author: Michał Górny gentoo org> AuthorDate: Sat Mar 7 14:59:17 2020 +0000 Commit: Michał Górny gentoo org> CommitDate: Sat Mar 7 14:59:17 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7c86d5fc dev-python/socketpool: Remove redundant versions Signed-off-by: Michał Górny gentoo.org> dev-python/socketpool/socketpool-0.5.3-r1.ebuild | 39 ------------------------ dev-python/socketpool/socketpool-0.5.3.ebuild | 38 ----------------------- 2 files changed, 77 deletions(-) diff --git a/dev-python/socketpool/socketpool-0.5.3-r1.ebuild b/dev-python/socketpool/socketpool-0.5.3-r1.ebuild deleted file mode 100644 index e423b751259..00000000000 --- a/dev-python/socketpool/socketpool-0.5.3-r1.ebuild +++ /dev/null @@ -1,39 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -PYTHON_COMPAT=( python2_7 python3_{6,7} ) - -inherit distutils-r1 - -DESCRIPTION="A simple Python socket pool" -HOMEPAGE="https://github.com/benoitc/socketpool/" -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" - -KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86" -IUSE="examples test" -RESTRICT="!test? ( test )" -LICENSE="|| ( MIT public-domain )" -SLOT="0" - -RDEPEND="$(python_gen_cond_dep 'dev-python/gevent[${PYTHON_USEDEP}]' 'python2*')" -DEPEND="dev-python/setuptools[${PYTHON_USEDEP}] - test? ( dev-python/pytest[${PYTHON_USEDEP}] )" - -PATCHES=( "${FILESDIR}"/${PN}-0.5.2-locale.patch ) - -python_test() { - py.test tests || die -} - -python_install_all() { - if use examples; then - insinto /usr/share/doc/${PF} - doins -r examples - fi - distutils-r1_python_install_all - - # package installs unneeded LICENSE files here - rm -rf "${ED}"/usr/socketpool || die -} diff --git a/dev-python/socketpool/socketpool-0.5.3.ebuild b/dev-python/socketpool/socketpool-0.5.3.ebuild deleted file mode 100644 index 15d48d4d48b..00000000000 --- a/dev-python/socketpool/socketpool-0.5.3.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=( python{2_7,3_6} ) - -inherit distutils-r1 - -DESCRIPTION="A simple Python socket pool" -HOMEPAGE="https://github.com/benoitc/socketpool/" -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" - -KEYWORDS="amd64 arm ~arm64 ppc ppc64 s390 ~sh ~sparc x86" -IUSE="examples test" -RESTRICT="!test? ( test )" -LICENSE="|| ( MIT public-domain )" -SLOT="0" - -RDEPEND="$(python_gen_cond_dep 'dev-python/gevent[${PYTHON_USEDEP}]' 'python2*')" -DEPEND="dev-python/setuptools[${PYTHON_USEDEP}] - test? ( dev-python/pytest[${PYTHON_USEDEP}] )" - -PATCHES=( "${FILESDIR}"/${PN}-0.5.2-locale.patch ) - -python_test() { - py.test tests || die -} - -python_install_all() { - if use examples; then - insinto /usr/share/doc/${PF} - doins -r examples - fi - distutils-r1_python_install_all - - # package installs unneeded LICENSE files here - rm -rf "${ED}"/usr/socketpool || die -}