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/testfixtures/
Date: Sat, 25 Sep 2021 22:14:35
Message-Id: 1632607788.b4155b164f6d9903c530f1e43efe70859feff2d4.mgorny@gentoo
1 commit: b4155b164f6d9903c530f1e43efe70859feff2d4
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sat Sep 25 22:09:48 2021 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sat Sep 25 22:09:48 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b4155b16
7
8 dev-python/testfixtures: Remove old
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/testfixtures/Manifest | 2 -
13 dev-python/testfixtures/testfixtures-6.18.0.ebuild | 41 -------------------
14 dev-python/testfixtures/testfixtures-6.18.1.ebuild | 46 ----------------------
15 3 files changed, 89 deletions(-)
16
17 diff --git a/dev-python/testfixtures/Manifest b/dev-python/testfixtures/Manifest
18 index 81c73c03501..03d59c94e95 100644
19 --- a/dev-python/testfixtures/Manifest
20 +++ b/dev-python/testfixtures/Manifest
21 @@ -1,3 +1 @@
22 -DIST testfixtures-6.18.0.tar.gz 121584 BLAKE2B abf90012fe79d148c44d72a8aaa5277c95a33933c7b753eecdcaeb11279b4439ad9ea394270e440d9681c22789a17738d367b66adf3d04cf6e6289713c1ead59 SHA512 e6552e6b1837ae4ee4754ce3675bdbf2a68d8e46b892382bd8320290050f2c296348ef6310ce3ff46962bf1978c351fe2cdb853a73c9f800f68818f81d5caec9
23 -DIST testfixtures-6.18.1.tar.gz 121731 BLAKE2B c31873d3ebbe47d5d3035d6aaaf674472efb32b061080df711ee558bf91d1b01d417ded4eaebf7436132fd7b9233437e735fa60dee47777d032fc1b610fd1de3 SHA512 088c6480eecc9862e91a0188ab45620be3d8f8898ebb284dc932155fffbd9f75ebbab9425fe4db8dee75ee8fcf82d8c27b950a3f9298e9f7ca420744c65edd91
24 DIST testfixtures-6.18.2.tar.gz 122026 BLAKE2B 2b30c03ae71a300883ace52dc80e06c6b6610283687fa8df4ded1678991a47e8186de57060458a2fe98fc8eeb8fae8299081697a6471bdedcca2772405c91c6d SHA512 ee27d9944e8e8ec770199b115a50274f7167e9d3d3d866b0d0bbe7fec8a939b25a469ecac0158aaa486b129e078077c5822e7500ad473f98ba59862424413e15
25
26 diff --git a/dev-python/testfixtures/testfixtures-6.18.0.ebuild b/dev-python/testfixtures/testfixtures-6.18.0.ebuild
27 deleted file mode 100644
28 index c8e5d0dc146..00000000000
29 --- a/dev-python/testfixtures/testfixtures-6.18.0.ebuild
30 +++ /dev/null
31 @@ -1,41 +0,0 @@
32 -# Copyright 1999-2021 Gentoo Authors
33 -# Distributed under the terms of the GNU General Public License v2
34 -
35 -EAPI=8
36 -
37 -PYTHON_COMPAT=( python3_{8..9} )
38 -inherit distutils-r1
39 -
40 -DESCRIPTION="A collection of helpers and mock objects for unit tests and doc tests"
41 -HOMEPAGE="https://pypi.org/project/testfixtures/ https://github.com/Simplistix/testfixtures"
42 -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
43 -
44 -SLOT="0"
45 -LICENSE="MIT"
46 -KEYWORDS="amd64 ~arm ~arm64 ~riscv x86 ~amd64-linux ~x86-linux"
47 -
48 -BDEPEND="
49 - test? (
50 - $(python_gen_impl_dep sqlite)
51 - dev-python/django[${PYTHON_USEDEP}]
52 - dev-python/pytest-django[${PYTHON_USEDEP}]
53 - dev-python/sybil[${PYTHON_USEDEP}]
54 - >=dev-python/twisted-18[${PYTHON_USEDEP}]
55 - dev-python/zope-component[${PYTHON_USEDEP}]
56 - )"
57 -
58 -distutils_enable_sphinx docs
59 -distutils_enable_tests pytest
60 -
61 -python_prepare_all() {
62 - # kill weird way of declaring build deps
63 - sed -e '/build=/d' -i setup.py || die
64 -
65 - distutils-r1_python_prepare_all
66 -}
67 -
68 -python_test() {
69 - local -x PYTHONPATH="."
70 - local -x DJANGO_SETTINGS_MODULE=testfixtures.tests.test_django.settings
71 - epytest -Wignore::DeprecationWarning
72 -}
73
74 diff --git a/dev-python/testfixtures/testfixtures-6.18.1.ebuild b/dev-python/testfixtures/testfixtures-6.18.1.ebuild
75 deleted file mode 100644
76 index 09d57b662b8..00000000000
77 --- a/dev-python/testfixtures/testfixtures-6.18.1.ebuild
78 +++ /dev/null
79 @@ -1,46 +0,0 @@
80 -# Copyright 1999-2021 Gentoo Authors
81 -# Distributed under the terms of the GNU General Public License v2
82 -
83 -EAPI=8
84 -
85 -PYTHON_COMPAT=( python3_{8..10} )
86 -inherit distutils-r1
87 -
88 -DESCRIPTION="A collection of helpers and mock objects for unit tests and doc tests"
89 -HOMEPAGE="https://pypi.org/project/testfixtures/ https://github.com/Simplistix/testfixtures"
90 -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
91 -
92 -SLOT="0"
93 -LICENSE="MIT"
94 -KEYWORDS="~amd64 ~arm ~arm64 ~riscv ~x86 ~amd64-linux ~x86-linux"
95 -
96 -BDEPEND="
97 - test? (
98 - $(python_gen_impl_dep sqlite)
99 - dev-python/django[${PYTHON_USEDEP}]
100 - dev-python/pytest-django[${PYTHON_USEDEP}]
101 - dev-python/sybil[${PYTHON_USEDEP}]
102 - >=dev-python/twisted-18[${PYTHON_USEDEP}]
103 - dev-python/zope-component[${PYTHON_USEDEP}]
104 - )"
105 -
106 -distutils_enable_sphinx docs
107 -distutils_enable_tests pytest
108 -
109 -PATCHES=(
110 - # https://github.com/Simplistix/testfixtures/commit/8fb2122eea0f1d0de1ccca7a3a0f5426bc6d4964
111 - "${FILESDIR}/${P}-py3.10.patch"
112 -)
113 -
114 -python_prepare_all() {
115 - # kill weird way of declaring build deps
116 - sed -e '/build=/d' -i setup.py || die
117 -
118 - distutils-r1_python_prepare_all
119 -}
120 -
121 -python_test() {
122 - local -x PYTHONPATH="."
123 - local -x DJANGO_SETTINGS_MODULE=testfixtures.tests.test_django.settings
124 - epytest -Wignore::DeprecationWarning
125 -}