From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:49984) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1g5pfv-0004Vf-AZ for guix-patches@gnu.org; Fri, 28 Sep 2018 06:07:08 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1g5pfq-00051N-Jt for guix-patches@gnu.org; Fri, 28 Sep 2018 06:07:07 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:52948) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1g5pfq-0004zt-Db for guix-patches@gnu.org; Fri, 28 Sep 2018 06:07:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1g5pfq-0008MC-2e for guix-patches@gnu.org; Fri, 28 Sep 2018 06:07:02 -0400 Subject: [bug#32860] [PATCH] gnu: pocl: Update to 1.2. Resent-Message-ID: Received: from eggs.gnu.org ([2001:4830:134:3::10]:49809) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1g5pfQ-0004V0-Kp for guix-patches@gnu.org; Fri, 28 Sep 2018 06:06:37 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1g5pfM-0004P8-2x for guix-patches@gnu.org; Fri, 28 Sep 2018 06:06:36 -0400 Received: from mail-oln040092005092.outbound.protection.outlook.com ([40.92.5.92]:5502 helo=NAM02-SN1-obe.outbound.protection.outlook.com) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1g5pfL-0004Od-QT for guix-patches@gnu.org; Fri, 28 Sep 2018 06:06:32 -0400 From: fis trivial Date: Fri, 28 Sep 2018 10:06:30 +0000 Message-ID: Content-Language: en-US Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: 32860@debbugs.gnu.org * gnu/packages/opencl.scm (pocl): Update to 1.2. --- gnu/packages/opencl.scm | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/gnu/packages/opencl.scm b/gnu/packages/opencl.scm index d32e69643..0df4b2e1c 100644 --- a/gnu/packages/opencl.scm +++ b/gnu/packages/opencl.scm @@ -294,23 +294,23 @@ back-end for the LLVM compiler framework.") (define-public pocl (package (name "pocl") - (version "1.1") + (version "1.2") (source (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/pocl/pocl.git") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) + (method url-fetch) + (uri (string-append + "https://github.com/pocl/pocl/archive/v" + version".tar.gz")) (sha256 - (base32 "1z3sqn20ddv1030adchpzs65qng436gc2mb99p213mkh95jkh1l5")))) + (base32 "0iidk05lac83kj3zfxyvpqlza4ljknwvw6ds9jkg74k86f7ychqc")) + (file-name (string-append name "-" version ".tar.gz")))) (build-system cmake-build-system) (native-inputs `(("libltdl" ,libltdl) ("pkg-config" ,pkg-config))) (inputs `(("clang" ,clang) - ("hwloc" ,hwloc "lib") + ("hwloc" ,hwloc-2.0 "lib") ("llvm" ,llvm) ("ocl-icd" ,ocl-icd))) (arguments -- 2.19.0