From debbugs-submit-bounces@debbugs.gnu.org Mon Sep 02 13:58:34 2024 Received: (at submit) by debbugs.gnu.org; 2 Sep 2024 17:58:35 +0000 Received: from localhost ([127.0.0.1]:50261 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1slBJy-0007YD-AH for submit@debbugs.gnu.org; Mon, 02 Sep 2024 13:58:34 -0400 Received: from lists.gnu.org ([209.51.188.17]:36962) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1slBJu-0007Y2-N6 for submit@debbugs.gnu.org; Mon, 02 Sep 2024 13:58:32 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1slBIv-0000uS-0z for guix-patches@gnu.org; Mon, 02 Sep 2024 13:57:29 -0400 Received: from 81-205-150-117.fixed.kpn.net ([81.205.150.117] helo=email.rimm.ee) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_CHACHA20_POLY1305:256) (Exim 4.90_1) (envelope-from ) id 1slBIs-0002Fp-RX for guix-patches@gnu.org; Mon, 02 Sep 2024 13:57:28 -0400 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=rimm.ee; s=herman; t=1725299840; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding; bh=p/fs3R1KaOonZHAwjxwMUfdtgVjy7w+hJwaDTj0SPVU=; b=Up+DheRUh96Gj5uVTtPNfca1kqyIjtof6d6ibHXXkkJGO2XGIAepJ/TYA1YSrKLROwj+J+ cUqnmpVro9hB/PWuKc186qS6WQxeQ99V11uAVejgEJ8bPNHf/jsV82maqpI5KTs7JIUj2E 0y1JAmCEB4n1rsg3AFJH7qQHW71Njs2I2gY+8PBzXb9KQT1K7gEBajQLlABzVXv6T6Zahc Dm7nAJVJtXg4IwU7zU5ejjGXWGb9NSht1ycsufAAba2yj+2gZb0yKdAA0gSLPHjxtR2mkj 7MV0UWdkmGjm29MjBk4/E9Kr+i75djN32jX9IIYiwCibAwBBoD/55uF+dsUK2A== Received: by 81-205-150-117.fixed.kpn.net (OpenSMTPD) with ESMTPSA id b9bc38bf (TLSv1.3:TLS_CHACHA20_POLY1305_SHA256:256:NO) for ; Mon, 2 Sep 2024 17:57:20 +0000 (UTC) From: Herman Rimm To: guix-patches@gnu.org Subject: [PATCH] gnu: genimage: Update to version 18. Date: Mon, 2 Sep 2024 19:56:49 +0200 Message-ID: <20240902175649.3422-1-herman@rimm.ee> X-Mailer: git-send-email 2.45.2 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Received-SPF: pass client-ip=81.205.150.117; envelope-from=herman@rimm.ee; helo=email.rimm.ee X-Spam_score_int: 12 X-Spam_score: 1.2 X-Spam_bar: + X-Spam_report: (1.2 / 5.0 requ) BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, RCVD_IN_PBL=3.335, RCVD_IN_VALIDITY_RPBL_BLOCKED=0.001, RCVD_IN_VALIDITY_SAFE_BLOCKED=0.001, SPF_HELO_NONE=0.001, SPF_PASS=-0.001, TVD_RCVD_IP=0.001, T_SCC_BODY_TEXT_LINE=-0.01 autolearn=no autolearn_force=no X-Spam_action: no action X-Spam-Score: -1.4 (-) X-Debbugs-Envelope-To: submit X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -2.4 (--) * gnu/packages/genimage.scm (genimage): Update from 15 to 18. [source]: Fetch tarball instead of git commit. [arguments]: Disable some tests. --- gnu/packages/genimage.scm | 205 ++++++++++++++++++++------------------ 1 file changed, 106 insertions(+), 99 deletions(-) diff --git a/gnu/packages/genimage.scm b/gnu/packages/genimage.scm index 13f3dd67b0..7df61724ec 100644 --- a/gnu/packages/genimage.scm +++ b/gnu/packages/genimage.scm @@ -19,9 +19,9 @@ ;;; along with GNU Guix. If not, see . (define-module (gnu packages genimage) + #:use-module (guix download) #:use-module (guix utils) #:use-module (guix packages) - #:use-module (guix git-download) #:use-module ((guix licenses) #:prefix license:) #:use-module (guix build-system gnu) #:use-module (guix build utils) @@ -41,102 +41,109 @@ (define-module (gnu packages genimage) #:use-module (gnu packages virtualization)) (define-public genimage - (let ((commit "ec44ae086c705e6f0439e742c5a2e9b8f3d6ca82") - (revision "1")) - (package - (name "genimage") - (version (git-version "15" revision commit)) - (source (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/pengutronix/genimage") - (commit commit))) - (file-name (git-file-name name version)) - (sha256 - (base32 - "0amj2vjff58yna6kq959i2gqmbjywqr8j5kr5pjqsvbqam3vgg0r")) - (patches - (search-patches "genimage-mke2fs-test.patch")))) - (build-system gnu-build-system) - (arguments - `(#:modules - ((ice-9 match) - ,@%default-gnu-modules) - #:phases - (modify-phases %standard-phases - (add-after 'unpack 'guixify - (lambda* (#:key inputs #:allow-other-keys) - (map (match-lambda - ((input directory regexp) - (substitute* "config.c" - (((format #f "\\.def = \"(~a)\"" regexp) _ command) - (format #f ".def = \"~a/~a/~a\"" - (assoc-ref inputs input) directory command))))) - '(("cpio" "bin" "cpio") - ("coreutils" "bin" "dd") - ("e2fsprogs" "sbin" "debugfs|e2fsck|mke2fs|tune2fs") - ("genext2fs" "bin" "genext2fs") - ("cdrkit-libre" "bin" "genisoimage") - ("mtools" "bin" "mcopy|mmd") - ;; mkcramfs is obsolete. - ("dosfstools" "sbin" "mkdosfs") - ("mtd-utils" "sbin" "mkfs.(jffs2|ubifs)|ubinize") - ("squashfs-tools" "bin" "mksquashfs") - ("qemu" "bin" "qemu-img") - ("tar" "bin" "tar") - ("u-boot-tools" "bin" "mkimage"))) - (substitute* "util.c" - (("\"/bin/sh\"") - (string-append "\"" (assoc-ref inputs "bash") "/bin/sh\""))))) - (add-before 'check 'fix-failing-tests - (lambda _ - ;; We don't have /etc/passwd so uid 0 is not known as "root". - ;; Thus patch it out. - (substitute* '("test/ext2test.0.dump" - "test/ext2test.1.dump" - "test/ext3test.0.dump" - "test/ext3test.1.dump" - "test/ext4test.0.dump" - "test/ext4test.1.dump" - "test/ext2test-percent.0.dump" - "test/ext2test-percent.1.dump" - "test/mke2fs.0.dump") - (("root") "unknown")))) - (add-before 'check 'setenv-check - (lambda _ - ;; Our container doesn't provide access to /etc/mtab - (setenv "EXT2FS_NO_MTAB_OK" "1") - ;; Make test reproducible - (setenv "GENIMAGE_MKFJFFS2" "mkfs.jffs2 -U") - (setenv "GENIMAGE_MKE2FS" "mke2fs -E no_copy_xattrs"))) - (replace 'check - (lambda _ - (invoke "make" "TEST_LOG_COMPILER=" "check")))))) - (native-inputs - (list autoconf - automake - ;;; Note: cramfs is obsolete. - dtc ; for the tests - pkg-config - util-linux)) ; for the tests - (inputs - `(("bash" ,bash) - ("cdrkit-libre" ,cdrkit-libre) - ("cpio" ,cpio) - ;; Note: invoked by final executable. - ("coreutils" ,coreutils) ; chmod, dd - ("dosfstools" ,dosfstools) - ("e2fsprogs" ,e2fsprogs) - ("genext2fs" ,genext2fs) - ("libconfuse" ,libconfuse) - ("mtd-utils" ,mtd-utils) - ("mtools" ,mtools) - ("qemu" ,qemu-minimal) - ("squashfs-tools" ,squashfs-tools) - ("tar" ,tar) - ("u-boot-tools" ,u-boot-tools))) - (synopsis "Create Flash images according to specification") - (description "@command{genimage} creates Flash images according to a + (package + (name "genimage") + (version "18") + (source + (origin + (method url-fetch) + (uri (string-append "https://github.com/pengutronix/genimage/" + "releases/download/v" version "/genimage-" + version ".tar.xz")) + (sha256 + (base32 + "1pgy2cp8mnlsz3i8q434h83p19p5k0p3qpkddkfn806qqj3gihzb")))) + (build-system gnu-build-system) + (arguments + `(#:modules + ((ice-9 match) + ,@%default-gnu-modules) + #:phases + (modify-phases %standard-phases + (add-after 'unpack 'guixify + (lambda* (#:key inputs #:allow-other-keys) + (map (match-lambda + ((input directory regexp) + (substitute* "config.c" + (((format #f "\\.def = \"(~a)\"" regexp) _ command) + (format #f ".def = \"~a/~a/~a\"" + (assoc-ref inputs input) directory command))))) + '(("cpio" "bin" "cpio") + ("coreutils" "bin" "dd") + ("e2fsprogs" "sbin" "debugfs|e2fsck|mke2fs|tune2fs") + ("genext2fs" "bin" "genext2fs") + ("cdrkit-libre" "bin" "genisoimage") + ("mtools" "bin" "mcopy|mmd") + ;; mkcramfs is obsolete. + ("dosfstools" "sbin" "mkdosfs") + ("mtd-utils" "sbin" "mkfs.(jffs2|ubifs)|ubinize") + ("f2fs-tools" "sbin" "(mkfs|sload).f2fs") + ("squashfs-tools" "bin" "mksquashfs") + ("qemu" "bin" "qemu-img") + ;; rauc and fiptool are unsupported. + ("tar" "bin" "tar") + ("u-boot-tools" "bin" "mkimage"))) + (substitute* "util.c" + (("\"/bin/sh\"") + (string-append "\"" (assoc-ref inputs "bash") "/bin/sh\""))))) + (add-before 'check 'disable-failing-tests + (lambda _ + ;; We don't have /etc/passwd so uid 0 is not known as "root". + ;; Thus patch it out. + (substitute* '("test/flash.test") + (("test_expect_success \"flash\"") + "test_expect_fail \"flash\"")) + (substitute* '("test/hdimage.test") + (("test_expect_success fdisk,sfdisk \"hdimage\"") + "test_expect_fail fdisk,sfdisk \"hdimage\"") + (("test_expect_success hexdump \"hdimage no-partition\"") + "test_expect_fail hexdump \"hdimage no-partition\"")))) + (add-before 'check 'fix-failing-tests + (lambda _ + ;; We don't have /etc/passwd so uid 0 is not known as "root". + ;; Thus patch it out. + (substitute* '("test/ext2test.2.dump" + "test/ext3test.2.dump" + "test/ext4test.2.dump" + "test/ext2test-percent.2.dump" + "test/mke2fs.2.dump") + (("root") "unknown")))) + (add-before 'check 'setenv-check + (lambda _ + ;; Our container doesn't provide access to /etc/mtab + (setenv "EXT2FS_NO_MTAB_OK" "1") + ;; Make test reproducible + (setenv "GENIMAGE_MKFJFFS2" "mkfs.jffs2 -U") + (setenv "GENIMAGE_MKE2FS" "mke2fs -E no_copy_xattrs"))) + (replace 'check + (lambda _ + (invoke "make" "TEST_LOG_COMPILER=" "check")))))) + (native-inputs + (list autoconf + automake + ;;; Note: cramfs is obsolete. + dtc ; for the tests + pkg-config + util-linux)) ; for the tests + (inputs + `(("bash" ,bash) + ("cdrkit-libre" ,cdrkit-libre) + ("cpio" ,cpio) + ;; Note: invoked by final executable. + ("coreutils" ,coreutils) ; chmod, dd + ("dosfstools" ,dosfstools) + ("e2fsprogs" ,e2fsprogs) + ("f2fs-tools" ,f2fs-tools) + ("genext2fs" ,genext2fs) + ("libconfuse" ,libconfuse) + ("mtd-utils" ,mtd-utils) + ("mtools" ,mtools) + ("qemu" ,qemu-minimal) + ("squashfs-tools" ,squashfs-tools) + ("tar" ,tar) + ("u-boot-tools" ,u-boot-tools))) + (synopsis "Create Flash images according to specification") + (description "@command{genimage} creates Flash images according to a specification file.") - (home-page "https://github.com/pengutronix/genimage") - (license license:gpl2)))) + (home-page "https://github.com/pengutronix/genimage") + (license license:gpl2))) -- 2.45.2 From debbugs-submit-bounces@debbugs.gnu.org Tue Sep 10 14:05:01 2024 Received: (at 72982) by debbugs.gnu.org; 10 Sep 2024 18:05:01 +0000 Received: from localhost ([127.0.0.1]:36995 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1so5Eb-0001mD-0n for submit@debbugs.gnu.org; Tue, 10 Sep 2024 14:05:01 -0400 Received: from 81-205-150-117.fixed.kpn.net ([81.205.150.117]:59177 helo=email.rimm.ee) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1so5EY-0001lo-72 for 72982@debbugs.gnu.org; Tue, 10 Sep 2024 14:04:59 -0400 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=rimm.ee; s=herman; t=1725991485; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding; bh=nOZgANMoYgwlWiXyYvZr426xC6J1AVdGYg1Ljdyx9KM=; b=swqTECS/N2A5j5w4ETmpwcJHUDvo2MbMmJ04K5z+MZzwh0cjZdqmDs30GSWxKGoyUa9RlE 7M5qUvZUKhTJ4kEiE5eOO4/2yD3VVI2WnbQ74q9ZXrR/GfpvbA/TrXY2adaD5Xq62PA5QS b7fKrkUzPWqUXz8IWKPLxbdjH0a6bYGANvwKSQlJcLI+4fISy91G2/6KRrtR7ClzJ/rIi8 GvjPatjT2de10TmFznzapOhAo7pzuZXn4tkT/w94yY+5toOUOG/x/pdzT4c3/LEK/TCW5Y 5pHPAV3uc3TxQDOfXXJBwl77SY00KLppBqhYB9kFhN5e3B9H4mZ4sJtEhcGE8g== Received: by 81-205-150-117.fixed.kpn.net (OpenSMTPD) with ESMTPSA id 0f453d19 (TLSv1.3:TLS_CHACHA20_POLY1305_SHA256:256:NO) for <72982@debbugs.gnu.org>; Tue, 10 Sep 2024 18:04:44 +0000 (UTC) From: Herman Rimm To: 72982@debbugs.gnu.org Subject: [PATCH v2] gnu: genimage: Update to version 18. Date: Tue, 10 Sep 2024 20:04:14 +0200 Message-ID: <20240910180414.32509-1-herman@rimm.ee> X-Mailer: git-send-email 2.45.2 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Spam-Score: 3.5 (+++) X-Spam-Report: Spam detection software, running on the system "debbugs.gnu.org", has NOT identified this incoming email as spam. The original message has been attached to this so you can view it or label similar future email. If you have any questions, see the administrator of that system for details. Content preview: * gnu/packages/genimage.scm (genimage): Update from 15 to 18. [arguments]: Disable some tests. --- gnu/packages/genimage.scm | 62 +++++++++++++++++++++++ 1 file changed, 36 insertions( [...] Content analysis details: (3.5 points, 10.0 required) pts rule name description ---- ---------------------- -------------------------------------------------- 0.0 TVD_RCVD_IP Message was received from an IP address 3.6 RCVD_IN_PBL RBL: Received via a relay in Spamhaus PBL [81.205.150.117 listed in zen.spamhaus.org] -0.0 SPF_PASS SPF: sender matches SPF record 0.0 SPF_HELO_NONE SPF: HELO does not publish an SPF Record -0.0 T_SCC_BODY_TEXT_LINE No description available. X-Debbugs-Envelope-To: 72982 X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: 2.5 (++) X-Spam-Report: Spam detection software, running on the system "debbugs.gnu.org", has NOT identified this incoming email as spam. The original message has been attached to this so you can view it or label similar future email. If you have any questions, see the administrator of that system for details. Content preview: * gnu/packages/genimage.scm (genimage): Update from 15 to 18. [arguments]: Disable some tests. --- gnu/packages/genimage.scm | 62 +++++++++++++++++++++++ 1 file changed, 36 insertions( [...] Content analysis details: (2.5 points, 10.0 required) pts rule name description ---- ---------------------- -------------------------------------------------- 3.6 RCVD_IN_PBL RBL: Received via a relay in Spamhaus PBL [81.205.150.117 listed in zen.spamhaus.org] -0.0 SPF_PASS SPF: sender matches SPF record 0.0 SPF_HELO_NONE SPF: HELO does not publish an SPF Record -0.0 T_SCC_BODY_TEXT_LINE No description available. -1.0 MAILING_LIST_MULTI Multiple indicators imply a widely-seen list manager * gnu/packages/genimage.scm (genimage): Update from 15 to 18. [arguments]: Disable some tests. --- gnu/packages/genimage.scm | 62 +++++++++++++++++++++++---------------- 1 file changed, 36 insertions(+), 26 deletions(-) diff --git a/gnu/packages/genimage.scm b/gnu/packages/genimage.scm index 13f3dd67b0..b90adffb67 100644 --- a/gnu/packages/genimage.scm +++ b/gnu/packages/genimage.scm @@ -41,27 +41,26 @@ (define-module (gnu packages genimage) #:use-module (gnu packages virtualization)) (define-public genimage - (let ((commit "ec44ae086c705e6f0439e742c5a2e9b8f3d6ca82") - (revision "1")) + (let ((commit "00009af6e29cfd46909bc8b4180147dda9f82ba8") + (revision "0")) (package (name "genimage") - (version (git-version "15" revision commit)) - (source (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/pengutronix/genimage") - (commit commit))) - (file-name (git-file-name name version)) - (sha256 - (base32 - "0amj2vjff58yna6kq959i2gqmbjywqr8j5kr5pjqsvbqam3vgg0r")) - (patches - (search-patches "genimage-mke2fs-test.patch")))) + (version (git-version "18" revision commit)) + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/pengutronix/genimage") + (commit commit))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "1mijyq79cb0yj4jm9ln9smpddq1f6r8cnsa568qca0krcv0p3zag")))) (build-system gnu-build-system) (arguments `(#:modules ((ice-9 match) - ,@%default-gnu-modules) + ,@%gnu-build-system-modules) #:phases (modify-phases %standard-phases (add-after 'unpack 'guixify @@ -70,8 +69,8 @@ (define-public genimage ((input directory regexp) (substitute* "config.c" (((format #f "\\.def = \"(~a)\"" regexp) _ command) - (format #f ".def = \"~a/~a/~a\"" - (assoc-ref inputs input) directory command))))) + (string-append ".def = \"" (assoc-ref inputs input) + "/" directory "/" command "\""))))) '(("cpio" "bin" "cpio") ("coreutils" "bin" "dd") ("e2fsprogs" "sbin" "debugfs|e2fsck|mke2fs|tune2fs") @@ -81,26 +80,36 @@ (define-public genimage ;; mkcramfs is obsolete. ("dosfstools" "sbin" "mkdosfs") ("mtd-utils" "sbin" "mkfs.(jffs2|ubifs)|ubinize") + ("f2fs-tools" "sbin" "(mkfs|sload).f2fs") ("squashfs-tools" "bin" "mksquashfs") ("qemu" "bin" "qemu-img") + ;; rauc and fiptool are unsupported. ("tar" "bin" "tar") ("u-boot-tools" "bin" "mkimage"))) (substitute* "util.c" (("\"/bin/sh\"") (string-append "\"" (assoc-ref inputs "bash") "/bin/sh\""))))) + (add-before 'check 'disable-failing-tests + (lambda _ + ;; We don't have /etc/passwd so uid 0 is not known as "root". + ;; Thus patch it out. + (substitute* '("test/flash.test") + (("test_expect_success \"flash\"") + "test_expect_fail \"flash\"")) + (substitute* '("test/hdimage.test") + (("test_expect_success fdisk,sfdisk \"hdimage\"") + "test_expect_fail fdisk,sfdisk \"hdimage\"") + (("test_expect_success hexdump \"hdimage no-partition\"") + "test_expect_fail hexdump \"hdimage no-partition\"")))) (add-before 'check 'fix-failing-tests (lambda _ ;; We don't have /etc/passwd so uid 0 is not known as "root". ;; Thus patch it out. - (substitute* '("test/ext2test.0.dump" - "test/ext2test.1.dump" - "test/ext3test.0.dump" - "test/ext3test.1.dump" - "test/ext4test.0.dump" - "test/ext4test.1.dump" - "test/ext2test-percent.0.dump" - "test/ext2test-percent.1.dump" - "test/mke2fs.0.dump") + (substitute* '("test/ext2test.2.dump" + "test/ext3test.2.dump" + "test/ext4test.2.dump" + "test/ext2test-percent.2.dump" + "test/mke2fs.2.dump") (("root") "unknown")))) (add-before 'check 'setenv-check (lambda _ @@ -127,6 +136,7 @@ (define-public genimage ("coreutils" ,coreutils) ; chmod, dd ("dosfstools" ,dosfstools) ("e2fsprogs" ,e2fsprogs) + ("f2fs-tools" ,f2fs-tools) ("genext2fs" ,genext2fs) ("libconfuse" ,libconfuse) ("mtd-utils" ,mtd-utils) -- 2.45.2 From debbugs-submit-bounces@debbugs.gnu.org Fri Sep 27 17:31:43 2024 Received: (at 72982-done) by debbugs.gnu.org; 27 Sep 2024 21:31:43 +0000 Received: from localhost ([127.0.0.1]:57822 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1suIYx-0003mz-CU for submit@debbugs.gnu.org; Fri, 27 Sep 2024 17:31:43 -0400 Received: from eggs.gnu.org ([209.51.188.92]:39610) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1suIYw-0003mi-5C for 72982-done@debbugs.gnu.org; Fri, 27 Sep 2024 17:31:42 -0400 Received: from fencepost.gnu.org ([2001:470:142:3::e]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1suIYL-000234-7a; Fri, 27 Sep 2024 17:31:05 -0400 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=gnu.org; s=fencepost-gnu-org; h=MIME-Version:Date:References:In-Reply-To:Subject:To: From; bh=hbE2124diYVIUvcaMq1yhcNPGnA5O9kh37v7IKw2gL0=; b=ccvkKAbbbOg+OMCbOYjE oW0VbUZO9QKaDWA6CPMmo7cDlduwcRnXrsYFKZ/qGxk4NqulApVipj8siM7v0XgH3zbvJzeZ8RRJQ KvIjn0G/UtYOoZF3lYiRIIU7cxwtovxGSWipxp4UdwgZPPR/iR7oMlZaEnh0Hv658tHrvoZkjudb7 6atGhJT2Z5/UdmcLy/aVHma9TcBso3Mb8//4CforKCvvhnLy/fExSPKwzM0cvKhs55qrbNDYIDZye 4lcXuq3VgY7BE3/45Ls0xUfEhpz0D5Z7lPsdKKL3JcHMvo5QWsoWp/GxRrckR+vco6QbcEp+wyBwr 0fzl0Cqyh1umhQ==; From: =?utf-8?Q?Ludovic_Court=C3=A8s?= To: Herman Rimm Subject: Re: [bug#72982] [PATCH v2] gnu: genimage: Update to version 18. In-Reply-To: <20240910180414.32509-1-herman@rimm.ee> (Herman Rimm's message of "Tue, 10 Sep 2024 20:04:14 +0200") References: <20240902175649.3422-1-herman@rimm.ee> <20240910180414.32509-1-herman@rimm.ee> Date: Fri, 27 Sep 2024 23:31:01 +0200 Message-ID: <87a5fslr6y.fsf@gnu.org> User-Agent: Gnus/5.13 (Gnus v5.13) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-Spam-Score: -2.3 (--) X-Debbugs-Envelope-To: 72982-done Cc: 72982-done@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -3.3 (---) Hi, Herman Rimm skribis: > * gnu/packages/genimage.scm (genimage): Update from 15 to 18. > [arguments]: Disable some tests. Applied. To make sure genimage was compatible with its use in the image machinery, I tested an image built with: ./pre-inst-env guix system image -t hurd-qcow2 \ gnu/system/examples/bare-hurd.tmpl All good, thanks! Ludo=E2=80=99. From unknown Fri Jun 20 07:19:38 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Sat, 26 Oct 2024 11:24:14 +0000 User-Agent: Fakemail v42.6.9 # This is a fake control message. # # The action: # bug archived. thanks # This fakemail brought to you by your local debbugs # administrator