all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* [bug#47210] Enable ogg/flac/vorbis/opus support in libsndfile
@ 2021-03-17 10:50 Ben Sturmfels via Guix-patches via
  2021-03-17 11:35 ` Ben Sturmfels via Guix-patches via
  0 siblings, 1 reply; 2+ messages in thread
From: Ben Sturmfels via Guix-patches via @ 2021-03-17 10:50 UTC (permalink / raw)
  To: 47210

[-- Attachment #1: Type: text/plain, Size: 1564 bytes --]

Hi folks,

This is small update to libsndfile as part of my effort to package
MediaGoblin. Essentially, the ogg/flac/vorbis/opus support is only on if
*all four* libraries are present, and opus is currently missing.

Before applying this patch, the configure phase for libsndfile reports:

  checking for flac >= 1.3.1 ... yes
  checking for ogg >= 1.3.0 ... yes
  checking for vorbis >= 1.2.3 ... yes
  checking for vorbisenc >= 1.2.3 ... yes
  checking for opus >= 1.1 ... no           <<< LOOK HERE

  configure: WARNING: *** One or more of the external libraries (ie libflac, libogg and
  configure: WARNING: *** libvorbis) is either missing (possibly only the development
  configure: WARNING: *** headers) or is of an unsupported version.
  configure: WARNING: ***
  configure: WARNING: *** Unfortunately, for ease of maintenance, the external libs
  configure: WARNING: *** are an all or nothing affair.

  -=-=-=-=-=-=-=-=-=-= Configuration Complete =-=-=-=-=-=-=-=-=-=-=-

    Configuration summary :

      External FLAC/Ogg/Vorbis/Opus : ....... no


After this patch the libsndfile configure shows:

  checking for flac >= 1.3.1 ... yes
  checking for ogg >= 1.3.0 ... yes
  checking for vorbis >= 1.2.3 ... yes
  checking for vorbisenc >= 1.2.3 ... yes
  checking for opus >= 1.1 ... yes         <<< LOOK HERE

  -=-=-=-=-=-=-=-=-=-= Configuration Complete =-=-=-=-=-=-=-=-=-=-=-

    Configuration summary :

      External FLAC/Ogg/Vorbis/Opus : ....... yes


Regards,
Ben

Ben Sturmfels

Sturm Software Engineering
www.sturm.com.au
+61 3 9024 2467

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: 0001-gnu-libsndfile-enable-vorbis-ogg-flac-opus-support.patch --]
[-- Type: text/x-patch, Size: 861 bytes --]

From d91cedcdd324d10d0406166c43b938cba842eb03 Mon Sep 17 00:00:00 2001
From: Ben Sturmfels <ben@sturm.com.au>
Date: Wed, 17 Mar 2021 21:35:16 +1100
Subject: [PATCH] gnu: libsndfile: enable vorbis/ogg/flac/opus support.

* gnu/packages/pulseaudio.scm (libsndfile): Add input for opus to trigger
all-or-nothing external library support
---
 gnu/packages/pulseaudio.scm | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/pulseaudio.scm b/gnu/packages/pulseaudio.scm
index ea61dd807c..0c1acdc6e0 100644
--- a/gnu/packages/pulseaudio.scm
+++ b/gnu/packages/pulseaudio.scm
@@ -102,7 +102,8 @@
     (inputs
      `(("libvorbis" ,libvorbis)
        ("libogg" ,libogg)
-       ("flac" ,flac)))
+       ("flac" ,flac)
+       ("opus" ,opus)))
     (native-inputs
      `(("pkg-config" ,pkg-config)
        ("python" ,python)))
-- 
2.30.2


^ permalink raw reply related	[flat|nested] 2+ messages in thread

* [bug#47210] Enable ogg/flac/vorbis/opus support in libsndfile
  2021-03-17 10:50 [bug#47210] Enable ogg/flac/vorbis/opus support in libsndfile Ben Sturmfels via Guix-patches via
@ 2021-03-17 11:35 ` Ben Sturmfels via Guix-patches via
  0 siblings, 0 replies; 2+ messages in thread
From: Ben Sturmfels via Guix-patches via @ 2021-03-17 11:35 UTC (permalink / raw)
  To: 47210

> Hi folks,
>
> This is small update to libsndfile as part of my effort to package
> MediaGoblin. Essentially, the ogg/flac/vorbis/opus support is only on if
> *all four* libraries are present, and opus is currently missing.

Hmm, have I broken something though? With this patch applied, my build
of libsndfile succeeds, but "sbc" seems to be failing. Or maybe I'm
doing something wrong?

$ ./pre-inst-env guix build libsndfile
$ echo $?
0
$ ./pre-inst-env guix build sbc
...
checking for SNDFILE... no
configure: error: sndfile library is required
command "/gnu/store/pwcp239kjf7lnj5i4lkdzcfcxwcfyk72-bash-minimal-5.0.16/bin/bash" "./configure" "CONFIG_SHELL=/gnu/store/pwcp239kjf7lnj5i4lkdzcfcxwcfyk72-bash-minimal-5.0.16/bin/bash" "SHELL=/gnu/store/pwcp239kjf7lnj5i4lkdzcfcxwcfyk72-bash-minimal-5.0.16/bin/bash" "--prefix=/gnu/store/nndszkyvfg56lgjnppivnm6fjsljls97-sbc-1.5" "--enable-fast-install" "--build=x86_64-unknown-linux-gnu" failed with status 1
builder for `/gnu/store/kbxzfb9lc9wp69q9p5zfcclxpd16jyj0-sbc-1.5.drv' failed with exit code 1
build of /gnu/store/kbxzfb9lc9wp69q9p5zfcclxpd16jyj0-sbc-1.5.drv failed
View build log at '/var/log/guix/drvs/kb/xzfb9lc9wp69q9p5zfcclxpd16jyj0-sbc-1.5.drv.bz2'.
guix build: error: build of `/gnu/store/kbxzfb9lc9wp69q9p5zfcclxpd16jyj0-sbc-1.5.drv' failed




^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2021-03-17 11:36 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-03-17 10:50 [bug#47210] Enable ogg/flac/vorbis/opus support in libsndfile Ben Sturmfels via Guix-patches via
2021-03-17 11:35 ` Ben Sturmfels via Guix-patches via

Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/guix.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.