zstd/zstd.spec

135 lines
3.5 KiB
RPMSpec
Raw Normal View History

# gcc-4.4 is currently too old to compile pzstd
%if 0%{?fedora} || 0%{?rhel} > 6
# aarch64 and armv7hl at least currently segfault
# in ThreadPool test for the pzstd util
%ifarch %{ix86} x86_64
%global with_pzstd 1
%endif
%endif
2016-10-03 14:17:14 +00:00
Name: zstd
2017-07-16 03:39:39 +00:00
Version: 1.3.0
2017-03-06 03:52:50 +00:00
Release: 1%{?dist}
2016-10-03 14:17:14 +00:00
Summary: Zstd compression library
License: BSD and MIT
URL: https://github.com/facebook/zstd
Source0: https://github.com/facebook/zstd/archive/v%{version}.tar.gz#/%{name}-%{version}.tar.gz
Patch1: pzstd.1.patch
2016-10-03 14:17:14 +00:00
BuildRequires: gcc gtest-devel
2016-10-03 14:17:14 +00:00
%description
Zstd, short for Zstandard, is a fast lossless compression algorithm,
targeting real-time compression scenarios at zlib-level compression ratio.
%package -n lib%{name}
Summary: Zstd shared library
%description -n lib%{name}
Zstandard compression shared library.
%package -n lib%{name}-devel
Summary: Header files for Zstd library
Requires: lib%{name}%{?_isa} = %{version}-%{release}
%description -n lib%{name}-devel
Header files for Zstd library.
%prep
%setup -q
find -name .gitignore -delete
%if 0%{?with_pzstd}
%patch1 -p1
%endif
2016-10-03 14:17:14 +00:00
%build
%{?__global_ldflags:LDFLAGS="${LDFLAGS:-%__global_ldflags}" ; export LDFLAGS ;}
2016-10-03 14:17:14 +00:00
for dir in lib programs; do
CFLAGS="%{optflags}" %make_build -C "$dir"
2016-10-03 14:17:14 +00:00
done
%if 0%{?with_pzstd}
2016-11-02 12:52:36 +00:00
CFLAGS="%{optflags}" CXXFLAGS="%{optflags} -std=c++11" %make_build -C 'contrib/pzstd'
%endif
2016-10-03 14:17:14 +00:00
%check
%{?__global_ldflags:LDFLAGS="${LDFLAGS:-%__global_ldflags}" ; export LDFLAGS ;}
CFLAGS="%{optflags}" make -C tests test-zstd
%if 0%{?with_pzstd}
2016-11-02 12:52:36 +00:00
CFLAGS="%{optflags}" CXXFLAGS="%{optflags} -std=c++11" make -C contrib/pzstd test
%endif
2016-10-03 14:17:14 +00:00
%install
%make_install PREFIX=%{_prefix} LIBDIR=%{_libdir}
2017-03-06 03:52:50 +00:00
# Remove undocumented wrappers of minimal use
rm %{buildroot}/%{_bindir}/%{name}less
rm %{buildroot}/%{_bindir}/%{name}grep
# Don't install the static lib
rm %{buildroot}/%{_libdir}/libzstd.a
%if 0%{?with_pzstd}
install -D -m755 contrib/pzstd/pzstd %{buildroot}/usr/bin/pzstd
install -D -m644 programs/%{name}.1 %{buildroot}/%{_mandir}/man1/p%{name}.1
%endif
2016-10-03 14:17:14 +00:00
%files
%doc NEWS README.md
%{_bindir}/%{name}
%if 0%{?with_pzstd}
%{_bindir}/p%{name}
%{_mandir}/man1/p%{name}.1*
%endif
2017-05-08 13:48:12 +00:00
%{_bindir}/%{name}mt
2016-10-03 14:17:14 +00:00
%{_bindir}/un%{name}
%{_bindir}/%{name}cat
%{_mandir}/man1/%{name}.1*
%{_mandir}/man1/un%{name}.1*
%{_mandir}/man1/%{name}cat.1*
%license LICENSE PATENTS
%files -n lib%{name}
%{_libdir}/libzstd.so.*
%license LICENSE PATENTS
%files -n lib%{name}-devel
%{_includedir}/zbuff.h
%{_includedir}/zdict.h
%{_includedir}/zstd.h
2016-11-02 12:52:36 +00:00
%{_includedir}/zstd_errors.h
2016-10-03 14:17:14 +00:00
%{_libdir}/pkgconfig/libzstd.pc
%{_libdir}/libzstd.so
%post -n lib%{name} -p /sbin/ldconfig
%postun -n lib%{name} -p /sbin/ldconfig
%changelog
2017-07-16 03:39:39 +00:00
* Sun Jul 16 2017 Pádraig Brady <P@draigBrady.com> - 1.3.0-1
- Latest upstream
2017-05-08 13:48:12 +00:00
* Mon May 08 2017 Pádraig Brady <P@draigBrady.com> - 1.2.0-1
- Latest upstream
2017-03-06 03:52:50 +00:00
* Mon Mar 06 2017 Pádraig Brady <P@draigBrady.com> - 1.1.3-1
- Latest upstream
* Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.1.1-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
2016-11-02 12:52:36 +00:00
* Wed Nov 02 2016 Pádraig Brady <pbrady@redhat.com> - 1.1.1-1
- Latest upstream
* Thu Oct 6 2016 Pádraig Brady <pbrady@fb.com> 1.1.0-2
- Add pzstd(1)
2016-10-03 14:17:14 +00:00
* Thu Sep 29 2016 Pádraig Brady <pbrady@fb.com> 1.1.0-1
- New upstream release
- Remove examples and static lib
* Mon Sep 12 2016 Pádraig Brady <pbrady@fb.com> 1.0.0-2
- Adjust various upstream links
- Parameterize various items in spec file
* Mon Sep 5 2016 Pádraig Brady <pbrady@fb.com> 1.0.0-1
- Initial release