From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:58881) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1ipgMT-0002HV-AT for guix-patches@gnu.org; Thu, 09 Jan 2020 17:33:06 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ipgMR-0003pj-S6 for guix-patches@gnu.org; Thu, 09 Jan 2020 17:33:05 -0500 Received: from debbugs.gnu.org ([209.51.188.43]:47290) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1ipgMR-0003oH-5d for guix-patches@gnu.org; Thu, 09 Jan 2020 17:33:03 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1ipgMR-0006rz-1M for guix-patches@gnu.org; Thu, 09 Jan 2020 17:33:03 -0500 Subject: bug#38876: gnu: Add libmediaart. V2 Resent-To: guix-patches@gnu.org Resent-Message-ID: From: Ludovic =?UTF-8?Q?Court=C3=A8s?= References: <2ee7252de22c400891d49a9df12974578f4f9d34.camel@disroot.org> Date: Thu, 09 Jan 2020 23:32:18 +0100 In-Reply-To: (Raghav Gururajan's message of "Thu, 02 Jan 2020 14:58:47 -0500") Message-ID: <8736cos1l9.fsf@gnu.org> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" 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: Raghav Gururajan Cc: 38876-done@debbugs.gnu.org --=-=-= Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Hi! Raghav Gururajan skribis: > From c58cd6327d975cdb95aed9a6b3d7c0d660c565d2 Mon Sep 17 00:00:00 2001 > From: Raghav Gururajan > Date: Thu, 2 Jan 2020 14:53:01 -0500 > Subject: [PATCH] gnu: Add libmediaart. > > * gnu/packages/gnome.scm (libmediaart): New variable. Applied with the minor changes below: I took the description from , and from what I can see in the source file headers, it=E2=80=99s LGPLv2.1+. Thanks, Ludo=E2=80=99. --=-=-= Content-Type: text/x-patch Content-Disposition: inline diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm index 178bcf5002..9689d20b39 100644 --- a/gnu/packages/gnome.scm +++ b/gnu/packages/gnome.scm @@ -268,11 +268,12 @@ features to enable users to create their discs easily and quickly.") ("gobject-introspection" ,gobject-introspection) ("gtk+:doc", gtk+ "doc") ("vala" ,vala))) - (synopsis "Media Art library for GNOME desktop") - (description "Library tasked with managing, extracting and -handling media art caches.") + (synopsis "Media art library for the GNOME desktop") + (description + "The libmediaart library is the foundation for media art caching, +extraction, and lookup for applications on the desktop.") (home-page "https://gitlab.gnome.org/GNOME/libmediaart") - (license license:gpl2+))) + (license license:lgpl2.1+))) (define-public gnome-menus (package --=-=-=--