guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

02/12: gnu: libupnp: Update to 1.8.6.


From: guix-commits
Subject: 02/12: gnu: libupnp: Update to 1.8.6.
Date: Sat, 2 May 2020 06:06:06 -0400 (EDT)

mothacehe pushed a commit to branch master
in repository guix.

commit 1d2366202ad115cc7c48ac15c83ef994a2d8304c
Author: Jan Wielkiewicz <address@hidden>
AuthorDate: Sat May 2 03:14:41 2020 +0200

    gnu: libupnp: Update to 1.8.6.
    
    * gnu/packages/upnp.scm (libupnp): Update to 1.8.6.
    [source]: Use git-fetch on the new official repository.
    [native-inputs]: Add autoconf, automake, libtool and pkg-config.
    
    Signed-off-by: Mathieu Othacehe <address@hidden>
---
 gnu/packages/upnp.scm | 18 +++++++++++++-----
 1 file changed, 13 insertions(+), 5 deletions(-)

diff --git a/gnu/packages/upnp.scm b/gnu/packages/upnp.scm
index 8f3c887..768df4a 100644
--- a/gnu/packages/upnp.scm
+++ b/gnu/packages/upnp.scm
@@ -4,6 +4,7 @@
 ;;; Copyright © 2016, 2017, 2018, 2020 Tobias Geerinckx-Rice <address@hidden>
 ;;; Copyright © 2018 Theodoros Foradis <address@hidden>
 ;;; Copyright © 2019 Jens Mølgaard <address@hidden>
+;;; Copyright © 2020 Jan Wielkiewicz <address@hidden>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -28,6 +29,7 @@
   #:use-module (gnu packages photo)
   #:use-module (gnu packages image)
   #:use-module (gnu packages mp3)
+  #:use-module (gnu packages pkg-config)
   #:use-module (gnu packages xiph)
   #:use-module (gnu packages sqlite)
   #:use-module (gnu packages python)
@@ -92,15 +94,21 @@ over IRC, instant messaging, network games, and most server 
software.")
 (define-public libupnp
   (package
     (name "libupnp")
-    (version "1.6.25")
+    (version "1.8.6")
     (source
      (origin
-      (method url-fetch)
-      (uri (string-append "mirror://sourceforge/pupnp/pupnp/libUPnP%20"
-                          version "/" name "-" version ".tar.bz2"))
+      (method git-fetch)
+      (uri (git-reference
+            (url "https://github.com/pupnp/pupnp.git";)
+            (commit (string-append "release-" version))))
       (sha256
        (base32
-        "0hzsd7rvfa87b4hxg9yj4xhdfxx9sp09r9sqdl3mqhvmcyw018y5"))))
+        "1jlb6qh47513h2simy0zxia5q61w1c31mnwmjqpr2nf832lmnpk4"))))
+       (native-inputs
+        `(("autoconf" ,autoconf)
+          ("automake" ,automake)
+          ("libtool" ,libtool)
+          ("pkg-config" ,pkg-config)))
     (build-system gnu-build-system)
     (arguments
      ;; The tests require a network device capable of multicasting which is



reply via email to

[Prev in Thread] Current Thread [Next in Thread]