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 C06B7158086 for ; Sun, 5 Dec 2021 01:28:49 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 143762BC075; Sun, 5 Dec 2021 01:28:48 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 521742BC076 for ; Sun, 5 Dec 2021 01:28:47 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 18BD0342F59 for ; Sun, 5 Dec 2021 01:28:46 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 7A206210 for ; Sun, 5 Dec 2021 01:28:44 +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: <1638667713.c0ccdb6df2415c4ccc31c6535284f412a9ae9b2f.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.9999.ebuild X-VCS-Directories: sys-kernel/raspberrypi-sources/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: c0ccdb6df2415c4ccc31c6535284f412a9ae9b2f X-VCS-Branch: master Date: Sun, 5 Dec 2021 01:28:44 +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: 603f9daa-1968-41d9-a08b-cd15c4bcc141 X-Archives-Hash: c683d0a60566f5b1ef0695894ecd7572 commit: c0ccdb6df2415c4ccc31c6535284f412a9ae9b2f Author: Sam James gentoo org> AuthorDate: Sun Dec 5 01:28:33 2021 +0000 Commit: Sam James gentoo org> CommitDate: Sun Dec 5 01:28:33 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c0ccdb6d sys-kernel/raspberrypi-sources: add 5.10.9999 Signed-off-by: Sam James gentoo.org> .../raspberrypi-sources-5.10.9999.ebuild | 26 ++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/sys-kernel/raspberrypi-sources/raspberrypi-sources-5.10.9999.ebuild b/sys-kernel/raspberrypi-sources/raspberrypi-sources-5.10.9999.ebuild new file mode 100644 index 000000000000..d6ff24d0a8fa --- /dev/null +++ b/sys-kernel/raspberrypi-sources/raspberrypi-sources-5.10.9999.ebuild @@ -0,0 +1,26 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +ETYPE=sources +K_DEFCONFIG="bcmrpi_defconfig" +K_SECURITY_UNSUPPORTED=1 +EXTRAVERSION="-${PN}/-*" +inherit kernel-2 +detect_version +detect_arch + +inherit git-r3 +EGIT_REPO_URI="https://github.com/raspberrypi/linux.git -> raspberrypi-linux.git" +EGIT_BRANCH="rpi-$(ver_cut 1-2).y" +EGIT_CHECKOUT_DIR="${WORKDIR}/linux-${PV}-raspberrypi" +EGIT_CLONE_TYPE="shallow" + +DESCRIPTION="Raspberry Pi kernel sources" +HOMEPAGE="https://github.com/raspberrypi/linux" + +src_unpack() { + git-r3_src_unpack + unpack_set_extraversion +}