forked from pool/libclc
Accepting request 407344 from X11:XOrg
1 OBS-URL: https://build.opensuse.org/request/show/407344 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/libclc?expand=0&rev=3
This commit is contained in:
commit
6670585bda
5
_service
5
_service
@ -3,8 +3,9 @@
|
|||||||
<param name="scm">git</param>
|
<param name="scm">git</param>
|
||||||
<param name="url">https://github.com/llvm-mirror/libclc.git</param>
|
<param name="url">https://github.com/llvm-mirror/libclc.git</param>
|
||||||
<param name="submodules">enable</param>
|
<param name="submodules">enable</param>
|
||||||
<param name="versionformat">0.2.0+git%cd.%h</param>
|
<param name="changesgenerate">enable</param>
|
||||||
<param name="revision">6d784075bc56815b0fc493690572c893979abbdd</param>
|
<param name="revision">b518692b52a0bbdf9cf0e2167b9629dd9501abcd</param>
|
||||||
|
<param name="versionformat">0.2.0+git.%cd</param>
|
||||||
</service>
|
</service>
|
||||||
<service name="recompress" mode="disabled">
|
<service name="recompress" mode="disabled">
|
||||||
<param name="compression">xz</param>
|
<param name="compression">xz</param>
|
||||||
|
6
_servicedata
Normal file
6
_servicedata
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
<servicedata>
|
||||||
|
<service name="tar_scm">
|
||||||
|
<param name="url">https://github.com/llvm-mirror/libclc.git</param>
|
||||||
|
<param name="changesrevision">b518692b52a0bbdf9cf0e2167b9629dd9501abcd</param>
|
||||||
|
</service>
|
||||||
|
</servicedata>
|
3
libclc-0.2.0+git.20160209.tar.xz
Normal file
3
libclc-0.2.0+git.20160209.tar.xz
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:705837225ed35c7ca15f3179b1bec3ec7f9c57ce308164e5dff2a6adc9da7a4e
|
||||||
|
size 76148
|
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:6935b56b984067d48c710b5b30a329b9303661d787b059ab5d09fcb5a95ea49a
|
|
||||||
size 74764
|
|
@ -1,3 +1,18 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Sun Jul 03 08:32:55 UTC 2016 - mpluskal@suse.com
|
||||||
|
|
||||||
|
- Update to version 0.2.0+git.20160209:
|
||||||
|
* integer: remove explicit casts from _MIN definitions
|
||||||
|
* AMDGPU: Add alias for tonga
|
||||||
|
* AMDGPU: Add aliases for all VI targets
|
||||||
|
* Add _CLC_V_V_VP_VECTORIZE macro
|
||||||
|
* Implement modf math builtin
|
||||||
|
* math: Add frexp ported from amd-builtins
|
||||||
|
* math: Fix log2 vectorization on non-fp64 hw
|
||||||
|
* configure: Introduce per device defines
|
||||||
|
* configure: Remove cl_khr_fp64 for device that don't support doubles
|
||||||
|
* configure: Remove llvm 3.6 defines
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Thu Dec 17 10:00:57 UTC 2015 - coolo@suse.com
|
Thu Dec 17 10:00:57 UTC 2015 - coolo@suse.com
|
||||||
|
|
||||||
|
10
libclc.spec
10
libclc.spec
@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package libclc
|
# spec file for package libclc
|
||||||
#
|
#
|
||||||
# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
|
# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
|
||||||
#
|
#
|
||||||
# All modifications and additions to the file contributed by third parties
|
# All modifications and additions to the file contributed by third parties
|
||||||
# remain the property of their copyright owners, unless otherwise agreed
|
# remain the property of their copyright owners, unless otherwise agreed
|
||||||
@ -17,7 +17,7 @@
|
|||||||
|
|
||||||
|
|
||||||
Name: libclc
|
Name: libclc
|
||||||
Version: 0.2.0+git20151006.6d78407
|
Version: 0.2.0+git.20160209
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: OpenCL C programming language library
|
Summary: OpenCL C programming language library
|
||||||
License: BSD-3-Clause or MIT
|
License: BSD-3-Clause or MIT
|
||||||
@ -27,11 +27,10 @@ Source0: %{name}-%{version}.tar.xz
|
|||||||
Source1: %{name}-rpmlintrc
|
Source1: %{name}-rpmlintrc
|
||||||
BuildRequires: gcc
|
BuildRequires: gcc
|
||||||
BuildRequires: libstdc++-devel
|
BuildRequires: libstdc++-devel
|
||||||
BuildRequires: libtool
|
|
||||||
BuildRequires: llvm-clang-devel
|
BuildRequires: llvm-clang-devel
|
||||||
BuildRequires: llvm-devel >= 3.7
|
BuildRequires: llvm-devel >= 3.7
|
||||||
BuildRequires: ncurses-devel
|
BuildRequires: ncurses-devel
|
||||||
BuildRequires: pkg-config
|
BuildRequires: pkgconfig
|
||||||
BuildRequires: python
|
BuildRequires: python
|
||||||
BuildRequires: zlib-devel
|
BuildRequires: zlib-devel
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
@ -55,11 +54,10 @@ export \
|
|||||||
--enable-runtime-subnormal \
|
--enable-runtime-subnormal \
|
||||||
--pkgconfigdir=%{_libdir}/pkgconfig/ \
|
--pkgconfigdir=%{_libdir}/pkgconfig/ \
|
||||||
--libexecdir=%{_libdir}/clc/
|
--libexecdir=%{_libdir}/clc/
|
||||||
|
|
||||||
make %{?_smp_mflags} VERBOSE=1
|
make %{?_smp_mflags} VERBOSE=1
|
||||||
|
|
||||||
%install
|
%install
|
||||||
make DESTDIR=%{buildroot} install %{?_smp_mflags}
|
%make_install
|
||||||
|
|
||||||
%files
|
%files
|
||||||
%defattr(-,root,root)
|
%defattr(-,root,root)
|
||||||
|
Loading…
Reference in New Issue
Block a user