Gentoo Archives: gentoo-commits

From: Aaron Bauman <bman@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/rst-linker/
Date: Sun, 27 May 2018 16:23:13
Message-Id: 1527438180.2aa4f51d9c080a7200144de90b7bce026e014e01.bman@gentoo
1 commit: 2aa4f51d9c080a7200144de90b7bce026e014e01
2 Author: Louis Sautier <sautier.louis <AT> gmail <DOT> com>
3 AuthorDate: Sun May 27 14:48:05 2018 +0000
4 Commit: Aaron Bauman <bman <AT> gentoo <DOT> org>
5 CommitDate: Sun May 27 16:23:00 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2aa4f51d
7
8 dev-python/rst-linker: remove old
9
10 Package-Manager: Portage-2.3.38, Repoman-2.3.9
11
12 dev-python/rst-linker/rst-linker-1.9.ebuild | 49 -----------------------------
13 1 file changed, 49 deletions(-)
14
15 diff --git a/dev-python/rst-linker/rst-linker-1.9.ebuild b/dev-python/rst-linker/rst-linker-1.9.ebuild
16 deleted file mode 100644
17 index 4bdfb051d26..00000000000
18 --- a/dev-python/rst-linker/rst-linker-1.9.ebuild
19 +++ /dev/null
20 @@ -1,49 +0,0 @@
21 -# Copyright 1999-2017 Gentoo Foundation
22 -# Distributed under the terms of the GNU General Public License v2
23 -
24 -EAPI=6
25 -
26 -PYTHON_COMPAT=( python{2_7,3_4,3_5,3_6} pypy{,3} )
27 -
28 -inherit distutils-r1
29 -
30 -MY_PN="${PN/-/.}"
31 -DESCRIPTION="Sphinx plugin to add links and timestamps to the changelog"
32 -HOMEPAGE="https://github.com/jaraco/rst.linker"
33 -SRC_URI="mirror://pypi/${PN:0:1}/${MY_PN}/${MY_PN}-${PV}.tar.gz"
34 -
35 -LICENSE="MIT"
36 -SLOT="0"
37 -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86"
38 -IUSE="doc test"
39 -
40 -RDEPEND="
41 - dev-python/python-dateutil[${PYTHON_USEDEP}]
42 - dev-python/six[${PYTHON_USEDEP}]
43 -"
44 -DEPEND="
45 - dev-python/setuptools[${PYTHON_USEDEP}]
46 - >=dev-python/setuptools_scm-1.15.0[${PYTHON_USEDEP}]
47 - doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )
48 - test? (
49 - ${RDEPEND}
50 - dev-python/path-py[${PYTHON_USEDEP}]
51 - >=dev-python/pytest-2.8[${PYTHON_USEDEP}]
52 - dev-python/pytest-runner[${PYTHON_USEDEP}]
53 - )
54 -"
55 -
56 -S="${WORKDIR}/${MY_PN}-${PV}"
57 -
58 -python_compile_all() {
59 - use doc && esetup.py build_sphinx
60 -}
61 -
62 -python_test() {
63 - py.test --ignore=rst || die "tests failed with ${EPYTHON}"
64 -}
65 -
66 -python_install_all() {
67 - use doc && local HTML_DOCS=( "${BUILD_DIR}"/sphinx/html/. )
68 - distutils-r1_python_install_all
69 -}