commit:     5b4558dddb387d62aff37e6ca64e8ad1592616c1
Author:     Andrey Utkin <andrey_utkin <AT> gentoo <DOT> org>
AuthorDate: Fri Mar 22 23:59:23 2019 +0000
Commit:     Andrey Utkin <andrey_utkin <AT> gentoo <DOT> org>
CommitDate: Sun Mar 24 19:17:42 2019 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5b4558dd

sys-boot/raspberrypi-firmware: add logic for non-live releases

This allows to add release ebuilds by copying the file verbatim.

Package-Manager: Portage-2.3.62, Repoman-2.3.12
Signed-off-by: Andrey Utkin <andrey_utkin <AT> gentoo.org>

 .../raspberrypi-firmware/raspberrypi-firmware-9999.ebuild  | 14 +++++++++++---
 1 file changed, 11 insertions(+), 3 deletions(-)

diff --git a/sys-boot/raspberrypi-firmware/raspberrypi-firmware-9999.ebuild 
b/sys-boot/raspberrypi-firmware/raspberrypi-firmware-9999.ebuild
index 6037eca917b..ad0ee67fad5 100644
--- a/sys-boot/raspberrypi-firmware/raspberrypi-firmware-9999.ebuild
+++ b/sys-boot/raspberrypi-firmware/raspberrypi-firmware-9999.ebuild
@@ -3,14 +3,22 @@
 
 EAPI=7
 
-inherit git-r3 mount-boot readme.gentoo-r1
+inherit mount-boot readme.gentoo-r1
 
 DESCRIPTION="Raspberry PI boot loader and firmware"
 HOMEPAGE="https://github.com/raspberrypi/firmware";
 LICENSE="GPL-2 raspberrypi-videocore-bin"
 SLOT="0"
-EGIT_REPO_URI="https://github.com/raspberrypi/firmware";
-EGIT_CLONE_TYPE="shallow"
+
+if [[ "${PV}" == 9999 ]]; then
+       inherit git-r3
+       EGIT_REPO_URI="https://github.com/raspberrypi/firmware";
+       EGIT_CLONE_TYPE="shallow"
+else
+       SRC_URI="https://github.com/raspberrypi/firmware/archive/${PV}.tar.gz 
-> ${P}.tar.gz"
+       KEYWORDS="-* ~arm ~arm64"
+       S="${WORKDIR}/firmware-${PV}"
+fi
 
 RESTRICT="binchecks strip"
 

Reply via email to