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 8F0BB1382C5 for ; Tue, 22 Jun 2021 05:54:34 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D3538E0878; Tue, 22 Jun 2021 05:54:33 +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 BED17E0878 for ; Tue, 22 Jun 2021 05:54:33 +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 E5A4E335DC2 for ; Tue, 22 Jun 2021 05:54:32 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 21DF17B8 for ; Tue, 22 Jun 2021 05:54:30 +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: <1624341261.163972e2bd85f82f0695bc94923ab58739d4cee7.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-2.0.0.ebuild X-VCS-Directories: dev-python/sure/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 163972e2bd85f82f0695bc94923ab58739d4cee7 X-VCS-Branch: master Date: Tue, 22 Jun 2021 05:54:30 +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: 3eebe0df-429a-4d17-85be-6f94f9626b43 X-Archives-Hash: 15e84972cb7675a9fd50e7f87da5f901 commit: 163972e2bd85f82f0695bc94923ab58739d4cee7 Author: Michał Górny gentoo org> AuthorDate: Tue Jun 22 05:18:08 2021 +0000 Commit: Michał Górny gentoo org> CommitDate: Tue Jun 22 05:54:21 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=163972e2 dev-python/sure: Bump to 2.0.0 Signed-off-by: Michał Górny gentoo.org> dev-python/sure/Manifest | 1 + dev-python/sure/sure-2.0.0.ebuild | 30 ++++++++++++++++++++++++++++++ 2 files changed, 31 insertions(+) diff --git a/dev-python/sure/Manifest b/dev-python/sure/Manifest index a90597c5a9d..1c6c8c5edd8 100644 --- a/dev-python/sure/Manifest +++ b/dev-python/sure/Manifest @@ -1 +1,2 @@ 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-2.0.0.ebuild b/dev-python/sure/sure-2.0.0.ebuild new file mode 100644 index 00000000000..03bb0dfc4e1 --- /dev/null +++ b/dev-python/sure/sure-2.0.0.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +PYTHON_COMPAT=( python3_{8..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" + +RDEPEND=" + dev-python/mock[${PYTHON_USEDEP}] + >=dev-python/nose-1.3.0[${PYTHON_USEDEP}] + dev-python/six[${PYTHON_USEDEP}] +" + +distutils_enable_tests nose + +src_prepare() { + # remove unnecessary dep + sed -i -e '/rednose/d' setup.cfg || die + distutils-r1_src_prepare +}