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 96FD7158009 for ; Fri, 30 Jun 2023 08:55:51 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D301EE08BE; Fri, 30 Jun 2023 08:55:50 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.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)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id BA48FE08BE for ; Fri, 30 Jun 2023 08:55:50 +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 EBF25335D51 for ; Fri, 30 Jun 2023 08:55:49 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 827B5135 for ; Fri, 30 Jun 2023 08:55:48 +0000 (UTC) From: "Aleksandr Batyuk" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Aleksandr Batyuk" Message-ID: <1688115339.0831d3374bdfde3bdfc1708ffae35ba3682d7865.AleksandrBatyuk@gentoo> Subject: [gentoo-commits] repo/proj/guru:dev commit in: net-wireless/rtl8821cu/ X-VCS-Repository: repo/proj/guru X-VCS-Files: net-wireless/rtl8821cu/rtl8821cu-0_pre20230624.ebuild X-VCS-Directories: net-wireless/rtl8821cu/ X-VCS-Committer: AleksandrBatyuk X-VCS-Committer-Name: Aleksandr Batyuk X-VCS-Revision: 0831d3374bdfde3bdfc1708ffae35ba3682d7865 X-VCS-Branch: dev Date: Fri, 30 Jun 2023 08:55:48 +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: 726edded-4170-4e03-a154-ac4cb8ec7d84 X-Archives-Hash: e1b1a075a6c3ff553431c3101fdb694f commit: 0831d3374bdfde3bdfc1708ffae35ba3682d7865 Author: Aleksandr Batyuk gmail com> AuthorDate: Fri Jun 30 08:53:50 2023 +0000 Commit: Aleksandr Batyuk gmail com> CommitDate: Fri Jun 30 08:55:39 2023 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=0831d337 net-wireless/rtl8821cu: Ebuild fix Signed-off-by: Aleksandr Batyuk gmail.com> .../rtl8821cu/rtl8821cu-0_pre20230624.ebuild | 20 ++++++-------------- 1 file changed, 6 insertions(+), 14 deletions(-) diff --git a/net-wireless/rtl8821cu/rtl8821cu-0_pre20230624.ebuild b/net-wireless/rtl8821cu/rtl8821cu-0_pre20230624.ebuild index 63548f00b..f43d0a02f 100644 --- a/net-wireless/rtl8821cu/rtl8821cu-0_pre20230624.ebuild +++ b/net-wireless/rtl8821cu/rtl8821cu-0_pre20230624.ebuild @@ -5,29 +5,21 @@ EAPI=8 inherit linux-mod-r1 -SLOT=0 - +MY_PN="8821cu-20210916" COMMIT="dc9ee6c6a8b47d0e365fcf1977439c7243da71d5" - DESCRIPTION="Realtek 8821CU/RTL8811CU module for Linux kernel" HOMEPAGE="https://github.com/morrownr/8821cu-20210916" -SRC_URI="https://github.com/morrownr/8821cu-20210916/archive/${COMMIT}.tar.gz -> rtl8821cu-${PV}.tar.gz" +SRC_URI="https://github.com/morrownr/${MY_PN}/archive/${COMMIT}.tar.gz -> ${P}.tar.gz" +S="${WORKDIR}/${MY_PN}-${COMMIT}" +SLOT=0 LICENSE="GPL-2" KEYWORDS="~amd64 ~x86" -DEPEND="virtual/linux-sources" - -S="${WORKDIR}/8821cu-20210916-${COMMIT}" - src_compile() { linux-mod-r1_pkg_setup - local modlist=(8821cu=net/wireless) - + local modlist=( 8821cu=net/wireless ) + local modargs=( KSRC="${KV_OUT_DIR}" ) linux-mod-r1_src_compile } - -src_install() { - linux-mod-r1_src_install -}