[libclc] 01/01: release 0.2.0+git20150813-3

Michael Gilbert mgilbert at moszumanska.debian.org
Sat Jul 30 23:38:58 UTC 2016


This is an automated email from the git hooks/post-receive script.

mgilbert pushed a commit to branch master
in repository libclc.

commit efd8a09a97d4f046ac85886010307e03171f0883
Author: Michael Gilbert <mgilbert at debian.org>
Date:   Sat Jul 30 23:38:11 2016 +0000

    release 0.2.0+git20150813-3
---
 debian/changelog             |  8 ++++++++
 debian/clean                 |  1 +
 debian/control               | 12 ++++++------
 debian/copyright             |  2 +-
 debian/patches/devices.patch | 14 ++++++++++++++
 debian/patches/series        |  1 +
 debian/rules                 |  2 +-
 7 files changed, 32 insertions(+), 8 deletions(-)

diff --git a/debian/changelog b/debian/changelog
index 6665a24..71e6d01 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,11 @@
+libclc (0.2.0+git20150813-3) unstable; urgency=medium
+
+  * Bump standards version.
+  * Build with clang 3.8 (closes: #832014).
+  * Add support for aditional GPU devices (closes: 823677).
+
+ -- Michael Gilbert <mgilbert at debian.org>  Sat, 30 Jul 2016 22:47:05 +0000
+
 libclc (0.2.0+git20150813-2) unstable; urgency=medium
 
   * Enable build hardening flags.
diff --git a/debian/clean b/debian/clean
index 46e52e9..7953b86 100644
--- a/debian/clean
+++ b/debian/clean
@@ -1,3 +1,4 @@
 Makefile
 libclc.pc
 build/*.pyc
+utils/prepare-builtins.dwo
diff --git a/debian/control b/debian/control
index 3335bee..d00528c 100644
--- a/debian/control
+++ b/debian/control
@@ -7,11 +7,11 @@ Uploaders:
 Build-Depends:
  debhelper (>= 9),
  python,
- clang-3.7,
- llvm-3.7-dev (>= 3.7),
+ clang-3.8,
+ llvm-3.8-dev,
  zlib1g-dev,
  libedit-dev,
-Standards-Version: 3.9.6
+Standards-Version: 3.9.8
 Homepage: http://libclc.llvm.org
 Vcs-Git: git://anonscm.debian.org/pkg-opencl/libclc.git
 Vcs-Browser: https://anonscm.debian.org/cgit/pkg-opencl/libclc.git
@@ -21,7 +21,7 @@ Architecture: all
 Depends:
  ${misc:Depends},
  libclc-dev (= ${binary:Version}),
- libclang-common-3.7-dev,
+ libclang-common-3.8-dev,
 Description: OpenCL C language implementation - ptx support
  libclc is an open implementation of the OpenCL C programming language,
  as specified by the OpenCL 1.1 Specification.
@@ -33,7 +33,7 @@ Architecture: all
 Depends:
  ${misc:Depends},
  libclc-dev (= ${binary:Version}),
- libclang-common-3.7-dev,
+ libclang-common-3.8-dev,
 Description: OpenCL C language implementation - amdgcn support
  libclc is an open implementation of the OpenCL C programming language,
  as specified by the OpenCL 1.1 Specification.
@@ -46,7 +46,7 @@ Architecture: all
 Depends:
  ${misc:Depends},
  libclc-dev (= ${binary:Version}),
- libclang-common-3.7-dev,
+ libclang-common-3.8-dev,
 Description: OpenCL C language implementation - r600 support
  libclc is an open implementation of the OpenCL C programming language,
  as specified by the OpenCL 1.1 Specification.
diff --git a/debian/copyright b/debian/copyright
index e18d66f..6f3f5cf 100644
--- a/debian/copyright
+++ b/debian/copyright
@@ -9,7 +9,7 @@ License: NCSA or MIT
 
 Files: debian/*
 Copyright:
- 2013-2015 Michael Gilbert <mgilbert at debian.org>
+ 2013-2016 Michael Gilbert <mgilbert at debian.org>
  2013-2014 Julian Wollrath <jwollrath at web.de>
 License: NCSA or MIT
 
diff --git a/debian/patches/devices.patch b/debian/patches/devices.patch
new file mode 100644
index 0000000..bb30f0d
--- /dev/null
+++ b/debian/patches/devices.patch
@@ -0,0 +1,14 @@
+description: support for more gpu devices
+origin: https://github.com/llvm-mirror/libclc/commit/1b1b5a8551971ef4062bd8d84baccfe7a88e83b2
+
+--- a/configure.py
++++ b/configure.py
+@@ -103,7 +103,7 @@ available_targets = {
+                 {'gpu' : 'barts',   'aliases' : ['turks', 'caicos']},
+                 {'gpu' : 'cayman',  'aliases' : ['aruba']}]},
+   'amdgcn--': { 'devices' :
+-                [{'gpu' : 'tahiti',  'aliases' : ['pitcairn', 'verde', 'oland', 'hainan', 'bonaire', 'kabini', 'kaveri', 'hawaii','mullins']}]},
++                [{'gpu' : 'tahiti',  'aliases' : ['pitcairn', 'verde', 'oland', 'hainan', 'bonaire', 'kabini', 'kaveri', 'hawaii', 'mullins', 'tonga', 'carrizo', 'iceland', 'fiji', 'stoney']}]},
+   'nvptx--'   : { 'devices' : [{'gpu' : '', 'aliases' : []}]},
+   'nvptx64--'   : { 'devices' : [{'gpu' : '', 'aliases' : []}] },
+   'nvptx--nvidiacl'   : { 'devices' : [{'gpu' : '', 'aliases' : []}] },
diff --git a/debian/patches/series b/debian/patches/series
index 814900f..e85b0c1 100644
--- a/debian/patches/series
+++ b/debian/patches/series
@@ -1 +1,2 @@
 hardening.patch
+devices.patch
diff --git a/debian/rules b/debian/rules
index 13ecd87..03397c6 100755
--- a/debian/rules
+++ b/debian/rules
@@ -7,7 +7,7 @@ export DH_VERBOSE=1
 export DEB_BUILD_MAINT_OPTIONS=hardening=+all
 
 confflags=--prefix=/usr \
-          --with-llvm-config=/usr/bin/llvm-config-3.7 \
+          --with-llvm-config=/usr/bin/llvm-config-3.8 \
 
 path=debian/tmp/usr/lib/clc
 

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-opencl/libclc.git



More information about the Pkg-opencl-commits mailing list