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 555ED138335 for ; Wed, 4 Dec 2019 23:23:27 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id F0ED3E0826; Wed, 4 Dec 2019 23:23:25 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 DB5E4E0826 for ; Wed, 4 Dec 2019 23:23:25 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 B08E034D7E1 for ; Wed, 4 Dec 2019 23:23:24 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 347AF8D0 for ; Wed, 4 Dec 2019 23:23:23 +0000 (UTC) From: "Andrey Utkin" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andrey Utkin" Message-ID: <1575501675.8abce41b9c9c5a589af489434b8098a1bd85ecc3.andrey_utkin@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.4.9999.ebuild X-VCS-Directories: sys-kernel/raspberrypi-sources/ X-VCS-Committer: andrey_utkin X-VCS-Committer-Name: Andrey Utkin X-VCS-Revision: 8abce41b9c9c5a589af489434b8098a1bd85ecc3 X-VCS-Branch: master Date: Wed, 4 Dec 2019 23:23:23 +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: 45faadc5-deef-49d9-9d3b-f17a48c0acfd X-Archives-Hash: 0b3de29ecb007919c8eb9738a6d2d579 commit: 8abce41b9c9c5a589af489434b8098a1bd85ecc3 Author: Andrey Utkin gentoo org> AuthorDate: Wed Dec 4 22:58:09 2019 +0000 Commit: Andrey Utkin gentoo org> CommitDate: Wed Dec 4 23:21:15 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8abce41b sys-kernel/raspberrypi-sources: add new version 5.4.9999 Package-Manager: Portage-2.3.66, Repoman-2.3.16 Signed-off-by: Andrey Utkin gentoo.org> .../raspberrypi-sources-5.4.9999.ebuild | 28 ++++++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/sys-kernel/raspberrypi-sources/raspberrypi-sources-5.4.9999.ebuild b/sys-kernel/raspberrypi-sources/raspberrypi-sources-5.4.9999.ebuild new file mode 100644 index 00000000000..9b04c823db7 --- /dev/null +++ b/sys-kernel/raspberrypi-sources/raspberrypi-sources-5.4.9999.ebuild @@ -0,0 +1,28 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +ETYPE=sources +K_DEFCONFIG="bcmrpi_defconfig" +K_SECURITY_UNSUPPORTED=1 +EXTRAVERSION="-${PN}/-*" +inherit kernel-2 +detect_version +detect_arch + +inherit git-r3 eapi7-ver +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" + +KEYWORDS="" + +src_unpack() { + git-r3_src_unpack + unpack_set_extraversion +}