unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
* [bug#33954] [PATCH 0/3] vlc: Add chromecast support.
@ 2019-01-02 18:38 Mathieu Othacehe
  2019-01-02 18:40 ` [bug#33954] [PATCH 1/3] gnu: Add libmicrodns Mathieu Othacehe
  2019-01-03 19:35 ` [bug#33954] [PATCH 0/3] vlc: Add chromecast support Leo Famulari
  0 siblings, 2 replies; 6+ messages in thread
From: Mathieu Othacehe @ 2019-01-02 18:38 UTC (permalink / raw)
  To: 33954

Hi Guix,

This serie adds support for Google Chromecast to VLC.

Mathieu

Mathieu Othacehe (3):
  gnu: Add libmicrodns.
  gnu: vlc: Add libmicrodns to inputs.
  gnu: vlc: Add protobuf to inputs.

 gnu/packages/dns.scm   | 28 ++++++++++++++++++++++++++++
 gnu/packages/video.scm |  4 ++++
 2 files changed, 32 insertions(+)

-- 
2.20.1

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

* [bug#33954] [PATCH 1/3] gnu: Add libmicrodns.
  2019-01-02 18:38 [bug#33954] [PATCH 0/3] vlc: Add chromecast support Mathieu Othacehe
@ 2019-01-02 18:40 ` Mathieu Othacehe
  2019-01-02 18:40   ` [bug#33954] [PATCH 2/3] gnu: vlc: Add libmicrodns to inputs Mathieu Othacehe
  2019-01-02 18:40   ` [bug#33954] [PATCH 3/3] gnu: vlc: Add protobuf " Mathieu Othacehe
  2019-01-03 19:35 ` [bug#33954] [PATCH 0/3] vlc: Add chromecast support Leo Famulari
  1 sibling, 2 replies; 6+ messages in thread
From: Mathieu Othacehe @ 2019-01-02 18:40 UTC (permalink / raw)
  To: 33954

* gnu/packages/dns.scm (libmicrodns): New package.
---
 gnu/packages/dns.scm | 28 ++++++++++++++++++++++++++++
 1 file changed, 28 insertions(+)

diff --git a/gnu/packages/dns.scm b/gnu/packages/dns.scm
index c7b630364..2ebc3d8da 100644
--- a/gnu/packages/dns.scm
+++ b/gnu/packages/dns.scm
@@ -10,6 +10,7 @@
 ;;; Copyright © 2017 Vasile Dumitrascu <va511e@yahoo.com>
 ;;; Copyright © 2017 Gregor Giesen <giesen@zaehlwerk.net>
 ;;; Copyright © 2018 Oleg Pykhalov <go.wigust@gmail.com>
+;;; Copyright © 2019 Mathieu Othacehe <m.othacehe@gmail.com>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -781,3 +782,30 @@ attempts the update when it has changed.")
       "@command{hnsd} is a @dfn{host name resolver} for the Handshake Naming
 System (HNS) peer-to-peer network.")
      (license license:expat))))
+
+(define-public libmicrodns
+  (package
+    (name "libmicrodns")
+    (version "0.0.10")
+    (source (origin
+              (method git-fetch)
+              (uri (git-reference
+                    (url "https://github.com/videolabs/libmicrodns")
+                    (commit version)))
+              (file-name (git-file-name name version))
+              (sha256
+               (base32
+                "1xvl9k49ng35wbsqmnjnyqvkyjf8dcq2ywsq3jp3wh0rgmxhq2fh"))))
+    (build-system gnu-build-system)
+    (native-inputs
+     `(("pkg-config" ,pkg-config)
+       ("autoconf" ,autoconf)
+       ("automake" ,automake)
+       ("libtool" ,libtool)))
+    (home-page "https://github.com/videolabs/libmicrodns")
+    (synopsis "Minimal mDNS resolver library")
+    (description "@code{libmicrodns} provides a minimal implementation of a
+mDNS resolver as well as an announcer.  mDNS (Multicast Domain Name System) is
+a zero-config service that allows one to resolve host names to IP addresses in
+local networks.")
+    (license license:lgpl2.1)))
-- 
2.20.1

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

* [bug#33954] [PATCH 2/3] gnu: vlc: Add libmicrodns to inputs.
  2019-01-02 18:40 ` [bug#33954] [PATCH 1/3] gnu: Add libmicrodns Mathieu Othacehe
@ 2019-01-02 18:40   ` Mathieu Othacehe
  2019-01-02 18:40   ` [bug#33954] [PATCH 3/3] gnu: vlc: Add protobuf " Mathieu Othacehe
  1 sibling, 0 replies; 6+ messages in thread
From: Mathieu Othacehe @ 2019-01-02 18:40 UTC (permalink / raw)
  To: 33954

* gnu/packages/video.scm (vlc)[inputs]: Add libmicrodns.
---
 gnu/packages/video.scm | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/gnu/packages/video.scm b/gnu/packages/video.scm
index 2ef92ae63..6cc8b7729 100644
--- a/gnu/packages/video.scm
+++ b/gnu/packages/video.scm
@@ -83,6 +83,7 @@
   #:use-module (gnu packages curl)
   #:use-module (gnu packages databases)
   #:use-module (gnu packages dejagnu)
+  #:use-module (gnu packages dns)
   #:use-module (gnu packages docbook)
   #:use-module (gnu packages documentation)
   #:use-module (gnu packages elf)
@@ -945,6 +946,7 @@ videoformats depend on the configuration flags of ffmpeg.")
        ("libkate" ,libkate)
        ("libmad" ,libmad)
        ("libmatroska" ,libmatroska)
+       ("libmicrodns" ,libmicrodns)
        ("libmodplug" ,libmodplug)
        ("libmpeg2" ,libmpeg2)
        ("libogg" ,libogg)
-- 
2.20.1

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

* [bug#33954] [PATCH 3/3] gnu: vlc: Add protobuf to inputs.
  2019-01-02 18:40 ` [bug#33954] [PATCH 1/3] gnu: Add libmicrodns Mathieu Othacehe
  2019-01-02 18:40   ` [bug#33954] [PATCH 2/3] gnu: vlc: Add libmicrodns to inputs Mathieu Othacehe
@ 2019-01-02 18:40   ` Mathieu Othacehe
  1 sibling, 0 replies; 6+ messages in thread
From: Mathieu Othacehe @ 2019-01-02 18:40 UTC (permalink / raw)
  To: 33954

* gnu/packages/video.scm (vlc)[inputs]: Add protobuf.
---
 gnu/packages/video.scm | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/gnu/packages/video.scm b/gnu/packages/video.scm
index 6cc8b7729..2b2da4396 100644
--- a/gnu/packages/video.scm
+++ b/gnu/packages/video.scm
@@ -118,6 +118,7 @@
   #:use-module (gnu packages perl)
   #:use-module (gnu packages pkg-config)
   #:use-module (gnu packages popt)
+  #:use-module (gnu packages protobuf)
   #:use-module (gnu packages pulseaudio)
   #:use-module (gnu packages python)
   #:use-module (gnu packages python-crypto)
@@ -974,6 +975,7 @@ videoformats depend on the configuration flags of ffmpeg.")
        ("opus" ,opus)
        ("perl" ,perl)
        ("pulseaudio" ,pulseaudio)
+       ("protobuf" ,protobuf)
        ("python" ,python-wrapper)
        ("qtbase" ,qtbase)
        ("qtsvg" ,qtsvg)
-- 
2.20.1

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

* [bug#33954] [PATCH 0/3] vlc: Add chromecast support.
  2019-01-02 18:38 [bug#33954] [PATCH 0/3] vlc: Add chromecast support Mathieu Othacehe
  2019-01-02 18:40 ` [bug#33954] [PATCH 1/3] gnu: Add libmicrodns Mathieu Othacehe
@ 2019-01-03 19:35 ` Leo Famulari
  2019-01-03 19:39   ` bug#33954: " Mathieu Othacehe
  1 sibling, 1 reply; 6+ messages in thread
From: Leo Famulari @ 2019-01-03 19:35 UTC (permalink / raw)
  To: Mathieu Othacehe; +Cc: 33954

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

On Wed, Jan 02, 2019 at 07:38:13PM +0100, Mathieu Othacehe wrote:
> Hi Guix,
> 
> This serie adds support for Google Chromecast to VLC.

Cool!

> Mathieu
> 
> Mathieu Othacehe (3):
>   gnu: Add libmicrodns.
>   gnu: vlc: Add libmicrodns to inputs.
>   gnu: vlc: Add protobuf to inputs.

Thanks, LGTM!

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]

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

* bug#33954: [PATCH 0/3] vlc: Add chromecast support.
  2019-01-03 19:35 ` [bug#33954] [PATCH 0/3] vlc: Add chromecast support Leo Famulari
@ 2019-01-03 19:39   ` Mathieu Othacehe
  0 siblings, 0 replies; 6+ messages in thread
From: Mathieu Othacehe @ 2019-01-03 19:39 UTC (permalink / raw)
  To: Leo Famulari; +Cc: 33954-done


Hey Leo,

> Thanks, LGTM!

Pushed, thanks for reviewing!

Mathieu

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

end of thread, other threads:[~2019-01-03 19:40 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-01-02 18:38 [bug#33954] [PATCH 0/3] vlc: Add chromecast support Mathieu Othacehe
2019-01-02 18:40 ` [bug#33954] [PATCH 1/3] gnu: Add libmicrodns Mathieu Othacehe
2019-01-02 18:40   ` [bug#33954] [PATCH 2/3] gnu: vlc: Add libmicrodns to inputs Mathieu Othacehe
2019-01-02 18:40   ` [bug#33954] [PATCH 3/3] gnu: vlc: Add protobuf " Mathieu Othacehe
2019-01-03 19:35 ` [bug#33954] [PATCH 0/3] vlc: Add chromecast support Leo Famulari
2019-01-03 19:39   ` bug#33954: " Mathieu Othacehe

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