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/flaky/
Date: Sun, 26 Jan 2020 17:21:21
Message-Id: 1580059267.f5b232cc4f60b938e6802f2f4d69cfa891db0377.mgorny@gentoo
1 commit: f5b232cc4f60b938e6802f2f4d69cfa891db0377
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sun Jan 26 17:14:06 2020 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sun Jan 26 17:21:07 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f5b232cc
7
8 dev-python/flaky: Remove old
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/flaky/Manifest | 3 ---
13 dev-python/flaky/flaky-3.1.1.ebuild | 46 -------------------------------------
14 dev-python/flaky/flaky-3.4.0.ebuild | 46 -------------------------------------
15 dev-python/flaky/flaky-3.5.3.ebuild | 46 -------------------------------------
16 4 files changed, 141 deletions(-)
17
18 diff --git a/dev-python/flaky/Manifest b/dev-python/flaky/Manifest
19 index d027274ff32..c20fb128d5e 100644
20 --- a/dev-python/flaky/Manifest
21 +++ b/dev-python/flaky/Manifest
22 @@ -1,4 +1 @@
23 -DIST flaky-3.1.1.tar.gz 29136 BLAKE2B fe2f47356e0279885cc294f22bc4588b502c7ada1d3f7a3728b1e3127f011f5900187669bb4e0755e706a1bd77e1804c42986a07c6d3dc58fe085967adb6957c SHA512 039ad115a52b8b3a31bba045874e1860f1e04ea9cf878316226fb22af3c715b3893570c2f7380cf8467107f1a83a4ff69d0e9135daeb2dbea4b8f873a192815c
24 -DIST flaky-3.4.0.tar.gz 29197 BLAKE2B 8f551a414cb06f5259d37785eb769a77105b1039398462288eeaeeb6acea8456c30cc7da6cf515cd99be2adb19a77282d2d0d3abe795761985f45ffd062de508 SHA512 14fda6312e4eb8260a8190204622a7dd274d0c946dda07ec8aa65e8c341f7f4a701c704c807f50eacf77589231b37c3bb06eec18d60a718f24e9b0182f7e8cb5
25 -DIST flaky-3.5.3.tar.gz 29320 BLAKE2B 6bd2095cd481fdd8311e08c3e8aaff78fe22bfefd8463ea3b8190a469d8f909039267256afa876a22a57eae9e390af8235b10211509fe8549d000ed7e9331baa SHA512 9ecb80ab1ec2e0db96b7a7a5856a147434c22d29a603e76d3db3f8d94ddea06ecab799943179910bc1d9d8d5dc1c7bcc94156628352479d67e2dcaaf5cbabf27
26 DIST flaky-3.6.1.tar.gz 29501 BLAKE2B 57d8c1ed9f271688f8a6f2acf25456058b3a67c86ea7aac8c32fd52221d294b5226461b9260677e3ed94af84ff9993a02e79f0d6b01f05daee2992efd8ad03b8 SHA512 f14fbd9259759f3b6f18a7dc16e00717ce54392a10cd9b3225636e33c904e69c6b01398bfce96d7273a40b6c2cca897a05ad386a4d8a83bffee12fab322f9b32
27
28 diff --git a/dev-python/flaky/flaky-3.1.1.ebuild b/dev-python/flaky/flaky-3.1.1.ebuild
29 deleted file mode 100644
30 index 4b7678a22ae..00000000000
31 --- a/dev-python/flaky/flaky-3.1.1.ebuild
32 +++ /dev/null
33 @@ -1,46 +0,0 @@
34 -# Copyright 1999-2020 Gentoo Authors
35 -# Distributed under the terms of the GNU General Public License v2
36 -
37 -EAPI=5
38 -
39 -PYTHON_COMPAT=( python2_7 python3_6 pypy3 )
40 -
41 -inherit distutils-r1
42 -
43 -DESCRIPTION="Plugin for nose or py.test that automatically reruns flaky tests"
44 -HOMEPAGE="https://pypi.org/project/flaky/ https://github.com/box/flaky"
45 -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
46 -
47 -SLOT="0"
48 -LICENSE="Apache-2.0"
49 -KEYWORDS="~alpha amd64 arm ~arm64 hppa ia64 ~m68k ~mips ppc ppc64 s390 ~sh sparc x86 ~amd64-linux ~x86-linux"
50 -IUSE="test"
51 -RESTRICT="!test? ( test )"
52 -
53 -RDEPEND=""
54 -DEPEND="${RDEPEND}
55 - dev-python/setuptools[${PYTHON_USEDEP}]
56 - test? (
57 - dev-python/genty[${PYTHON_USEDEP}]
58 - dev-python/mock[${PYTHON_USEDEP}]
59 - dev-python/nose[${PYTHON_USEDEP}]
60 - dev-python/pytest[${PYTHON_USEDEP}]
61 - )
62 -"
63 -python_prepare_all() {
64 - cat >> test/__init__.py <<- EOF
65 - # coding: utf-8
66 -
67 - from __future__ import unicode_literals
68 - EOF
69 -
70 - distutils-r1_python_prepare_all
71 -}
72 -
73 -python_test() {
74 - nosetests --with-flaky --exclude="test_nose_options_example" test/test_nose/ || die
75 - py.test -k 'example and not options' --doctest-modules test/test_pytest/ || die
76 - py.test -p no:flaky test/test_pytest/test_flaky_pytest_plugin.py || die
77 - nosetests --with-flaky --force-flaky --max-runs 2 test/test_nose/test_nose_options_example.py || die
78 - py.test --force-flaky --max-runs 2 test/test_pytest/test_pytest_options_example.py || die
79 -}
80
81 diff --git a/dev-python/flaky/flaky-3.4.0.ebuild b/dev-python/flaky/flaky-3.4.0.ebuild
82 deleted file mode 100644
83 index 029509940bb..00000000000
84 --- a/dev-python/flaky/flaky-3.4.0.ebuild
85 +++ /dev/null
86 @@ -1,46 +0,0 @@
87 -# Copyright 1999-2020 Gentoo Authors
88 -# Distributed under the terms of the GNU General Public License v2
89 -
90 -EAPI=6
91 -
92 -PYTHON_COMPAT=( python2_7 python3_{6,7} pypy3 )
93 -
94 -inherit distutils-r1
95 -
96 -DESCRIPTION="Plugin for nose or py.test that automatically reruns flaky tests"
97 -HOMEPAGE="https://pypi.org/project/flaky/ https://github.com/box/flaky"
98 -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
99 -
100 -SLOT="0"
101 -LICENSE="Apache-2.0"
102 -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-linux ~x86-linux ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
103 -IUSE="test"
104 -RESTRICT="!test? ( test )"
105 -
106 -RDEPEND=""
107 -DEPEND="${RDEPEND}
108 - dev-python/setuptools[${PYTHON_USEDEP}]
109 - test? (
110 - dev-python/genty[${PYTHON_USEDEP}]
111 - dev-python/mock[${PYTHON_USEDEP}]
112 - dev-python/nose[${PYTHON_USEDEP}]
113 - dev-python/pytest[${PYTHON_USEDEP}]
114 - )
115 -"
116 -python_prepare_all() {
117 - cat >> test/__init__.py <<- EOF
118 - # coding: utf-8
119 -
120 - from __future__ import unicode_literals
121 - EOF
122 -
123 - distutils-r1_python_prepare_all
124 -}
125 -
126 -python_test() {
127 - nosetests --with-flaky --exclude="test_nose_options_example" test/test_nose/ || die
128 - py.test -k 'example and not options' --doctest-modules test/test_pytest/ || die
129 - py.test -p no:flaky test/test_pytest/test_flaky_pytest_plugin.py || die
130 - nosetests --with-flaky --force-flaky --max-runs 2 test/test_nose/test_nose_options_example.py || die
131 - py.test --force-flaky --max-runs 2 test/test_pytest/test_pytest_options_example.py || die
132 -}
133
134 diff --git a/dev-python/flaky/flaky-3.5.3.ebuild b/dev-python/flaky/flaky-3.5.3.ebuild
135 deleted file mode 100644
136 index 19ea7bf31ed..00000000000
137 --- a/dev-python/flaky/flaky-3.5.3.ebuild
138 +++ /dev/null
139 @@ -1,46 +0,0 @@
140 -# Copyright 1999-2020 Gentoo Authors
141 -# Distributed under the terms of the GNU General Public License v2
142 -
143 -EAPI=7
144 -
145 -PYTHON_COMPAT=( python2_7 python3_{6,7} pypy3 )
146 -
147 -inherit distutils-r1
148 -
149 -DESCRIPTION="Plugin for nose or py.test that automatically reruns flaky tests"
150 -HOMEPAGE="https://pypi.org/project/flaky/ https://github.com/box/flaky"
151 -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
152 -
153 -SLOT="0"
154 -LICENSE="Apache-2.0"
155 -KEYWORDS="~alpha ~amd64 ~arm arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-linux ~x86-linux ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
156 -IUSE="test"
157 -RESTRICT="!test? ( test )"
158 -
159 -RDEPEND=""
160 -DEPEND="${RDEPEND}
161 - dev-python/setuptools[${PYTHON_USEDEP}]
162 - test? (
163 - dev-python/genty[${PYTHON_USEDEP}]
164 - dev-python/mock[${PYTHON_USEDEP}]
165 - dev-python/nose[${PYTHON_USEDEP}]
166 - dev-python/pytest[${PYTHON_USEDEP}]
167 - )
168 -"
169 -python_prepare_all() {
170 - cat >> test/__init__.py <<- EOF
171 - # coding: utf-8
172 -
173 - from __future__ import unicode_literals
174 - EOF
175 -
176 - distutils-r1_python_prepare_all
177 -}
178 -
179 -python_test() {
180 - nosetests --with-flaky --exclude="test_nose_options_example" test/test_nose/ || die
181 - py.test -k 'example and not options' --doctest-modules test/test_pytest/ || die
182 - py.test -p no:flaky test/test_pytest/test_flaky_pytest_plugin.py || die
183 - nosetests --with-flaky --force-flaky --max-runs 2 test/test_nose/test_nose_options_example.py || die
184 - py.test --force-flaky --max-runs 2 test/test_pytest/test_pytest_options_example.py || die
185 -}