unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
* [bug#38898] gnu: Add gupnp-av.
@ 2020-01-03 16:25 Raghav Gururajan
  2020-01-13  1:20 ` [bug#38898] v2 Raghav Gururajan
  0 siblings, 1 reply; 3+ messages in thread
From: Raghav Gururajan @ 2020-01-03 16:25 UTC (permalink / raw)
  To: 38898


[-- Attachment #1.1: Type: text/plain, Size: 126 bytes --]

Hello Guix!

Please find the attached patch to add gupnp-av.

NOTE: This patch depends on patch #38896.

Regards,
RG.

[-- Attachment #1.2: gupnp-av.patch --]
[-- Type: text/x-patch, Size: 1805 bytes --]

From 0f5664eac9dd7e4b159fa35d415986261c6913fe Mon Sep 17 00:00:00 2001
From: Raghav Gururajan <raghavgururajan@disroot.org>
Date: Fri, 3 Jan 2020 11:22:37 -0500
Subject: [PATCH] gnu: Add gupnp-av.

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

diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm
index 7d10bb9bac..a4f3a32d90 100644
--- a/gnu/packages/gnome.scm
+++ b/gnu/packages/gnome.scm
@@ -306,6 +306,35 @@ UPnP devices and control points, written in C using GObject and libsoup.")
    (home-page "https://gitlab.gnome.org/GNOME/gupnp")
    (license license:gpl2)))
 
+(define-public gupnp-av
+  (package
+   (name "gupnp-av")
+   (version "0.12.11")
+   (source (origin
+            (method url-fetch)
+            (uri (string-append "mirror://gnome/sources/" name "/"
+                                (version-major+minor version) "/"
+                                name "-" version ".tar.xz"))
+            (sha256
+             (base32
+              "1p3grslwqm9bc8rmpn4l48d7v9s84nina4r9xbd932dbj8acz7b8"))))
+   (build-system gnu-build-system)
+   (native-inputs
+    `(("gettext" ,gettext-minimal)
+      ("glib:bin" ,glib "bin")
+      ("pkg-config" ,pkg-config)))
+   (inputs
+    `(("gtk-doc" ,gtk-doc)
+      ("gobject-introspection" ,gobject-introspection)
+      ("gtk+" ,gtk+)
+      ("gupnp" ,gupnp)
+      ("libxml" ,libxml2)))
+   (synopsis "GUPnP A/V for GNOME desktop")
+   (description "GUPnP A/V is a small utility library that aims to ease
+the handling and implementation of UPnP A/V profiles.")
+   (home-page "https://gitlab.gnome.org/GNOME/gupnp-av")
+   (license license:gpl2)))
+
 (define-public libmediaart
   (package
     (name "libmediaart")
-- 
2.24.1


[-- Attachment #2: This is a digitally signed message part --]
[-- Type: application/pgp-signature, Size: 488 bytes --]

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

* [bug#38898] v2
  2020-01-03 16:25 [bug#38898] gnu: Add gupnp-av Raghav Gururajan
@ 2020-01-13  1:20 ` Raghav Gururajan
  2020-01-13  8:00   ` bug#38898: v2 Danny Milosavljevic
  0 siblings, 1 reply; 3+ messages in thread
From: Raghav Gururajan @ 2020-01-13  1:20 UTC (permalink / raw)
  To: 38898

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

v2

[-- Attachment #2: gupnp-av.patch --]
[-- Type: application/octet-stream, Size: 1793 bytes --]

From c162fff4f25dbfdf9fbdb17ef328f27cb1fe83d9 Mon Sep 17 00:00:00 2001
From: Raghav Gururajan <raghavgururajan@disroot.org>
Date: Sun, 12 Jan 2020 20:18:11 -0500
Subject: [PATCH] gnu: Add gupnp-av.

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

diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm
index 5b2061c1be..519976e2af 100644
--- a/gnu/packages/gnome.scm
+++ b/gnu/packages/gnome.scm
@@ -245,6 +245,35 @@
 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 gupnp-av
+  (package
+   (name "gupnp-av")
+   (version "0.12.11")
+   (source (origin
+            (method url-fetch)
+            (uri (string-append "mirror://gnome/sources/" name "/"
+                                (version-major+minor version) "/"
+                                name "-" version ".tar.xz"))
+            (sha256
+             (base32
+              "1p3grslwqm9bc8rmpn4l48d7v9s84nina4r9xbd932dbj8acz7b8"))))
+   (build-system gnu-build-system)
+   (native-inputs
+    `(("gettext" ,gettext-minimal)
+      ("glib:bin" ,glib "bin")
+      ("gobject-introspection" ,gobject-introspection)
+      ("libxml" ,libxml2)
+      ("pkg-config" ,pkg-config)))
+   (inputs
+    `(("gtk-doc" ,gtk-doc)
+      ("gtk+" ,gtk+)
+      ("gupnp" ,gupnp)))
+   (synopsis "GUPnP A/V for GNOME desktop")
+   (description "GUPnP A/V is a small utility library that aims to ease
+the handling and implementation of UPnP A/V profiles.")
+   (home-page "https://gitlab.gnome.org/GNOME/gupnp-av")
+   (license license:lgpl2+)))
  
 (define-public gupnp
   (package
-- 
2.24.1


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

* bug#38898: v2
  2020-01-13  1:20 ` [bug#38898] v2 Raghav Gururajan
@ 2020-01-13  8:00   ` Danny Milosavljevic
  0 siblings, 0 replies; 3+ messages in thread
From: Danny Milosavljevic @ 2020-01-13  8:00 UTC (permalink / raw)
  To: Raghav Gururajan; +Cc: 38898-done

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

Pushed to guix master as commit 1b4cb6288a141dba09c4148d5cf215cf7e2be43f
after moving gtk-doc to native-inputs.


[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 488 bytes --]

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

end of thread, other threads:[~2020-01-13  8:01 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-01-03 16:25 [bug#38898] gnu: Add gupnp-av Raghav Gururajan
2020-01-13  1:20 ` [bug#38898] v2 Raghav Gururajan
2020-01-13  8:00   ` bug#38898: v2 Danny Milosavljevic

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).