libaec/libaec.spec

117 lines
3.8 KiB
RPMSpec
Raw Normal View History

2017-06-23 15:20:58 +00:00
Name: libaec
2019-02-12 00:29:31 +00:00
Version: 1.0.4
Release: 4%{?dist}
2017-06-23 15:20:58 +00:00
Summary: Adaptive Entropy Coding library
License: BSD
Url: https://gitlab.dkrz.de/k202009/libaec
2019-02-05 17:56:34 +00:00
Source0: https://gitlab.dkrz.de/k202009/libaec/-/archive/v%{version}/libaec-v%{version}.tar.gz
2017-06-23 15:20:58 +00:00
2018-02-24 22:48:03 +00:00
BuildRequires: gcc
2019-02-10 00:33:39 +00:00
BuildRequires: cmake3 >= 3.1
2017-06-23 15:20:58 +00:00
%description
Libaec provides fast loss-less compression of 1 up to 32 bit wide
signed or unsigned integers (samples). The library achieves best
results for low entropy data as often encountered in space imaging
instrument data or numerical model output from weather or climate
simulations. While floating point representations are not directly
supported, they can also be efficiently coded by grouping exponents
and mantissa.
Libaec implements Golomb Rice coding as defined in the Space Data
System Standard documents 121.0-B-2 and 120.0-G-2.
Libaec includes a free drop-in replacement for the SZIP
library (http://www.hdfgroup.org/doc_resource/SZIP).
%package devel
Summary: Devel package for libaec (Adaptive Entropy Coding library)
Requires: %{name}%{?_isa} = %{version}-%{release}
%description devel
Devel files for libaec (Adaptive Entropy Coding library).
%prep
2019-02-12 00:29:31 +00:00
%setup -q -n %{name}-v%{version}
2017-06-23 15:20:58 +00:00
%build
mkdir build
pushd build
2019-02-04 20:41:29 +00:00
%{cmake3} ..
2017-06-23 15:20:58 +00:00
%make_build
popd
%install
%make_install -C build
%check
2019-02-05 17:56:34 +00:00
make -C build test CTEST_OUTPUT_ON_FAILURE=1
2017-06-23 15:20:58 +00:00
%ldconfig_scriptlets
2017-06-23 15:20:58 +00:00
%files
2017-07-17 16:20:47 +00:00
%doc README.md README.SZIP CHANGELOG.md
%license Copyright.txt doc/patent.txt
2017-06-23 15:20:58 +00:00
%{_bindir}/aec
%{_libdir}/lib*.so.*
2017-07-17 16:20:47 +00:00
%{_mandir}/man1/aec.*
2017-06-23 15:20:58 +00:00
%files devel
%{_includedir}/*.h
%{_libdir}/lib*.so
%changelog
* Tue Jul 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.0.4-4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
* Wed Jan 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.0.4-3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
* Thu Jul 25 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1.0.4-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
2019-02-12 00:29:31 +00:00
* Tue Feb 12 2019 Christoph Junghans <junghans@votca.org> - 1.0.4-1
- Version bump to 1.0.4
2019-02-10 00:33:39 +00:00
* Sat Feb 09 2019 Christoph Junghans <junghans@votca.org> - 1.0.3-3
- Include missing header
2019-02-05 17:56:34 +00:00
* Tue Feb 05 2019 Christoph Junghans <junghans@votca.org> - 1.0.3-2
- Enable all tests
2019-02-04 20:41:29 +00:00
* Mon Feb 04 2019 Christoph Junghans <junghans@votca.org> - 1.0.3-1
- Version bump to 1.0.3 (bug #1672326)
* Fri Feb 01 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1.0.2-5
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.0.2-4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.0.2-3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
* Sat Feb 03 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 1.0.2-2
- Switch to %%ldconfig_scriptlets
2017-10-24 22:09:51 +00:00
* Tue Oct 24 2017 Christoph Junghans <junghans@votca.org> - 1.0.2-1
- Version bump to 1.0.2 (#1504372)
* Sun Aug 13 2017 Christoph Junghans <junghans@votca.org>- 1.0.1-4
2017-08-13 18:45:21 +00:00
- Tweaks for EPEL7
* Thu Aug 03 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.0.1-3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.0.1-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
2017-07-17 16:20:47 +00:00
* Mon Jul 17 2017 Christoph Junghans <junghans@votca.org> - 1.0.1-1
- version bump to 1.0.1 - bug #1471766
2017-06-23 15:20:58 +00:00
* Wed Jun 21 2017 Christoph Junghans <junghans@votca.org> - 1.0.0-2
- comments from review #1462443
* Sat Jun 17 2017 Christoph Junghans <junghans@votca.org> - 1.0.0-1
- initial import