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 (4096 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id C36531581F3 for ; Mon, 2 Dec 2024 10:48:40 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 064A8E0805; Mon, 2 Dec 2024 10:48:37 +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 C5274E07F1 for ; Mon, 2 Dec 2024 10:48:37 +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)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id E2B3334301C for ; Mon, 2 Dec 2024 10:48:36 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 8439F2191 for ; Mon, 2 Dec 2024 10:48:33 +0000 (UTC) From: "David Roman" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "David Roman" Message-ID: <1733061689.bd0b7e1df8f4025a34d57fde9a7019c62115e912.davidroman@gentoo> Subject: [gentoo-commits] repo/proj/guru:master commit in: media-gfx/silicon/ X-VCS-Repository: repo/proj/guru X-VCS-Files: media-gfx/silicon/silicon-0.5.2-r1.ebuild media-gfx/silicon/silicon-0.5.2-r2.ebuild media-gfx/silicon/silicon-0.5.3.ebuild X-VCS-Directories: media-gfx/silicon/ X-VCS-Committer: davidroman X-VCS-Committer-Name: David Roman X-VCS-Revision: bd0b7e1df8f4025a34d57fde9a7019c62115e912 X-VCS-Branch: master Date: Mon, 2 Dec 2024 10:48: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: 98ff1dc7-9eb0-470c-ac23-fbe7fbb36626 X-Archives-Hash: ea752e1574c16ecda482bc95a1a15213 commit: bd0b7e1df8f4025a34d57fde9a7019c62115e912 Author: YOSHIOKA Takuma hard-wi red> AuthorDate: Sun Dec 1 14:01:29 2024 +0000 Commit: David Roman gmail com> CommitDate: Sun Dec 1 14:01:29 2024 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=bd0b7e1d media-gfx/silicon: patch in src_prepare rather than in src_configure Signed-off-by: YOSHIOKA Takuma hard-wi.red> media-gfx/silicon/silicon-0.5.2-r1.ebuild | 9 +++++---- media-gfx/silicon/silicon-0.5.2-r2.ebuild | 9 ++++++--- media-gfx/silicon/silicon-0.5.3.ebuild | 9 +++++---- 3 files changed, 16 insertions(+), 11 deletions(-) diff --git a/media-gfx/silicon/silicon-0.5.2-r1.ebuild b/media-gfx/silicon/silicon-0.5.2-r1.ebuild index fe384972e..191835959 100644 --- a/media-gfx/silicon/silicon-0.5.2-r1.ebuild +++ b/media-gfx/silicon/silicon-0.5.2-r1.ebuild @@ -230,11 +230,12 @@ pkg_setup() { rust_pkg_setup } -src_unpack() { - cargo_src_unpack - +src_prepare() { # Apply patch for python 3.9 and above. - ( cd "${WORKDIR}"/cargo_home/gentoo/xcb-0.8.2 && eapply "${FILESDIR}"/rust-xcb-0.8.2-python-3.9.patch ) + ( cd "${WORKDIR}"/cargo_home/gentoo/xcb-0.8.2 && \ + eapply "${FILESDIR}"/rust-xcb-0.8.2-python-3.9.patch ) + + default_src_prepare } src_install() { diff --git a/media-gfx/silicon/silicon-0.5.2-r2.ebuild b/media-gfx/silicon/silicon-0.5.2-r2.ebuild index 4905a55bd..2c218ae03 100644 --- a/media-gfx/silicon/silicon-0.5.2-r2.ebuild +++ b/media-gfx/silicon/silicon-0.5.2-r2.ebuild @@ -231,11 +231,14 @@ pkg_setup() { rust_pkg_setup } -src_unpack() { +src_prepare() { cargo_src_unpack - # Apply patch for python 3.9 support. - ( cd "${WORKDIR}"/cargo_home/gentoo/xcb-0.8.2 && eapply "${FILESDIR}"/rust-xcb-0.8.2-python-3.9.patch ) + # Apply patch for python 3.9 and above. + ( cd "${WORKDIR}"/cargo_home/gentoo/xcb-0.8.2 \ + && eapply "${FILESDIR}"/rust-xcb-0.8.2-python-3.9.patch ) + + default_src_prepare } src_compile() { diff --git a/media-gfx/silicon/silicon-0.5.3.ebuild b/media-gfx/silicon/silicon-0.5.3.ebuild index 58e9f1359..52f95b697 100644 --- a/media-gfx/silicon/silicon-0.5.3.ebuild +++ b/media-gfx/silicon/silicon-0.5.3.ebuild @@ -254,11 +254,12 @@ pkg_setup() { rust_pkg_setup } -src_unpack() { - cargo_src_unpack +src_prepare() { + # Apply patch for python 3.9 and above. + ( cd "${WORKDIR}"/cargo_home/gentoo/xcb-0.8.2 && \ + eapply "${FILESDIR}"/rust-xcb-0.8.2-python-3.9.patch ) - # Apply patch for python 3.9 support. - ( cd "${WORKDIR}"/cargo_home/gentoo/xcb-0.8.2 && eapply "${FILESDIR}"/rust-xcb-0.8.2-python-3.9.patch ) + default_src_prepare } src_compile() {