GNU bug report logs - #52109
[PATCH] gnu: Add unrar-free.

Previous Next

Package: guix-patches;

Reported by: Foo Chuan Wei <chuanwei.foo <at> hotmail.com>

Date: Thu, 25 Nov 2021 15:20:01 UTC

Severity: normal

Tags: patch

Done: Leo Famulari <leo <at> famulari.name>

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: Foo Chuan Wei <chuanwei.foo <at> hotmail.com>
Subject: bug#52109: closed (Re: [bug#52109] [PATCH] gnu: Add unrar-free.)
Date: Fri, 13 Jan 2023 18:30:02 +0000
[Message part 1 (text/plain, inline)]
Your bug report

#52109: [PATCH] gnu: Add unrar-free.

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 52109 <at> debbugs.gnu.org.

-- 
52109: https://debbugs.gnu.org/cgi/bugreport.cgi?bug=52109
GNU Bug Tracking System
Contact help-debbugs <at> gnu.org with problems
[Message part 2 (message/rfc822, inline)]
From: Leo Famulari <leo <at> famulari.name>
To: 52109-done <at> debbugs.gnu.org
Subject: Re: [bug#52109] [PATCH] gnu: Add unrar-free.
Date: Fri, 13 Jan 2023 13:29:26 -0500
On Thu, Nov 25, 2021 at 03:19:28PM +0000, Foo Chuan Wei wrote:
> * gnu/packages/compression.scm (unrar-free): New variable.

Thanks! Pushed as 949f88b1e5c1755a71c8b05b202c836f4161d36b. Then I
updated the package in a subsequent commit. Sorry for the ridiculous
delay.

> ---
>  gnu/packages/compression.scm | 31 +++++++++++++++++++++++++++++++
>  1 file changed, 31 insertions(+)
> 
> diff --git a/gnu/packages/compression.scm b/gnu/packages/compression.scm
> index 0a993d1550..deef04a1b1 100644
> --- a/gnu/packages/compression.scm
> +++ b/gnu/packages/compression.scm
> @@ -33,6 +33,7 @@
>  ;;; Copyright © 2021 Antoine Côté <antoine.cote <at> posteo.net>
>  ;;; Copyright © 2021 Vincent Legoll <vincent.legoll <at> gmail.com>
>  ;;; Copyright © 2021 Maxim Cournoyer <maxim.cournoyer <at> gmail.com>
> +;;; Copyright © 2021 Foo Chuan Wei <chuanwei.foo <at> hotmail.com>
>  ;;;
>  ;;; This file is part of GNU Guix.
>  ;;;
> @@ -2715,6 +2716,36 @@ compression and decompression.  The supported formats are:
>  ")
>      (license license:expat)))
>  
> +(define-public unrar-free
> +  (package
> +    (name "unrar-free")
> +    (version "0.1.1")
> +    (source
> +     (origin
> +       (method git-fetch)
> +       (uri (git-reference
> +             (url "https://gitlab.com/bgermann/unrar-free")
> +             (commit version)))
> +       (file-name (git-file-name name version))
> +       (sha256
> +        (base32 "0l9xdygk8ki8471lmg8xkb58zq07cb9hy44pqz1hlyhgsvrb6vss"))))
> +    (build-system gnu-build-system)
> +    (inputs
> +     `(("libarchive" ,libarchive)))
> +    (native-inputs
> +     `(("autoconf" ,autoconf)
> +       ("automake" ,automake)
> +       ("pkg-config" ,pkg-config)))
> +    (home-page "https://gitlab.com/bgermann/unrar-free")
> +    (synopsis "Extract files from RAR archives")
> +    (description
> +     "@code{unrar-free} is a free software version of the non-free @code{unrar}
> +utility.  This program is a simple command-line front-end to libarchive, and can
> +list and extract not only RAR archives but also other formats supported by
> +libarchive.  It does not rival the non-free @code{unrar} in terms of features,
> +but special care has been taken to ensure it meets most user's needs.")
> +    (license license:gpl2+)))
> +
>  (define-public tarlz
>    (package
>      (name "tarlz")
> 
> base-commit: ea7233befb9570cce47e5ca71725b285a580cd22
> -- 
> 2.25.1
> 
> 
> 
> 

[Message part 3 (message/rfc822, inline)]
From: Foo Chuan Wei <chuanwei.foo <at> hotmail.com>
To: guix-patches <at> gnu.org
Subject: [PATCH] gnu: Add unrar-free.
Date: Thu, 25 Nov 2021 15:19:28 +0000
* gnu/packages/compression.scm (unrar-free): New variable.
---
 gnu/packages/compression.scm | 31 +++++++++++++++++++++++++++++++
 1 file changed, 31 insertions(+)

diff --git a/gnu/packages/compression.scm b/gnu/packages/compression.scm
index 0a993d1550..deef04a1b1 100644
--- a/gnu/packages/compression.scm
+++ b/gnu/packages/compression.scm
@@ -33,6 +33,7 @@
 ;;; Copyright © 2021 Antoine Côté <antoine.cote <at> posteo.net>
 ;;; Copyright © 2021 Vincent Legoll <vincent.legoll <at> gmail.com>
 ;;; Copyright © 2021 Maxim Cournoyer <maxim.cournoyer <at> gmail.com>
+;;; Copyright © 2021 Foo Chuan Wei <chuanwei.foo <at> hotmail.com>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -2715,6 +2716,36 @@ compression and decompression.  The supported formats are:
 ")
     (license license:expat)))
 
+(define-public unrar-free
+  (package
+    (name "unrar-free")
+    (version "0.1.1")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://gitlab.com/bgermann/unrar-free")
+             (commit version)))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "0l9xdygk8ki8471lmg8xkb58zq07cb9hy44pqz1hlyhgsvrb6vss"))))
+    (build-system gnu-build-system)
+    (inputs
+     `(("libarchive" ,libarchive)))
+    (native-inputs
+     `(("autoconf" ,autoconf)
+       ("automake" ,automake)
+       ("pkg-config" ,pkg-config)))
+    (home-page "https://gitlab.com/bgermann/unrar-free")
+    (synopsis "Extract files from RAR archives")
+    (description
+     "@code{unrar-free} is a free software version of the non-free @code{unrar}
+utility.  This program is a simple command-line front-end to libarchive, and can
+list and extract not only RAR archives but also other formats supported by
+libarchive.  It does not rival the non-free @code{unrar} in terms of features,
+but special care has been taken to ensure it meets most user's needs.")
+    (license license:gpl2+)))
+
 (define-public tarlz
   (package
     (name "tarlz")

base-commit: ea7233befb9570cce47e5ca71725b285a580cd22
-- 
2.25.1




This bug report was last modified 2 years and 117 days ago.

Previous Next


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