emacs-bug-tracker
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[debbugs-tracker] bug#27044: closed ([PATCH 1/3] gnu: video: Add libzen.


From: GNU bug Tracking System
Subject: [debbugs-tracker] bug#27044: closed ([PATCH 1/3] gnu: video: Add libzen.)
Date: Wed, 31 May 2017 14:45:02 +0000

Your message dated Wed, 31 May 2017 16:44:29 +0200
with message-id <address@hidden>
and subject line Re: bug#27044: [PATCH 1/3] gnu: cpp: libzen: Add libzen.
has caused the debbugs.gnu.org bug report #27044,
regarding [PATCH 1/3] gnu: video: Add libzen.
to be marked as done.

(If you believe you have received this mail in error, please contact
address@hidden)


-- 
27044: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=27044
GNU Bug Tracking System
Contact address@hidden with problems
--- Begin Message --- 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




--- End Message ---
--- Begin Message --- Subject: Re: bug#27044: [PATCH 1/3] gnu: cpp: libzen: Add libzen. Date: Wed, 31 May 2017 16:44:29 +0200 User-agent: Gnus/5.13 (Gnus v5.13) Emacs/25.2 (gnu/linux)
Hi Ethan,

"Ethan R. Jones" <address@hidden> 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’.


--- End Message ---

reply via email to

[Prev in Thread] Current Thread [Next in Thread]