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/jaraco-logging/
Date: Sat, 28 May 2022 07:02:22
Message-Id: 1653721333.d1a814030d453b4f759b1353c5f6e61b7089827e.mgorny@gentoo
1 commit: d1a814030d453b4f759b1353c5f6e61b7089827e
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sat May 28 06:57:24 2022 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sat May 28 07:02:13 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d1a81403
7
8 dev-python/jaraco-logging: Remove old
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 .../jaraco-logging/jaraco-logging-3.1.0.ebuild | 42 ----------------------
13 1 file changed, 42 deletions(-)
14
15 diff --git a/dev-python/jaraco-logging/jaraco-logging-3.1.0.ebuild b/dev-python/jaraco-logging/jaraco-logging-3.1.0.ebuild
16 deleted file mode 100644
17 index 9a25e08b7941..000000000000
18 --- a/dev-python/jaraco-logging/jaraco-logging-3.1.0.ebuild
19 +++ /dev/null
20 @@ -1,42 +0,0 @@
21 -# Copyright 1999-2021 Gentoo Authors
22 -# Distributed under the terms of the GNU General Public License v2
23 -
24 -EAPI=7
25 -
26 -PYTHON_COMPAT=( pypy3 python3_{7..10} )
27 -
28 -inherit distutils-r1
29 -
30 -MY_PN="${PN/-/.}"
31 -DESCRIPTION="Additional facilities to supplement Python's stdlib logging module"
32 -HOMEPAGE="https://github.com/jaraco/jaraco.logging"
33 -SRC_URI="mirror://pypi/${PN:0:1}/${MY_PN}/${MY_PN}-${PV}.tar.gz"
34 -S="${WORKDIR}/${MY_PN}-${PV}"
35 -
36 -LICENSE="MIT"
37 -SLOT="0"
38 -KEYWORDS="amd64 x86"
39 -
40 -RDEPEND="
41 - dev-python/tempora[${PYTHON_USEDEP}]
42 -"
43 -BDEPEND="
44 - >=dev-python/setuptools_scm-1.15.0[${PYTHON_USEDEP}]
45 -"
46 -
47 -distutils_enable_sphinx docs '>=dev-python/jaraco-packaging-3.2' \
48 - '>=dev-python/rst-linker-1.9'
49 -distutils_enable_tests pytest
50 -
51 -python_test() {
52 - # Override pytest options to skip flake8
53 - local -x PYTHONPATH=.
54 - epytest --override-ini="addopts=--doctest-modules"
55 -}
56 -
57 -# https://wiki.gentoo.org/wiki/Project:Python/Namespace_packages#File_collisions_between_pkgutil-style_packages
58 -python_install() {
59 - rm "${BUILD_DIR}"/lib/jaraco/__init__.py || die
60 - # note: eclass may default to --skip-build in the future
61 - distutils-r1_python_install --skip-build
62 -}