dev-python/mkdocs: Bump to 0.17.4

Package-Manager: Portage-2.3.40, Repoman-2.3.9
This commit is contained in:
Vladimir Smirnov
2018-06-15 21:53:15 +02:00
parent ed5397f051
commit 75f5e134e1
2 changed files with 49 additions and 0 deletions

View File

@@ -1 +1,2 @@
DIST mkdocs-0.15.3.tar.gz 1805972 BLAKE2B e6619fa0bd14fefe96de5abeb9243369b1419e7018705ac6a6d58fcb40c01aff380c3b4ca514af0a25da90092f39776abe42d19a67f7e86780c5c4111884b230 SHA512 e5b72eb56dcc2fe2be154155af15845a7d0fc06d6176f1c6b2bb54e8673d207146bdd92b37a709d72c1d59fcc76a793e6fed5d7fb6d9008f28d43baa17e446f8
DIST mkdocs-0.17.4.tar.gz 1830194 BLAKE2B be3877459ae4a5a88b40b2ab4beb2174c67d11a266a48cbcd37432c53df49f11aae3f923485f483744128483c7009f5f46a875924bd8409ec846f5d3387e1a68 SHA512 b9e2415cfaa317c4ec48dc2f54be55d2a630349cfc150f26d807015616853e2ea8937b247713a1a732626bedc807b542dbcd8e23d6ea70edb1e971abd20dd74b

View File

@@ -0,0 +1,48 @@
# Copyright 1999-2018 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
PYTHON_COMPAT=( python2_7 python3_{4,5,6} )
inherit distutils-r1 vcs-snapshot
DESCRIPTION="Project documentation with Markdown."
HOMEPAGE="http://www.mkdocs.org"
SRC_URI="https://github.com/tomchristie/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64"
IUSE="test"
CDEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
DEPEND="
${CDEPEND}
test? (
dev-python/mock[${PYTHON_USEDEP}]
dev-python/nose[${PYTHON_USEDEP}]
)
"
RDEPEND="
${CDEPEND}
>=dev-python/click-3.3[${PYTHON_USEDEP}]
>=dev-python/jinja-2.7.1[${PYTHON_USEDEP}]
>=dev-python/livereload-2.5.1[${PYTHON_USEDEP}]
>=dev-python/markdown-2.5[${PYTHON_USEDEP}]
>=dev-python/mkdocs-bootstrap-0.1.1[${PYTHON_USEDEP}]
>=dev-python/mkdocs-bootswatch-0.1.0[${PYTHON_USEDEP}]
>=dev-python/pyyaml-3.10[${PYTHON_USEDEP}]
>=www-servers/tornado-4.1[${PYTHON_USEDEP}]
"
src_prepare() {
default
# mkdocs works fine with torando 5 on Python 2.7 and 3.4+:
# See https://github.com/mkdocs/mkdocs/pull/1427#issuecomment-371818250
sed -i 's#tornado>=4.1,<5.0#tornado>=4.1#' "${S}"/setup.py || die "Failed to fix tornado version"
}
python_test() {
nosetests mkdocs/tests || die "tests failed under ${EPYTHON}"
}