Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pytest-console-scripts/
Date: Sun, 27 Feb 2022 10:52:32
Message-Id: 1645959143.562b3d0c2e8df39a461dec876394a64dadf96000.mgorny@gentoo
1 commit: 562b3d0c2e8df39a461dec876394a64dadf96000
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sun Feb 27 10:05:54 2022 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sun Feb 27 10:52:23 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=562b3d0c
7
8 dev-python/pytest-console-scripts: Remove old
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/pytest-console-scripts/Manifest | 1 -
13 .../pytest-console-scripts-1.2.0.ebuild | 33 ----------------------
14 2 files changed, 34 deletions(-)
15
16 diff --git a/dev-python/pytest-console-scripts/Manifest b/dev-python/pytest-console-scripts/Manifest
17 index 0b5135c63573..c543d4a26034 100644
18 --- a/dev-python/pytest-console-scripts/Manifest
19 +++ b/dev-python/pytest-console-scripts/Manifest
20 @@ -1,3 +1,2 @@
21 -DIST pytest-console-scripts-1.2.0.tar.gz 13976 BLAKE2B 1452ecfdc47d3341d8f3f30d49f371ae89d6138d56e4dc3a230f6a3803c6c36f542df40e2785c99c3cfd5080fa03b5b3d4926bb742dc99bd2127d47305fbf788 SHA512 07c9baab85035265ab6a21cc0c754b076dba87f08e1ab51319ef47a0a8af0b44f7d42422014c68cf93ed28b508138a70e14b968707cc831682885b3ca8106aa7
22 DIST pytest-console-scripts-1.2.2.tar.gz 14314 BLAKE2B 1e4c210fe9fa6a4e9dbe308cf3d6c1a1829f2155185fe3911ee0a299c0292db6bceeeeb7efd5ace9a166c90ae8376d3cdfec8b0c0b585467f157e175709afe6d SHA512 c749b76c8370734f9ab7fe93284f9ac25a38e4bef61181a3b61b3b0d229532f1876e668e5a6e1449dcb939d9cb53527e021f79fd9132f3a28bdf45d95bdcb40e
23 DIST pytest-console-scripts-1.3.tar.gz 14365 BLAKE2B 7a9b83f53ef9911e5f336375389e6c6311e64e7b4880ea2cb1f996221d4dbf119bf6fc487f7bb7bfda4355df8f797981e99ac9db2fff3e4871173a878a4fbd64 SHA512 8b66df3a8ff700817f8ec34aa95385ff82c4df47fd67974e91cf4d2fdae578d4683032b0a8162723adfcd461e5da7f1c5bb99339d62ed9cbdca4fd1be001b0f6
24
25 diff --git a/dev-python/pytest-console-scripts/pytest-console-scripts-1.2.0.ebuild b/dev-python/pytest-console-scripts/pytest-console-scripts-1.2.0.ebuild
26 deleted file mode 100644
27 index 6a673ce97309..000000000000
28 --- a/dev-python/pytest-console-scripts/pytest-console-scripts-1.2.0.ebuild
29 +++ /dev/null
30 @@ -1,33 +0,0 @@
31 -# Copyright 1999-2021 Gentoo Authors
32 -# Distributed under the terms of the GNU General Public License v2
33 -
34 -EAPI=8
35 -
36 -PYTHON_COMPAT=( python3_{8..10} )
37 -
38 -inherit distutils-r1
39 -
40 -DESCRIPTION="Pytest plugin for testing console scripts"
41 -HOMEPAGE="https://github.com/kvas-it/pytest-console-scripts"
42 -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
43 -
44 -LICENSE="MIT"
45 -SLOT="0"
46 -KEYWORDS="~amd64"
47 -
48 -RDEPEND="
49 - >=dev-python/pytest-4.0.0[${PYTHON_USEDEP}]
50 - >=dev-python/mock-2.0.0[${PYTHON_USEDEP}]
51 -"
52 -BDEPEND="
53 - dev-python/setuptools_scm[${PYTHON_USEDEP}]
54 -"
55 -
56 -distutils_enable_tests --install pytest
57 -
58 -python_prepare_all() {
59 - # allow newer setuptools_scm
60 - sed -i -e 's/setuptools_scm<6/setuptools_scm/g' setup.py || die
61 -
62 - distutils-r1_python_prepare_all
63 -}