From unknown Sun Aug 17 22:12:44 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#39006] [PATCH] gnu: timidity++: Add libvorbis as input Resent-From: EuAndreh Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Tue, 07 Jan 2020 11:09:01 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: report 39006 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: 39006@debbugs.gnu.org Cc: EuAndreh X-Debbugs-Original-To: guix-patches@gnu.org Received: via spool by submit@debbugs.gnu.org id=B.157839532128579 (code B ref -1); Tue, 07 Jan 2020 11:09:01 +0000 Received: (at submit) by debbugs.gnu.org; 7 Jan 2020 11:08:41 +0000 Received: from localhost ([127.0.0.1]:47381 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1iomj3-0007Qt-AX for submit@debbugs.gnu.org; Tue, 07 Jan 2020 06:08:41 -0500 Received: from lists.gnu.org ([209.51.188.17]:35230) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1iomj1-0007Ql-7g for submit@debbugs.gnu.org; Tue, 07 Jan 2020 06:08:39 -0500 Received: from eggs.gnu.org ([2001:470:142:3::10]:35511) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1iomiy-0003WH-JW for guix-patches@gnu.org; Tue, 07 Jan 2020 06:08:37 -0500 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on eggs.gnu.org X-Spam-Level: X-Spam-Status: No, score=-1.9 required=5.0 tests=BAYES_00,URIBL_BLOCKED autolearn=disabled version=3.3.2 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1iomix-0005ls-6i for guix-patches@gnu.org; Tue, 07 Jan 2020 06:08:36 -0500 Received: from box.euandre.org ([162.243.185.39]:41496) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1iomix-0005kx-2r for guix-patches@gnu.org; Tue, 07 Jan 2020 06:08:35 -0500 Received: from authenticated-user (box.euandre.org [162.243.185.39]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by box.euandre.org (Postfix) with ESMTPSA id 938F29F718; Tue, 7 Jan 2020 09:08:33 -0200 (-02) DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=euandre.org; s=mail; t=1578395314; bh=XLbMrWuTy6UrNulVTFoeCMHO4uXAAr73g9VhJ2FxQC4=; h=From:To:Cc:Subject:Date:From; b=UG7BwuZOq17H5BIOveo+dSu+R1/kVFc7MS82dTyyzr1tkcodEb+Q1DTSej9Sqizcn Fkbj4X/Nm9WHoSp0vh1EdvuhB/Y63G9RzK4z+4kvojBAlratTxNVoKcuIamOKZ4TcN S+Kxf4vo5Ri2uR+d7pLsN9Asin+X5cUkouvipnKDiEpPv17m/Nc33vClbrCf6l9nZV 3pL8TemARRIldZHMrqN8HbYEu0XxkWv0d0YFdHKSqvb/Ijt8gxjFdUqyPmBClIuAR1 Fg1pCZS7TvmKPJqsdtPBumngDdxXnxxIpb8shfBk+ut/vQ8kofPdwmlRBFvgU0XLx9 xgeshDIL4rMtQ== From: EuAndreh Date: Tue, 7 Jan 2020 08:08:30 -0300 Message-Id: <20200107110830.25890-1-eu@euandre.org> MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] [fuzzy] X-Received-From: 162.243.185.39 X-Spam-Score: -1.4 (-) X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -2.4 (--) * gnu/packages/audio.scm (timidity++)[inputs] Add libvorbis as input --- Hi Guix! The current definition of TiMidity++ does include the configure flag for Ogg Vorbis (--enable-audio=3Dvorbis), but the package definition does not provide all the required inputs for actually enabling it: --8<---------------cut here---------------start------------->8--- $ guix environment --ad-hoc -- timidity -Ov Playmode `v' is not compiled in. Try timidity -h for help --8<---------------cut here---------------end--------------->8--- >From the build log (http://ci.guix.gnu.org/log/qynf65197fp921vz8k03qblz7d= jaarb0-timidity++-2.14.0): --8<---------------cut here---------------start------------->8--- ... checking for Ogg... yes checking for Vorbis... no *** Could not run Vorbis test program, checking why... *** The test program failed to compile or link. See the file config.log f= or the *** exact error that occured. This usually means Vorbis was incorrectly i= nstalled *** or that you have moved Vorbis since it was installed. ... --8<---------------cut here---------------end--------------->8--- This happens because 'libogg' in provided as input, but 'libvorbis' isn't. After applying this patch, Ogg Vorbis becomes available like other format= s. --8<---------------cut here---------------start------------->8--- $ ./pre-inst-env guix environment --ad-hoc -- timidity -Ov Try timidity -h for help --8<---------------cut here---------------end--------------->8--- gnu/packages/audio.scm | 1 + 1 file changed, 1 insertion(+) diff --git a/gnu/packages/audio.scm b/gnu/packages/audio.scm index 55a34460b1..f37ebc886e 100644 --- a/gnu/packages/audio.scm +++ b/gnu/packages/audio.scm @@ -2574,6 +2574,7 @@ Suil currently supports every combination of Gtk, Q= t, and X11.") ("flac" ,flac) ("jack" ,jack-1) ("libogg" ,libogg) + ("libvorbis" ,libvorbis) ("speex" ,speex) ("ncurses" ,ncurses) ("freepats" ,freepats))) -- 2.24.1 From unknown Sun Aug 17 22:12:44 2025 MIME-Version: 1.0 X-Mailer: MIME-tools 5.505 (Entity 5.505) X-Loop: help-debbugs@gnu.org From: help-debbugs@gnu.org (GNU bug Tracking System) To: EuAndreh Subject: bug#39006: closed (Re: [bug#39006] [PATCH] gnu: timidity++: Add libvorbis as input) Message-ID: References: <87ftglu0oy.fsf@gnu.org> <20200107110830.25890-1-eu@euandre.org> X-Gnu-PR-Message: they-closed 39006 X-Gnu-PR-Package: guix-patches X-Gnu-PR-Keywords: patch Reply-To: 39006@debbugs.gnu.org Date: Sat, 11 Jan 2020 21:46:02 +0000 Content-Type: multipart/mixed; boundary="----------=_1578779162-21485-1" This is a multi-part message in MIME format... ------------=_1578779162-21485-1 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset="utf-8" Your bug report #39006: [PATCH] gnu: timidity++: Add libvorbis as input which was filed against the guix-patches package, has been closed. The explanation is attached below, along with your original report. If you require more details, please reply to 39006@debbugs.gnu.org. --=20 39006: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=3D39006 GNU Bug Tracking System Contact help-debbugs@gnu.org with problems ------------=_1578779162-21485-1 Content-Type: message/rfc822 Content-Disposition: inline Content-Transfer-Encoding: 7bit Received: (at 39006-done) by debbugs.gnu.org; 11 Jan 2020 21:45:42 +0000 Received: from localhost ([127.0.0.1]:56814 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1iqOZh-0005Zx-LM for submit@debbugs.gnu.org; Sat, 11 Jan 2020 16:45:41 -0500 Received: from eggs.gnu.org ([209.51.188.92]:51777) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1iqOZg-0005Zm-SX for 39006-done@debbugs.gnu.org; Sat, 11 Jan 2020 16:45:41 -0500 Received: from fencepost.gnu.org ([2001:470:142:3::e]:54168) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1iqOZb-0001pT-Kt; Sat, 11 Jan 2020 16:45:35 -0500 Received: from [2a01:e0a:1d:7270:af76:b9b:ca24:c465] (port=46570 helo=ribbon) by fencepost.gnu.org with esmtpsa (TLS1.2:RSA_AES_256_CBC_SHA1:256) (Exim 4.82) (envelope-from ) id 1iqOZb-0003lu-0V; Sat, 11 Jan 2020 16:45:35 -0500 From: =?utf-8?Q?Ludovic_Court=C3=A8s?= To: EuAndreh Subject: Re: [bug#39006] [PATCH] gnu: timidity++: Add libvorbis as input References: <20200107110830.25890-1-eu@euandre.org> Date: Sat, 11 Jan 2020 22:45:33 +0100 In-Reply-To: <20200107110830.25890-1-eu@euandre.org> (EuAndreh's message of "Tue, 7 Jan 2020 08:08:30 -0300") Message-ID: <87ftglu0oy.fsf@gnu.org> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/26.3 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] X-Spam-Score: -2.3 (--) X-Debbugs-Envelope-To: 39006-done Cc: 39006-done@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -3.3 (---) Hello, EuAndreh skribis: > * gnu/packages/audio.scm (timidity++)[inputs] Add libvorbis as input > --- > Hi Guix! > > The current definition of TiMidity++ does include the configure flag for > Ogg Vorbis (--enable-audio=3Dvorbis), but the package definition does not > provide all the required inputs for actually enabling it: > > $ guix environment --ad-hoc -- timidity -Ov > Playmode `v' is not compiled in. > Try timidity -h for help Indeed. Applied, thanks! Ludo=E2=80=99. ------------=_1578779162-21485-1 Content-Type: message/rfc822 Content-Disposition: inline Content-Transfer-Encoding: 7bit Received: (at submit) by debbugs.gnu.org; 7 Jan 2020 11:08:41 +0000 Received: from localhost ([127.0.0.1]:47381 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1iomj3-0007Qt-AX for submit@debbugs.gnu.org; Tue, 07 Jan 2020 06:08:41 -0500 Received: from lists.gnu.org ([209.51.188.17]:35230) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1iomj1-0007Ql-7g for submit@debbugs.gnu.org; Tue, 07 Jan 2020 06:08:39 -0500 Received: from eggs.gnu.org ([2001:470:142:3::10]:35511) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1iomiy-0003WH-JW for guix-patches@gnu.org; Tue, 07 Jan 2020 06:08:37 -0500 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on eggs.gnu.org X-Spam-Level: X-Spam-Status: No, score=-1.9 required=5.0 tests=BAYES_00,URIBL_BLOCKED autolearn=disabled version=3.3.2 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1iomix-0005ls-6i for guix-patches@gnu.org; Tue, 07 Jan 2020 06:08:36 -0500 Received: from box.euandre.org ([162.243.185.39]:41496) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1iomix-0005kx-2r for guix-patches@gnu.org; Tue, 07 Jan 2020 06:08:35 -0500 Received: from authenticated-user (box.euandre.org [162.243.185.39]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by box.euandre.org (Postfix) with ESMTPSA id 938F29F718; Tue, 7 Jan 2020 09:08:33 -0200 (-02) DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=euandre.org; s=mail; t=1578395314; bh=XLbMrWuTy6UrNulVTFoeCMHO4uXAAr73g9VhJ2FxQC4=; h=From:To:Cc:Subject:Date:From; b=UG7BwuZOq17H5BIOveo+dSu+R1/kVFc7MS82dTyyzr1tkcodEb+Q1DTSej9Sqizcn Fkbj4X/Nm9WHoSp0vh1EdvuhB/Y63G9RzK4z+4kvojBAlratTxNVoKcuIamOKZ4TcN S+Kxf4vo5Ri2uR+d7pLsN9Asin+X5cUkouvipnKDiEpPv17m/Nc33vClbrCf6l9nZV 3pL8TemARRIldZHMrqN8HbYEu0XxkWv0d0YFdHKSqvb/Ijt8gxjFdUqyPmBClIuAR1 Fg1pCZS7TvmKPJqsdtPBumngDdxXnxxIpb8shfBk+ut/vQ8kofPdwmlRBFvgU0XLx9 xgeshDIL4rMtQ== From: EuAndreh To: guix-patches@gnu.org Subject: [PATCH] gnu: timidity++: Add libvorbis as input Date: Tue, 7 Jan 2020 08:08:30 -0300 Message-Id: <20200107110830.25890-1-eu@euandre.org> MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] [fuzzy] X-Received-From: 162.243.185.39 X-Spam-Score: -1.4 (-) X-Debbugs-Envelope-To: submit Cc: EuAndreh X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -2.4 (--) * gnu/packages/audio.scm (timidity++)[inputs] Add libvorbis as input --- Hi Guix! The current definition of TiMidity++ does include the configure flag for Ogg Vorbis (--enable-audio=3Dvorbis), but the package definition does not provide all the required inputs for actually enabling it: --8<---------------cut here---------------start------------->8--- $ guix environment --ad-hoc -- timidity -Ov Playmode `v' is not compiled in. Try timidity -h for help --8<---------------cut here---------------end--------------->8--- >From the build log (http://ci.guix.gnu.org/log/qynf65197fp921vz8k03qblz7d= jaarb0-timidity++-2.14.0): --8<---------------cut here---------------start------------->8--- ... checking for Ogg... yes checking for Vorbis... no *** Could not run Vorbis test program, checking why... *** The test program failed to compile or link. See the file config.log f= or the *** exact error that occured. This usually means Vorbis was incorrectly i= nstalled *** or that you have moved Vorbis since it was installed. ... --8<---------------cut here---------------end--------------->8--- This happens because 'libogg' in provided as input, but 'libvorbis' isn't. After applying this patch, Ogg Vorbis becomes available like other format= s. --8<---------------cut here---------------start------------->8--- $ ./pre-inst-env guix environment --ad-hoc -- timidity -Ov Try timidity -h for help --8<---------------cut here---------------end--------------->8--- gnu/packages/audio.scm | 1 + 1 file changed, 1 insertion(+) diff --git a/gnu/packages/audio.scm b/gnu/packages/audio.scm index 55a34460b1..f37ebc886e 100644 --- a/gnu/packages/audio.scm +++ b/gnu/packages/audio.scm @@ -2574,6 +2574,7 @@ Suil currently supports every combination of Gtk, Q= t, and X11.") ("flac" ,flac) ("jack" ,jack-1) ("libogg" ,libogg) + ("libvorbis" ,libvorbis) ("speex" ,speex) ("ncurses" ,ncurses) ("freepats" ,freepats))) -- 2.24.1 ------------=_1578779162-21485-1--