From 6733ba206383835d644c55e002f487f166ae83ab Mon Sep 17 00:00:00 2001 From: Silvan Calarco Date: Fri, 5 Jan 2024 17:56:39 +0100 Subject: [PATCH] update to 1.1.2 [release 1.1.2-1mamba;Fri Sep 19 2014] --- README.md | 2 ++ snappy.spec | 85 +++++++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 87 insertions(+) create mode 100644 snappy.spec diff --git a/README.md b/README.md index b4a6495..51ff1d1 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,4 @@ # snappy +Snappy is a compression/decompression library. It does not aim for maximum compression, or compatibility with any other compression library; instead, it aims for very high speeds and reasonable compression. For instance, compared to the fastest mode of zlib, Snappy is an order of magnitude faster for most inputs, but the resulting compressed files are anywhere from 20% to 100% bigger. + diff --git a/snappy.spec b/snappy.spec new file mode 100644 index 0000000..b77748e --- /dev/null +++ b/snappy.spec @@ -0,0 +1,85 @@ +Name: snappy +Version: 1.1.2 +Release: 1mamba +Summary: A fast compression/decompression library +Group: Applications/Archiving +Vendor: openmamba +Distribution: openmamba +Packager: Silvan Calarco +URL: https://code.google.com/p/snappy +Source: https://snappy.googlecode.com/files/snappy-%{version}.tar.gz +License: BSD +## AUTOBUILDREQ-BEGIN +BuildRequires: glibc-devel +BuildRequires: libgcc +BuildRequires: libstdc++6-devel +## AUTOBUILDREQ-END +Requires: lib%{name} = %{?epoch:%epoch:}%{version}-%{release} +BuildRoot: %{_tmppath}/%{name}-%{version}-root + +%description +Snappy is a compression/decompression library. It does not aim for maximum compression, or compatibility with any other compression library; instead, it aims for very high speeds and reasonable compression. For instance, compared to the fastest mode of zlib, Snappy is an order of magnitude faster for most inputs, but the resulting compressed files are anywhere from 20% to 100% bigger. + +%package -n lib%{name} +Group: System/Libraries +Summary: A fast compression/decompression library + +%description -n lib%{name} +Snappy is a compression/decompression library. It does not aim for maximum compression, or compatibility with any other compression library; instead, it aims for very high speeds and reasonable compression. For instance, compared to the fastest mode of zlib, Snappy is an order of magnitude faster for most inputs, but the resulting compressed files are anywhere from 20% to 100% bigger. + +%package -n lib%{name}-devel +Group: Development/Libraries +Summary: Development files for %{name} +Requires: lib%{name} = %{?epoch:%epoch:}%{version}-%{release} + +%description -n lib%{name}-devel +This package contains libraries and header files for developing applications that use %{name}. + +%debug_package + +%prep +%setup -q + +%build +%configure +%make + +%install +[ "%{buildroot}" != / ] && rm -rf "%{buildroot}" +%makeinstall + +%clean +[ "%{buildroot}" != / ] && rm -rf "%{buildroot}" + +%post -n lib%{name} -p /sbin/ldconfig +%postun -n lib%{name} -p /sbin/ldconfig + +%files -n lib%{name} +%defattr(-,root,root) +%{_libdir}/libsnappy.so.* +%dir %{_datadir}/doc/snappy +%{_datadir}/doc/snappy/COPYING +%doc AUTHORS + +%files -n lib%{name}-devel +%defattr(-,root,root) +%{_includedir}/snappy-c.h +%{_includedir}/snappy-sinksource.h +%{_includedir}/snappy-stubs-public.h +%{_includedir}/snappy.h +%{_libdir}/libsnappy.a +%{_libdir}/libsnappy.la +%{_libdir}/libsnappy.so +%{_datadir}/doc/snappy/ChangeLog +%{_datadir}/doc/snappy/INSTALL +%{_datadir}/doc/snappy/NEWS +%{_datadir}/doc/snappy/README +%{_datadir}/doc/snappy/format_description.txt +%{_datadir}/doc/snappy/framing_format.txt + +%changelog +* Fri Sep 19 2014 Silvan Calarco 1.1.2-1mamba +- update to 1.1.2 + +* Fri Sep 19 2014 Silvan Calarco 1.1.1-1mamba +- package created using the webbuild interface