unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
* [bug#38876] gnu: Add libmediaart.
@ 2020-01-02 19:38 Raghav Gururajan
  2020-01-02 19:58 ` [bug#38876] gnu: Add libmediaart. V2 Raghav Gururajan
  0 siblings, 1 reply; 3+ messages in thread
From: Raghav Gururajan @ 2020-01-02 19:38 UTC (permalink / raw)
  To: 38876

[-- Attachment #1: Type: text/plain, Size: 78 bytes --]

Hello Guix!

Please find the attached patch to add libmediaart.

Regards,
RG.

[-- Attachment #2: libmediaart.patch --]
[-- Type: text/x-patch, Size: 1806 bytes --]

From 4806e60aab8ea83d126639003106a06575f96159 Mon Sep 17 00:00:00 2001
From: Raghav Gururajan <raghavgururajan@disroot.org>
Date: Thu, 2 Jan 2020 14:34:03 -0500
Subject: [PATCH] gnu: Add libmediaart.

* gnu/packages/gnome.scm (libmediaart): New variable.
---
 gnu/packages/gnome.scm | 27 +++++++++++++++++++++++++++
 1 file changed, 27 insertions(+)

diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm
index 036547f471..2be796db4d 100644
--- a/gnu/packages/gnome.scm
+++ b/gnu/packages/gnome.scm
@@ -246,6 +246,33 @@ Desktop.  It is designed to be as simple as possible and has some unique
 features to enable users to create their discs easily and quickly.")
     (license license:gpl2+)))
 
+(define-public libmediaart
+  (package
+    (name "libmediaart")
+    (version "1.9.4")
+    (source (origin
+              (method url-fetch)
+              (uri (string-append "mirror://gnome/sources/" name "/"
+                                  (version-major+minor version) "/"
+                                  name "-" version ".tar.xz"))
+              (sha256
+               (base32
+                "0gc10imyabk57ar54m0qzms0x9dnmkymhkzyk8w1aj3y4lby0yx5"))))
+    (build-system gnu-build-system)
+    (native-inputs
+     `(("gdk-pixbuf" ,gdk-pixbuf)
+       ("gettext" ,gettext-minimal)
+       ("glib:bin" ,glib "bin")
+       ("gobject-introspection" ,gobject-introspection)
+       ("gtk+:doc", gtk+ "doc")
+       ("pkg-config" ,pkg-config)
+       ("vala" ,vala)))
+    (synopsis "Media Art library for GNOME desktop")
+    (description "Library tasked with managing, extracting and
+handling media art caches.")
+    (home-page "https://gitlab.gnome.org/GNOME/libmediaart")
+    (license license:gpl2+)))
+
 (define-public gnome-menus
   (package
     (name "gnome-menus")
-- 
2.24.1


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* [bug#38876] gnu: Add libmediaart. V2
  2020-01-02 19:38 [bug#38876] gnu: Add libmediaart Raghav Gururajan
@ 2020-01-02 19:58 ` Raghav Gururajan
  2020-01-09 22:32   ` bug#38876: " Ludovic Courtès
  0 siblings, 1 reply; 3+ messages in thread
From: Raghav Gururajan @ 2020-01-02 19:58 UTC (permalink / raw)
  To: 38876

[-- Attachment #1: Type: text/plain, Size: 107 bytes --]

Hello Guix!

Please find the revised patch for adding libmediaart, attached with
this email.

Regards,
RG.

[-- Attachment #2: libmediaart.patch --]
[-- Type: text/x-patch, Size: 1822 bytes --]

From c58cd6327d975cdb95aed9a6b3d7c0d660c565d2 Mon Sep 17 00:00:00 2001
From: Raghav Gururajan <raghavgururajan@disroot.org>
Date: Thu, 2 Jan 2020 14:53:01 -0500
Subject: [PATCH] gnu: Add libmediaart.

* gnu/packages/gnome.scm (libmediaart): New variable.
---
 gnu/packages/gnome.scm | 28 ++++++++++++++++++++++++++++
 1 file changed, 28 insertions(+)

diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm
index 036547f471..1e713d4fe1 100644
--- a/gnu/packages/gnome.scm
+++ b/gnu/packages/gnome.scm
@@ -246,6 +246,34 @@ Desktop.  It is designed to be as simple as possible and has some unique
 features to enable users to create their discs easily and quickly.")
     (license license:gpl2+)))
 
+(define-public libmediaart
+  (package
+    (name "libmediaart")
+    (version "1.9.4")
+    (source (origin
+              (method url-fetch)
+              (uri (string-append "mirror://gnome/sources/" name "/"
+                                  (version-major+minor version) "/"
+                                  name "-" version ".tar.xz"))
+              (sha256
+               (base32
+                "0gc10imyabk57ar54m0qzms0x9dnmkymhkzyk8w1aj3y4lby0yx5"))))
+    (build-system gnu-build-system)
+    (native-inputs
+     `(("glib:bin" ,glib "bin")
+       ("pkg-config" ,pkg-config)))
+    (inputs
+     `(("gdk-pixbuf" ,gdk-pixbuf)
+       ("gettext" ,gettext-minimal)
+       ("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.")
+    (home-page "https://gitlab.gnome.org/GNOME/libmediaart")
+    (license license:gpl2+)))
+
 (define-public gnome-menus
   (package
     (name "gnome-menus")
-- 
2.24.1


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* bug#38876: gnu: Add libmediaart. V2
  2020-01-02 19:58 ` [bug#38876] gnu: Add libmediaart. V2 Raghav Gururajan
@ 2020-01-09 22:32   ` Ludovic Courtès
  0 siblings, 0 replies; 3+ messages in thread
From: Ludovic Courtès @ 2020-01-09 22:32 UTC (permalink / raw)
  To: Raghav Gururajan; +Cc: 38876-done

[-- Attachment #1: Type: text/plain, Size: 608 bytes --]

Hi!

Raghav Gururajan <raghavgururajan@disroot.org> skribis:

> From c58cd6327d975cdb95aed9a6b3d7c0d660c565d2 Mon Sep 17 00:00:00 2001
> From: Raghav Gururajan <raghavgururajan@disroot.org>
> 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
<https://gitlab.gnome.org/GNOME/libmediaart/blob/master/docs/reference/libmediaart/libmediaart-docs.xml>,
and from what I can see in the source file headers, it’s LGPLv2.1+.

Thanks,
Ludo’.


[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: Type: text/x-patch, Size: 885 bytes --]

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

^ permalink raw reply related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2020-01-09 22:33 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-01-02 19:38 [bug#38876] gnu: Add libmediaart Raghav Gururajan
2020-01-02 19:58 ` [bug#38876] gnu: Add libmediaart. V2 Raghav Gururajan
2020-01-09 22:32   ` bug#38876: " Ludovic Courtès

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/guix.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).