blob: e3b64eb6e22c81b5d2d3919cd63b1c9dbd6135a5 (
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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
|
# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYTHON_COMPAT=( python3_{8..11} )
DISTUTILS_USE_PEP517=setuptools
inherit distutils-r1
DESCRIPTION="Command-line utility to create projects from cookiecutters (project templates)"
HOMEPAGE="https://github.com/cookiecutter/cookiecutter"
SRC_URI="https://github.com/cookiecutter/cookiecutter/archive/${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="amd64 ~ppc64 x86"
RDEPEND="
>=dev-python/binaryornot-0.4.4[${PYTHON_USEDEP}]
>=dev-python/click-7.0[${PYTHON_USEDEP}]
<dev-python/click-9.0.0[${PYTHON_USEDEP}]
>=dev-python/jinja-2.7[${PYTHON_USEDEP}]
<dev-python/jinja-4.0.0[${PYTHON_USEDEP}]
>=dev-python/jinja2-time-0.2.0[${PYTHON_USEDEP}]
>=dev-python/python-slugify-4.0.0[${PYTHON_USEDEP}]
>=dev-python/requests-2.23.0[${PYTHON_USEDEP}]
"
BDEPEND="
test? (
dev-python/pytest-mock[${PYTHON_USEDEP}]
dev-python/freezegun[${PYTHON_USEDEP}]
dev-vcs/git
)
"
DOCS=( README.md HISTORY.md CONTRIBUTING.md )
PATCHES=(
"${FILESDIR}/test_cli-1.7.2.patch"
# https://github.com/cookiecutter/cookiecutter/issues/1655
"${FILESDIR}/${P}-fix-path-in-test.patch"
# https://github.com/cookiecutter/cookiecutter/pull/1643
"${FILESDIR}/${P}-relax-click-dependency.patch"
)
distutils_enable_tests pytest
# TODO: Package sphinx-click
# distutils_enable_sphinx docs \
# dev-python/sphinx_rtd_theme \
# dev-python/recommonmark
python_test() {
epytest -o addopts=
}
|