GNU bug report logs - #33098
Opus audio updates

Previous Next

Package: guix-patches;

Reported by: Leo Famulari <leo <at> famulari.name>

Date: Fri, 19 Oct 2018 21:07:01 UTC

Severity: normal

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

Bug is archived. No further changes may be made.

To add a comment to this bug, you must first unarchive it, by sending
a message to control AT debbugs.gnu.org, with unarchive 33098 in the body.
You can then email your comments to 33098 AT debbugs.gnu.org in the normal way.

Toggle the display of automated, internal messages from the tracker.

View this report as an mbox folder, status mbox, maintainer mbox


Report forwarded to guix-patches <at> gnu.org:
bug#33098; Package guix-patches. (Fri, 19 Oct 2018 21:07:01 GMT) Full text and rfc822 format available.

Acknowledgement sent to Leo Famulari <leo <at> famulari.name>:
New bug report received and forwarded. Copy sent to guix-patches <at> gnu.org. (Fri, 19 Oct 2018 21:07:01 GMT) Full text and rfc822 format available.

Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):

From: Leo Famulari <leo <at> famulari.name>
To: guix-patches <at> gnu.org
Subject: Opus audio updates
Date: Fri, 19 Oct 2018 17:06:24 -0400
[Message part 1 (text/plain, inline)]
These patches update Opus, opus-tools, and opusfile. They also add the
new package libopusenc.

I've made some basic tests by encoding and decoding Opus files with
opus-tools and opusfile, which should exercise Opus and libopusenc.
[signature.asc (application/pgp-signature, inline)]

Information forwarded to guix-patches <at> gnu.org:
bug#33098; Package guix-patches. (Fri, 19 Oct 2018 21:13:02 GMT) Full text and rfc822 format available.

Message #8 received at 33098 <at> debbugs.gnu.org (full text, mbox):

From: Leo Famulari <leo <at> famulari.name>
To: 33098 <at> debbugs.gnu.org
Subject: [PATCH 2/4] gnu: opusfile: Propagate dependencies required in
 pkg-config.
Date: Fri, 19 Oct 2018 17:11:54 -0400
* gnu/packages/xiph.scm (opusfile)[inputs]: Move libogg and openssl to
propagated-inputs.
---
 gnu/packages/xiph.scm | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/gnu/packages/xiph.scm b/gnu/packages/xiph.scm
index dc4f9f14d..0a0e615a0 100644
--- a/gnu/packages/xiph.scm
+++ b/gnu/packages/xiph.scm
@@ -397,13 +397,13 @@ decoding .opus files.")
                (base32
                 "1gq3aszzl5glgbajw5p1f5a1kdyf23w5vjdmwwrk246syin9pkkl"))))
     (build-system gnu-build-system)
+    ;; Required by opusfile.pc and opusurl.pc.
     (propagated-inputs
-     `(("opus" ,opus)))
+     `(("libogg" ,libogg)
+       ("openssl" ,openssl)
+       ("opus" ,opus)))
     (native-inputs
      `(("pkg-config" ,pkg-config)))
-    (inputs
-     `(("libogg" ,libogg)
-       ("openssl" ,openssl)))
     (synopsis "Versatile audio codec")
     (description
      "The opusfile library provides seeking, decode, and playback of Opus
-- 
2.19.1





Information forwarded to guix-patches <at> gnu.org:
bug#33098; Package guix-patches. (Fri, 19 Oct 2018 21:13:02 GMT) Full text and rfc822 format available.

Message #11 received at 33098 <at> debbugs.gnu.org (full text, mbox):

From: Leo Famulari <leo <at> famulari.name>
To: 33098 <at> debbugs.gnu.org
Subject: [PATCH 1/4] gnu: Add libopusenc.
Date: Fri, 19 Oct 2018 17:11:53 -0400
* gnu/packages/xiph.scm (libopusenc): New variable.
---
 gnu/packages/xiph.scm | 22 ++++++++++++++++++++++
 1 file changed, 22 insertions(+)

diff --git a/gnu/packages/xiph.scm b/gnu/packages/xiph.scm
index 7ecfa580e..dc4f9f14d 100644
--- a/gnu/packages/xiph.scm
+++ b/gnu/packages/xiph.scm
@@ -412,6 +412,28 @@ windows systems.")
     (license license:bsd-3)
     (home-page "https://www.opus-codec.org")))
 
+(define-public libopusenc
+  (package
+    (name "libopusenc")
+    (version "0.2.1")
+    (source (origin
+              (method url-fetch)
+              (uri (string-append "https://archive.mozilla.org/pub/opus/"
+                                  "libopusenc-" version ".tar.gz"))
+              (sha256
+               (base32
+                "1ffb0vhlymlsq70pxsjj0ksz77yfm2x0a1x8q50kxmnkm1hxp642"))))
+    (build-system gnu-build-system)
+    (native-inputs
+     `(("pkg-config" ,pkg-config)))
+    (propagated-inputs
+     `(("opus" ,opus)))
+    (synopsis "Library for encoding Opus audio files and streams ")
+    (description "The libopusenc libraries provide a high-level API for
+encoding Opus files and stream.")
+    (home-page "https://www.opus-codec.org/")
+    (license license:bsd-3)))
+
 (define-public icecast
   (package
     (name "icecast")
-- 
2.19.1





Information forwarded to guix-patches <at> gnu.org:
bug#33098; Package guix-patches. (Fri, 19 Oct 2018 21:13:03 GMT) Full text and rfc822 format available.

Message #14 received at 33098 <at> debbugs.gnu.org (full text, mbox):

From: Leo Famulari <leo <at> famulari.name>
To: 33098 <at> debbugs.gnu.org
Subject: [PATCH 3/4] gnu: opus-tools: Update to 0.2.
Date: Fri, 19 Oct 2018 17:11:55 -0400
* gnu/packages/xiph.scm (opus-tools): Update to 0.2.
[native-inputs]: Add pkg-config.
[inputs]: Add libopusenc and opusfile. Remove libogg and opus.
---
 gnu/packages/xiph.scm | 10 ++++++----
 1 file changed, 6 insertions(+), 4 deletions(-)

diff --git a/gnu/packages/xiph.scm b/gnu/packages/xiph.scm
index 0a0e615a0..32f4e4da6 100644
--- a/gnu/packages/xiph.scm
+++ b/gnu/packages/xiph.scm
@@ -354,7 +354,7 @@ incorporated technology from Skype's SILK codec and Xiph.Org's CELT codec.")
 (define opus-tools
   (package
     (name "opus-tools")
-    (version "0.1.10")
+    (version "0.2")
     (source (origin
               (method url-fetch)
               (uri (string-append
@@ -362,7 +362,7 @@ incorporated technology from Skype's SILK codec and Xiph.Org's CELT codec.")
                     version ".tar.gz"))
               (sha256
                (base32
-                "135jfb9ny3xvd27idsxj7j5ns90lslbyrq70cq3bfwcls4r7add2"))))
+                "11pzl27s4vcz4m18ch72nivbhww2zmzn56wspb7rll1y1nq6rrdl"))))
     (build-system gnu-build-system)
     (arguments
      ;; The package developers misuse pkg-config such that it doesn't work
@@ -373,8 +373,10 @@ incorporated technology from Skype's SILK codec and Xiph.Org's CELT codec.")
                                               "/include -I"
                                               (assoc-ref %build-inputs "opus")
                                               "/include/opus"))))
-    (inputs `(("libogg" ,libogg)
-              ("opus" ,opus)
+    (native-inputs
+     `(("pkg-config" ,pkg-config)))
+    (inputs `(("libopusenc" ,libopusenc)
+              ("opusfile" ,opusfile)
               ("flac" ,flac)))
     (synopsis
      "Command line utilities to encode, inspect, and decode .opus files")
-- 
2.19.1





Information forwarded to guix-patches <at> gnu.org:
bug#33098; Package guix-patches. (Fri, 19 Oct 2018 21:13:03 GMT) Full text and rfc822 format available.

Message #17 received at 33098 <at> debbugs.gnu.org (full text, mbox):

From: Leo Famulari <leo <at> famulari.name>
To: 33098 <at> debbugs.gnu.org
Subject: [PATCH 4/4] gnu: Opus: Update to 1.3.
Date: Fri, 19 Oct 2018 17:11:56 -0400
* gnu/packages/xiph.scm (opus): Update to 1.3.
---
 gnu/packages/xiph.scm | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/xiph.scm b/gnu/packages/xiph.scm
index 32f4e4da6..f7458c4b6 100644
--- a/gnu/packages/xiph.scm
+++ b/gnu/packages/xiph.scm
@@ -332,14 +332,14 @@ ogginfo, to obtain information (tags, bitrate, length, etc.) about
 (define opus
   (package
     (name "opus")
-    (version "1.2.1")
+    (version "1.3")
     (source (origin
               (method url-fetch)
               (uri (string-append "https://archive.mozilla.org/pub/opus/opus-"
                                   version ".tar.gz"))
               (sha256
                (base32
-                "0ch7yzgg4bn1g36bpjsfrgs4n19c84d7wpdida6yzifrrhwx7byg"))))
+                "0l651n19h0vhc0sn6w2c95hgqks1i8m4b3j04ncaznzjznp6jgag"))))
     (build-system gnu-build-system)
     (synopsis "Versatile audio codec")
     (description
-- 
2.19.1





Reply sent to Leo Famulari <leo <at> famulari.name>:
You have taken responsibility. (Tue, 23 Oct 2018 04:21:02 GMT) Full text and rfc822 format available.

Notification sent to Leo Famulari <leo <at> famulari.name>:
bug acknowledged by developer. (Tue, 23 Oct 2018 04:21:02 GMT) Full text and rfc822 format available.

Message #22 received at 33098-done <at> debbugs.gnu.org (full text, mbox):

From: Leo Famulari <leo <at> famulari.name>
To: 33098-done <at> debbugs.gnu.org
Subject: Re: Opus audio updates
Date: Tue, 23 Oct 2018 00:19:55 -0400
[Message part 1 (text/plain, inline)]
Pushed as 89f731b1506b3b560f4a179da2889408dfa881d
[signature.asc (application/pgp-signature, inline)]

Information forwarded to guix-patches <at> gnu.org:
bug#33098; Package guix-patches. (Tue, 23 Oct 2018 21:15:02 GMT) Full text and rfc822 format available.

Message #25 received at 33098 <at> debbugs.gnu.org (full text, mbox):

From: ludo <at> gnu.org (Ludovic Courtès)
To: 33098 <at> debbugs.gnu.org
Cc: leo <at> famulari.name
Subject: Re: bug#33098: Opus audio updates
Date: Tue, 23 Oct 2018 23:14:05 +0200
Leo Famulari <leo <at> famulari.name> skribis:

> Pushed as 89f731b1506b3b560f4a179da2889408dfa881d

Thank you (the patches all LGTM).

Ludo’.




bug archived. Request was from Debbugs Internal Request <help-debbugs <at> gnu.org> to internal_control <at> debbugs.gnu.org. (Wed, 21 Nov 2018 12:24:08 GMT) Full text and rfc822 format available.

This bug report was last modified 6 years and 271 days ago.

Previous Next


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