guix-commits
[Top][All Lists]
Advanced

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

29/34: gnu: boost: Update to 1.69.0.


From: guix-commits
Subject: 29/34: gnu: boost: Update to 1.69.0.
Date: Wed, 12 Dec 2018 15:56:50 -0500 (EST)

mbakke pushed a commit to branch staging
in repository guix.

commit b8e43e61a3aef8236985b7602bce6eb67bc7fa7c
Author: Marius Bakke <address@hidden>
Date:   Wed Dec 12 10:20:10 2018 +0100

    gnu: boost: Update to 1.69.0.
    
    * gnu/packages/boost.scm (boost): Update to 1.69.0.
    [source](uri): Add mirror.
---
 gnu/packages/boost.scm | 15 +++++++++------
 1 file changed, 9 insertions(+), 6 deletions(-)

diff --git a/gnu/packages/boost.scm b/gnu/packages/boost.scm
index f5c2c58..2fab703 100644
--- a/gnu/packages/boost.scm
+++ b/gnu/packages/boost.scm
@@ -45,16 +45,19 @@
 (define-public boost
   (package
     (name "boost")
-    (version "1.68.0")
+    (version "1.69.0")
     (source (origin
               (method url-fetch)
-              (uri (string-append
-                    "mirror://sourceforge/boost/boost/" version "/boost_"
-                    (string-map (lambda (x) (if (eq? x #\.) #\_ x)) version)
-                    ".tar.bz2"))
+              (uri (let ((version-with-underscores
+                          (string-map (lambda (x) (if (eq? x #\.) #\_ x)) 
version)))
+                     (list (string-append "mirror://sourceforge/boost/boost/" 
version
+                                          "/boost_" version-with-underscores 
".tar.bz2")
+                           (string-append 
"https://dl.bintray.com/boostorg/release/";
+                                          version "/source/boost_"
+                                          version-with-underscores 
".tar.bz2"))))
               (sha256
                (base32
-                "1dyqsr9yb01y0nnjdq9b8q5s2kvhxbayk34832k5cpzn7jy30qbz"))
+                "01j4n142dz20lcgqji8d8hspp04p1nv7m8i6dz8w5lchfdhx8clg"))
               (patches (search-patches "boost-fix-icu-build.patch"))))
     (build-system gnu-build-system)
     (inputs `(("icu4c" ,icu4c)



reply via email to

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