Gentoo Archives: gentoo-commits

From: Louis Sautier <sbraz@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/tempita/
Date: Tue, 30 Oct 2018 22:33:01
Message-Id: 1540938761.6b4c617c959695cd206e98034dade19418828708.sbraz@gentoo
1 commit: 6b4c617c959695cd206e98034dade19418828708
2 Author: Louis Sautier <sbraz <AT> gentoo <DOT> org>
3 AuthorDate: Tue Oct 30 22:28:56 2018 +0000
4 Commit: Louis Sautier <sbraz <AT> gentoo <DOT> org>
5 CommitDate: Tue Oct 30 22:32:41 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6b4c617c
7
8 dev-python/tempita: add PyPy3, Python 3.7, doc and tests
9
10 Signed-off-by: Louis Sautier <sbraz <AT> gentoo.org>
11 Package-Manager: Portage-2.3.51, Repoman-2.3.11
12
13 dev-python/tempita/Manifest | 1 +
14 dev-python/tempita/tempita-0.5.3-r2.ebuild | 51 ++++++++++++++++++++++++++++++
15 2 files changed, 52 insertions(+)
16
17 diff --git a/dev-python/tempita/Manifest b/dev-python/tempita/Manifest
18 index a19e8003825..008227d03f5 100644
19 --- a/dev-python/tempita/Manifest
20 +++ b/dev-python/tempita/Manifest
21 @@ -1 +1,2 @@
22 +DIST tempita-0.5.3-bitbucket.tar.gz 22756 BLAKE2B 59d273b1dc206eea452f7e5265d59b3ef1248b2d920eae559d74f4c569852b2a127e2a906f866cb748a12663dca944d9080413410edd5c69bd93b0d9574e3026 SHA512 cebe443bf0fc7705304fe127c796801acb6cdc54e79315c2afddb79ece1d04427852c1d0924ab9dd54520b584ae09a0644a20ff2dd6ed0408ee103f5b3fb9410
23 DIST tempita-0.5.3.tar.gz 12707 BLAKE2B 921087bf09454506db8cab7b37c780bba5298b206113e246b710367b92364f03055afda6b826ca3008e34e4ea8821c6aabf045a735ac0887db1ba8a82e048ddb SHA512 43bafd42ab0c07bec636d637bfcd42053559d188e13bccc66527dc5f735fd9c3ec30fcf29f3e650d88315fe8f2eb2c5af280f51d2c64db099e08d8a70969a1c4
24
25 diff --git a/dev-python/tempita/tempita-0.5.3-r2.ebuild b/dev-python/tempita/tempita-0.5.3-r2.ebuild
26 new file mode 100644
27 index 00000000000..738e3a004e9
28 --- /dev/null
29 +++ b/dev-python/tempita/tempita-0.5.3-r2.ebuild
30 @@ -0,0 +1,51 @@
31 +# Copyright 1999-2018 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=7
35 +
36 +PYTHON_COMPAT=( pypy{,3} python{2_7,3_{4,5,6,7}} )
37 +
38 +inherit distutils-r1
39 +
40 +MY_COMMIT="97392d008cc8"
41 +
42 +DESCRIPTION="A very small text templating language"
43 +HOMEPAGE="https://pypi.org/project/Tempita/"
44 +# Tests are not published on PyPI
45 +SRC_URI="https://bitbucket.org/ianb/${PN}/get/${MY_COMMIT}.tar.gz -> ${P}-bitbucket.tar.gz"
46 +
47 +LICENSE="MIT"
48 +SLOT="0"
49 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86"
50 +IUSE="doc test"
51 +
52 +BDEPEND="
53 + dev-python/setuptools[${PYTHON_USEDEP}]
54 + doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )
55 + test? ( dev-python/pytest[${PYTHON_USEDEP}] )
56 +"
57 +
58 +PATCHES=( "${FILESDIR}/${P}-pypy-tests.patch" )
59 +
60 +S="${WORKDIR}/ianb-${PN}-${MY_COMMIT}"
61 +
62 +python_prepare_all() {
63 + # Remove reference to a non-existent CSS file
64 + # in order to make sphinx use its default theme.
65 + sed -i '/^html_style =/d' docs/conf.py || die
66 + distutils-r1_python_prepare_all
67 +}
68 +
69 +python_compile_all() {
70 + if use doc; then
71 + sphinx-build docs docs/_build/html || die
72 + HTML_DOCS=( docs/_build/html/. )
73 + fi
74 +}
75 +
76 +python_test() {
77 + # We need to append to sys.path, otherwise pytest imports
78 + # the module from ${S} (before it was 2to3'd)
79 + pytest --import-mode=append -vv tests/test_template.txt docs/index.txt \
80 + || die "Tests failed with ${EPYTHON}"
81 +}