blob: a273917c3f3b50d0dafcc34f1ce52eaba28ab0ea (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
PYTHON_COMPAT=( python3_{7,8} )
inherit distutils-r1
DESCRIPTION="Plugin for Mkdocs page redirects"
HOMEPAGE="
https://github.com/datarobot/mkdocs-redirects
https://pypi.org/project/mkdocs-redirects/
"
SRC_URI="https://github.com/datarobot/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~x86"
RDEPEND="
>=dev-python/mkdocs-1.0.4[${PYTHON_USEDEP}]
dev-python/twine[${PYTHON_USEDEP}]
"
|