GNU bug report logs - #75516
[PATCH] gnu: Add bchunk.

Previous Next

Package: guix-patches;

Reported by: Yovan Naumovski <yovan <at> gorski.stream>

Date: Sun, 12 Jan 2025 15:06:02 UTC

Severity: normal

Tags: patch

Done: Guillaume Le Vaillant <glv <at> posteo.net>

Bug is archived. No further changes may be made.

Full log


View this message in rfc822 format

From: help-debbugs <at> gnu.org (GNU bug Tracking System)
To: Yovan Naumovski <yovan <at> gorski.stream>
Subject: bug#75516: closed (Re: [bug#75516] [PATCH] gnu: Add bchunk.)
Date: Thu, 06 Feb 2025 14:01:02 +0000
[Message part 1 (text/plain, inline)]
Your bug report

#75516: [PATCH] gnu: Add bchunk.

which was filed against the guix-patches package, has been closed.

The explanation is attached below, along with your original report.
If you require more details, please reply to 75516 <at> debbugs.gnu.org.

-- 
75516: https://debbugs.gnu.org/cgi/bugreport.cgi?bug=75516
GNU Bug Tracking System
Contact help-debbugs <at> gnu.org with problems
[Message part 2 (message/rfc822, inline)]
From: Guillaume Le Vaillant <glv <at> posteo.net>
To: Yovan Naumovski <yovan <at> gorski.stream>
Cc: 75516-done <at> debbugs.gnu.org
Subject: Re: [bug#75516] [PATCH] gnu: Add bchunk.
Date: Thu, 06 Feb 2025 14:00:44 +0000
[Message part 3 (text/plain, inline)]
Patch applied as fd7458331c1133fb1d7b5ddda3ac1d309aeacb03.
Thanks.
[signature.asc (application/pgp-signature, inline)]
[Message part 5 (message/rfc822, inline)]
From: Yovan Naumovski <yovan <at> gorski.stream>
To: guix-patches <at> gnu.org
Cc: Yovan Naumovski <yovan <at> gorski.stream>
Subject: [PATCH] gnu: Add bchunk.
Date: Sun, 12 Jan 2025 17:04:19 +0200
* gnu/packages/cdrom.scm (bchunk): New variable.

Change-Id: I0fbc7255fcb4cf5b52c52092a4f56b06511a2294
---
 gnu/packages/cdrom.scm | 31 +++++++++++++++++++++++++++++++
 1 file changed, 31 insertions(+)

diff --git a/gnu/packages/cdrom.scm b/gnu/packages/cdrom.scm
index e441423573..486f3b1048 100644
--- a/gnu/packages/cdrom.scm
+++ b/gnu/packages/cdrom.scm
@@ -210,6 +210,37 @@ (define-public xorriso
 files.")
     (license gpl3+)))
 
+(define-public bchunk
+  (package
+    (name "bchunk")
+    (version "1.2.2")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/hessu/bchunk")
+             (commit
+              (string-append "release/" version))))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "0amhc196ibg7gj2iki0z9kykvcm85jxpbnkcmk2jxj3hni242n60"))))
+    (build-system gnu-build-system)
+    (arguments
+     '(#:tests? #f ;; no check target
+       #:phases
+       (modify-phases %standard-phases
+         (delete 'configure)
+         (replace 'install
+           (lambda* (#:key outputs #:allow-other-keys)
+             (let ((out (assoc-ref outputs "out")))
+               (install-file "bchunk" (string-append out "/bin"))
+               (install-file "bchunk.1" (string-append out "/share/man/man.1"))))))))
+    (home-page "http://he.fi/bchunk/")
+    (synopsis "Bin/cue to ISO image converter")
+    (description "@command{cdrecord} converts a CD image in a \".bin / .cue\"
+format (sometimes \".raw / .cue\") to a set of .iso and .cdr tracks.")
+    (license gpl2)))
+
 (define-public cdparanoia
   (package
     (name "cdparanoia")

base-commit: bde32a3d88482f6e0b2f260174914c020a7c6166
-- 
2.47.1




This bug report was last modified 157 days ago.

Previous Next


GNU bug tracking system
Copyright (C) 1999 Darren O. Benham, 1997,2003 nCipher Corporation Ltd, 1994-97 Ian Jackson.