From 5b4558dddb387d62aff37e6ca64e8ad1592616c1 Mon Sep 17 00:00:00 2001 From: Andrey Utkin Date: Fri, 22 Mar 2019 23:59:23 +0000 Subject: [PATCH] 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 --- .../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 6037eca917bf..ad0ee67fad5d 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" -- 2.26.2