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: Wed, 02 Dec 2020 09:53:49
Message-Id: 1606902802.b7f08d42ec2f71f97541d19bca2f7a2639c94bf2.mgorny@gentoo
1 commit: b7f08d42ec2f71f97541d19bca2f7a2639c94bf2
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Wed Dec 2 09:53:22 2020 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Wed Dec 2 09:53:22 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b7f08d42
7
8 dev-python/rst-linker: Remove old
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-2.0.0.ebuild | 45 ---------------------------
14 2 files changed, 46 deletions(-)
15
16 diff --git a/dev-python/rst-linker/Manifest b/dev-python/rst-linker/Manifest
17 index f48e515c83f..f2139462b81 100644
18 --- a/dev-python/rst-linker/Manifest
19 +++ b/dev-python/rst-linker/Manifest
20 @@ -1,2 +1 @@
21 -DIST rst.linker-2.0.0.tar.gz 12861 BLAKE2B f52ddab3c8119f0bac64e294e4a5a3cc50916f19f49ca1ca4983d8b5d2bb5401c6accb5873df38609386e12fcd1cb02b867f3633edd4d10606a98936e96e62eb SHA512 ea9fa95de66c95dc384c888446512be66b180d0d76e99fe7a6b8f8348436d4be959d3d567fa521d9fc925b537467a4fdf05f9e9d17f7a6df4aafd6dfd323e4fc
22 DIST rst.linker-2.1.1.tar.gz 13492 BLAKE2B 0f53f3110c4a54e7eb36787ed08f81d0ce551174251203b7184ccbcc0153ee450e8e8927e8989b572b929219b1002019f49167482d59956ad96a54360317f998 SHA512 c49e6b3de41636184f75941d8fa258c2dad3d13a7d82b6221a10f583ada228a96f56abefce7840f93cbae8512332b69430601961cc396f3917b912e369b2b1b9
23
24 diff --git a/dev-python/rst-linker/rst-linker-2.0.0.ebuild b/dev-python/rst-linker/rst-linker-2.0.0.ebuild
25 deleted file mode 100644
26 index 0b9231d4e01..00000000000
27 --- a/dev-python/rst-linker/rst-linker-2.0.0.ebuild
28 +++ /dev/null
29 @@ -1,45 +0,0 @@
30 -# Copyright 1999-2020 Gentoo Authors
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=7
34 -
35 -PYTHON_COMPAT=( pypy3 python3_{6,7,8,9} )
36 -
37 -inherit distutils-r1
38 -
39 -MY_PN="${PN/-/.}"
40 -DESCRIPTION="Sphinx plugin to add links and timestamps to the changelog"
41 -HOMEPAGE="https://github.com/jaraco/rst.linker"
42 -SRC_URI="mirror://pypi/${PN:0:1}/${MY_PN}/${MY_PN}-${PV}.tar.gz"
43 -
44 -LICENSE="MIT"
45 -SLOT="0"
46 -KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv s390 sparc x86"
47 -IUSE="test"
48 -RESTRICT="!test? ( test )"
49 -
50 -RDEPEND="
51 - $(python_gen_cond_dep 'dev-python/importlib_metadata[${PYTHON_USEDEP}]' pypy3 python3_{6,7})
52 - dev-python/python-dateutil[${PYTHON_USEDEP}]
53 -"
54 -BDEPEND="
55 - >=dev-python/setuptools_scm-1.15.0[${PYTHON_USEDEP}]
56 - test? (
57 - ${RDEPEND}
58 - dev-python/path-py[${PYTHON_USEDEP}]
59 - >=dev-python/pytest-3.4[${PYTHON_USEDEP}]
60 - )
61 -"
62 -
63 -S="${WORKDIR}/${MY_PN}-${PV}"
64 -
65 -distutils_enable_sphinx docs ">=dev-python/jaraco-packaging-3.2"
66 -
67 -python_test() {
68 - # Ignore the module from ${S}, use the one from ${BUILD_DIR}
69 - # Otherwise, ImportMismatchError may occur
70 - # https://github.com/gentoo/gentoo/pull/1622#issuecomment-224482396
71 - # Override pytest options to skip flake8
72 - pytest -vv --ignore=rst --override-ini="addopts=--doctest-modules" \
73 - || die "tests failed with ${EPYTHON}"
74 -}