Gentoo Archives: gentoo-commits

From: Georgy Yakovlev <gyakovlev@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-kernel/raspberrypi-sources/
Date: Fri, 11 Jan 2019 08:29:59
Message-Id: 1547195273.c26c3cc4ff94638d19a5dbcac14ec6d1ea05da68.gyakovlev@gentoo
1 commit: c26c3cc4ff94638d19a5dbcac14ec6d1ea05da68
2 Author: Georgy Yakovlev <gyakovlev <AT> gentoo <DOT> org>
3 AuthorDate: Fri Jan 11 08:27:53 2019 +0000
4 Commit: Georgy Yakovlev <gyakovlev <AT> gentoo <DOT> org>
5 CommitDate: Fri Jan 11 08:27:53 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c26c3cc4
7
8 sys-kernel/raspberrypi-sources: add 4.19 LTS branch
9
10 Package-Manager: Portage-2.3.54, Repoman-2.3.12
11 Signed-off-by: Georgy Yakovlev <gyakovlev <AT> gentoo.org>
12
13 .../raspberrypi-sources-4.19.9999.ebuild | 27 ++++++++++++++++++++++
14 1 file changed, 27 insertions(+)
15
16 diff --git a/sys-kernel/raspberrypi-sources/raspberrypi-sources-4.19.9999.ebuild b/sys-kernel/raspberrypi-sources/raspberrypi-sources-4.19.9999.ebuild
17 new file mode 100644
18 index 00000000000..76139074cd9
19 --- /dev/null
20 +++ b/sys-kernel/raspberrypi-sources/raspberrypi-sources-4.19.9999.ebuild
21 @@ -0,0 +1,27 @@
22 +# Copyright 1999-2019 Gentoo Authors
23 +# Distributed under the terms of the GNU General Public License v2
24 +
25 +EAPI=5
26 +
27 +ETYPE=sources
28 +K_DEFCONFIG="bcmrpi_defconfig"
29 +K_SECURITY_UNSUPPORTED=1
30 +EXTRAVERSION="-${PN}/-*"
31 +inherit kernel-2
32 +detect_version
33 +detect_arch
34 +
35 +inherit git-r3 versionator
36 +EGIT_REPO_URI="https://github.com/raspberrypi/linux.git -> raspberrypi-linux.git"
37 +EGIT_BRANCH="rpi-$(get_version_component_range 1-2).y"
38 +EGIT_CHECKOUT_DIR="${WORKDIR}/linux-${PV}-raspberrypi"
39 +
40 +DESCRIPTION="Raspberry PI kernel sources"
41 +HOMEPAGE="https://github.com/raspberrypi/linux"
42 +
43 +KEYWORDS=""
44 +
45 +src_unpack() {
46 + git-r3_src_unpack
47 + unpack_set_extraversion
48 +}