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-napoleon/files/, dev-python/sphinxcontrib-napoleon/
Date: Sun, 29 Dec 2019 13:06:47
Message-Id: 1577624782.0c370db7bbba32cc85f3c8e35e83d3f8354f5f49.soap@gentoo
1 commit: 0c370db7bbba32cc85f3c8e35e83d3f8354f5f49
2 Author: David Seifert <soap <AT> gentoo <DOT> org>
3 AuthorDate: Sun Dec 29 13:06:22 2019 +0000
4 Commit: David Seifert <soap <AT> gentoo <DOT> org>
5 CommitDate: Sun Dec 29 13:06:22 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0c370db7
7
8 dev-python/sphinxcontrib-napoleon: 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-napoleon/Manifest | 1 -
14 .../files/no_installed_tests.patch | 11 -------
15 .../sphinxcontrib-napoleon-0.5.2.ebuild | 38 ----------------------
16 3 files changed, 50 deletions(-)
17
18 diff --git a/dev-python/sphinxcontrib-napoleon/Manifest b/dev-python/sphinxcontrib-napoleon/Manifest
19 index 6b550923dd5..e83efc79d0b 100644
20 --- a/dev-python/sphinxcontrib-napoleon/Manifest
21 +++ b/dev-python/sphinxcontrib-napoleon/Manifest
22 @@ -1,2 +1 @@
23 -DIST sphinxcontrib-napoleon-0.5.2.tar.gz 24939 BLAKE2B 80735db4176019b164a60c6327600246949a6dd892c161d35ca8046ff669fdcd68661083bfdd94400b8e32a3eb89bfede31bc569df1b17a37ac28071392020bc SHA512 5f8d31c4ce66a042aa0c79ec06b7592539154bd7a397c1898db0cbed15b9891c908bb1d51334ef0b759e5d44ac99cf124616f0e4b3a1b1253f0f92312c949a8c
24 DIST sphinxcontrib-napoleon-0.6.1.tar.gz 20057 BLAKE2B fe56c257af9433ee10dc92f7a028d581ce0783143f1d187cedbc226a72d3a2af9b185cb528549b80f77749aea15484bdbea5d0bdb7d5b087ac952ed3b855e1ad SHA512 1809fcadf964622bd75cc3ae17aaad467b7003f82e6df4de039a0ba86daa5c5b199af0c185129e79d3c4f8738c0d6c2411950888969fee3bb32ecc8cdfbc84b0
25
26 diff --git a/dev-python/sphinxcontrib-napoleon/files/no_installed_tests.patch b/dev-python/sphinxcontrib-napoleon/files/no_installed_tests.patch
27 deleted file mode 100644
28 index 20ba790b852..00000000000
29 --- a/dev-python/sphinxcontrib-napoleon/files/no_installed_tests.patch
30 +++ /dev/null
31 @@ -1,11 +0,0 @@
32 ---- setup.py.orig 2016-08-03 16:43:35.775261808 +0200
33 -+++ setup.py 2016-08-03 16:43:56.126054227 +0200
34 -@@ -43,7 +43,7 @@
35 - 'Framework :: Sphinx :: Extension',
36 - ],
37 - platforms='any',
38 -- packages=find_packages(),
39 -+ packages=["sphinxcontrib"],
40 - include_package_data=True,
41 - install_requires=reqs,
42 - test_suite='nose.collector',
43
44 diff --git a/dev-python/sphinxcontrib-napoleon/sphinxcontrib-napoleon-0.5.2.ebuild b/dev-python/sphinxcontrib-napoleon/sphinxcontrib-napoleon-0.5.2.ebuild
45 deleted file mode 100644
46 index 41e94f42b8e..00000000000
47 --- a/dev-python/sphinxcontrib-napoleon/sphinxcontrib-napoleon-0.5.2.ebuild
48 +++ /dev/null
49 @@ -1,38 +0,0 @@
50 -# Copyright 1999-2019 Gentoo Authors
51 -# Distributed under the terms of the GNU General Public License v2
52 -
53 -EAPI=5
54 -
55 -PYTHON_COMPAT=( python3_5 )
56 -
57 -inherit distutils-r1
58 -
59 -DESCRIPTION="Allow a different format in dosctrings for better clarity"
60 -HOMEPAGE="https://pypi.org/project/sphinxcontrib-napoleon/"
61 -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
62 -
63 -LICENSE="BSD"
64 -SLOT="0"
65 -KEYWORDS="~amd64"
66 -IUSE=test
67 -RESTRICT="!test? ( test )"
68 -
69 -DEPEND="
70 - dev-python/setuptools[${PYTHON_USEDEP}]
71 - >=dev-python/six-1.5.2[${PYTHON_USEDEP}]
72 - >=dev-python/pockets-0.3[${PYTHON_USEDEP}]
73 - test? ( >=dev-python/coverage-3.6[${PYTHON_USEDEP}]
74 - >=dev-python/docutils-0.10[${PYTHON_USEDEP}]
75 - >=dev-python/flake8-2.0[${PYTHON_USEDEP}]
76 - >=dev-python/mock-1.0.1[${PYTHON_USEDEP}]
77 - >=dev-python/nose-1.3.0[${PYTHON_USEDEP}]
78 - >=dev-python/sphinx-1.2.1[${PYTHON_USEDEP}]
79 - )
80 -"
81 -src_prepare() {
82 - epatch "${FILESDIR}/no_installed_tests.patch" || die
83 -}
84 -
85 -python_test() {
86 - nosetests tests || die "tests failed with ${EPYTHON}"
87 -}