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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id A100F138350 for ; Sun, 9 Feb 2020 01:25:23 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id BA584E0821; Sun, 9 Feb 2020 01:25:22 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 80F25E0821 for ; Sun, 9 Feb 2020 01:25:22 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 0C88034E89A for ; Sun, 9 Feb 2020 01:25:20 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 9CBAEB0 for ; Sun, 9 Feb 2020 01:25:17 +0000 (UTC) From: "Mike Gilbert" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Mike Gilbert" Message-ID: <1581211515.72a9a1fe6d2f43079b8803efd1710e51a50848db.floppym@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.ebuild X-VCS-Directories: dev-python/python-systemd/ X-VCS-Committer: floppym X-VCS-Committer-Name: Mike Gilbert X-VCS-Revision: 72a9a1fe6d2f43079b8803efd1710e51a50848db X-VCS-Branch: master Date: Sun, 9 Feb 2020 01:25:17 +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: a1b34396-37e4-45bf-a8a8-e1f67acb6426 X-Archives-Hash: f03a63cb10810061c46f94025f2b6a1a commit: 72a9a1fe6d2f43079b8803efd1710e51a50848db Author: Mike Gilbert gentoo org> AuthorDate: Sun Feb 9 01:24:37 2020 +0000 Commit: Mike Gilbert gentoo org> CommitDate: Sun Feb 9 01:25:15 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=72a9a1fe dev-python/python-systemd: support python3.8 And other ebuild cleanup. Package-Manager: Portage-2.3.87_p10, Repoman-2.3.20_p57 Signed-off-by: Mike Gilbert gentoo.org> .../python-systemd/python-systemd-234.ebuild | 26 +++++++--------------- 1 file changed, 8 insertions(+), 18 deletions(-) diff --git a/dev-python/python-systemd/python-systemd-234.ebuild b/dev-python/python-systemd/python-systemd-234.ebuild index 02b6eba8206..8f0b98cc2c8 100644 --- a/dev-python/python-systemd/python-systemd-234.ebuild +++ b/dev-python/python-systemd/python-systemd-234.ebuild @@ -1,8 +1,9 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 2015-2020 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 -PYTHON_COMPAT=( python{3_6,3_7} ) +PYTHON_COMPAT=( python3_{6..8} ) +DISTUTILS_USE_SETUPTOOLS="no" inherit distutils-r1 @@ -16,26 +17,15 @@ KEYWORDS="~alpha ~amd64 ~arm ~ppc ~ppc64 ~sparc ~x86" IUSE="test" RESTRICT="!test? ( test )" -COMMON_DEPEND=" - sys-apps/systemd:0= -" -DEPEND="${COMMON_DEPEND} - test? ( dev-python/pytest[${PYTHON_USEDEP}] ) -" -RDEPEND="${COMMON_DEPEND} +BDEPEND="test? ( dev-python/pytest[${PYTHON_USEDEP}] )" +DEPEND="sys-apps/systemd:0=" +RDEPEND="${DEPEND} !sys-apps/systemd[python(-)] " -PATCHES=( -) - python_compile() { - if python_is_python3; then - # https://bugs.gentoo.org/690316 - distutils-r1_python_compile -j1 - else - distutils-r1_python_compile - fi + # https://bugs.gentoo.org/690316 + distutils-r1_python_compile -j1 } python_test() {