From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:53116) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1irqCp-0008GZ-7P for guix-patches@gnu.org; Wed, 15 Jan 2020 16:28:04 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1irqCo-0005jK-2n for guix-patches@gnu.org; Wed, 15 Jan 2020 16:28:03 -0500 Received: from debbugs.gnu.org ([209.51.188.43]:58605) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1irqCn-0005jB-WC for guix-patches@gnu.org; Wed, 15 Jan 2020 16:28:02 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1irqCn-0004f3-Pi for guix-patches@gnu.org; Wed, 15 Jan 2020 16:28:01 -0500 Subject: bug#39106: gnu: Add libnma. Resent-To: guix-patches@gnu.org Resent-Message-ID: From: Ludovic =?UTF-8?Q?Court=C3=A8s?= References: Date: Wed, 15 Jan 2020 22:27:26 +0100 In-Reply-To: (Raghav Gururajan's message of "Sun, 12 Jan 2020 20:34:48 +0000") Message-ID: <871rs0pg01.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: 39106-done@debbugs.gnu.org --=-=-= Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Hi, "Raghav Gururajan" skribis: > From 3004fc993c220043a99439933e97ea91c650162d Mon Sep 17 00:00:00 2001 > From: Raghav Gururajan > Date: Sun, 12 Jan 2020 15:23:19 -0500 > Subject: [PATCH] gnu: Add libnma. > > * gnu/packages/gnome.scm (libnma): New variable. Applied with the changes below. BTW, several packages have a dependency on =E2=80=98network-manager-applet= =E2=80=99 with =E2=80=9Cfor libnma=E2=80=9D comment. Could you take a look at whether the= se need to be migrated? 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 35a0730bea..06aafa7037 100644 --- a/gnu/packages/gnome.scm +++ b/gnu/packages/gnome.scm @@ -600,22 +600,25 @@ sharing to the masses.") (native-inputs `(("gettext" ,gettext-minimal) ("glib:bin" ,glib "bin") + ("gtk-doc" ,gtk-doc) + ("gobject-introspection" ,gobject-introspection) ("pkg-config" ,pkg-config))) (inputs `(("adwaita-icon-theme" ,adwaita-icon-theme) ("gcr" ,gcr) - ("gobject-introspection" ,gobject-introspection) ("gtk+" ,gtk+) - ("gtk-doc" ,gtk-doc) ("iso-codes" ,iso-codes) ("mobile-broadband-provider-info" ,mobile-broadband-provider-info) ("network-manager" ,network-manager))) - (synopsis "Network Manager's Applet Library") - (description "Libnma provides applet library for network-manager -application. It was initially part of network-manager-applet and -now has become a separate project.") + (synopsis "Network Manager's applet library") + (description "Libnma is an applet library for Network Manager. It was +initially part of network-manager-applet and has now become a separate +project.") (home-page "https://gitlab.gnome.org/GNOME/libnma") - (license license:gpl2))) + + ;; Some files carry the "GPL-2.0+" SPDX identifier while others say + ;; "LGPL-2.1+". + (license license:gpl2+))) (define-public gnome-menus (package --=-=-=--