* [gentoo-commits] repo/proj/guru:dev commit in: dev-embedded/fwup/
@ 2025-03-25 23:33 Mathijs Saey
0 siblings, 0 replies; 5+ messages in thread
From: Mathijs Saey @ 2025-03-25 23:33 UTC (permalink / raw
To: gentoo-commits
commit: 65599f6448b5603169d5aa663e7edb94c5f2e8ee
Author: Mathijs Saey <mathijs <AT> mathsaey <DOT> be>
AuthorDate: Tue Mar 25 23:31:44 2025 +0000
Commit: Mathijs Saey <mathijs <AT> mathsaey <DOT> be>
CommitDate: Tue Mar 25 23:31:44 2025 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=65599f64
dev-embedded/fwup: new package, add 1.12.0
Signed-off-by: Mathijs Saey <mathijs <AT> mathsaey.be>
dev-embedded/fwup/Manifest | 1 +
dev-embedded/fwup/fwup-1.12.0.ebuild | 27 +++++++++++++++++++++++++++
dev-embedded/fwup/metadata.xml | 11 +++++++++++
3 files changed, 39 insertions(+)
diff --git a/dev-embedded/fwup/Manifest b/dev-embedded/fwup/Manifest
new file mode 100644
index 000000000..c37578909
--- /dev/null
+++ b/dev-embedded/fwup/Manifest
@@ -0,0 +1 @@
+DIST fwup-1.12.0.tar.gz 4152060 BLAKE2B b1f556abfdf996a4d5128f49e9506804962d0968509b306bf067dfd540654c91a2750fd66aaa02647a52d6de30dca41dfb748aa0bafaf7684dfbe5d19430538a SHA512 7c1058b737185a909caa338fbcbd0629f69c228120c702d54577b4bd9616c3319648c53dd2d20392a1dd2cd8d64fbd376261cf2f5720cf1ee05c34161c74cd80
diff --git a/dev-embedded/fwup/fwup-1.12.0.ebuild b/dev-embedded/fwup/fwup-1.12.0.ebuild
new file mode 100644
index 000000000..2a08b09f5
--- /dev/null
+++ b/dev-embedded/fwup/fwup-1.12.0.ebuild
@@ -0,0 +1,27 @@
+# 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
+ app-arch/zip
+ dev-libs/confuse
+ dev-util/xdelta:3
+ sys-fs/dosfstools
+ sys-fs/mtools
+ sys-fs/squashfs-tools
+"
+
+src_prepare() {
+ default
+ ./autogen.sh
+}
diff --git a/dev-embedded/fwup/metadata.xml b/dev-embedded/fwup/metadata.xml
new file mode 100644
index 000000000..1539f8b55
--- /dev/null
+++ b/dev-embedded/fwup/metadata.xml
@@ -0,0 +1,11 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+ <maintainer type="person">
+ <email>mathijs@mathsaey.be</email>
+ <name>Mathijs Saey</name>
+ </maintainer>
+ <upstream>
+ <remote-id type="github">fwup-home/fwup</remote-id>
+ </upstream>
+</pkgmetadata>
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [gentoo-commits] repo/proj/guru:dev commit in: dev-embedded/fwup/
@ 2025-06-14 23:38 Mathijs Saey
0 siblings, 0 replies; 5+ messages in thread
From: Mathijs Saey @ 2025-06-14 23:38 UTC (permalink / raw
To: gentoo-commits
commit: bee0a6b2f2828fb3d5fe8bea068364354b68ae79
Author: Mathijs Saey <mathijs <AT> mathsaey <DOT> be>
AuthorDate: Sat Jun 14 23:31:47 2025 +0000
Commit: Mathijs Saey <mathijs <AT> mathsaey <DOT> be>
CommitDate: Sat Jun 14 23:36:44 2025 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=bee0a6b2
dev-embedded/fwup: fix tests
Bug: https://bugs.gentoo.org/952828
Closes: https://bugs.gentoo.org/952828
Signed-off-by: Mathijs Saey <mathijs <AT> mathsaey.be>
dev-embedded/fwup/fwup-1.12.0.ebuild | 13 +++++++++++++
1 file changed, 13 insertions(+)
diff --git a/dev-embedded/fwup/fwup-1.12.0.ebuild b/dev-embedded/fwup/fwup-1.12.0.ebuild
index 2a08b09f55..d7145398c5 100644
--- a/dev-embedded/fwup/fwup-1.12.0.ebuild
+++ b/dev-embedded/fwup/fwup-1.12.0.ebuild
@@ -25,3 +25,16 @@ 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
+}
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [gentoo-commits] repo/proj/guru:dev commit in: dev-embedded/fwup/
@ 2025-06-14 23:38 Mathijs Saey
0 siblings, 0 replies; 5+ messages in thread
From: Mathijs Saey @ 2025-06-14 23:38 UTC (permalink / raw
To: gentoo-commits
commit: f66bc7b66f669585a5b4347fc740fa22e2006919
Author: Mathijs Saey <mathijs <AT> mathsaey <DOT> be>
AuthorDate: Sat Jun 14 23:37:56 2025 +0000
Commit: Mathijs Saey <mathijs <AT> mathsaey <DOT> be>
CommitDate: Sat Jun 14 23:37:56 2025 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=f66bc7b6
dev-embedded/fwup: add 1.13.0
Signed-off-by: Mathijs Saey <mathijs <AT> mathsaey.be>
dev-embedded/fwup/Manifest | 1 +
dev-embedded/fwup/fwup-1.13.0.ebuild | 40 ++++++++++++++++++++++++++++++++++++
2 files changed, 41 insertions(+)
diff --git a/dev-embedded/fwup/Manifest b/dev-embedded/fwup/Manifest
index c375789093..b866cfd184 100644
--- a/dev-embedded/fwup/Manifest
+++ b/dev-embedded/fwup/Manifest
@@ -1 +1,2 @@
DIST fwup-1.12.0.tar.gz 4152060 BLAKE2B b1f556abfdf996a4d5128f49e9506804962d0968509b306bf067dfd540654c91a2750fd66aaa02647a52d6de30dca41dfb748aa0bafaf7684dfbe5d19430538a SHA512 7c1058b737185a909caa338fbcbd0629f69c228120c702d54577b4bd9616c3319648c53dd2d20392a1dd2cd8d64fbd376261cf2f5720cf1ee05c34161c74cd80
+DIST fwup-1.13.0.tar.gz 4154059 BLAKE2B 2da945061bbfe8cf8e0f2cec3b9a7582578f88da9800ac3e2982e653671b23d7e90f33949c758a569356acda0a879ef4b4a87e3b18829f4035f1b08aa7096a6d SHA512 b3d21d0e0e3a976024c3b749bcd618ad3de8dc27e5b7b0d0930de56815947522a41d5c23988118413d50f5edcd19808e556090653b0db338ea26383b48dd7587
diff --git a/dev-embedded/fwup/fwup-1.13.0.ebuild b/dev-embedded/fwup/fwup-1.13.0.ebuild
new file mode 100644
index 0000000000..10b3732a88
--- /dev/null
+++ b/dev-embedded/fwup/fwup-1.13.0.ebuild
@@ -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
+}
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [gentoo-commits] repo/proj/guru:dev commit in: dev-embedded/fwup/
@ 2025-07-20 12:54 Mathijs Saey
0 siblings, 0 replies; 5+ messages in thread
From: Mathijs Saey @ 2025-07-20 12:54 UTC (permalink / raw
To: gentoo-commits
commit: 1af34e63641b476470a983316d72798a072b3d2e
Author: Mathijs Saey <mathijs <AT> mathsaey <DOT> be>
AuthorDate: Sun Jul 20 12:53:26 2025 +0000
Commit: Mathijs Saey <mathijs <AT> mathsaey <DOT> be>
CommitDate: Sun Jul 20 12:53:26 2025 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=1af34e63
dev-embedded/fwup: add 1.13.1
Signed-off-by: Mathijs Saey <mathijs <AT> mathsaey.be>
dev-embedded/fwup/Manifest | 1 +
dev-embedded/fwup/fwup-1.13.1.ebuild | 40 ++++++++++++++++++++++++++++++++++++
2 files changed, 41 insertions(+)
diff --git a/dev-embedded/fwup/Manifest b/dev-embedded/fwup/Manifest
index b866cfd184..7a2d9686a6 100644
--- a/dev-embedded/fwup/Manifest
+++ b/dev-embedded/fwup/Manifest
@@ -1,2 +1,3 @@
DIST fwup-1.12.0.tar.gz 4152060 BLAKE2B b1f556abfdf996a4d5128f49e9506804962d0968509b306bf067dfd540654c91a2750fd66aaa02647a52d6de30dca41dfb748aa0bafaf7684dfbe5d19430538a SHA512 7c1058b737185a909caa338fbcbd0629f69c228120c702d54577b4bd9616c3319648c53dd2d20392a1dd2cd8d64fbd376261cf2f5720cf1ee05c34161c74cd80
DIST fwup-1.13.0.tar.gz 4154059 BLAKE2B 2da945061bbfe8cf8e0f2cec3b9a7582578f88da9800ac3e2982e653671b23d7e90f33949c758a569356acda0a879ef4b4a87e3b18829f4035f1b08aa7096a6d SHA512 b3d21d0e0e3a976024c3b749bcd618ad3de8dc27e5b7b0d0930de56815947522a41d5c23988118413d50f5edcd19808e556090653b0db338ea26383b48dd7587
+DIST fwup-1.13.1.tar.gz 25551483 BLAKE2B 961d3320a825d519432f51d855c841b4f509501ba660d254479fada9a701f3c0a5d163acfb23decd1b63181a8ab6ba26b05d4937cb8473409feab9de282a081d SHA512 d8562410bc45c3bcc7eab88fe621ec9fb76a54ab3c5ce1ebd3e65c01a343e559cf6d7cd82ce501f67bcfebbf08825073c31ee1420d403727d0efb890f93a6ff0
diff --git a/dev-embedded/fwup/fwup-1.13.1.ebuild b/dev-embedded/fwup/fwup-1.13.1.ebuild
new file mode 100644
index 0000000000..10b3732a88
--- /dev/null
+++ b/dev-embedded/fwup/fwup-1.13.1.ebuild
@@ -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
+}
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [gentoo-commits] repo/proj/guru:dev commit in: dev-embedded/fwup/
@ 2025-07-22 22:33 Mathijs Saey
0 siblings, 0 replies; 5+ messages in thread
From: Mathijs Saey @ 2025-07-22 22:33 UTC (permalink / raw
To: gentoo-commits
commit: 1272e3c1947e2f54d4eec54541123ca13f74fcba
Author: Mathijs Saey <mathijs <AT> mathsaey <DOT> be>
AuthorDate: Tue Jul 22 22:30:04 2025 +0000
Commit: Mathijs Saey <mathijs <AT> mathsaey <DOT> be>
CommitDate: Tue Jul 22 22:33:25 2025 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=1272e3c1
dev-embedded/fwup: add 1.13.2
Signed-off-by: Mathijs Saey <mathijs <AT> mathsaey.be>
dev-embedded/fwup/Manifest | 1 +
dev-embedded/fwup/fwup-1.13.2.ebuild | 40 ++++++++++++++++++++++++++++++++++++
2 files changed, 41 insertions(+)
diff --git a/dev-embedded/fwup/Manifest b/dev-embedded/fwup/Manifest
index 7a2d9686a6..b6fc7f6759 100644
--- a/dev-embedded/fwup/Manifest
+++ b/dev-embedded/fwup/Manifest
@@ -1,3 +1,4 @@
DIST fwup-1.12.0.tar.gz 4152060 BLAKE2B b1f556abfdf996a4d5128f49e9506804962d0968509b306bf067dfd540654c91a2750fd66aaa02647a52d6de30dca41dfb748aa0bafaf7684dfbe5d19430538a SHA512 7c1058b737185a909caa338fbcbd0629f69c228120c702d54577b4bd9616c3319648c53dd2d20392a1dd2cd8d64fbd376261cf2f5720cf1ee05c34161c74cd80
DIST fwup-1.13.0.tar.gz 4154059 BLAKE2B 2da945061bbfe8cf8e0f2cec3b9a7582578f88da9800ac3e2982e653671b23d7e90f33949c758a569356acda0a879ef4b4a87e3b18829f4035f1b08aa7096a6d SHA512 b3d21d0e0e3a976024c3b749bcd618ad3de8dc27e5b7b0d0930de56815947522a41d5c23988118413d50f5edcd19808e556090653b0db338ea26383b48dd7587
DIST fwup-1.13.1.tar.gz 25551483 BLAKE2B 961d3320a825d519432f51d855c841b4f509501ba660d254479fada9a701f3c0a5d163acfb23decd1b63181a8ab6ba26b05d4937cb8473409feab9de282a081d SHA512 d8562410bc45c3bcc7eab88fe621ec9fb76a54ab3c5ce1ebd3e65c01a343e559cf6d7cd82ce501f67bcfebbf08825073c31ee1420d403727d0efb890f93a6ff0
+DIST fwup-1.13.2.tar.gz 25549113 BLAKE2B 47f1d8b7eaddaa6d9576642dab4ca2741f0456c8a92df2953470a6ded4508fcb3cd6cba028729076a3e263346c3c0be4dd03f97c32034528af01c5e936189999 SHA512 f05dfc95d70ec8c892efcc1cfdf75ae8ccf59106c4031298a5a4d211e7fa037b635653ad696540cf3157b8954af4914c5e0e42f12ef76f8957d46aac7f4c9a32
diff --git a/dev-embedded/fwup/fwup-1.13.2.ebuild b/dev-embedded/fwup/fwup-1.13.2.ebuild
new file mode 100644
index 0000000000..10b3732a88
--- /dev/null
+++ b/dev-embedded/fwup/fwup-1.13.2.ebuild
@@ -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
+}
^ permalink raw reply related [flat|nested] 5+ messages in thread
end of thread, other threads:[~2025-07-22 22:33 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-07-22 22:33 [gentoo-commits] repo/proj/guru:dev commit in: dev-embedded/fwup/ Mathijs Saey
-- strict thread matches above, loose matches on Subject: below --
2025-07-20 12:54 Mathijs Saey
2025-06-14 23:38 Mathijs Saey
2025-06-14 23:38 Mathijs Saey
2025-03-25 23:33 Mathijs Saey
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox