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/recommonmark/
Date: Mon, 11 May 2020 17:49:05
Message-Id: 1589218889.befa78578fa7e2b653a16c3ef4d67bcd6fad81c1.mgorny@gentoo
1 commit: befa78578fa7e2b653a16c3ef4d67bcd6fad81c1
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Mon May 11 17:41:29 2020 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Mon May 11 17:41:29 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=befa7857
7
8 dev-python/recommonmark: Remove old
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/recommonmark/Manifest | 1 -
13 dev-python/recommonmark/recommonmark-0.5.0.ebuild | 30 -----------------------
14 2 files changed, 31 deletions(-)
15
16 diff --git a/dev-python/recommonmark/Manifest b/dev-python/recommonmark/Manifest
17 index 84ca442158c..8403f7f1de4 100644
18 --- a/dev-python/recommonmark/Manifest
19 +++ b/dev-python/recommonmark/Manifest
20 @@ -1,2 +1 @@
21 -DIST recommonmark-0.5.0.tar.gz 22356 BLAKE2B e22c6741e704b7017ff81282bd3297272f36396628b3a85e9e2ac5548b363a8b02f6aeb3db256b885a3a9a0ebe681da10f4f29c18f1bdb33490da55bf375b444 SHA512 e11a86961e477e9ae258df90c666fd0129a0ae858a8d5399b7f768b9e9ec5b4952ef5f9383ea91d8ccb1379e2753151387f7250588a98f43929bf3ebe78b7df9
22 DIST recommonmark-0.6.0.tar.gz 24537 BLAKE2B 47f667ca0799394dc88964709efc59d1e2a68973b1c00fb41abfb514166e939b8dd0b6a0827285cfa1bb60669e08868b7a0993b6a32880fc0dd22cfefa6cf273 SHA512 44005b3fd0052cd8d4fce8a64f9d66a1ac75dc3041a28c115e922254956b2143296cbfbc0a2396b9f95691145645c4242e3be68e695b2c62ae37964014511679
23
24 diff --git a/dev-python/recommonmark/recommonmark-0.5.0.ebuild b/dev-python/recommonmark/recommonmark-0.5.0.ebuild
25 deleted file mode 100644
26 index 2863e840d9f..00000000000
27 --- a/dev-python/recommonmark/recommonmark-0.5.0.ebuild
28 +++ /dev/null
29 @@ -1,30 +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 -PYTHON_COMPAT=( python3_{6,7} )
35 -
36 -inherit distutils-r1
37 -
38 -DESCRIPTION="Python docutils-compatibility bridge to CommonMark"
39 -HOMEPAGE="https://recommonmark.readthedocs.io/"
40 -SRC_URI="https://github.com/rtfd/recommonmark/archive/${PV}.tar.gz -> ${P}.tar.gz"
41 -
42 -LICENSE="MIT"
43 -SLOT="0"
44 -KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ppc ppc64 sparc x86 ~amd64-linux ~x86-linux"
45 -IUSE="test"
46 -RESTRICT="!test? ( test )"
47 -
48 -RDEPEND="
49 - >=dev-python/commonmark-0.8[${PYTHON_USEDEP}]
50 - >=dev-python/docutils-0.14[${PYTHON_USEDEP}]
51 - dev-python/setuptools[${PYTHON_USEDEP}]
52 - >=dev-python/sphinx-1.3.1[${PYTHON_USEDEP}]
53 -"
54 -DEPEND="${RDEPEND}
55 - test? ( dev-python/pytest[${PYTHON_USEDEP}] )"
56 -
57 -python_test() {
58 - pytest -vv || die "Tests fail with ${EPYTHON}"
59 -}