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 EE70B138239 for ; Sun, 29 Mar 2020 08:20:34 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 39C88E0AE5; Sun, 29 Mar 2020 08:20:34 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.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 23042E0AE5 for ; Sun, 29 Mar 2020 08:20:34 +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 6D5E234F165 for ; Sun, 29 Mar 2020 08:20:30 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 1552E1BD for ; Sun, 29 Mar 2020 08:20:00 +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: <1585469965.1e92e0342fad82b05ae05976efb4f2ae82007662.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/snappy/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/snappy/Manifest dev-python/snappy/snappy-0.5-r2.ebuild X-VCS-Directories: dev-python/snappy/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 1e92e0342fad82b05ae05976efb4f2ae82007662 X-VCS-Branch: master Date: Sun, 29 Mar 2020 08:20:00 +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: bef6e06a-b949-4568-ae7a-2e04fe2651ab X-Archives-Hash: 05c51d5e3a21e85cddf57657e7dc2e9d commit: 1e92e0342fad82b05ae05976efb4f2ae82007662 Author: Michał Górny gentoo org> AuthorDate: Sun Mar 29 08:00:37 2020 +0000 Commit: Michał Górny gentoo org> CommitDate: Sun Mar 29 08:19:25 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1e92e034 dev-python/snappy: Remove redundant versions Signed-off-by: Michał Górny gentoo.org> dev-python/snappy/Manifest | 1 - dev-python/snappy/snappy-0.5-r2.ebuild | 28 ---------------------------- 2 files changed, 29 deletions(-) diff --git a/dev-python/snappy/Manifest b/dev-python/snappy/Manifest index fb4b9edfcf3..a354f60ae45 100644 --- a/dev-python/snappy/Manifest +++ b/dev-python/snappy/Manifest @@ -1,2 +1 @@ DIST python-snappy-0.5.1.tar.gz 15252 BLAKE2B eede689d51123968bdea64b8c89dc1fcb7f700fcd4e5869339717657ea6db88cacfcdaf59f00899773c65953c16ae271c5a6e03d6a17be16ca1e3dddf2b37cd3 SHA512 95a6389c58790aaeff61419bb9f183a29ad801733cae8144a67eb6203a8ebf6c6790bea7c025b37588dc98ebd2fed20f37857d2f30199f507f52653d2475c16b -DIST python-snappy-0.5.tar.gz 12495 BLAKE2B b4456e4b5f2264122787a44e1871dd2cc74621bd6911ff9608b9a58215cc0020079080937b8dc89e1bd7a62834823beab5b9258c53122cd47c6e50c22e2185a4 SHA512 0be15ea133e3a47c6cdb2a340061bf2779d4aae4b34848cd60e6657c168a76970c41f2bae4f57993862bb65c75baa7cf6a562fcbff4c81e22fe7bac69e7d73b1 diff --git a/dev-python/snappy/snappy-0.5-r2.ebuild b/dev-python/snappy/snappy-0.5-r2.ebuild deleted file mode 100644 index f0da0bb8d5e..00000000000 --- a/dev-python/snappy/snappy-0.5-r2.ebuild +++ /dev/null @@ -1,28 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 - -PYTHON_COMPAT=( python{2_7,3_6} ) - -inherit distutils-r1 - -MY_PN=python-${PN} -MY_P=${MY_PN}-${PV} - -DESCRIPTION="Python library for the snappy compression library from Google" -HOMEPAGE="https://pypi.org/project/python-snappy/" -SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz" - -LICENSE="BSD" -KEYWORDS="amd64 arm ~arm64 x86" -SLOT="0" - -DEPEND=">=app-arch/snappy-1.0.2" -RDEPEND="${DEPEND}" - -S=${WORKDIR}/${MY_P} - -python_test() { - "${PYTHON}" test_snappy.py -v || die "Tests fail with ${EPYTHON}" -}