From mboxrd@z Thu Jan  1 00:00:00 1970
Return-Path: <gentoo-commits+bounces-1688779-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 (4096 bits))
	(No client certificate requested)
	by finch.gentoo.org (Postfix) with ESMTPS id 9138E158042
	for <garchives@archives.gentoo.org>; Mon, 11 Nov 2024 13:00:24 +0000 (UTC)
Received: from pigeon.gentoo.org (localhost [127.0.0.1])
	by pigeon.gentoo.org (Postfix) with SMTP id 834C9E0826;
	Mon, 11 Nov 2024 13:00:23 +0000 (UTC)
Received: from smtp.gentoo.org (smtp.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) server-digest SHA256)
	(No client certificate requested)
	by pigeon.gentoo.org (Postfix) with ESMTPS id 6D9CEE0826
	for <gentoo-commits@lists.gentoo.org>; Mon, 11 Nov 2024 13:00:23 +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 9EAC5335D6F
	for <gentoo-commits@lists.gentoo.org>; Mon, 11 Nov 2024 13:00:22 +0000 (UTC)
Received: from localhost.localdomain (localhost [IPv6:::1])
	by oystercatcher.gentoo.org (Postfix) with ESMTP id 0AEBB1DF4
	for <gentoo-commits@lists.gentoo.org>; Mon, 11 Nov 2024 13:00:21 +0000 (UTC)
From: "Sam James" <sam@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, "Sam James" <sam@gentoo.org>
Message-ID: <1731329978.bdc9207df164059c906f127c7c4a59e9832c8999.sam@gentoo>
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/jellyfish/
X-VCS-Repository: repo/gentoo
X-VCS-Files: dev-python/jellyfish/jellyfish-1.1.0-r1.ebuild
X-VCS-Directories: dev-python/jellyfish/
X-VCS-Committer: sam
X-VCS-Committer-Name: Sam James
X-VCS-Revision: bdc9207df164059c906f127c7c4a59e9832c8999
X-VCS-Branch: master
Date: Mon, 11 Nov 2024 13:00:21 +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: 70658592-969d-41ee-807f-8565a947a7a0
X-Archives-Hash: cd97d8ec641bd0927bc1c4f4f3c3bf9f

commit:     bdc9207df164059c906f127c7c4a59e9832c8999
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Mon Nov 11 12:59:38 2024 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Mon Nov 11 12:59:38 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bdc9207d

dev-python/jellyfish: fix pkg_setup

distutils-r1_pkg_setup doesn't exist and no other inherited eclass exports pkg_setup,
so just let it call rust_pkg_setup

Closes: https://bugs.gentoo.org/943228
Signed-off-by: Sam James <sam <AT> gentoo.org>

 dev-python/jellyfish/jellyfish-1.1.0-r1.ebuild | 5 -----
 1 file changed, 5 deletions(-)

diff --git a/dev-python/jellyfish/jellyfish-1.1.0-r1.ebuild b/dev-python/jellyfish/jellyfish-1.1.0-r1.ebuild
index da3d699aea29..e3bcd852ea94 100644
--- a/dev-python/jellyfish/jellyfish-1.1.0-r1.ebuild
+++ b/dev-python/jellyfish/jellyfish-1.1.0-r1.ebuild
@@ -74,11 +74,6 @@ distutils_enable_tests pytest
 
 export UNSAFE_PYO3_SKIP_VERSION_CHECK=1
 
-pkg_setup() {
-	distutils-r1_pkg_setup
-	cargo_src_prepare
-}
-
 python_test_all() {
 	cargo_src_test
 }