From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:45843) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1gVXap-0003Sx-7E for guix-patches@gnu.org; Sat, 08 Dec 2018 03:04:08 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1gVXak-0000Yd-Pn for guix-patches@gnu.org; Sat, 08 Dec 2018 03:04:07 -0500 Received: from debbugs.gnu.org ([208.118.235.43]:33291) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1gVXak-0000YY-JL for guix-patches@gnu.org; Sat, 08 Dec 2018 03:04:02 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1gVXak-0001fK-DR for guix-patches@gnu.org; Sat, 08 Dec 2018 03:04:02 -0500 Subject: [bug#33671] [PATCH 3/3] gnu: ardour: Sort inputs and native-inputs. Resent-Message-ID: References: <79055647-0d66-755e-1220-d55e42aa55a7@gmail.com> From: Brendan Tildesley Message-ID: Date: Sat, 8 Dec 2018 19:03:20 +1100 MIME-Version: 1.0 In-Reply-To: Content-Type: multipart/mixed; boundary="------------032204BA4C008AE6AC1C4FA7" Content-Language: en-AU 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: 33671@debbugs.gnu.org This is a multi-part message in MIME format. --------------032204BA4C008AE6AC1C4FA7 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit --------------032204BA4C008AE6AC1C4FA7 Content-Type: text/x-patch; name="0003-gnu-ardour-Sort-inputs-and-native-inputs.patch" Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename="0003-gnu-ardour-Sort-inputs-and-native-inputs.patch" >From 4444b720b1e035c25ecd36c9244f514d76ca121f Mon Sep 17 00:00:00 2001 From: Brendan Tildesley Date: Sat, 8 Dec 2018 14:42:07 +1100 Subject: [PATCH 3/3] gnu: ardour: Sort inputs and native-inputs. * gnu/packages/audio.scm (ardour): Sort inputs and native-inputs. --- gnu/packages/audio.scm | 44 +++++++++++++++++++++--------------------- 1 file changed, 22 insertions(+), 22 deletions(-) diff --git a/gnu/packages/audio.scm b/gnu/packages/audio.scm index d751a4904b..528eddf3c7 100644 --- a/gnu/packages/audio.scm +++ b/gnu/packages/audio.scm @@ -256,47 +256,47 @@ namespace ARDOUR { const char* revision = \"" version "\" ; }")) #:python ,python-2)) (inputs `(("alsa-lib" ,alsa-lib) + ("atkmm" ,atkmm) ("aubio" ,aubio) - ("lrdf" ,lrdf) ("boost" ,boost) - ("atkmm" ,atkmm) ("cairomm" ,cairomm) + ("curl" ,curl) ("eudev" ,eudev) - ("gtkmm" ,gtkmm-2) + ("fftw" ,fftw) + ("fftwf" ,fftwf) + ("flac" ,flac) ("glibmm" ,glibmm) + ("gtkmm" ,gtkmm-2) + ("jack" ,jack-1) + ("libarchive" ,libarchive) ("libart-lgpl" ,libart-lgpl) ("libgnomecanvasmm" ,libgnomecanvasmm) - ("pangomm" ,pangomm) ("liblo" ,liblo) - ("libsndfile" ,libsndfile) - ("libsamplerate" ,libsamplerate) - ("libxml2" ,libxml2) ("libogg" ,libogg) + ("libsamplerate" ,libsamplerate) + ("libsndfile" ,libsndfile) ("libusb" ,libusb) ("libvorbis" ,libvorbis) - ("flac" ,flac) + ("libxml2" ,libxml2) + ("lilv" ,lilv) + ("lrdf" ,lrdf) ("lv2" ,lv2) - ("vamp" ,vamp) - ("curl" ,curl) - ("fftw" ,fftw) - ("fftwf" ,fftwf) - ("jack" ,jack-1) + ("pangomm" ,pangomm) + ("python-rdflib" ,python-rdflib) + ("readline" ,readline) + ("redland" ,redland) + ("rubberband" ,rubberband) ("serd" ,serd) ("sord" ,sord) ("sratom" ,sratom) ("suil" ,suil) - ("lilv" ,lilv) - ("readline" ,readline) - ("redland" ,redland) - ("rubberband" ,rubberband) - ("libarchive" ,libarchive) ("taglib" ,taglib) - ("python-rdflib" ,python-rdflib))) + ("vamp" ,vamp))) (native-inputs - `(("perl" ,perl) - ("cppunit" ,cppunit) - ("itstool" ,itstool) + `(("cppunit" ,cppunit) ("gettext" ,gettext-minimal) + ("itstool" ,itstool) + ("perl" ,perl) ("pkg-config" ,pkg-config))) (home-page "http://ardour.org") (synopsis "Digital audio workstation") -- 2.19.2 --------------032204BA4C008AE6AC1C4FA7--