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/python-systemd/
Date: Wed, 27 Apr 2022 07:07:15
Message-Id: 1651043225.19324b24d1555048fea39aa7f2ad6b8d45b70665.mgorny@gentoo
1 commit: 19324b24d1555048fea39aa7f2ad6b8d45b70665
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Wed Apr 27 07:02:07 2022 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Wed Apr 27 07:07:05 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=19324b24
7
8 dev-python/python-systemd: Remove old
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 .../python-systemd/python-systemd-234-r1.ebuild | 39 ----------------------
13 1 file changed, 39 deletions(-)
14
15 diff --git a/dev-python/python-systemd/python-systemd-234-r1.ebuild b/dev-python/python-systemd/python-systemd-234-r1.ebuild
16 deleted file mode 100644
17 index 8c17ab7f574b..000000000000
18 --- a/dev-python/python-systemd/python-systemd-234-r1.ebuild
19 +++ /dev/null
20 @@ -1,39 +0,0 @@
21 -# Copyright 2015-2022 Gentoo Authors
22 -# Distributed under the terms of the GNU General Public License v2
23 -
24 -EAPI=7
25 -
26 -PYTHON_COMPAT=( python3_{8..10} )
27 -DISTUTILS_USE_SETUPTOOLS="no"
28 -
29 -inherit distutils-r1
30 -
31 -DESCRIPTION="Python module for native access to the systemd facilities"
32 -HOMEPAGE="https://github.com/systemd/python-systemd"
33 -SRC_URI="https://github.com/systemd/python-systemd/archive/v${PV}.tar.gz -> ${P}.tar.gz"
34 -
35 -LICENSE="LGPL-2.1"
36 -SLOT="0"
37 -KEYWORDS="~alpha amd64 arm arm64 hppa ppc ppc64 sparc x86"
38 -
39 -DEPEND="sys-apps/systemd:0="
40 -RDEPEND="${DEPEND}
41 - !sys-apps/systemd[python(-)]
42 -"
43 -
44 -PATCHES=(
45 - "${FILESDIR}"/${P}-fix-py3.10.patch
46 -)
47 -
48 -distutils_enable_tests pytest
49 -
50 -python_compile() {
51 - # https://bugs.gentoo.org/690316
52 - distutils-r1_python_compile -j1
53 -}
54 -
55 -python_test() {
56 - pushd "${BUILD_DIR}/lib" > /dev/null || die
57 - epytest -o cache_dir="${T}"
58 - popd > /dev/null || die
59 -}