guix-commits
[Top][All Lists]
Advanced

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

06/09: gnu: tbb: Update to 2019_U5.


From: guix-commits
Subject: 06/09: gnu: tbb: Update to 2019_U5.
Date: Thu, 21 Mar 2019 14:25:49 -0400 (EDT)

mbakke pushed a commit to branch master
in repository guix.

commit 941699b34337c7a6287cfaf0cf07f522afdb8422
Author: Marius Bakke <address@hidden>
Date:   Thu Mar 21 18:36:27 2019 +0100

    gnu: tbb: Update to 2019_U5.
    
    * gnu/packages/tbb.scm (tbb): Update to 2019_U5.
    [source]: Use GIT-FETCH because releases are no longer available.
---
 gnu/packages/tbb.scm | 15 +++++++--------
 1 file changed, 7 insertions(+), 8 deletions(-)

diff --git a/gnu/packages/tbb.scm b/gnu/packages/tbb.scm
index 788eabf..370c0f4 100644
--- a/gnu/packages/tbb.scm
+++ b/gnu/packages/tbb.scm
@@ -20,7 +20,7 @@
 (define-module (gnu packages tbb)
   #:use-module (guix packages)
   #:use-module (guix licenses)
-  #:use-module (guix download)
+  #:use-module (guix git-download)
   #:use-module (guix utils)
   #:use-module (guix build-system gnu)
   #:use-module (gnu packages))
@@ -28,16 +28,15 @@
 (define-public tbb
   (package
     (name "tbb")
-    (version "2017_20160916")
+    (version "2019_U5")
     (source (origin
-              (method url-fetch)
-              (uri (string-append
-                    "https://www.threadingbuildingblocks.org/sites/default";
-                    "/files/software_releases/source/"
-                    "tbb" version "oss_src.tgz"))
+              (method git-fetch)
+              (uri (git-reference
+                    (url "https://github.com/01org/tbb";)
+                    (commit version)))
               (sha256
                (base32
-                "1i3zy87gyzw22fvajm039w6g822qzqn7jbmznc8y8c57qpqnf330"))
+                "0390da1iya2mvn3ribjb1f8yvzsqsf5b16wn6dqbjxcz0crmwlzk"))
               (modules '((guix build utils)))
               (snippet
                '(begin



reply via email to

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