From mboxrd@z Thu Jan 1 00:00:00 1970 From: Eric Bavier Subject: Re: [PATCH] gnu: Add threadingbuildingblocks. Date: Thu, 8 Sep 2016 23:11:53 -0500 Message-ID: <20160908231153.70b8ef81@openmailbox.org> References: <20160908230706.23925-1-ng0@we.make.ritual.n0.is> Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:38960) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1biDAp-0001vI-1J for guix-devel@gnu.org; Fri, 09 Sep 2016 00:12:20 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1biDAk-0007Sb-2y for guix-devel@gnu.org; Fri, 09 Sep 2016 00:12:17 -0400 Received: from smtp26.openmailbox.org ([62.4.1.60]:60049 helo=smtp11.openmailbox.org) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1biDAg-0007SN-UV for guix-devel@gnu.org; Fri, 09 Sep 2016 00:12:14 -0400 In-Reply-To: <20160908230706.23925-1-ng0@we.make.ritual.n0.is> 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: ng0 Cc: guix-devel@gnu.org On Thu, 8 Sep 2016 23:07:06 +0000 ng0 wrote: > * gnu/packages/parallel.scm (threadingbuildingblocks): New variable. > --- > gnu/packages/parallel.scm | 33 +++++++++++++++++++++++++++++++++ > 1 file changed, 33 insertions(+) >=20 > diff --git a/gnu/packages/parallel.scm b/gnu/packages/parallel.scm > index 3bb078e..223b318 100644 > --- a/gnu/packages/parallel.scm > +++ b/gnu/packages/parallel.scm > @@ -6,6 +6,7 @@ > ;;; Copyright =C2=A9 2016 Andreas Enge > ;;; Copyright =C2=A9 2016 Ricardo Wurmus > ;;; Copyright =C2=A9 2016 Ben Woodcroft > +;;; Copyright =C2=A9 2016 ng0 > ;;; > ;;; This file is part of GNU Guix. > ;;; > @@ -175,3 +176,35 @@ to SLURM. Using DRMAA, grid applications builders, = portal developers and ISVs > can use the same high-level API to link their software with different > cluster/resource management systems.") > (license license:gpl3+))) > + > +(define-public threadingbuildingblocks > + (package > + (name "threadingbuildingblocks") > + (version "2017_20160722oss") > + (source (origin > + (method url-fetch) > + (uri (string-append "https://www.threadingbuildingblocks.o= rg/sites/" > + "default/files/software_releases/sourc= e/" > + "tbb" version "_src.tgz")) [...] We already have a "tbb@4.3.2" package in gnu/packages/tbb.scm. How is this package different? `~Eric