From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:34926) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1gDc4w-0004N8-7W 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 1gDc4s-0005bw-UG for guix-patches@gnu.org; Fri, 19 Oct 2018 17:13:06 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:55613) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1gDc4s-0005ay-Ny for guix-patches@gnu.org; Fri, 19 Oct 2018 17:13:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1gDc4s-00046n-G4 for guix-patches@gnu.org; Fri, 19 Oct 2018 17:13:02 -0400 Subject: [bug#33098] [PATCH 2/4] gnu: opusfile: Propagate dependencies required in pkg-config. Resent-Message-ID: From: Leo Famulari Date: Fri, 19 Oct 2018 17:11:54 -0400 Message-Id: <06ddce7df98c17194546c72480645006795c4d73.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 (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