Gentoo Archives: gentoo-commits

From: Arthur Zamarin <arthurzam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/proj/guru:dev commit in: dev-python/pytest-toolbox/
Date: Wed, 15 Sep 2021 05:42:38
Message-Id: 1631684519.8526b59decf7895bf623e3e6e639179ccc612cc4.arthurzam@gentoo
1 commit: 8526b59decf7895bf623e3e6e639179ccc612cc4
2 Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
3 AuthorDate: Wed Sep 15 05:41:23 2021 +0000
4 Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
5 CommitDate: Wed Sep 15 05:41:59 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=8526b59d
7
8 dev-python/pytest-toolbox: treeclean (imported to ::gentoo)
9
10 Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
11
12 dev-python/pytest-toolbox/Manifest | 1 -
13 dev-python/pytest-toolbox/metadata.xml | 10 ------
14 .../pytest-toolbox/pytest-toolbox-0.4.ebuild | 39 ----------------------
15 3 files changed, 50 deletions(-)
16
17 diff --git a/dev-python/pytest-toolbox/Manifest b/dev-python/pytest-toolbox/Manifest
18 deleted file mode 100644
19 index 2bb1bbe60..000000000
20 --- a/dev-python/pytest-toolbox/Manifest
21 +++ /dev/null
22 @@ -1 +0,0 @@
23 -DIST pytest-toolbox-0.4.tar.gz 8594 BLAKE2B fb1f19513e9e4b191c3eb995cc5e9445bc9f19affef87350d925c5465210c4de945b91120f86664c1dcf02a638595a7725cf88e3244e377ae77558c70d65643a SHA512 ed27700ff77cd607be808142cc310cd2b7461e55b3f8352d304ef8ca6c5e6c060c67a63238a1025407868ab8e229c4a16eaaa56aa75000159762001accb67752
24
25 diff --git a/dev-python/pytest-toolbox/metadata.xml b/dev-python/pytest-toolbox/metadata.xml
26 deleted file mode 100644
27 index 9b624d795..000000000
28 --- a/dev-python/pytest-toolbox/metadata.xml
29 +++ /dev/null
30 @@ -1,10 +0,0 @@
31 -<?xml version="1.0" encoding="UTF-8"?>
32 -<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
33 -
34 -<pkgmetadata>
35 - <!-- maintainer-needed -->
36 - <upstream>
37 - <remote-id type="github">samuelcolvin/pytest-toolbox</remote-id>
38 - <remote-id type="pypi">pytest-toolbox</remote-id>
39 - </upstream>
40 -</pkgmetadata>
41
42 diff --git a/dev-python/pytest-toolbox/pytest-toolbox-0.4.ebuild b/dev-python/pytest-toolbox/pytest-toolbox-0.4.ebuild
43 deleted file mode 100644
44 index e5ea6f550..000000000
45 --- a/dev-python/pytest-toolbox/pytest-toolbox-0.4.ebuild
46 +++ /dev/null
47 @@ -1,39 +0,0 @@
48 -# Copyright 1999-2020 Gentoo Authors
49 -# Distributed under the terms of the GNU General Public License v2
50 -
51 -EAPI=7
52 -
53 -PYTHON_COMPAT=( python3_{7,8,9} )
54 -
55 -DISTUTILS_USE_SETUPTOOLS=rdepend
56 -
57 -inherit distutils-r1
58 -
59 -DESCRIPTION="Numerous useful plugins for pytest"
60 -HOMEPAGE="https://github.com/samuelcolvin/pytest-toolbox"
61 -SRC_URI="https://github.com/samuelcolvin/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
62 -
63 -LICENSE="MIT"
64 -KEYWORDS="~amd64 ~x86"
65 -SLOT="0"
66 -
67 -distutils_enable_tests pytest
68 -
69 -DEPEND="test? (
70 - dev-python/pydantic[${PYTHON_USEDEP}]
71 - dev-python/pytest-mock[${PYTHON_USEDEP}]
72 -)"
73 -
74 -RDEPEND="
75 - >=dev-python/pytest-3.5.0[${PYTHON_USEDEP}]
76 - <=dev-python/pytest-5[${PYTHON_USEDEP}]
77 -"
78 -
79 -python_prepare_all() {
80 - # pytest.warning_types.PytestAssertRewriteWarning: asserting the value None, please use "assert is None"
81 - sed -i -e 's:test_is_uuid_false:_&:' \
82 - -e 's:test_any_int_false:_&:' \
83 - tests/test_comparison.py || die
84 -
85 - distutils-r1_python_prepare_all
86 -}