From mboxrd@z Thu Jan  1 00:00:00 1970
Return-Path: <gentoo-commits+bounces-1525498-garchives=archives.gentoo.org@lists.gentoo.org>
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 C0F2B15806E
	for <garchives@archives.gentoo.org>; Sun,  4 Jun 2023 12:49:48 +0000 (UTC)
Received: from pigeon.gentoo.org (localhost [127.0.0.1])
	by pigeon.gentoo.org (Postfix) with SMTP id 05B93E0769;
	Sun,  4 Jun 2023 12:49:48 +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) server-digest SHA256)
	(No client certificate requested)
	by pigeon.gentoo.org (Postfix) with ESMTPS id D577EE0769
	for <gentoo-commits@lists.gentoo.org>; Sun,  4 Jun 2023 12:49:47 +0000 (UTC)
Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52])
	(using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)
	 key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256)
	(No client certificate requested)
	by smtp.gentoo.org (Postfix) with ESMTPS id B910F335CA6
	for <gentoo-commits@lists.gentoo.org>; Sun,  4 Jun 2023 12:49:46 +0000 (UTC)
Received: from localhost.localdomain (localhost [IPv6:::1])
	by oystercatcher.gentoo.org (Postfix) with ESMTP id 0A046A5C
	for <gentoo-commits@lists.gentoo.org>; Sun,  4 Jun 2023 12:49:45 +0000 (UTC)
From: "Michał Górny" <mgorny@gentoo.org>
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" <mgorny@gentoo.org>
Message-ID: <1685882981.9147f8fcd2ed4d49feefd93bd2de9f26cf6d92b7.mgorny@gentoo>
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/sphinx-celery/
X-VCS-Repository: repo/gentoo
X-VCS-Files: dev-python/sphinx-celery/sphinx-celery-2.0.0-r2.ebuild dev-python/sphinx-celery/sphinx-celery-2.0.0-r3.ebuild
X-VCS-Directories: dev-python/sphinx-celery/
X-VCS-Committer: mgorny
X-VCS-Committer-Name: Michał Górny
X-VCS-Revision: 9147f8fcd2ed4d49feefd93bd2de9f26cf6d92b7
X-VCS-Branch: master
Date: Sun,  4 Jun 2023 12:49:45 +0000 (UTC)
Precedence: bulk
List-Post: <mailto:gentoo-commits@lists.gentoo.org>
List-Help: <mailto:gentoo-commits+help@lists.gentoo.org>
List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org>
List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org>
List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org>
X-BeenThere: gentoo-commits@lists.gentoo.org
X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply
X-Archives-Salt: bd91ea8d-a09a-4601-ad1c-01a063df94a2
X-Archives-Hash: 85e2cdfbdd961f942c98f3cc23dbe21d

commit:     9147f8fcd2ed4d49feefd93bd2de9f26cf6d92b7
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Sun Jun  4 12:30:37 2023 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sun Jun  4 12:49:41 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9147f8fc

dev-python/sphinx-celery: Add a missing RDEP on dev-python/six

Closes: https://bugs.gentoo.org/907824
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

 .../{sphinx-celery-2.0.0-r2.ebuild => sphinx-celery-2.0.0-r3.ebuild}   | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/dev-python/sphinx-celery/sphinx-celery-2.0.0-r2.ebuild b/dev-python/sphinx-celery/sphinx-celery-2.0.0-r3.ebuild
similarity index 86%
rename from dev-python/sphinx-celery/sphinx-celery-2.0.0-r2.ebuild
rename to dev-python/sphinx-celery/sphinx-celery-2.0.0-r3.ebuild
index 8d5b79ee5db2..c7091b89ec15 100644
--- a/dev-python/sphinx-celery/sphinx-celery-2.0.0-r2.ebuild
+++ b/dev-python/sphinx-celery/sphinx-celery-2.0.0-r3.ebuild
@@ -4,7 +4,7 @@
 EAPI=8
 
 DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{9..11} )
+PYTHON_COMPAT=( python3_{10..11} )
 
 inherit distutils-r1 pypi
 
@@ -19,5 +19,6 @@ SLOT="0"
 KEYWORDS="amd64 ~arm64 x86"
 
 RDEPEND="
+	dev-python/six[${PYTHON_USEDEP}]
 	>=dev-python/sphinx-2.0.0[${PYTHON_USEDEP}]
 "