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-runner/
Date: Wed, 03 May 2017 09:27:05
Message-Id: 1493803567.59199ca20f3ccc35bed7eda54784d67f670be1c0.mgorny@gentoo
1 commit: 59199ca20f3ccc35bed7eda54784d67f670be1c0
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Wed May 3 08:05:06 2017 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Wed May 3 09:26:07 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=59199ca2
7
8 dev-python/pytest-runner: Clean old versions up
9
10 dev-python/pytest-runner/Manifest | 2 --
11 dev-python/pytest-runner/pytest-runner-2.8.ebuild | 43 -----------------------
12 dev-python/pytest-runner/pytest-runner-2.9.ebuild | 43 -----------------------
13 3 files changed, 88 deletions(-)
14
15 diff --git a/dev-python/pytest-runner/Manifest b/dev-python/pytest-runner/Manifest
16 index 9c7ae65c2b9..805172458bc 100644
17 --- a/dev-python/pytest-runner/Manifest
18 +++ b/dev-python/pytest-runner/Manifest
19 @@ -1,4 +1,2 @@
20 DIST pytest-runner-2.10.1.tar.gz 8815 SHA256 ecc9549ed1ce9bbfc9e7c9bad33d3f9fa91da2334632070a191a35aa96f0be35 SHA512 11c570051a0a7ff56fbb4fdc2a87185af6bbcccc05be012eeaefd775efbf21a3fb167a95ae603d627461b3775ee8cfb56b10d356044a4ae3966a7bf9f1b1f4a8 WHIRLPOOL c2a0c8a77abf5fedd31e0348a9e28ef60febbab7e4d18d7a8444fe6ca82f61c5f36b1cb183524ed9063e246cf6b8a76ca6427f3a63bba0e3c594e03e4a34fb13
21 DIST pytest-runner-2.6.2.tar.gz 6379 SHA256 e775a40ee4a3a1d45018b199c44cc20bbe7f3df2dc8882f61465bb4141c78cdb SHA512 6a993e8729d5e203986f2526d46e96b7ac19e65fc26493a55a98e858304ecde0c47576476864a0ee1817ea1a7b02cfda952fc03f79b84fff249021f140f3d00d WHIRLPOOL 968a38864b58d35d4c9fb0fa2855bae9f87bcb68936b5f129c5bc67b2c751e51bf5f9e5f54d27f36ccd6e89df7d4f8c4a6556de408cc8287f52725e1eb73fef5
22 -DIST pytest-runner-2.8.tar.gz 8535 SHA256 1ec44deddaa551f85fd563c40a4c483a2609aca1f284a95399566a74d0680d5c SHA512 bdbd71dc4713dca2b00fa63e8414dab0611af460c25746d5377881024c23e2c8a6f1374ab9c94fa33dae1ac2f0b7ba10f747287a3cbaeb5a44ff1dd4542e122e WHIRLPOOL 541421d6f2a8490c58fb1c33c7227ab685f9031626c8007f867d2bbc81c8913a3bcc709f34707eca2d239706eb86b090bd49024b8ee5111a4d5e84f9a292a2f0
23 -DIST pytest-runner-2.9.tar.gz 8601 SHA256 50378de59b02f51f64796d3904dfe71b9dc6f06d88fc6bfbd5c8e8366ae1d131 SHA512 2d92ab162282171d97bd931f790793b1abb01412dd54fca85e6f6fde1aa0019c1691a9a0a206cafcdd52ee57029fdda206646208493e1420a65a3c08c1121c10 WHIRLPOOL edf12d710d84b9fabbf430310215c704b4a0d4fba67ef75cdb447d6b9ee5c9e93bb82350ffeda7aeb1bfff180345a446a3a018a390e387fd5cb996b3b7cecd57
24
25 diff --git a/dev-python/pytest-runner/pytest-runner-2.8.ebuild b/dev-python/pytest-runner/pytest-runner-2.8.ebuild
26 deleted file mode 100644
27 index 06598964b38..00000000000
28 --- a/dev-python/pytest-runner/pytest-runner-2.8.ebuild
29 +++ /dev/null
30 @@ -1,43 +0,0 @@
31 -# Copyright 1999-2017 Gentoo Foundation
32 -# Distributed under the terms of the GNU General Public License v2
33 -
34 -EAPI=5
35 -
36 -PYTHON_COMPAT=( python2_7 python3_{4,5,6} pypy )
37 -
38 -inherit distutils-r1
39 -
40 -DESCRIPTION="Adds support for tests during installation of setup.py files"
41 -HOMEPAGE="https://pypi.python.org/pypi/pytest-runner https://bitbucket.org/pytest-dev/pytest-runner"
42 -SRC_URI="mirror://pypi/p/${PN}/${P}.tar.gz"
43 -
44 -LICENSE="MIT"
45 -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86"
46 -SLOT="0"
47 -IUSE="doc"
48 -
49 -DEPEND="
50 - dev-python/setuptools[${PYTHON_USEDEP}]
51 - dev-python/setuptools_scm[${PYTHON_USEDEP}]
52 - "
53 -RDEPEND="dev-python/pytest[${PYTHON_USEDEP}]"
54 -
55 -# Test not included
56 -RESTRICT="test"
57 -
58 -python_compile_all() {
59 - # The build by rst2html.py makes non fatal errors building index.rst
60 - if use doc; then
61 - rst2html.py docs/history.rst > docs/history.html
62 - rst2html.py docs/index.rst > docs/index.html
63 - fi
64 -}
65 -
66 -python_test() {
67 - esetup.py pytest
68 -}
69 -
70 -python_install_all() {
71 - use doc && local HTML_DOCS=( docs/. )
72 - distutils-r1_python_install_all
73 -}
74
75 diff --git a/dev-python/pytest-runner/pytest-runner-2.9.ebuild b/dev-python/pytest-runner/pytest-runner-2.9.ebuild
76 deleted file mode 100644
77 index 06598964b38..00000000000
78 --- a/dev-python/pytest-runner/pytest-runner-2.9.ebuild
79 +++ /dev/null
80 @@ -1,43 +0,0 @@
81 -# Copyright 1999-2017 Gentoo Foundation
82 -# Distributed under the terms of the GNU General Public License v2
83 -
84 -EAPI=5
85 -
86 -PYTHON_COMPAT=( python2_7 python3_{4,5,6} pypy )
87 -
88 -inherit distutils-r1
89 -
90 -DESCRIPTION="Adds support for tests during installation of setup.py files"
91 -HOMEPAGE="https://pypi.python.org/pypi/pytest-runner https://bitbucket.org/pytest-dev/pytest-runner"
92 -SRC_URI="mirror://pypi/p/${PN}/${P}.tar.gz"
93 -
94 -LICENSE="MIT"
95 -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86"
96 -SLOT="0"
97 -IUSE="doc"
98 -
99 -DEPEND="
100 - dev-python/setuptools[${PYTHON_USEDEP}]
101 - dev-python/setuptools_scm[${PYTHON_USEDEP}]
102 - "
103 -RDEPEND="dev-python/pytest[${PYTHON_USEDEP}]"
104 -
105 -# Test not included
106 -RESTRICT="test"
107 -
108 -python_compile_all() {
109 - # The build by rst2html.py makes non fatal errors building index.rst
110 - if use doc; then
111 - rst2html.py docs/history.rst > docs/history.html
112 - rst2html.py docs/index.rst > docs/index.html
113 - fi
114 -}
115 -
116 -python_test() {
117 - esetup.py pytest
118 -}
119 -
120 -python_install_all() {
121 - use doc && local HTML_DOCS=( docs/. )
122 - distutils-r1_python_install_all
123 -}