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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 484BB1382C5 for ; Fri, 5 Feb 2021 18:51:56 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 5A3DDE0935; Fri, 5 Feb 2021 18:51:55 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 3B133E0924 for ; Fri, 5 Feb 2021 18:51:55 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id CBC53342F93 for ; Fri, 5 Feb 2021 18:51:53 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C67EC4BE for ; Fri, 5 Feb 2021 18:51:51 +0000 (UTC) From: "Sam James" 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" Message-ID: <1612551099.40696e5680e8d00928e9ebca1fea5c4ed2035673.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-kernel/raspberrypi-sources/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-kernel/raspberrypi-sources/raspberrypi-sources-5.10.11_p20210201.ebuild X-VCS-Directories: sys-kernel/raspberrypi-sources/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 40696e5680e8d00928e9ebca1fea5c4ed2035673 X-VCS-Branch: master Date: Fri, 5 Feb 2021 18:51:51 +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: b45fc99e-ef24-4de2-8209-8742631817a8 X-Archives-Hash: 416a53b33230816a32931e83bf1bdd8a commit: 40696e5680e8d00928e9ebca1fea5c4ed2035673 Author: Ionen Wolkens gmail com> AuthorDate: Thu Dec 31 12:32:55 2020 +0000 Commit: Sam James gentoo org> CommitDate: Fri Feb 5 18:51:39 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=40696e56 sys-kernel/raspberrypi-sources: fix symlink with USE=symlink Closes: https://bugs.gentoo.org/762766 Package-Manager: Portage-3.0.12, Repoman-3.0.2 Signed-off-by: Ionen Wolkens gmail.com> Signed-off-by: Sam James gentoo.org> .../raspberrypi-sources-5.10.11_p20210201.ebuild | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/sys-kernel/raspberrypi-sources/raspberrypi-sources-5.10.11_p20210201.ebuild b/sys-kernel/raspberrypi-sources/raspberrypi-sources-5.10.11_p20210201.ebuild index 523b8ac20a1..1da54bb05b7 100644 --- a/sys-kernel/raspberrypi-sources/raspberrypi-sources-5.10.11_p20210201.ebuild +++ b/sys-kernel/raspberrypi-sources/raspberrypi-sources-5.10.11_p20210201.ebuild @@ -12,12 +12,12 @@ inherit kernel-2 eapi7-ver detect_version detect_arch -MY_PV=$(ver_cut 4-) -MY_PV=${MY_PV/p/} +KV_FULL=$(ver_cut 4-) +KV_FULL="raspberrypi-kernel_1.${KV_FULL/p/}-1" DESCRIPTION="Raspberry Pi kernel sources" HOMEPAGE="https://github.com/raspberrypi/linux" -SRC_URI="https://github.com/raspberrypi/linux/archive/raspberrypi-kernel_1.${MY_PV}-1.tar.gz" -S="${WORKDIR}/linux-raspberrypi-kernel_1.${MY_PV}-1" +SRC_URI="https://github.com/raspberrypi/linux/archive/${KV_FULL}.tar.gz" +S="${WORKDIR}/linux-${KV_FULL}" KEYWORDS="~arm ~arm64"