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 1394D158090 for ; Sun, 8 May 2022 08:47:39 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 4D355E0894; Sun, 8 May 2022 08:47:37 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 2E7D2E0894 for ; Sun, 8 May 2022 08:47:37 +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 C7063341777 for ; Sun, 8 May 2022 08:47:35 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 27706465 for ; Sun, 8 May 2022 08:47:33 +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: <1651999635.bc7e53074c66588c4fe918ea5ba036189bbf42df.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/rq/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/rq/rq-1.10.1-r2.ebuild X-VCS-Directories: dev-python/rq/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: bc7e53074c66588c4fe918ea5ba036189bbf42df X-VCS-Branch: master Date: Sun, 8 May 2022 08:47:33 +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: 3c3164fb-0ac4-43ce-8525-2edba093d6a1 X-Archives-Hash: 1bfc41603f3227b8da54258f9f07e300 commit: bc7e53074c66588c4fe918ea5ba036189bbf42df Author: Michał Górny gentoo org> AuthorDate: Sun May 8 08:36:00 2022 +0000 Commit: Michał Górny gentoo org> CommitDate: Sun May 8 08:47:15 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bc7e5307 dev-python/rq: Use PEP517 build Signed-off-by: Michał Górny gentoo.org> dev-python/rq/rq-1.10.1-r2.ebuild | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/dev-python/rq/rq-1.10.1-r2.ebuild b/dev-python/rq/rq-1.10.1-r2.ebuild index 881f7c8bbe31..92f33b0d0ce2 100644 --- a/dev-python/rq/rq-1.10.1-r2.ebuild +++ b/dev-python/rq/rq-1.10.1-r2.ebuild @@ -3,11 +3,16 @@ EAPI=8 +DISTUTILS_USE_PEP517=setuptools PYTHON_COMPAT=( python3_{9..10} ) + inherit distutils-r1 DESCRIPTION="simple, lightweight library for creating and processing background jobs" -HOMEPAGE="https://python-rq.org https://github.com/rq/rq" +HOMEPAGE=" + https://python-rq.org/ + https://github.com/rq/rq/ +" SRC_URI="https://github.com/rq/rq/archive/v${PV}.tar.gz -> ${P}.tar.gz" LICENSE="BSD" @@ -27,7 +32,7 @@ BDEPEND=" ) " -distutils_enable_tests --install pytest +distutils_enable_tests pytest src_test() { local redis_pid="${T}"/redis.pid