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: Sat, 06 Jan 2018 00:44:42
Message-Id: 1515199465.ef56f4dbb435c2243581a85d8fbf9c1db9e097f7.mgorny@gentoo
1 commit: ef56f4dbb435c2243581a85d8fbf9c1db9e097f7
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Fri Jan 5 23:33:04 2018 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sat Jan 6 00:44:25 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ef56f4db
7
8 dev-python/pytest-runner: Clean old up
9
10 dev-python/pytest-runner/Manifest | 1 -
11 .../pytest-runner/pytest-runner-2.10.1.ebuild | 40 ----------------------
12 2 files changed, 41 deletions(-)
13
14 diff --git a/dev-python/pytest-runner/Manifest b/dev-python/pytest-runner/Manifest
15 index 412c60c785d..38586bb2c0b 100644
16 --- a/dev-python/pytest-runner/Manifest
17 +++ b/dev-python/pytest-runner/Manifest
18 @@ -1,3 +1,2 @@
19 -DIST pytest-runner-2.10.1.tar.gz 8815 BLAKE2B afc614bb9a446eed2e443dede3d1df97e093782c04e4c0052334c309e291c7baca8d6dade11c7a47f90efdaa4b0ac220507c5c096cb0cfeb6e95a1d62503bd4e SHA512 11c570051a0a7ff56fbb4fdc2a87185af6bbcccc05be012eeaefd775efbf21a3fb167a95ae603d627461b3775ee8cfb56b10d356044a4ae3966a7bf9f1b1f4a8
20 DIST pytest-runner-2.11.1.tar.gz 9661 BLAKE2B 300b63de61ef36c299a95c60af469b071c27ae483f641c7cad594f7b6f582d9e1e076192f9fd5019850cf9227af183e9f80b4049719d074a180e72c25521bc14 SHA512 5249e0a368bab21bb034a9b0121edbcda635f559cc22ba79c87565dcbc070056bfed47a69c16f4733403f61ea5b73adfd1ccf945700116043cbf3940d37d4067
21 DIST pytest-runner-2.6.2.tar.gz 6379 BLAKE2B 4f676a4cd59309cdd0e6462c83718482622817781d302ed95a2b7cb9d92a0b0f38b411c1172ecce9003f5781cdb168338bce6f446b1c91069a2024fb75574bfc SHA512 6a993e8729d5e203986f2526d46e96b7ac19e65fc26493a55a98e858304ecde0c47576476864a0ee1817ea1a7b02cfda952fc03f79b84fff249021f140f3d00d
22
23 diff --git a/dev-python/pytest-runner/pytest-runner-2.10.1.ebuild b/dev-python/pytest-runner/pytest-runner-2.10.1.ebuild
24 deleted file mode 100644
25 index 2e89dabfae7..00000000000
26 --- a/dev-python/pytest-runner/pytest-runner-2.10.1.ebuild
27 +++ /dev/null
28 @@ -1,40 +0,0 @@
29 -# Copyright 1999-2017 Gentoo Foundation
30 -# Distributed under the terms of the GNU General Public License v2
31 -
32 -EAPI=6
33 -
34 -PYTHON_COMPAT=( python2_7 python3_{4,5,6} pypy{,3} )
35 -
36 -inherit distutils-r1
37 -
38 -DESCRIPTION="Adds support for tests during installation of setup.py files"
39 -HOMEPAGE="https://pypi.python.org/pypi/pytest-runner https://github.com/pytest-dev/pytest-runner"
40 -SRC_URI="mirror://pypi/p/${PN}/${P}.tar.gz"
41 -
42 -LICENSE="MIT"
43 -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86"
44 -SLOT="0"
45 -IUSE="doc"
46 -
47 -DEPEND="
48 - dev-python/setuptools[${PYTHON_USEDEP}]
49 - dev-python/setuptools_scm[${PYTHON_USEDEP}]
50 - doc? ( dev-python/docutils[${PYTHON_USEDEP}] )
51 - "
52 -RDEPEND="dev-python/pytest[${PYTHON_USEDEP}]"
53 -
54 -# Test not included
55 -RESTRICT="test"
56 -
57 -python_compile_all() {
58 - # The build by rst2html.py makes non fatal errors building index.rst
59 - if use doc; then
60 - rst2html.py docs/history.rst > docs/history.html
61 - rst2html.py docs/index.rst > docs/index.html
62 - HTML_DOCS=( docs/*.html )
63 - fi
64 -}
65 -
66 -python_test() {
67 - esetup.py pytest
68 -}