-
Notifications
You must be signed in to change notification settings - Fork 49
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
33 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
DIST rpi-eeprom-images_2.0-1_all.deb 170368 BLAKE2B 342abcf6ae9aed8a0f0e8e194abf24873ab24922b59220cce2dc454731260473d1995b8e4799c1c4543870057ce838e2c0f8b89ac611ce8ac079ff8d25b41666 SHA512 c2bf76d108003cc2d4d07e451f5893bd415147e2938385c8cf7c328fd9262b677389f07ff2733ed5e0cbf5d3f1ae45d3ba6140196a87f2efb3be3d9fc39026a4 | ||
DIST rpi-eeprom-images_2.1-1_all.deb 170492 BLAKE2B 59f5adaf8cdc0208547af92a61776f7ec5e5e0f681306a5effc903a015d5b0cbd07bf09b39d59c228f49cec487fd5ecaca089f584acf1e3bde558a70e119351d SHA512 34be3da285dc138230df929fec64c37fb14381cd74fcda22df0c7823f1588ed16844a7952582c2f807e56911e9a3b8896c4c2cc47f40844730df41b4c04b19a3 | ||
DIST rpi-eeprom-images_2.2-1_all.deb 170592 BLAKE2B 9badebfcfe7f32f83d0795f65dab4ab0686ff46601fed947657d21718df1ac01a6a959e236adf9e0784b2c2af3eae7b9a7347fcbc41499f58d6f634ae744b82d SHA512 5a924fb0bcd5a067622e0b219946afcdd04c9b5b9259862470c515f29056ee56c8cd0b2e0003ed7d9bc18d5e50ba8d4240d07f094e0892f81a36cec3228deb8f | ||
DIST rpi-eeprom-images_2.3-1_all.deb 358988 BLAKE2B 81c022856292f1e42559617c33afd613c6a1150ccc05c3abc67437f78292fb34009e9381afe9fa07e1acda375373204b21860e1ef0f513fe3e80dce0a651ee09 SHA512 dddcdf3e01f49ff613bcb168ae80d5336613c86aa8840d81d09aeff81cea704fad98d602271ceaf76c6948d73f66d090fd22959108517eef2c1df8ba91e61dc5 |
32 changes: 32 additions & 0 deletions
32
dev-embedded/rpi4-eeprom-images/rpi4-eeprom-images-2.3.1.ebuild
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
# Copyright (c) 2019 sakaki <[email protected]> | ||
# License: GPL v3+ | ||
# NO WARRANTY | ||
|
||
EAPI=7 | ||
inherit unpacker | ||
|
||
DESCRIPTION="RPi4 VLI (USB) and bootloader EEPROM images" | ||
HOMEPAGE="https://github.com/raspberrypi/rpi-eeprom/" | ||
MY_PN="rpi-eeprom-images" | ||
SRC_URI="http://archive.raspberrypi.org/debian/pool/main/r/rpi-eeprom/${MY_PN}_$(ver_rs 2 '-')_all.deb" | ||
SLOT="0" | ||
LICENCE="BSD rpi-bootloader" | ||
RESTRICT="mirror" | ||
KEYWORDS="~arm ~arm64" | ||
IUSE="" | ||
|
||
RDEPEND="" | ||
DEPEND="${RDEPEND}" | ||
|
||
S="${WORKDIR}" | ||
|
||
src_unpack() { | ||
unpack_deb ${A} | ||
cd "${WORKDIR}/usr/share/doc/${MY_PN}" && unpack ./changelog.Debian.gz && rm -f ./changelog.Debian.gz | ||
} | ||
|
||
src_install() { | ||
insinto / | ||
doins -r lib | ||
dodoc -r usr/share/doc/${MY_PN}/* | ||
} |