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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 59D02158021 for ; Wed, 30 Nov 2022 13:22:11 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 54259E091D; Wed, 30 Nov 2022 13:22:10 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 3E0F4E091D for ; Wed, 30 Nov 2022 13:22:10 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id E879C341009 for ; Wed, 30 Nov 2022 13:22:08 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 3B2F854C for ; Wed, 30 Nov 2022 13:22:07 +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: <1669814522.ee47cae863f20fa01883f67808a481f341fddcac.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pymacaroons/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/pymacaroons/pymacaroons-0.13.0.ebuild X-VCS-Directories: dev-python/pymacaroons/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: ee47cae863f20fa01883f67808a481f341fddcac X-VCS-Branch: master Date: Wed, 30 Nov 2022 13:22:07 +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: 54076161-bf6d-47ef-90d3-a8202753eea2 X-Archives-Hash: 56e03c7813d8136967f0e7d4f348f7d5 commit: ee47cae863f20fa01883f67808a481f341fddcac Author: Michał Górny gentoo org> AuthorDate: Wed Nov 30 13:05:58 2022 +0000 Commit: Michał Górny gentoo org> CommitDate: Wed Nov 30 13:22:02 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ee47cae8 dev-python/pymacaroons: Remove old Signed-off-by: Michał Górny gentoo.org> dev-python/pymacaroons/pymacaroons-0.13.0.ebuild | 39 ------------------------ 1 file changed, 39 deletions(-) diff --git a/dev-python/pymacaroons/pymacaroons-0.13.0.ebuild b/dev-python/pymacaroons/pymacaroons-0.13.0.ebuild deleted file mode 100644 index a2bee30a6ff0..000000000000 --- a/dev-python/pymacaroons/pymacaroons-0.13.0.ebuild +++ /dev/null @@ -1,39 +0,0 @@ -# Copyright 2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -DISTUTILS_USE_PEP517=setuptools -PYTHON_COMPAT=( python3_{9..10} ) - -inherit distutils-r1 - -DESCRIPTION="PyMacaroons is a Python implementation of Macaroons." -HOMEPAGE=" - https://github.com/ecordell/pymacaroons - https://pypi.org/project/pymacaroons/ -" -SRC_URI="https://github.com/ecordell/pymacaroons/archive/v${PV}.tar.gz -> ${P}.gh.tar.gz" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="amd64 ~ppc64" -IUSE="test" - -RESTRICT="!test? ( test )" - -RDEPEND=" - dev-python/pynacl[${PYTHON_USEDEP}] - dev-python/six[${PYTHON_USEDEP}] -" -BDEPEND="test? ( - dev-python/mock[${PYTHON_USEDEP}] - dev-python/nose[${PYTHON_USEDEP}] - ) -" - -python_test() { - # The package also contains property_tests, however, they are incompatible - # with dev-python/hypothesis in gentoo. The package requires too old version. - "${EPYTHON}" -m nose -v tests/functional_tests || die "Tests failed with ${EPYTHON}" -}