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 42624138351 for ; Mon, 4 May 2020 11:21:19 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 3445BE0954; Mon, 4 May 2020 11:21:17 +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 3E383E0954 for ; Mon, 4 May 2020 11:21:16 +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 B8BBF34F55E for ; Mon, 4 May 2020 11:21:14 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C8765213 for ; Mon, 4 May 2020 11:21:12 +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: <1588591217.6d641fbab5204bf6d49798f65465b71477eea911.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/keyring/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/keyring/Manifest dev-python/keyring/keyring-19.2.0.ebuild X-VCS-Directories: dev-python/keyring/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 6d641fbab5204bf6d49798f65465b71477eea911 X-VCS-Branch: master Date: Mon, 4 May 2020 11:21:12 +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: 93a6b62e-02f8-4621-bdef-f2350c44dde3 X-Archives-Hash: 6a1977ec6b1323da90f99858f84a7e6d commit: 6d641fbab5204bf6d49798f65465b71477eea911 Author: Michał Górny gentoo org> AuthorDate: Mon May 4 11:20:17 2020 +0000 Commit: Michał Górny gentoo org> CommitDate: Mon May 4 11:20:17 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6d641fba dev-python/keyring: Remove old Signed-off-by: Michał Górny gentoo.org> dev-python/keyring/Manifest | 1 - dev-python/keyring/keyring-19.2.0.ebuild | 57 -------------------------------- 2 files changed, 58 deletions(-) diff --git a/dev-python/keyring/Manifest b/dev-python/keyring/Manifest index 0c5d7675ef4..ddf875dc99e 100644 --- a/dev-python/keyring/Manifest +++ b/dev-python/keyring/Manifest @@ -1,2 +1 @@ -DIST keyring-19.2.0.tar.gz 41728 BLAKE2B 24a8f095f4009f37fa6d5e7bc2b12be816a5db2abfa4416fc18203a818296c775fe34a2936a71b191700ad511e01059974aec374aea5ee312507a27bd8be76b8 SHA512 5104423289b9e537e64760afed38e5851766b9c955c0659b078cdaba82813e93922e488b5465157cb930285416feef07c0b559fc49909f58bc85b6f30d55dd75 DIST keyring-19.3.0.tar.gz 43587 BLAKE2B a1003aa55ac48f39e84431c50fe3e24e1da76a0db177eed08bd2c2110b78d10cbfcf7188519435732be68452a0318119cca1563168410b16fc529a3a7e98125c SHA512 b1d26f665203b11712ef91057ecd78cce58b35038b259605c42997283f6c41449baf242ecf43510b29598559b8aecf733eb66be6e0c439564256f40eb0f6982c diff --git a/dev-python/keyring/keyring-19.2.0.ebuild b/dev-python/keyring/keyring-19.2.0.ebuild deleted file mode 100644 index b3e081b63d4..00000000000 --- a/dev-python/keyring/keyring-19.2.0.ebuild +++ /dev/null @@ -1,57 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -PYTHON_COMPAT=( pypy3 python3_{6,7} ) - -inherit distutils-r1 - -DESCRIPTION="Provides access to the system keyring service" -HOMEPAGE="https://github.com/jaraco/keyring" -SRC_URI="https://github.com/jaraco/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" - -SLOT="0" -LICENSE="PSF-2" -KEYWORDS="amd64 ~arm ~arm64 x86" -IUSE="doc test" - -RDEPEND=" - dev-python/secretstorage[${PYTHON_USEDEP}] - dev-python/entrypoints[${PYTHON_USEDEP}] -" -BDEPEND=" - dev-python/setuptools[${PYTHON_USEDEP}] - test? ( ${RDEPEND} ) -" - -RESTRICT="!test? ( test )" - -PATCHES=( - "${FILESDIR}/keyring-19.1.0-tests.patch" -) - -distutils_enable_tests pytest -distutils_enable_sphinx docs \ - dev-python/jaraco-packaging dev-python/rst-linker - -python_prepare_all() { - # avoid a setuptools_scm dependency - sed -i "s:use_scm_version=True:version='${PV}',name='${PN//-/.}':" setup.py || die - sed -r -i "s:setuptools(_|-)scm[[:space:]]*([><=]{1,2}[[:space:]]*[0-9.a-zA-Z]+|)[[:space:]]*::" \ - setup.cfg || die - - # avoid other deps - sed -i -r "$(printf -- 's:[[:space:]]*--%s::;' --doctest-modules --flake8 --black --cov)" \ - pytest.ini || die - - distutils-r1_python_prepare_all -} - -python_test() { - # Override pytest options to skip flake8 - # Skip an interactive test - pytest -vv --override-ini="addopts=--doctest-modules" \ - --ignore ${PN}/tests/backends/test_kwallet.py \ - || die "testsuite failed under ${EPYTHON}" -}