GNU bug report logs - #33954
[PATCH 0/3] vlc: Add chromecast support.

Previous Next

Package: guix-patches;

Reported by: Mathieu Othacehe <m.othacehe <at> gmail.com>

Date: Wed, 2 Jan 2019 18:39:02 UTC

Severity: normal

Tags: patch

Done: Mathieu Othacehe <m.othacehe <at> gmail.com>

Bug is archived. No further changes may be made.

To add a comment to this bug, you must first unarchive it, by sending
a message to control AT debbugs.gnu.org, with unarchive 33954 in the body.
You can then email your comments to 33954 AT debbugs.gnu.org in the normal way.

Toggle the display of automated, internal messages from the tracker.

View this report as an mbox folder, status mbox, maintainer mbox


Report forwarded to guix-patches <at> gnu.org:
bug#33954; Package guix-patches. (Wed, 02 Jan 2019 18:39:02 GMT) Full text and rfc822 format available.

Acknowledgement sent to Mathieu Othacehe <m.othacehe <at> gmail.com>:
New bug report received and forwarded. Copy sent to guix-patches <at> gnu.org. (Wed, 02 Jan 2019 18:39:02 GMT) Full text and rfc822 format available.

Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):

From: Mathieu Othacehe <m.othacehe <at> gmail.com>
To: guix-patches <at> gnu.org
Cc: Mathieu Othacehe <m.othacehe <at> gmail.com>
Subject: [PATCH 0/3] vlc: Add chromecast support.
Date: Wed,  2 Jan 2019 19:38:13 +0100
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





Information forwarded to guix-patches <at> gnu.org:
bug#33954; Package guix-patches. (Wed, 02 Jan 2019 18:41:02 GMT) Full text and rfc822 format available.

Message #8 received at 33954 <at> debbugs.gnu.org (full text, mbox):

From: Mathieu Othacehe <m.othacehe <at> gmail.com>
To: 33954 <at> debbugs.gnu.org
Cc: Mathieu Othacehe <m.othacehe <at> gmail.com>
Subject: [PATCH 2/3] gnu: vlc: Add libmicrodns to inputs.
Date: Wed,  2 Jan 2019 19:40:15 +0100
* 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





Information forwarded to guix-patches <at> gnu.org:
bug#33954; Package guix-patches. (Wed, 02 Jan 2019 18:41:02 GMT) Full text and rfc822 format available.

Message #11 received at 33954 <at> debbugs.gnu.org (full text, mbox):

From: Mathieu Othacehe <m.othacehe <at> gmail.com>
To: 33954 <at> debbugs.gnu.org
Cc: Mathieu Othacehe <m.othacehe <at> gmail.com>
Subject: [PATCH 1/3] gnu: Add libmicrodns.
Date: Wed,  2 Jan 2019 19:40:14 +0100
* 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 <at> yahoo.com>
 ;;; Copyright © 2017 Gregor Giesen <giesen <at> zaehlwerk.net>
 ;;; Copyright © 2018 Oleg Pykhalov <go.wigust <at> gmail.com>
+;;; Copyright © 2019 Mathieu Othacehe <m.othacehe <at> 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





Information forwarded to guix-patches <at> gnu.org:
bug#33954; Package guix-patches. (Wed, 02 Jan 2019 18:41:03 GMT) Full text and rfc822 format available.

Message #14 received at 33954 <at> debbugs.gnu.org (full text, mbox):

From: Mathieu Othacehe <m.othacehe <at> gmail.com>
To: 33954 <at> debbugs.gnu.org
Cc: Mathieu Othacehe <m.othacehe <at> gmail.com>
Subject: [PATCH 3/3] gnu: vlc: Add protobuf to inputs.
Date: Wed,  2 Jan 2019 19:40:16 +0100
* 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





Information forwarded to guix-patches <at> gnu.org:
bug#33954; Package guix-patches. (Thu, 03 Jan 2019 19:36:02 GMT) Full text and rfc822 format available.

Message #17 received at 33954 <at> debbugs.gnu.org (full text, mbox):

From: Leo Famulari <leo <at> famulari.name>
To: Mathieu Othacehe <m.othacehe <at> gmail.com>
Cc: 33954 <at> debbugs.gnu.org
Subject: Re: [bug#33954] [PATCH 0/3] vlc: Add chromecast support.
Date: Thu, 3 Jan 2019 14:35:03 -0500
[Message part 1 (text/plain, inline)]
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!
[signature.asc (application/pgp-signature, inline)]

Reply sent to Mathieu Othacehe <m.othacehe <at> gmail.com>:
You have taken responsibility. (Thu, 03 Jan 2019 19:40:01 GMT) Full text and rfc822 format available.

Notification sent to Mathieu Othacehe <m.othacehe <at> gmail.com>:
bug acknowledged by developer. (Thu, 03 Jan 2019 19:40:02 GMT) Full text and rfc822 format available.

Message #22 received at 33954-done <at> debbugs.gnu.org (full text, mbox):

From: Mathieu Othacehe <m.othacehe <at> gmail.com>
To: Leo Famulari <leo <at> famulari.name>
Cc: 33954-done <at> debbugs.gnu.org
Subject: Re: [bug#33954] [PATCH 0/3] vlc: Add chromecast support.
Date: Thu, 03 Jan 2019 20:39:28 +0100
Hey Leo,

> Thanks, LGTM!

Pushed, thanks for reviewing!

Mathieu




bug archived. Request was from Debbugs Internal Request <help-debbugs <at> gnu.org> to internal_control <at> debbugs.gnu.org. (Fri, 01 Feb 2019 12:24:06 GMT) Full text and rfc822 format available.

This bug report was last modified 5 years and 85 days ago.

Previous Next


GNU bug tracking system
Copyright (C) 1999 Darren O. Benham, 1997,2003 nCipher Corporation Ltd, 1994-97 Ian Jackson.