From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:34923) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1gDc4w-0004N4-6G for guix-patches@gnu.org; Fri, 19 Oct 2018 17:13:07 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1gDc4t-0005df-Ni for guix-patches@gnu.org; Fri, 19 Oct 2018 17:13:06 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:55615) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1gDc4t-0005d9-Io for guix-patches@gnu.org; Fri, 19 Oct 2018 17:13:03 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1gDc4t-000472-D9 for guix-patches@gnu.org; Fri, 19 Oct 2018 17:13:03 -0400 Subject: [bug#33098] [PATCH 3/4] gnu: opus-tools: Update to 0.2. Resent-Message-ID: From: Leo Famulari Date: Fri, 19 Oct 2018 17:11:55 -0400 Message-Id: <555c1cb407f7d464414ca06450af211276409c59.1539983516.git.leo@famulari.name> In-Reply-To: <52cea498c6fe6591468b1482f6dc499307882056.1539983516.git.leo@famulari.name> References: <52cea498c6fe6591468b1482f6dc499307882056.1539983516.git.leo@famulari.name> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: 33098@debbugs.gnu.org * 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