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 14A871382C5 for ; Mon, 5 Apr 2021 18:00:40 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id EAED6E0935; Mon, 5 Apr 2021 18:00:37 +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 C508DE08E8 for ; Mon, 5 Apr 2021 18:00:37 +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 2B5B1340D6B for ; Mon, 5 Apr 2021 18:00:36 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 60A0B642 for ; Mon, 5 Apr 2021 18:00:34 +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: <1617645528.3710414c5dadf6a6fad7dafdcc6ae6758ac00d2c.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/minimock/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/minimock/Manifest dev-python/minimock/minimock-1.2.8-r1.ebuild X-VCS-Directories: dev-python/minimock/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 3710414c5dadf6a6fad7dafdcc6ae6758ac00d2c X-VCS-Branch: master Date: Mon, 5 Apr 2021 18:00:34 +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: 62f84af7-4524-46ee-9040-833917b667aa X-Archives-Hash: 4e9b8c2164ad3923ebcc7dbf10cfa105 commit: 3710414c5dadf6a6fad7dafdcc6ae6758ac00d2c Author: Michał Górny gentoo org> AuthorDate: Mon Apr 5 17:58:48 2021 +0000 Commit: Michał Górny gentoo org> CommitDate: Mon Apr 5 17:58:48 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3710414c dev-python/minimock: Remove old Signed-off-by: Michał Górny gentoo.org> dev-python/minimock/Manifest | 1 - dev-python/minimock/minimock-1.2.8-r1.ebuild | 26 -------------------------- 2 files changed, 27 deletions(-) diff --git a/dev-python/minimock/Manifest b/dev-python/minimock/Manifest index 5cf22c444ed..30aa149a644 100644 --- a/dev-python/minimock/Manifest +++ b/dev-python/minimock/Manifest @@ -1,2 +1 @@ -DIST MiniMock-1.2.8.tar.gz 13217 BLAKE2B 333957307ed6c596bfc20ed18d4e40039208d589c1a9190e388c7dc3be53489994b2f45e8140f54850e4129a5a69c0fc361e3c4cb1d63a3bac579a7b86004856 SHA512 91133251a6e6b1acc11e6ac4f24404807134f8a7fca49d5f7365d7fdfc6bdd1527e7382da8d866669408b1ad30331a176026dd31bcb0c3b7367b7f778fc61ca7 DIST minimock-1.3.0.tar.gz 13828 BLAKE2B ed60d9725ada7173f88cdd64d76e3674fbeff352f4ead919f2a3a94ec871189051da29da5ee285b4d663eee143da847c95e35286cf33a587abb7fe95e02a4824 SHA512 de7feef7fee044ba45a52d7c83905d082ad2ed2c3d12b294a6995086b377a22317730326946d048b19063758f158a9bee7bbb6a79c9ae0b4ba7a93e4a21ea196 diff --git a/dev-python/minimock/minimock-1.2.8-r1.ebuild b/dev-python/minimock/minimock-1.2.8-r1.ebuild deleted file mode 100644 index 5078bec564e..00000000000 --- a/dev-python/minimock/minimock-1.2.8-r1.ebuild +++ /dev/null @@ -1,26 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -PYTHON_COMPAT=( python3_{7,8,9} ) - -inherit distutils-r1 - -MY_PN="MiniMock" -MY_P="${MY_PN}-${PV}" - -DESCRIPTION="The simplest possible mock library" -HOMEPAGE="https://pypi.org/project/MiniMock/" -SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz" -S="${WORKDIR}/${MY_P}" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="amd64 arm ~arm64 ppc x86" - -DOCS=( docs/changelog.rst docs/index.rst ) - -python_test() { - "${PYTHON}" -m doctest -v minimock.py || die "Tests fail with ${EPYTHON}" -}