Gentoo Archives: gentoo-commits

From: Sam James <sam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-kernel/raspberrypi-sources/
Date: Fri, 05 Feb 2021 18:51:56
Message-Id: 1612551099.40696e5680e8d00928e9ebca1fea5c4ed2035673.sam@gentoo
1 commit: 40696e5680e8d00928e9ebca1fea5c4ed2035673
2 Author: Ionen Wolkens <sudinave <AT> gmail <DOT> com>
3 AuthorDate: Thu Dec 31 12:32:55 2020 +0000
4 Commit: Sam James <sam <AT> gentoo <DOT> org>
5 CommitDate: Fri Feb 5 18:51:39 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=40696e56
7
8 sys-kernel/raspberrypi-sources: fix symlink with USE=symlink
9
10 Closes: https://bugs.gentoo.org/762766
11 Package-Manager: Portage-3.0.12, Repoman-3.0.2
12 Signed-off-by: Ionen Wolkens <sudinave <AT> gmail.com>
13 Signed-off-by: Sam James <sam <AT> gentoo.org>
14
15 .../raspberrypi-sources-5.10.11_p20210201.ebuild | 8 ++++----
16 1 file changed, 4 insertions(+), 4 deletions(-)
17
18 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
19 index 523b8ac20a1..1da54bb05b7 100644
20 --- a/sys-kernel/raspberrypi-sources/raspberrypi-sources-5.10.11_p20210201.ebuild
21 +++ b/sys-kernel/raspberrypi-sources/raspberrypi-sources-5.10.11_p20210201.ebuild
22 @@ -12,12 +12,12 @@ inherit kernel-2 eapi7-ver
23 detect_version
24 detect_arch
25
26 -MY_PV=$(ver_cut 4-)
27 -MY_PV=${MY_PV/p/}
28 +KV_FULL=$(ver_cut 4-)
29 +KV_FULL="raspberrypi-kernel_1.${KV_FULL/p/}-1"
30 DESCRIPTION="Raspberry Pi kernel sources"
31 HOMEPAGE="https://github.com/raspberrypi/linux"
32 -SRC_URI="https://github.com/raspberrypi/linux/archive/raspberrypi-kernel_1.${MY_PV}-1.tar.gz"
33 -S="${WORKDIR}/linux-raspberrypi-kernel_1.${MY_PV}-1"
34 +SRC_URI="https://github.com/raspberrypi/linux/archive/${KV_FULL}.tar.gz"
35 +S="${WORKDIR}/linux-${KV_FULL}"
36
37 KEYWORDS="~arm ~arm64"