Gentoo Archives: gentoo-commits

From: Tim Harder <radhermit@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-text/restview/
Date: Mon, 05 Feb 2018 06:03:02
Message-Id: 1517810453.6db259cb44b58e92a89b492679733af032fe6ed8.radhermit@gentoo
1 commit: 6db259cb44b58e92a89b492679733af032fe6ed8
2 Author: Tim Harder <radhermit <AT> gentoo <DOT> org>
3 AuthorDate: Mon Feb 5 05:35:39 2018 +0000
4 Commit: Tim Harder <radhermit <AT> gentoo <DOT> org>
5 CommitDate: Mon Feb 5 06:00:53 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6db259cb
7
8 app-text/restview: version bump to 2.8.1
9
10 app-text/restview/Manifest | 1 +
11 app-text/restview/restview-2.8.1.ebuild | 32 ++++++++++++++++++++++++++++++++
12 2 files changed, 33 insertions(+)
13
14 diff --git a/app-text/restview/Manifest b/app-text/restview/Manifest
15 index ce75ae267a6..6a0a18f5545 100644
16 --- a/app-text/restview/Manifest
17 +++ b/app-text/restview/Manifest
18 @@ -1,2 +1,3 @@
19 DIST restview-2.7.0.tar.gz 29448 BLAKE2B 0cf90599fb9b5c98e674f690ce3082f61f6ab83c46ae90934bafe5d9b62eff70f943a18aef91cfb61e234e04a4fb12d39c2e3a01faec688574ecf6c2d0b22f89 SHA512 fccfed505832b85bd4fad964f78b0de371ea0a42ac5cc700a8604e413743a236b70f0160edc115d1e9cdef03f2aa7fc461893f40e01203a048756887f655f65c
20 DIST restview-2.8.0.tar.gz 44577 BLAKE2B 03fb6d6200b9b9c82abd2fc5f81cf7afd2ade0067b0e657b7d19a3abd12d72046633217ef57143f3f45c8360721acc65d499cc8c9bd31a461318699368ff7d7f SHA512 99bee763493d2a5fdf17b228c62eb9fe6adfbb6e0f3e09c758ceaeabc6dece892dbd750d043d722c6df456b27bdeeecfe1cf4187a53c2a0333a05b1e147e71b5
21 +DIST restview-2.8.1.tar.gz 46103 BLAKE2B 3f5b8852b1d174736333461181e9cad06c16ea8ac40e5041c5bf8246360e161609d99ac26a7a32f1dec518c017a30ecf1ac46eea80569b0d213ae62bee8ecc5d SHA512 cbc6057df06a108ced9bfbc7442730c8bbe3bbe334eb6f708dd54e899ed6630bfb05e532c403a9a1a36b170dbe933a5829ada3b014147a3834c492456ca65363
22
23 diff --git a/app-text/restview/restview-2.8.1.ebuild b/app-text/restview/restview-2.8.1.ebuild
24 new file mode 100644
25 index 00000000000..8936274a1ef
26 --- /dev/null
27 +++ b/app-text/restview/restview-2.8.1.ebuild
28 @@ -0,0 +1,32 @@
29 +# Copyright 1999-2018 Gentoo Foundation
30 +# Distributed under the terms of the GNU General Public License v2
31 +
32 +EAPI=6
33 +PYTHON_COMPAT=( python{2_7,3_4,3_5,3_6} pypy )
34 +
35 +inherit distutils-r1
36 +
37 +DESCRIPTION="reStructuredText viewer"
38 +HOMEPAGE="https://mg.pov.lt/restview/ https://pypi.python.org/pypi/restview"
39 +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
40 +
41 +LICENSE="GPL-3"
42 +SLOT="0"
43 +KEYWORDS="~amd64 ~x86"
44 +IUSE="test"
45 +
46 +RDEPEND="
47 + dev-python/setuptools[${PYTHON_USEDEP}]
48 + dev-python/docutils[${PYTHON_USEDEP}]
49 + dev-python/pygments[${PYTHON_USEDEP}]
50 + dev-python/readme_renderer[${PYTHON_USEDEP}]
51 +"
52 +DEPEND="${RDEPEND}
53 + test? ( dev-python/mock[${PYTHON_USEDEP}] )
54 +"
55 +
56 +DOCS=( README.rst CHANGES.rst )
57 +
58 +python_test() {
59 + esetup.py test
60 +}