automatic version update by autodist [release 1.2.2-1mamba;Fri Mar 28 2025]
This commit is contained in:
parent
93d78f1e24
commit
8869df9e1e
@ -1,69 +0,0 @@
|
||||
diff --git a/CMakeLists.txt b/CMakeLists.txt
|
||||
--- a/CMakeLists.txt
|
||||
+++ b/CMakeLists.txt
|
||||
@@ -26,7 +26,7 @@
|
||||
# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
||||
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
|
||||
-cmake_minimum_required(VERSION 3.1)
|
||||
+cmake_minimum_required(VERSION 3.5)
|
||||
project(Snappy VERSION 1.2.1 LANGUAGES C CXX)
|
||||
|
||||
# C++ standard can be overridden when this is used as a sub-project.
|
||||
@@ -319,34 +319,12 @@
|
||||
if(SNAPPY_BUILD_TESTS)
|
||||
enable_testing()
|
||||
|
||||
- # Prevent overriding the parent project's compiler/linker settings on Windows.
|
||||
- set(gtest_force_shared_crt ON CACHE BOOL "" FORCE)
|
||||
- set(install_gtest OFF)
|
||||
- set(install_gmock OFF)
|
||||
- set(build_gmock ON)
|
||||
-
|
||||
- # This project is tested using GoogleTest.
|
||||
- add_subdirectory("third_party/googletest")
|
||||
-
|
||||
- # GoogleTest triggers a missing field initializers warning.
|
||||
- if(SNAPPY_HAVE_NO_MISSING_FIELD_INITIALIZERS)
|
||||
- set_property(TARGET gtest
|
||||
- APPEND PROPERTY COMPILE_OPTIONS -Wno-missing-field-initializers)
|
||||
- set_property(TARGET gmock
|
||||
- APPEND PROPERTY COMPILE_OPTIONS -Wno-missing-field-initializers)
|
||||
- endif(SNAPPY_HAVE_NO_MISSING_FIELD_INITIALIZERS)
|
||||
-
|
||||
- if(SNAPPY_HAVE_NO_IMPLICIT_INT_FLOAT_CONVERSION)
|
||||
- set_property(TARGET gtest
|
||||
- APPEND PROPERTY COMPILE_OPTIONS -Wno-implicit-int-float-conversion)
|
||||
- endif(SNAPPY_HAVE_NO_IMPLICIT_INT_FLOAT_CONVERSION)
|
||||
-
|
||||
add_executable(snappy_unittest "")
|
||||
target_sources(snappy_unittest
|
||||
PRIVATE
|
||||
"snappy_unittest.cc"
|
||||
)
|
||||
- target_link_libraries(snappy_unittest snappy_test_support gmock_main gtest)
|
||||
+ target_link_libraries(snappy_unittest snappy_test_support gtest_main gtest)
|
||||
|
||||
add_test(
|
||||
NAME snappy_unittest
|
||||
@@ -361,20 +339,6 @@
|
||||
target_link_libraries(snappy_test_tool snappy_test_support)
|
||||
endif(SNAPPY_BUILD_TESTS)
|
||||
|
||||
-if(SNAPPY_BUILD_BENCHMARKS)
|
||||
- add_executable(snappy_benchmark "")
|
||||
- target_sources(snappy_benchmark
|
||||
- PRIVATE
|
||||
- "snappy_benchmark.cc"
|
||||
- )
|
||||
- target_link_libraries(snappy_benchmark snappy_test_support benchmark_main)
|
||||
-
|
||||
- # This project uses Google benchmark for benchmarking.
|
||||
- set(BENCHMARK_ENABLE_TESTING OFF CACHE BOOL "" FORCE)
|
||||
- set(BENCHMARK_ENABLE_EXCEPTIONS OFF CACHE BOOL "" FORCE)
|
||||
- add_subdirectory("third_party/benchmark")
|
||||
-endif(SNAPPY_BUILD_BENCHMARKS)
|
||||
-
|
||||
if(SNAPPY_FUZZING_BUILD)
|
||||
add_executable(snappy_compress_fuzzer "")
|
||||
target_sources(snappy_compress_fuzzer
|
16
snappy.spec
16
snappy.spec
@ -1,5 +1,5 @@
|
||||
Name: snappy
|
||||
Version: 1.2.1
|
||||
Version: 1.2.2
|
||||
Release: 1mamba
|
||||
Summary: A fast compression/decompression library
|
||||
Group: Applications/Archiving
|
||||
@ -8,7 +8,6 @@ Distribution: openmamba
|
||||
Packager: Silvan Calarco <silvan.calarco@mambasoft.it>
|
||||
URL: https://google.github.io/snappy/
|
||||
Source: https://github.com/google/snappy.git/%{version}/snappy-%{version}.tar.bz2
|
||||
Patch0: snappy-1.2.1-thirdparty.patch
|
||||
License: BSD
|
||||
## AUTOBUILDREQ-BEGIN
|
||||
BuildRequires: glibc-devel
|
||||
@ -40,19 +39,15 @@ 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
|
||||
%patch 0 -p1 -b .thirdparty
|
||||
|
||||
%build
|
||||
%cmake -d build \
|
||||
\
|
||||
-DCMAKE_CXX_STANDARD=14 \
|
||||
%ifnarch x86_64
|
||||
-DSNAPPY_BUILD_TESTS=off
|
||||
%endif
|
||||
-DSNAPPY_BUILD_TESTS=OFF \
|
||||
-DSNAPPY_BUILD_BENCHMARKS=OFF
|
||||
|
||||
%make
|
||||
|
||||
@ -63,8 +58,6 @@ This package contains libraries and header files for developing applications tha
|
||||
%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)
|
||||
@ -82,6 +75,9 @@ This package contains libraries and header files for developing applications tha
|
||||
%{_libdir}/cmake/Snappy/Snappy*.cmake
|
||||
|
||||
%changelog
|
||||
* Fri Mar 28 2025 Automatic Build System <autodist@openmamba.org> 1.2.2-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Fri Jun 28 2024 Silvan Calarco <silvan.calarco@mambasoft.it> 1.2.1-1mamba
|
||||
- update to 1.2.1
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user