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 350D015800A for ; Mon, 28 Aug 2023 18:15:34 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 66B002BC025; Mon, 28 Aug 2023 18:15:33 +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 4DE142BC025 for ; Mon, 28 Aug 2023 18:15:33 +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 5246F335CEE for ; Mon, 28 Aug 2023 18:15:32 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 96C0D10D0 for ; Mon, 28 Aug 2023 18:15:30 +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: <1693246524.44900e509c4bf899c5961c385c64dcdcf732af1d.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pandas/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/pandas/pandas-2.0.3-r1.ebuild dev-python/pandas/pandas-2.0.3.ebuild X-VCS-Directories: dev-python/pandas/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 44900e509c4bf899c5961c385c64dcdcf732af1d X-VCS-Branch: master Date: Mon, 28 Aug 2023 18:15:30 +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: c2f5748a-b105-46fa-9b20-840240464169 X-Archives-Hash: 9674a51366a3c2a3c43030477e9ebc3b commit: 44900e509c4bf899c5961c385c64dcdcf732af1d Author: Michał Górny gentoo org> AuthorDate: Mon Aug 28 18:11:21 2023 +0000 Commit: Michał Górny gentoo org> CommitDate: Mon Aug 28 18:15:24 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=44900e50 dev-python/pandas: Restore tzdata requirement Signed-off-by: Michał Górny gentoo.org> dev-python/pandas/{pandas-2.0.3.ebuild => pandas-2.0.3-r1.ebuild} | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/dev-python/pandas/pandas-2.0.3.ebuild b/dev-python/pandas/pandas-2.0.3-r1.ebuild similarity index 99% rename from dev-python/pandas/pandas-2.0.3.ebuild rename to dev-python/pandas/pandas-2.0.3-r1.ebuild index 18fe4852b689..961cd1e3b860 100644 --- a/dev-python/pandas/pandas-2.0.3.ebuild +++ b/dev-python/pandas/pandas-2.0.3-r1.ebuild @@ -120,6 +120,7 @@ BDEPEND=" # hence rm from doc? ( ), again RDEPEND=" ${COMMON_DEPEND} + dev-python/tzdata[${PYTHON_USEDEP}] !minimal? ( ${RECOMMENDED_DEPEND} ) full-support? ( ${OPTIONAL_DEPEND} ) " @@ -129,9 +130,6 @@ python_prepare_all() { sed -e "/^ 'sphinx.ext.intersphinx',/d" \ -i doc/source/conf.py || die - # unnecessary with system tzdata - sed -i -e '/tzdata/d' pyproject.toml || die - distutils-r1_python_prepare_all }