Compare commits

...

12 Commits
f33 ... rawhide

Author SHA1 Message Date
Cezary Skrzyński 72bb4138b6
Version bump to v3.7.00 (bug #2128805) 2022-09-22 16:15:45 +02:00
Fedora Release Engineering 89619cd3ef Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
Signed-off-by: Fedora Release Engineering <releng@fedoraproject.org>
2022-07-21 16:30:59 +00:00
Cezary Skrzyński f1b73f0c6e
Version bump to v3.6.01 (bug #2103824) 2022-07-06 21:09:01 +02:00
Christoph Junghans 0ac2a03f96 Version bump to v3.6.00 (bug #2026409) 2022-04-27 09:17:01 -06:00
Fedora Release Engineering 5f06778bc9 - Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
Signed-off-by: Fedora Release Engineering <releng@fedoraproject.org>
2022-01-20 15:03:56 +00:00
Christoph Junghans 033e935e98 Version bump to v3.5.00 (bug #2026409) 2021-12-01 10:45:09 -07:00
Fedora Release Engineering 686467e806 - Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
Signed-off-by: Fedora Release Engineering <releng@fedoraproject.org>
2021-07-22 10:17:48 +00:00
Christoph Junghans be14ffaef0 Rebuild for glibc (no libdl.so anymore) 2021-06-22 14:53:08 -06:00
Christoph Junghans 3e765d8efd Version bump to v3.4.01 (bug #1965296) 2021-05-28 17:59:50 -06:00
Neal Gompa 6e70885b85 Minor spec fixes
- Adjustments to build on EPEL 8 with RHEL 8.4+
- Minor cleanup of Source0 and use newer autosetup macro
2021-05-22 09:51:56 -04:00
Christoph Junghans 0cc35d3bf0 Version bump to v3.4.00 (bug #1953967) 2021-04-28 11:52:06 -06:00
Fedora Release Engineering a7293c1016 - Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
Signed-off-by: Fedora Release Engineering <releng@fedoraproject.org>
2021-01-26 16:01:55 +00:00
3 changed files with 56 additions and 11 deletions

6
.gitignore vendored
View File

@ -11,3 +11,9 @@
/kokkos-3.2.01.tar.gz
/kokkos-3.3.00.tar.gz
/kokkos-3.3.01.tar.gz
/kokkos-3.4.00.tar.gz
/kokkos-3.4.01.tar.gz
/kokkos-3.5.00.tar.gz
/kokkos-3.6.00.tar.gz
/kokkos-3.6.01.tar.gz
/kokkos-3.7.00.tar.gz

View File

@ -1,6 +1,9 @@
# Needed for EPEL8
%undefine __cmake_in_source_build
Name: kokkos
Version: 3.3.01
%global sover 3.3.1
Version: 3.7.00
%global sover 3.7
Release: 1%{?dist}
Summary: Kokkos C++ Performance Portability Programming
# no support for 32-bit archs https://github.com/kokkos/kokkos/issues/2312
@ -8,10 +11,10 @@ ExcludeArch: i686 armv7hl
License: BSD
URL: https://github.com/kokkos/kokkos
Source0: https://github.com/kokkos/kokkos/archive/%{version}.tar.gz#/%{name}-%{version}.tar.gz
Source0: %{url}/archive/%{version}/%{name}-%{version}.tar.gz
BuildRequires: gcc-c++
BuildRequires: cmake3 >= 3.0
BuildRequires: cmake >= 3.16
BuildRequires: hwloc-devel
%global kokkos_desc \
@ -35,11 +38,14 @@ Requires: hwloc-devel
This package contains the development files of %{name}.
%prep
%setup -q
%autosetup -p1
%build
%{cmake3} \
%cmake \
-DKokkos_ENABLE_TESTS=On \
%ifarch ppc64le
-DKokkos_ARCH_POWER8=ON \
%endif
-DCMAKE_INSTALL_INCLUDEDIR=include/kokkos \
-DKokkos_ENABLE_AGGRESSIVE_VECTORIZATION=ON \
-DKokkos_ENABLE_DEPRECATED_CODE=ON \
@ -47,22 +53,22 @@ This package contains the development files of %{name}.
-DKokkos_ENABLE_SERIAL=ON \
-DKokkos_ENABLE_HWLOC=ON \
%{nil}
%cmake3_build
%cmake_build
%install
%cmake3_install
%cmake_install
%check
# https://github.com/kokkos/kokkos/issues/2959 - unstable test
%ifarch s390x
%global testargs --exclude-regex KokkosCore_UnitTest_StackTraceTest
%endif
%ctest3 %{?testargs}
%ctest %{?testargs}
%files
%doc README.md
%license LICENSE
%{_libdir}/libkokkos*.so.%{sover}
%{_libdir}/libkokkos*.so.%{sover}*
%files devel
%{_libdir}/libkokkos*.so
@ -73,6 +79,39 @@ This package contains the development files of %{name}.
%{_bindir}/kokkos_launch_compiler
%changelog
* Thu Sep 22 2022 Cezary Skrzyński <cezary.skrzynski@ng-analytics.com> - 3.7.00-1
- Version bump to v3.7.00 (bug #2128805)
* Thu Jul 21 2022 Fedora Release Engineering <releng@fedoraproject.org> - 3.6.01-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
* Wed Jul 06 2022 Cezary Skrzyński <cezary.skrzynski@ng-analytics.com> - 3.6.01-1
- Version bump to v3.6.01 (bug #2103824)
* Wed Apr 27 2022 Christoph Junghans <junghans@votca.org> - 3.6.00-1
- Version bump to v3.6.00 (bug #2026409)
* Thu Jan 20 2022 Fedora Release Engineering <releng@fedoraproject.org> - 3.5.00-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
* Wed Dec 01 2021 Christoph Junghans <junghans@votca.org> - 3.5.00-1
- Version bump to v3.5.00 (bug #2026409)
* Thu Jul 22 2021 Fedora Release Engineering <releng@fedoraproject.org> - 3.4.01-3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
* Tue Jun 22 2021 Christoph Junghans <junghans@votca.org> - 3.4.01-2
- Rebuild for glibc (no libdl.so anymore)
* Fri May 28 2021 Christoph Junghans <junghans@votca.org> - 3.4.01-1
- Version bump to v3.4.01 (bug #1965296)
* Tue Apr 27 2021 Christoph Junghans <junghans@votca.org> - 3.4.00-1
- Version bump to v3.4.00 (bug #1953967)
* Tue Jan 26 2021 Fedora Release Engineering <releng@fedoraproject.org> - 3.3.01-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
* Sat Jan 23 08:19:42 MST 2021 Christoph Junghans <junghans@lanl.gov> - 3.3.01-1
- Version bump to v3.3.01 (bug #1919508)

View File

@ -1 +1 @@
SHA512 (kokkos-3.3.01.tar.gz) = 9271be6ef080ac60b588b20d6d13c654311221691295dda199bbb833ab3fda7024aa0672ca3304f07824507e8d0708b7f58d8a707b84ad08e82357e00fe8fcae
SHA512 (kokkos-3.7.00.tar.gz) = f72b43096126cba11129ab44c2ebaeb1ee92b14db45bd451e86f40746e8edbfbe3415dee089080a6664ae4985e5796717c64bb5c508ca5e287b31bac248802f6