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/rst-linker/
Date: Sun, 29 Mar 2020 07:31:48
Message-Id: 1585467078.cc12d3350c5afdc9e232f1903c32d8f840bcccc3.mgorny@gentoo
1 commit: cc12d3350c5afdc9e232f1903c32d8f840bcccc3
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sun Mar 29 07:21:45 2020 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sun Mar 29 07:31:18 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cc12d335
7
8 dev-python/rst-linker: Remove redundant versions
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/rst-linker/Manifest | 1 -
13 dev-python/rst-linker/rst-linker-1.9-r1.ebuild | 59 --------------------------
14 2 files changed, 60 deletions(-)
15
16 diff --git a/dev-python/rst-linker/Manifest b/dev-python/rst-linker/Manifest
17 index 65510ce7325..32afb6ce3a7 100644
18 --- a/dev-python/rst-linker/Manifest
19 +++ b/dev-python/rst-linker/Manifest
20 @@ -1,3 +1,2 @@
21 DIST rst.linker-1.11.tar.gz 12569 BLAKE2B 5418f651322c28d8aff2dc735f8ff72325e895d8f2c12dae4985112112f74023c6103e344f4422e944b32b692713834ae5239bc4193edc76bfa85d9e0a674f4a SHA512 8e748330f60e2e1f859fa3ec3fad706d7bbafc78a402b0df242bda7caff1fad3f1b17873fa9ee749d3d214e094f24a35695c627cf9a8d8f08ca99ee6ad0e4e6d
22 -DIST rst.linker-1.9.tar.gz 7618 BLAKE2B b344495a217d7cd1c057256701130851975e46c45a740251ce20efa5131feb46a074fb1367a645e89b436b7e093baad1a484d06ca069ebc0f59eca8183ddd36d SHA512 b3e39b025f75bb6ff670f23ee7abd48dcc4e19343626c1ffadd2304a7e3285fe0b7369ace96e47094606e864672c8aeea967a02217b110762e53498dde64b8a7
23 DIST rst.linker-2.0.0.tar.gz 12861 BLAKE2B f52ddab3c8119f0bac64e294e4a5a3cc50916f19f49ca1ca4983d8b5d2bb5401c6accb5873df38609386e12fcd1cb02b867f3633edd4d10606a98936e96e62eb SHA512 ea9fa95de66c95dc384c888446512be66b180d0d76e99fe7a6b8f8348436d4be959d3d567fa521d9fc925b537467a4fdf05f9e9d17f7a6df4aafd6dfd323e4fc
24
25 diff --git a/dev-python/rst-linker/rst-linker-1.9-r1.ebuild b/dev-python/rst-linker/rst-linker-1.9-r1.ebuild
26 deleted file mode 100644
27 index 4a956f60c50..00000000000
28 --- a/dev-python/rst-linker/rst-linker-1.9-r1.ebuild
29 +++ /dev/null
30 @@ -1,59 +0,0 @@
31 -# Copyright 1999-2020 Gentoo Authors
32 -# Distributed under the terms of the GNU General Public License v2
33 -
34 -EAPI=6
35 -
36 -PYTHON_COMPAT=( python{2_7,3_6} pypy3 )
37 -
38 -inherit distutils-r1
39 -
40 -MY_PN="${PN/-/.}"
41 -DESCRIPTION="Sphinx plugin to add links and timestamps to the changelog"
42 -HOMEPAGE="https://github.com/jaraco/rst.linker"
43 -SRC_URI="mirror://pypi/${PN:0:1}/${MY_PN}/${MY_PN}-${PV}.tar.gz"
44 -
45 -LICENSE="MIT"
46 -SLOT="0"
47 -KEYWORDS="~alpha amd64 arm arm64 hppa ia64 ~m68k ~mips ppc ppc64 s390 sparc x86"
48 -IUSE="doc test"
49 -RESTRICT="!test? ( test )"
50 -
51 -RDEPEND="
52 - dev-python/python-dateutil[${PYTHON_USEDEP}]
53 - dev-python/six[${PYTHON_USEDEP}]
54 -"
55 -DEPEND="
56 - dev-python/setuptools[${PYTHON_USEDEP}]
57 - >=dev-python/setuptools_scm-1.15.0[${PYTHON_USEDEP}]
58 - doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )
59 - test? (
60 - ${RDEPEND}
61 - dev-python/path-py[${PYTHON_USEDEP}]
62 - >=dev-python/pytest-2.8[${PYTHON_USEDEP}]
63 - )
64 -"
65 -
66 -S="${WORKDIR}/${MY_PN}-${PV}"
67 -
68 -python_compile_all() {
69 - use doc && esetup.py build_sphinx
70 -}
71 -
72 -python_test() {
73 - py.test -v --ignore=rst || die "tests failed with ${EPYTHON}"
74 -}
75 -
76 -python_install() {
77 - distutils-r1_python_install
78 -
79 - # namespace used only by this package in Gentoo at the moment
80 - python_moduleinto rst
81 - python_domodule rst/__init__.py
82 -}
83 -
84 -python_install_all() {
85 - use doc && local HTML_DOCS=( "${BUILD_DIR}"/sphinx/html/. )
86 - distutils-r1_python_install_all
87 -
88 - find "${D}" -name '*.pth' -delete || die
89 -}