From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 37AC815808E for ; Wed, 27 Apr 2022 07:07:15 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 5FF4BE079E; Wed, 27 Apr 2022 07:07:14 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id B543CE079E for ; Wed, 27 Apr 2022 07:07:13 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 9BC3C3411D5 for ; Wed, 27 Apr 2022 07:07:12 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 3C7073B5 for ; Wed, 27 Apr 2022 07:07:11 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1651043225.19324b24d1555048fea39aa7f2ad6b8d45b70665.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/python-systemd/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/python-systemd/python-systemd-234-r1.ebuild X-VCS-Directories: dev-python/python-systemd/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 19324b24d1555048fea39aa7f2ad6b8d45b70665 X-VCS-Branch: master Date: Wed, 27 Apr 2022 07:07:11 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 69891b78-c013-426d-a0a4-fa289871a237 X-Archives-Hash: b7b1160feca91c66b8f36ccceabb989d commit: 19324b24d1555048fea39aa7f2ad6b8d45b70665 Author: Michał Górny gentoo org> AuthorDate: Wed Apr 27 07:02:07 2022 +0000 Commit: Michał Górny gentoo org> CommitDate: Wed Apr 27 07:07:05 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=19324b24 dev-python/python-systemd: Remove old Signed-off-by: Michał Górny gentoo.org> .../python-systemd/python-systemd-234-r1.ebuild | 39 ---------------------- 1 file changed, 39 deletions(-) diff --git a/dev-python/python-systemd/python-systemd-234-r1.ebuild b/dev-python/python-systemd/python-systemd-234-r1.ebuild deleted file mode 100644 index 8c17ab7f574b..000000000000 --- a/dev-python/python-systemd/python-systemd-234-r1.ebuild +++ /dev/null @@ -1,39 +0,0 @@ -# Copyright 2015-2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -PYTHON_COMPAT=( python3_{8..10} ) -DISTUTILS_USE_SETUPTOOLS="no" - -inherit distutils-r1 - -DESCRIPTION="Python module for native access to the systemd facilities" -HOMEPAGE="https://github.com/systemd/python-systemd" -SRC_URI="https://github.com/systemd/python-systemd/archive/v${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="LGPL-2.1" -SLOT="0" -KEYWORDS="~alpha amd64 arm arm64 hppa ppc ppc64 sparc x86" - -DEPEND="sys-apps/systemd:0=" -RDEPEND="${DEPEND} - !sys-apps/systemd[python(-)] -" - -PATCHES=( - "${FILESDIR}"/${P}-fix-py3.10.patch -) - -distutils_enable_tests pytest - -python_compile() { - # https://bugs.gentoo.org/690316 - distutils-r1_python_compile -j1 -} - -python_test() { - pushd "${BUILD_DIR}/lib" > /dev/null || die - epytest -o cache_dir="${T}" - popd > /dev/null || die -}