Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/mako/
Date: Tue, 02 Aug 2022 19:05:16
Message-Id: 1659467106.1587d085ed7411c47e88d3e9a74644c4a426faf2.mgorny@gentoo
1 commit: 1587d085ed7411c47e88d3e9a74644c4a426faf2
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Tue Aug 2 19:00:58 2022 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Tue Aug 2 19:05:06 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1587d085
7
8 dev-python/mako: Remove old
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/mako/Manifest | 1 -
13 dev-python/mako/mako-1.2.0.ebuild | 63 ---------------------------------------
14 2 files changed, 64 deletions(-)
15
16 diff --git a/dev-python/mako/Manifest b/dev-python/mako/Manifest
17 index 10beb76db047..a2ad1ad53957 100644
18 --- a/dev-python/mako/Manifest
19 +++ b/dev-python/mako/Manifest
20 @@ -1,2 +1 @@
21 -DIST Mako-1.2.0.tar.gz 488603 BLAKE2B 30ef597e2dd500d52d02118e0ec8a40cfeeff00604eb9fec887df4aff794aed7d6a1d78b2defb6f985947f9429d912a083b9941ee30b1e53ef32890d19e94158 SHA512 ad608016d7785a735a28ea18f697be4882da747e3da32e4a7c7be4bf846d37e4d3374d78e62ef85607ae9f3f73ee35dc78b473347e4110c059a504be2c497c6e
22 DIST Mako-1.2.1.tar.gz 489560 BLAKE2B c8006d5f7a814a1466ad6643200693f014c4a23f284701a9bea6a27246c196c87e5c4bf8e12ae0525563ce60c93944a58b1fa45afc6caf3362aa1d761148910a SHA512 02393054c9e3857ee412f494b01d702b5f367165d2f57a5ff9df34ba1a042b60c7b6c059ce2c53bcb91e3a4a21179eca884ee051bf5f5f3522c05253088d38a5
23
24 diff --git a/dev-python/mako/mako-1.2.0.ebuild b/dev-python/mako/mako-1.2.0.ebuild
25 deleted file mode 100644
26 index 16fca49e82f0..000000000000
27 --- a/dev-python/mako/mako-1.2.0.ebuild
28 +++ /dev/null
29 @@ -1,63 +0,0 @@
30 -# Copyright 1999-2022 Gentoo Authors
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=8
34 -
35 -DISTUTILS_USE_PEP517=setuptools
36 -PYTHON_COMPAT=( pypy3 python3_{8..11} )
37 -
38 -inherit distutils-r1
39 -
40 -MY_P=${P^}
41 -DESCRIPTION="A Python templating language"
42 -HOMEPAGE="
43 - https://www.makotemplates.org/
44 - https://github.com/sqlalchemy/mako/
45 - https://pypi.org/project/Mako/
46 -"
47 -SRC_URI="mirror://pypi/${MY_P:0:1}/${PN^}/${MY_P}.tar.gz"
48 -S="${WORKDIR}/${MY_P}"
49 -
50 -LICENSE="MIT"
51 -SLOT="0"
52 -KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~x64-macos"
53 -IUSE="doc"
54 -
55 -RDEPEND="
56 - >=dev-python/markupsafe-0.9.2[${PYTHON_USEDEP}]
57 -"
58 -BDEPEND="
59 - test? (
60 - dev-python/Babel[${PYTHON_USEDEP}]
61 - )
62 -"
63 -
64 -distutils_enable_tests pytest
65 -
66 -python_test() {
67 - local EPYTEST_DESELECT=(
68 - # change in pygments
69 - test/test_exceptions.py::ExceptionsTest::test_format_exceptions_pygments
70 - )
71 - [[ ${EPYTHON} == pypy3 ]] && EPYTEST_DESELECT+=(
72 - test/test_exceptions.py::ExceptionsTest::test_alternating_file_names
73 - )
74 - [[ ${EPYTHON} == python3.11 ]] && EPYTEST_DESELECT+=(
75 - # py3.11 changed tracebacks
76 - test/test_exceptions.py::ExceptionsTest::test_tback_no_trace_from_py_file
77 - test/test_exceptions.py::ExceptionsTest::test_tback_trace_from_py_file
78 - )
79 - local EPYTEST_IGNORE=(
80 - # lingua is not packaged in Gentoo and the skip is currently broken
81 - # https://github.com/sqlalchemy/mako/pull/357
82 - test/ext/test_linguaplugin.py
83 - )
84 - epytest
85 -}
86 -
87 -python_install_all() {
88 - rm -r doc/build || die
89 -
90 - use doc && local HTML_DOCS=( doc/. )
91 - distutils-r1_python_install_all
92 -}