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/reno/
Date: Mon, 20 Mar 2023 05:36:29
Message-Id: 1679290576.478aec0a1e9b5d8acfa7c81374e2e56dd130f24c.mgorny@gentoo
1 commit: 478aec0a1e9b5d8acfa7c81374e2e56dd130f24c
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Mon Mar 20 05:19:20 2023 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Mon Mar 20 05:36:16 2023 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=478aec0a
7
8 dev-python/reno: Remove old
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/reno/reno-3.5.0.ebuild | 39 ---------------------------------------
13 1 file changed, 39 deletions(-)
14
15 diff --git a/dev-python/reno/reno-3.5.0.ebuild b/dev-python/reno/reno-3.5.0.ebuild
16 deleted file mode 100644
17 index 29246b1b609f..000000000000
18 --- a/dev-python/reno/reno-3.5.0.ebuild
19 +++ /dev/null
20 @@ -1,39 +0,0 @@
21 -# Copyright 1999-2023 Gentoo Authors
22 -# Distributed under the terms of the GNU General Public License v2
23 -
24 -EAPI=8
25 -
26 -PYTHON_COMPAT=( python3_{9..10} )
27 -inherit distutils-r1
28 -
29 -DESCRIPTION="Release notes manager, storing release notes in a git repo and building docs"
30 -HOMEPAGE="https://pypi.org/project/reno/"
31 -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
32 -
33 -LICENSE="Apache-2.0"
34 -SLOT="0"
35 -KEYWORDS="~alpha amd64 ~arm arm64 ~ia64 ~ppc64 ~riscv ~s390 x86"
36 -
37 -RDEPEND="
38 - dev-python/pbr[${PYTHON_USEDEP}]
39 - >=dev-python/pyyaml-5.3.1[${PYTHON_USEDEP}]
40 - >=dev-python/dulwich-0.15.0[${PYTHON_USEDEP}]
41 - >=dev-python/packaging-20.4[${PYTHON_USEDEP}]
42 - >=dev-python/docutils-0.11[${PYTHON_USEDEP}]
43 - >=dev-python/sphinx-2.1.1[${PYTHON_USEDEP}]
44 -"
45 -BDEPEND="
46 - dev-python/pbr[${PYTHON_USEDEP}]
47 - test? (
48 - >=dev-python/testtools-1.4.0[${PYTHON_USEDEP}]
49 - )
50 -"
51 -
52 -# The doc needs to be built from a git repository
53 -distutils_enable_tests unittest
54 -
55 -python_prepare_all() {
56 - # Some tests need to be run from a git repository
57 - rm reno/tests/test_{cache,semver}.py || die
58 - distutils-r1_python_prepare_all
59 -}