Skip to content

Commit f0bd01f

Browse files
committed
dev-embedded/fwup: add 1.16.0
Signed-off-by: Mathijs Saey <mathijs@mathsaey.be>
1 parent 42a258d commit f0bd01f

2 files changed

Lines changed: 41 additions & 0 deletions

File tree

dev-embedded/fwup/Manifest

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
11
DIST fwup-1.15.1.tar.gz 25588820 BLAKE2B 0b030a76c3f7699fa6a2ea7fd1f8e8391d8a62ad874f3f26ab39380ec9ec6727483659726ffd1894a9751e76c71a7c8e194b4b9af88ee39ff28187b96b16e572 SHA512 7b80a10a805a9023b5fc6103c3165f84cba2ac563ee58feb27d99589797551250522fe152f01be899d79e6d07d9eb7a07c7745bf634f5828e886f386fa2ba454
2+
DIST fwup-1.16.0.tar.gz 25593107 BLAKE2B 6d7e350e636457f830c3ca94e110c08a3f00d287008257e5a00cb102fd90bda01a167177436bbdd06fd5eaf99f22e5921f58b068436a0c8bbb9e52e64b435e8e SHA512 e9bb6503ed4169407dbe7325afd53c61715b18f3fbea55d15d364b6c64ae104e80f7b4831ac58531a81670cc7597dcf8cacde95dd953fcfb8e4ea495438739f3
Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
# Copyright 1999-2025 Gentoo Authors
2+
# Distributed under the terms of the GNU General Public License v2
3+
4+
EAPI=8
5+
6+
DESCRIPTION="Configurable embedded Linux firmware update creator and runner"
7+
HOMEPAGE="https://github.com/fwup-home/fwup"
8+
SRC_URI="https://github.com/fwup-home/fwup/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
9+
10+
LICENSE="Apache-2.0"
11+
SLOT="0"
12+
KEYWORDS="~amd64"
13+
14+
RDEPEND="
15+
>=app-arch/libarchive-3.7.9
16+
app-arch/zip
17+
>=dev-libs/confuse-2.8
18+
dev-util/xdelta:3
19+
sys-fs/dosfstools
20+
sys-fs/mtools
21+
sys-fs/squashfs-tools
22+
"
23+
24+
src_prepare() {
25+
default
26+
./autogen.sh
27+
}
28+
29+
src_test() {
30+
# The fwup tests do not like the portage sandbox. Make them play nice.
31+
32+
# Modify tests/common.sh to ensure $WRITE_SHIM and $MOUNT_SHIM point to
33+
# files that don't exist. This is needed to ensure tests don't try to use
34+
# LD_PRELOAD.
35+
sed -i 's/^\(WRITE\|MOUNT\)_SHIM=".*"/\1_SHIM=""/' 'tests/common.sh' \
36+
|| die 'Could not sed tests/common.sh'
37+
38+
# set VERIFY_SYSCALLS_DISABLE, to disable tracing
39+
VERIFY_SYSCALLS_DISABLE="" emake check
40+
}

0 commit comments

Comments
 (0)