mirror of
https://github.com/gentoo-mirror/guru.git
synced 2026-04-07 03:10:15 -04:00
dev-embedded/fwup: add 1.15.0
Signed-off-by: Mathijs Saey <mathijs@mathsaey.be>
This commit is contained in:
@@ -1,2 +1,3 @@
|
||||
DIST fwup-1.13.2.tar.gz 25549113 BLAKE2B 47f1d8b7eaddaa6d9576642dab4ca2741f0456c8a92df2953470a6ded4508fcb3cd6cba028729076a3e263346c3c0be4dd03f97c32034528af01c5e936189999 SHA512 f05dfc95d70ec8c892efcc1cfdf75ae8ccf59106c4031298a5a4d211e7fa037b635653ad696540cf3157b8954af4914c5e0e42f12ef76f8957d46aac7f4c9a32
|
||||
DIST fwup-1.14.0.tar.gz 25551952 BLAKE2B b836f045d9e3860d3b145d1fd9d34f5341809ae39de1642f1a64bab71f32880043a20c8c6fc77e15550cfef5656dee10def27c30a1b2fffc32a36beb6876ff12 SHA512 645fbe1cd1d66473c6c727bc72686ab95dae73c77e9b909b19beb54fe2630bfa5fba4b2bb7267e44b631064dd5730a9d4f5299609156fa511dbc3807d48b67b1
|
||||
DIST fwup-1.15.0.tar.gz 25557123 BLAKE2B f0702669287c334b86e26d23cbae2e29abf7eee9961bddebcc04c1d47b23c3c7e10aeaf5b0f6d194c3eedd9d5f8d27cbe7c3fe5b8c0488db1893d467a314af13 SHA512 f49a248384c407dd4adb3f39fd2dfd5b77e5a9c77d831df167c4ee764d9d8ddb17f139b5f3132150541cd45dae417ea14d510bbd2ec7bf70627d0142e0910e60
|
||||
|
||||
40
dev-embedded/fwup/fwup-1.15.0.ebuild
Normal file
40
dev-embedded/fwup/fwup-1.15.0.ebuild
Normal file
@@ -0,0 +1,40 @@
|
||||
# Copyright 1999-2025 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=8
|
||||
|
||||
DESCRIPTION="Configurable embedded Linux firmware update creator and runner"
|
||||
HOMEPAGE="https://github.com/fwup-home/fwup"
|
||||
SRC_URI="https://github.com/fwup-home/fwup/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
|
||||
|
||||
LICENSE="Apache-2.0"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64"
|
||||
|
||||
RDEPEND="
|
||||
>=app-arch/libarchive-3.7.9
|
||||
app-arch/zip
|
||||
>=dev-libs/confuse-2.8
|
||||
dev-util/xdelta:3
|
||||
sys-fs/dosfstools
|
||||
sys-fs/mtools
|
||||
sys-fs/squashfs-tools
|
||||
"
|
||||
|
||||
src_prepare() {
|
||||
default
|
||||
./autogen.sh
|
||||
}
|
||||
|
||||
src_test() {
|
||||
# The fwup tests do not like the portage sandbox. Make them play nice.
|
||||
|
||||
# Modify tests/common.sh to ensure $WRITE_SHIM and $MOUNT_SHIM point to
|
||||
# files that don't exist. This is needed to ensure tests don't try to use
|
||||
# LD_PRELOAD.
|
||||
sed -i 's/^\(WRITE\|MOUNT\)_SHIM=".*"/\1_SHIM=""/' 'tests/common.sh' \
|
||||
|| die 'Could not sed tests/common.sh'
|
||||
|
||||
# set VERIFY_SYSCALLS_DISABLE, to disable tracing
|
||||
VERIFY_SYSCALLS_DISABLE="" emake check
|
||||
}
|
||||
Reference in New Issue
Block a user