GNU bug report logs - #27044
[PATCH 1/3] gnu: video: Add libzen.

Previous Next

Package: guix-patches;

Reported by: "Ethan R. Jones" <doubleplusgood23 <at> gmail.com>

Date: Tue, 23 May 2017 20:44:02 UTC

Severity: normal

Tags: patch

Done: ludo <at> gnu.org (Ludovic Courtès)

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: "Ethan R. Jones" <doubleplusgood23 <at> gmail.com>
Subject: bug#27044: closed (Re: bug#27044: [PATCH 1/3] gnu: cpp: libzen:
 Add libzen.)
Date: Wed, 31 May 2017 14:45:02 +0000
[Message part 1 (text/plain, inline)]
Your bug report

#27044: [PATCH 1/3] gnu: video: Add libzen.

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

-- 
27044: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=27044
GNU Bug Tracking System
Contact help-debbugs <at> gnu.org with problems
[Message part 2 (message/rfc822, inline)]
From: ludo <at> gnu.org (Ludovic Courtès)
To: "Ethan R. Jones" <doubleplusgood23 <at> gmail.com>
Cc: mbakke <at> fastmail.com, 27044-done <at> debbugs.gnu.org
Subject: Re: bug#27044: [PATCH 1/3] gnu: cpp: libzen: Add libzen.
Date: Wed, 31 May 2017 16:44:29 +0200
Hi Ethan,

"Ethan R. Jones" <doubleplusgood23 <at> gmail.com> skribis:

> * gnu/local.mk (GNU_SYSTEM_MODULES): Add new file.
> * gnu/packages/cpp.scm (libzen): New varible.

[...]

> +    (home-page "https://github.com/MediaArea/ZenLib")
> +    (synopsis "C++ utility library")
> +    (description "ZenLib is a C++ utility library.  It includes classes for handling
> +strings, configuration, bit streams, threading, translation, and cross-platform
> +operating system functions.")
> +    (license license:bsd-2)))

I changed the license to ‘license:zlib’ since that’s what it is and
committed.  Thanks!

Ludo’.

[Message part 3 (message/rfc822, inline)]
From: "Ethan R. Jones" <doubleplusgood23 <at> gmail.com>
To: guix-patches <at> gnu.org
Cc: "Ethan R. Jones" <doubleplusgood23 <at> gmail.com>
Subject: [PATCH 1/3] gnu: video: Add libzen.
Date: Tue, 23 May 2017 16:43:04 -0400
* gnu/packages/video.scm (libzen): New variable.
---
 gnu/packages/video.scm | 36 ++++++++++++++++++++++++++++++++++++
 1 file changed, 36 insertions(+)

diff --git a/gnu/packages/video.scm b/gnu/packages/video.scm
index b7c26a042..bc3fa48b8 100644
--- a/gnu/packages/video.scm
+++ b/gnu/packages/video.scm
@@ -2052,3 +2052,39 @@ file format that has been used as a multimedia file format in a variety of platf
 applications.  It is a very powerful and extensible format that can accommodate
 practically any type of media.")
     (license license:mpl1.1)))
+
+(define-public libzen
+  (package
+    (name "libzen")
+    (version "0.4.35")
+    (source (origin
+              (method url-fetch)
+              (uri (string-append "https://mediaarea.net/download/source/"
+                                  name "/" version "/"
+                                  name "_" version ".tar.bz2"))
+              (file-name (string-append name "-" version ".tar.bz2"))
+              (sha256
+               (base32
+                "12a1icgcffgv503ii2k1453kxg5hfly09mf4zjcc80aq8a6rf8by"))))
+    (native-inputs
+     `(("autoconf" ,autoconf)
+       ("automake" ,automake)
+       ("libtool" ,libtool)))
+    (build-system gnu-build-system)
+    (arguments
+     '(#:phases
+       ;; build scripts not in root of archive
+       (modify-phases %standard-phases
+         (add-before
+             'configure 'pre-configure
+           (lambda _
+             (chdir "Project/GNU/Library")))
+         (add-before 'configure 'autogen
+           (lambda _
+             (zero? (system* "./autogen.sh")))))))
+    (home-page "https://github.com/MediaArea/ZenLib")
+    (synopsis "C++ utility library")
+    (description "ZenLib is a C++ utility library.  It includes classes for handling
+strings, configuration, bit streams, threading, translation, and cross-platform
+operating system functions.")
+    (license license:bsd-2)))
-- 
2.13.0




This bug report was last modified 8 years and 51 days ago.

Previous Next


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