diff options
author | 2015-06-18 04:35:11 +0000 | |
---|---|---|
committer | 2015-06-18 04:35:11 +0000 | |
commit | a0eb8deb1681008aeb772e13dd41290b80288dd4 (patch) | |
tree | 25ff9d9b67ff9e07740cabc9759e2886700a2486 /app-text | |
parent | Bump (diff) | |
download | gentoo-2-a0eb8deb1681008aeb772e13dd41290b80288dd4.tar.gz gentoo-2-a0eb8deb1681008aeb772e13dd41290b80288dd4.tar.bz2 gentoo-2-a0eb8deb1681008aeb772e13dd41290b80288dd4.zip |
Version bump.
(Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key 4AB3E85B4F064CA3)
Diffstat (limited to 'app-text')
-rw-r--r-- | app-text/restview/ChangeLog | 7 | ||||
-rw-r--r-- | app-text/restview/restview-2.4.0.ebuild | 33 |
2 files changed, 39 insertions, 1 deletions
diff --git a/app-text/restview/ChangeLog b/app-text/restview/ChangeLog index f736fe9a504d..f75966dce269 100644 --- a/app-text/restview/ChangeLog +++ b/app-text/restview/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for app-text/restview # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-text/restview/ChangeLog,v 1.6 2015/06/03 11:33:32 jlec Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-text/restview/ChangeLog,v 1.7 2015/06/18 04:35:11 radhermit Exp $ + +*restview-2.4.0 (18 Jun 2015) + + 18 Jun 2015; Tim Harder <radhermit@gentoo.org> +restview-2.4.0.ebuild: + Version bump. 03 Jun 2015; Justin Lecher <jlec@gentoo.org> metadata.xml: Add pypi to remote-id in metadata.xml diff --git a/app-text/restview/restview-2.4.0.ebuild b/app-text/restview/restview-2.4.0.ebuild new file mode 100644 index 000000000000..0373e25b16d6 --- /dev/null +++ b/app-text/restview/restview-2.4.0.ebuild @@ -0,0 +1,33 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-text/restview/restview-2.4.0.ebuild,v 1.1 2015/06/18 04:35:11 radhermit Exp $ + +EAPI=5 +PYTHON_COMPAT=( python{2_7,3_3,3_4} pypy ) + +inherit distutils-r1 + +DESCRIPTION="reStructuredText viewer" +HOMEPAGE="https://mg.pov.lt/restview/ https://pypi.python.org/pypi/restview" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="test" + +RDEPEND=" + dev-python/setuptools[${PYTHON_USEDEP}] + dev-python/docutils[${PYTHON_USEDEP}] + dev-python/pygments[${PYTHON_USEDEP}] + dev-python/readme[${PYTHON_USEDEP}] +" +DEPEND="${RDEPEND} + test? ( dev-python/mock[${PYTHON_USEDEP}] ) +" + +DOCS=( README.rst CHANGES.rst ) + +python_test() { + esetup.py test +} |