Gentoo Archives: gentoo-commits

From: David Seifert <soap@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/sphinxcontrib-programoutput/
Date: Sun, 29 Dec 2019 08:53:30
Message-Id: 1577609567.6ef4e8ec73058f75c593efe876810d7ad92c9c07.soap@gentoo
1 commit: 6ef4e8ec73058f75c593efe876810d7ad92c9c07
2 Author: David Seifert <soap <AT> gentoo <DOT> org>
3 AuthorDate: Sun Dec 29 08:52:47 2019 +0000
4 Commit: David Seifert <soap <AT> gentoo <DOT> org>
5 CommitDate: Sun Dec 29 08:52:47 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6ef4e8ec
7
8 dev-python/sphinxcontrib-programoutput: Remove old
9
10 Package-Manager: Portage-2.3.83, Repoman-2.3.20
11 Signed-off-by: David Seifert <soap <AT> gentoo.org>
12
13 dev-python/sphinxcontrib-programoutput/Manifest | 1 -
14 .../sphinxcontrib-programoutput-0.8.ebuild | 40 ----------------------
15 2 files changed, 41 deletions(-)
16
17 diff --git a/dev-python/sphinxcontrib-programoutput/Manifest b/dev-python/sphinxcontrib-programoutput/Manifest
18 index eaf4842d0a3..36058ac820e 100644
19 --- a/dev-python/sphinxcontrib-programoutput/Manifest
20 +++ b/dev-python/sphinxcontrib-programoutput/Manifest
21 @@ -1,2 +1 @@
22 DIST sphinxcontrib-programoutput-0.11.tar.gz 18267 BLAKE2B 790483b09a00199e4f6a4bb723827001e3dc252b294244ddb5ed3edc78cd8dde41fd0c5cab6d4fb715c85f8c447bf25d690b4f921341769de6d7d1c9dc7f4a71 SHA512 4aa655f8632093035de986fa31291f95e95c4c0f4d1458bb8c8cc077cca73d579b16a8bf103d7b34faafb2171c617c40200008d89186f8ed37a812459f0376cf
23 -DIST sphinxcontrib-programoutput-0.8.tar.gz 14419 BLAKE2B ab902026ffbf4b590a5ff2617a609bff3adbefb9ef76982b6ecbbc34b7393f154db36e893b85e6316506142038f2b67f96c08e2158180164692bdbc28186dbcc SHA512 9ab769f794cf8c47f2d755b343c1326b8335c1f8161294727abada81af189545d549350536d28ac2c5f27cc309330f875b7affef6f997651e3a9f9dfbe6bd174
24
25 diff --git a/dev-python/sphinxcontrib-programoutput/sphinxcontrib-programoutput-0.8.ebuild b/dev-python/sphinxcontrib-programoutput/sphinxcontrib-programoutput-0.8.ebuild
26 deleted file mode 100644
27 index 24754c6574b..00000000000
28 --- a/dev-python/sphinxcontrib-programoutput/sphinxcontrib-programoutput-0.8.ebuild
29 +++ /dev/null
30 @@ -1,40 +0,0 @@
31 -# Copyright 1999-2019 Gentoo Authors
32 -# Distributed under the terms of the GNU General Public License v2
33 -
34 -EAPI=5
35 -
36 -PYTHON_COMPAT=( python2_7 python3_5 pypy )
37 -
38 -inherit distutils-r1
39 -
40 -DESCRIPTION="Extension to sphinx to include program output"
41 -HOMEPAGE="https://sphinxcontrib-programoutput.readthedocs.io/en/latest/"
42 -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
43 -
44 -LICENSE="BSD"
45 -SLOT="0"
46 -KEYWORDS="amd64 x86 ~amd64-linux ~x86-linux"
47 -
48 -IUSE="doc test"
49 -RESTRICT="!test? ( test )"
50 -
51 -RDEPEND=">=dev-python/sphinx-1.1[${PYTHON_USEDEP}]"
52 -DEPEND="${RDEPEND}
53 - dev-python/setuptools[${PYTHON_USEDEP}]
54 - test? (
55 - dev-python/mock[${PYTHON_USEDEP}]
56 - dev-python/pytest[${PYTHON_USEDEP}]
57 - )"
58 -
59 -python_compile_all() {
60 - use doc && emake -C doc html
61 -}
62 -
63 -python_test() {
64 - py.test -v -v || die
65 -}
66 -
67 -python_install_all() {
68 - use doc && local HTML_DOCS=( doc/_build/html/. )
69 - distutils-r1_python_install_all
70 -}