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 784C1139347 for ; Sun, 25 Jul 2021 08:41:42 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D0FD4E0BE6; Sun, 25 Jul 2021 08:41:41 +0000 (UTC) Received: from smtp.gentoo.org (mail.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 BB382E0BE6 for ; Sun, 25 Jul 2021 08:41:41 +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 EAD57342BE5 for ; Sun, 25 Jul 2021 08:41:40 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 0C836842 for ; Sun, 25 Jul 2021 08:41:38 +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: <1627202476.42e54b097f144ab88cf8c1bd5a4c09aad7b53d6d.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/sure/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/sure/Manifest dev-python/sure/sure-1.4.11.ebuild X-VCS-Directories: dev-python/sure/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 42e54b097f144ab88cf8c1bd5a4c09aad7b53d6d X-VCS-Branch: master Date: Sun, 25 Jul 2021 08:41:38 +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: 8860eb64-80f7-4140-a9ea-d433360cbec2 X-Archives-Hash: f1f3dce11cb5a161e1ba1c68e4920172 commit: 42e54b097f144ab88cf8c1bd5a4c09aad7b53d6d Author: Michał Górny gentoo org> AuthorDate: Sun Jul 25 06:53:26 2021 +0000 Commit: Michał Górny gentoo org> CommitDate: Sun Jul 25 08:41:16 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=42e54b09 dev-python/sure: Remove old Signed-off-by: Michał Górny gentoo.org> dev-python/sure/Manifest | 1 - dev-python/sure/sure-1.4.11.ebuild | 31 ------------------------------- 2 files changed, 32 deletions(-) diff --git a/dev-python/sure/Manifest b/dev-python/sure/Manifest index 1c6c8c5edd8..0b8dc59777a 100644 --- a/dev-python/sure/Manifest +++ b/dev-python/sure/Manifest @@ -1,2 +1 @@ -DIST sure-1.4.11.tar.gz 45933 BLAKE2B b2146ee56237f4575cab5122279023066a1b9ba20493ced7d729b1afa456f71a38071b721c39594c3ef2fcc912ba934e85e5cb5da576c3b2d20fa7d4926b56b7 SHA512 ed067385bf9cf317a5d55f6c5fc6ee54ee3d592825be398e47c37d31fc9c010cb9316d4e2bcf1d72d53d7e53fd470792d64348aa2bfa5dc43510daaff97742da DIST sure-2.0.0.tar.gz 46747 BLAKE2B 631923bf2fc0a972e276fbfd1918abbafec28e662669993b40ff8ca72944952d092ac662728f98a286fc9b5c8e3765d10a4d6ef1f17b17655802b971b97410af SHA512 8286846374c2bfc773444e90bf4f9c0b0d66d0229afa53af63025bfec690bf8bcc959f86c238ca5244c6a29099e955691771b0eb954af479bde2f17e51f6f1de diff --git a/dev-python/sure/sure-1.4.11.ebuild b/dev-python/sure/sure-1.4.11.ebuild deleted file mode 100644 index 496ccaa734e..00000000000 --- a/dev-python/sure/sure-1.4.11.ebuild +++ /dev/null @@ -1,31 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -PYTHON_COMPAT=( python3_{7..9} ) - -inherit distutils-r1 - -DESCRIPTION="idiomatic assertion toolkit with human-friendly failure messages" -HOMEPAGE="https://github.com/gabrielfalcao/sure" -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" - -LICENSE="GPL-3+" -SLOT="0" -KEYWORDS="amd64 arm arm64 ppc ppc64 sparc x86" -IUSE="test" -RESTRICT="!test? ( test )" - -RDEPEND=" - dev-python/mock[${PYTHON_USEDEP}] - >=dev-python/nose-1.3.0[${PYTHON_USEDEP}] - dev-python/six[${PYTHON_USEDEP}] -" -BDEPEND=" - test? ( ${RDEPEND} ) -" - -python_test() { - nosetests -v tests || die "Tests failed under ${EPYTHON}" -}