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: Sun, 05 Dec 2021 01:28:49
Message-Id: 1638667679.4565be4f0e9ad95cb5b50e7e52d231c592c4ac13.sam@gentoo
1 commit: 4565be4f0e9ad95cb5b50e7e52d231c592c4ac13
2 Author: Sam James <sam <AT> gentoo <DOT> org>
3 AuthorDate: Sun Dec 5 01:27:59 2021 +0000
4 Commit: Sam James <sam <AT> gentoo <DOT> org>
5 CommitDate: Sun Dec 5 01:27:59 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4565be4f
7
8 sys-kernel/raspberrypi-sources: add 5.10.63_p20211029
9
10 Signed-off-by: Sam James <sam <AT> gentoo.org>
11
12 sys-kernel/raspberrypi-sources/Manifest | 1 +
13 .../raspberrypi-sources-5.10.63_p20211029.ebuild | 28 ++++++++++++++++++++++
14 2 files changed, 29 insertions(+)
15
16 diff --git a/sys-kernel/raspberrypi-sources/Manifest b/sys-kernel/raspberrypi-sources/Manifest
17 index 0056324f1a80..6131a45ca846 100644
18 --- a/sys-kernel/raspberrypi-sources/Manifest
19 +++ b/sys-kernel/raspberrypi-sources/Manifest
20 @@ -1,2 +1,3 @@
21 DIST linux-5.10.11_p20210201-raspberrypi.tar.gz 186311431 BLAKE2B 1ba95e54232fafc421eee4a1966c9ead0420d51bc32a87050aeb15d8f75217fbaa727f5f41855d3771feb720e6395eef13453ff83b1bd8c486deafec11926e38 SHA512 776b71e7be700c1ec14a0fddbb6374c84d5645323a72871a4e76d095c73c26891e6fac548aebbadd34f0b8d5d4c340935e281cdec314b29bf7d3bf41351958b9
22 +DIST linux-5.10.63_p20211029-raspberrypi.tar.gz 186550447 BLAKE2B 44e04467a63c5761c252280c5fbff48c3fa058891ff03623ed7fb872f0a22883ed2e3b8703847e30c1a6f5cf523db1248f027c89ce1558280f1012fa300308a7 SHA512 b050f74b5a62d355cd630d41f2f63df285662347048ed97db1bac2a74f1cefeddb31b7b352aa509e90d7f03832ad2ca8e1e476d8eac62b334132a3ab308559fc
23 DIST raspberrypi-kernel_1.20201201-1.tar.gz 175159649 BLAKE2B 6d7f4aed5696a2640ef591438b624434efa55af96216d7bf79888486a840171d8cd64548050c10890f1e636e8b42a7c97da0562ca36e44c07c2d24325942d374 SHA512 a8427e209a639b35088f32c4efa13ebd2d0efad7ad6f8ab40fbebec3c857d1acc4947aa0ea42e1edc1f8fd687b1bf8170764c811c0c876e92f0d66c269c91489
24
25 diff --git a/sys-kernel/raspberrypi-sources/raspberrypi-sources-5.10.63_p20211029.ebuild b/sys-kernel/raspberrypi-sources/raspberrypi-sources-5.10.63_p20211029.ebuild
26 new file mode 100644
27 index 000000000000..a7fd009a6663
28 --- /dev/null
29 +++ b/sys-kernel/raspberrypi-sources/raspberrypi-sources-5.10.63_p20211029.ebuild
30 @@ -0,0 +1,28 @@
31 +# Copyright 1999-2021 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=7
35 +
36 +ETYPE=sources
37 +K_DEFCONFIG="bcmrpi_defconfig"
38 +K_SECURITY_UNSUPPORTED=1
39 +
40 +inherit kernel-2 linux-info
41 +detect_version
42 +
43 +MY_P=$(ver_cut 4-)
44 +MY_P="1.${MY_P/p/}"
45 +
46 +DESCRIPTION="Raspberry Pi kernel sources"
47 +HOMEPAGE="https://github.com/raspberrypi/linux"
48 +SRC_URI="https://github.com/raspberrypi/linux/archive/${MY_P}.tar.gz -> linux-${KV_FULL}.tar.gz"
49 +
50 +KEYWORDS="~arm ~arm64"
51 +
52 +src_unpack() {
53 + default
54 +
55 + # We want to rename the unpacked directory to a nice normalised string
56 + # bug #762766
57 + mv "${WORKDIR}"/linux-${MY_P} "${WORKDIR}"/linux-${KV_FULL} || die
58 +}