From mboxrd@z Thu Jan 1 00:00:00 1970 From: ng0 Subject: Re: [PATCH] gnu: tbb: Update to 2017_20160722. Date: Sun, 11 Sep 2016 07:40:03 +0000 Message-ID: <87wpiiq3zg.fsf@we.make.ritual.n0.is> References: <20160909095106.6247-1-ng0@we.make.ritual.n0.is> <87vay5kt1q.fsf@we.make.ritual.n0.is> <87a8fhvynx.fsf@we.make.ritual.n0.is> <20160910204810.GE6073@macbook42.flashner.co.il> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:54875) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bizNM-0002NV-Fe for guix-devel@gnu.org; Sun, 11 Sep 2016 03:40:29 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1bizNI-0000Sv-9n for guix-devel@gnu.org; Sun, 11 Sep 2016 03:40:27 -0400 Received: from aibo.runbox.com ([91.220.196.211]:49193) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bizNH-0000SI-Uu for guix-devel@gnu.org; Sun, 11 Sep 2016 03:40:24 -0400 In-Reply-To: <20160910204810.GE6073@macbook42.flashner.co.il> List-Id: "Development of GNU Guix and the GNU System distribution." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org Sender: "Guix-devel" To: Efraim Flashner Cc: guix-devel@gnu.org --=-=-= Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Efraim Flashner writes: > [ Unknown signature status ] > On Fri, Sep 09, 2016 at 04:13:54PM +0000, ng0 wrote: >> Eric Bavier writes: >> >> > On 2016-09-09 10:10, ng0 wrote: >> >> Eric Bavier writes: >> >> >> >>> The 2017 version also brings with it a change in license from GPLv2 >> >>> with >> >>> libstdc++ runtime exception to the ASL2.0. Could you include that in >> >>> this patch too? >> >>> >> >>> Thanks, >> >>> -- >> >>> `~Eric >> >>> >> >> >> >> This is what I used in the mislead "Add tbb" patch I've sent >> >> yesterday. It is now completely ASL2.0, or is it GPL2+ASL2.0? I've read >> >> it yesterday as ASL only. >> > >> > ASL only AFAICT. The www.threadbuildingblocks.org/licensing page says >> > GPLv2, but that may just be outdated. The tarball is ASL, which is what >> > we have to go with. >> > >> > -- >> > `~Eric >> > >> >> Ok. >> > >> From a3708f40b760009c5128bd048d5cba1a63462909 Mon Sep 17 00:00:00 2001 >> From: ng0 >> Date: Thu, 8 Sep 2016 23:04:52 +0000 >> Subject: [PATCH] gnu: tbb: Update to 2017. >> >> * gnu/packages/tbb.scm (tbb): Update to 2017. > > don't forget to mention the license change here. Oh, yes. Thanks. […] --=-=-= Content-Type: text/x-patch; charset=utf-8 Content-Disposition: inline; filename=0001-gnu-tbb-Update-to-2017.patch Content-Transfer-Encoding: 8bit >From a4533698ea5915a56cb7c415481d9ed22d43ff29 Mon Sep 17 00:00:00 2001 From: ng0 Date: Thu, 8 Sep 2016 23:04:52 +0000 Subject: [PATCH] gnu: tbb: Update to 2017. * gnu/packages/tbb.scm (tbb): Update to 2017. [license]: Change to ASL2.0. --- gnu/packages/tbb.scm | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/gnu/packages/tbb.scm b/gnu/packages/tbb.scm index 0e9db72..c19391a 100644 --- a/gnu/packages/tbb.scm +++ b/gnu/packages/tbb.scm @@ -1,5 +1,6 @@ ;;; GNU Guix --- Functional package management for GNU ;;; Copyright © 2015 Ricardo Wurmus +;;; Copyright © 2016 ng0 ;;; ;;; This file is part of GNU Guix. ;;; @@ -27,16 +28,16 @@ (define-public tbb (package (name "tbb") - (version "4.3.2") + (version "2017") (source (origin (method url-fetch) (uri (string-append "https://www.threadingbuildingblocks.org/sites/default" "/files/software_releases/source/" - "tbb43_20141204oss_src.tgz")) + "tbb" version "_20160722oss_src.tgz")) (sha256 (base32 - "0jsczl99jfgj47kj7c4sd4fk7v3rbaiax1ng9ypykz1hh0lrrsws")) + "038rmv3s8si51bjrzwyv8ldqw742fjjdfayi8pmjaq5zw32b8pzx")) (modules '((guix build utils))) (snippet '(substitute* "build/common.inc" @@ -85,6 +86,4 @@ the low-level threading details necessary for optimal multi-core performance. It uses common C++ templates and coding style to eliminate tedious threading implementation work. It provides parallel loop constructs, asynchronous tasks, synchronization primitives, atomic operations, and more.") - ;; GPLv2 with run-time exception: - ;; - (license gpl2))) + (license asl2.0))) -- 2.10.0 --=-=-= Content-Type: text/plain -- ng0 For non-prism friendly talk find me on http://www.psyced.org --=-=-=--