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 71464158009 for ; Wed, 21 Jun 2023 16:15:06 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 81715E0978; Wed, 21 Jun 2023 16:15:05 +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 65D47E0978 for ; Wed, 21 Jun 2023 16:15:05 +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 75F53335D46 for ; Wed, 21 Jun 2023 16:15:04 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 92E6F990 for ; Wed, 21 Jun 2023 16:15:02 +0000 (UTC) From: "Andrew Ammerlaan" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andrew Ammerlaan" Message-ID: <1687364094.9d91f5befe76f9c31d1e009926954186276f623c.andrewammerlaan@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sci-libs/linux-gpib-modules/ X-VCS-Repository: repo/gentoo X-VCS-Files: sci-libs/linux-gpib-modules/linux-gpib-modules-4.3.5-r1.ebuild sci-libs/linux-gpib-modules/linux-gpib-modules-4.3.5-r2.ebuild X-VCS-Directories: sci-libs/linux-gpib-modules/ X-VCS-Committer: andrewammerlaan X-VCS-Committer-Name: Andrew Ammerlaan X-VCS-Revision: 9d91f5befe76f9c31d1e009926954186276f623c X-VCS-Branch: master Date: Wed, 21 Jun 2023 16:15:02 +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: e67c8771-292a-4c5e-a1f0-2b39afb5e48a X-Archives-Hash: 56c9b7ebe46cca8c150c44eaadf2724f commit: 9d91f5befe76f9c31d1e009926954186276f623c Author: Andrew Ammerlaan gentoo org> AuthorDate: Wed Jun 21 16:13:27 2023 +0000 Commit: Andrew Ammerlaan gentoo org> CommitDate: Wed Jun 21 16:14:54 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9d91f5be sci-libs/linux-gpib-modules: use MODULES_MAKEARGS for emake Signed-off-by: Andrew Ammerlaan gentoo.org> ....3.5-r1.ebuild => linux-gpib-modules-4.3.5-r2.ebuild} | 16 ++++------------ 1 file changed, 4 insertions(+), 12 deletions(-) diff --git a/sci-libs/linux-gpib-modules/linux-gpib-modules-4.3.5-r1.ebuild b/sci-libs/linux-gpib-modules/linux-gpib-modules-4.3.5-r2.ebuild similarity index 79% rename from sci-libs/linux-gpib-modules/linux-gpib-modules-4.3.5-r1.ebuild rename to sci-libs/linux-gpib-modules/linux-gpib-modules-4.3.5-r2.ebuild index eae3c0404cb4..618beb805bbb 100644 --- a/sci-libs/linux-gpib-modules/linux-gpib-modules-4.3.5-r1.ebuild +++ b/sci-libs/linux-gpib-modules/linux-gpib-modules-4.3.5-r2.ebuild @@ -12,7 +12,7 @@ S="${WORKDIR}/linux-gpib-kernel-${PV}" LICENSE="GPL-2" SLOT="0" -KEYWORDS="amd64 ~arm ~x86" +KEYWORDS="~amd64 ~arm ~x86" IUSE="debug" COMMONDEPEND="" @@ -35,29 +35,21 @@ src_unpack() { } src_configure() { - my_gpib_makeopts='' - use debug && my_gpib_makeopts+='GPIB-DEBUG=1 ' - - my_gpib_makeopts+="LINUX_SRCDIR=${KERNEL_DIR} " + use debug && MODULES_MAKEARGS+=( 'GPIB-DEBUG=1' ) } src_compile() { - set_arch_to_kernel - # The individual modules don't have separate targets so we can't use # modlist here. - emake \ - ${my_gpib_makeopts} + emake "${MODULES_MAKEARGS[@]}" } src_install() { - set_arch_to_kernel emake \ + "${MODULES_MAKEARGS[@]}" \ DESTDIR="${ED}" \ INSTALL_MOD_PATH="${ED}" \ - DEPMOD="/bin/true" \ docdir="${ED}/usr/share/doc/${PF}/html" \ - ${my_gpib_makeopts} \ install modules_post_process