pkgsrc-Changes archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
CVS commit: pkgsrc/devel/snappy
Module Name: pkgsrc
Committed By: adam
Date: Mon Mar 31 09:42:35 UTC 2025
Modified Files:
pkgsrc/devel/snappy: Makefile distinfo
pkgsrc/devel/snappy/patches: patch-CMakeLists.txt
Log Message:
snappy: updated to 1.2.2
Snappy v1.2.2, Mar 26th 2025:
* We added a new compression level in v1.2.1 which compresses a bit
denser but slower. Decompression speed should be even faster with it.
* We fixed a very old issue of data corruption when compressed size
exceeds 4GB. This can happen when you compress data close to 4GB
and it's incompressible, for example, random data.
* Started to use minimum CMake 3.10 because older ones are not
planned to be supported.
* Various other small fixes and performance improvements (especially
for clang).
To generate a diff of this commit:
cvs rdiff -u -r1.22 -r1.23 pkgsrc/devel/snappy/Makefile
cvs rdiff -u -r1.19 -r1.20 pkgsrc/devel/snappy/distinfo
cvs rdiff -u -r1.8 -r1.9 pkgsrc/devel/snappy/patches/patch-CMakeLists.txt
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: pkgsrc/devel/snappy/Makefile
diff -u pkgsrc/devel/snappy/Makefile:1.22 pkgsrc/devel/snappy/Makefile:1.23
--- pkgsrc/devel/snappy/Makefile:1.22 Sun Aug 25 06:18:38 2024
+++ pkgsrc/devel/snappy/Makefile Mon Mar 31 09:42:35 2025
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.22 2024/08/25 06:18:38 wiz Exp $
+# $NetBSD: Makefile,v 1.23 2025/03/31 09:42:35 adam Exp $
-DISTNAME= snappy-1.2.1
+DISTNAME= snappy-1.2.2
CATEGORIES= devel
MASTER_SITES= ${MASTER_SITE_GITHUB:=google/}
GITHUB_TAG= ${PKGVERSION_NOREV}
Index: pkgsrc/devel/snappy/distinfo
diff -u pkgsrc/devel/snappy/distinfo:1.19 pkgsrc/devel/snappy/distinfo:1.20
--- pkgsrc/devel/snappy/distinfo:1.19 Wed May 22 07:00:36 2024
+++ pkgsrc/devel/snappy/distinfo Mon Mar 31 09:42:35 2025
@@ -1,7 +1,7 @@
-$NetBSD: distinfo,v 1.19 2024/05/22 07:00:36 adam Exp $
+$NetBSD: distinfo,v 1.20 2025/03/31 09:42:35 adam Exp $
-BLAKE2s (snappy-1.2.1.tar.gz) = d5ec4f8667c7595b52c8a561a156737042b96c54450b92ea5a343e3bd9ce9263
-SHA512 (snappy-1.2.1.tar.gz) = e7290d79ddd45605aafd02cba9eaa32309c94af04f137552a97a915c391f185dccab9b7b21a01b28f3f446be420232c3c22d91c06e0be6e1e2e32d645174798c
-Size (snappy-1.2.1.tar.gz) = 1108761 bytes
-SHA1 (patch-CMakeLists.txt) = 13bc212f15d3ba8b57e9205dccdb543e4ca567a0
+BLAKE2s (snappy-1.2.2.tar.gz) = ccc1dcfae15bfdee22dd4cfe103e9c1bcef515dcfa8df0dbb39120a421d10044
+SHA512 (snappy-1.2.2.tar.gz) = 0c1e1019e1bec9281f9877996d896e59e1533456130143224acb9cbfc35c1b0dd9de0a76e4a36494844d9ec58c295eed8c50bdf6dbabe47cf679652eb24b1281
+Size (snappy-1.2.2.tar.gz) = 1108618 bytes
+SHA1 (patch-CMakeLists.txt) = 3f720799cf689825dac1064fdcd9aea91db19cee
SHA1 (patch-snappy.cc) = c1d3749e9070e1dce6e99691df668d6d9acdee0b
Index: pkgsrc/devel/snappy/patches/patch-CMakeLists.txt
diff -u pkgsrc/devel/snappy/patches/patch-CMakeLists.txt:1.8 pkgsrc/devel/snappy/patches/patch-CMakeLists.txt:1.9
--- pkgsrc/devel/snappy/patches/patch-CMakeLists.txt:1.8 Fri Apr 5 13:40:03 2024
+++ pkgsrc/devel/snappy/patches/patch-CMakeLists.txt Mon Mar 31 09:42:35 2025
@@ -1,11 +1,10 @@
-$NetBSD: patch-CMakeLists.txt,v 1.8 2024/04/05 13:40:03 adam Exp $
+$NetBSD: patch-CMakeLists.txt,v 1.9 2025/03/31 09:42:35 adam Exp $
Avoid -Werror.
-Check a different intrinsic to fix build on armv7.
---- CMakeLists.txt.orig 2024-04-04 19:04:38.000000000 +0000
+--- CMakeLists.txt.orig 2025-03-26 15:19:22.000000000 +0000
+++ CMakeLists.txt
-@@ -66,12 +66,6 @@ else(CMAKE_CXX_COMPILER_ID STREQUAL "MSV
+@@ -66,12 +66,6 @@ else(MSVC)
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wextra")
endif(NOT CMAKE_CXX_FLAGS MATCHES "-Wextra")
@@ -18,15 +17,3 @@ Check a different intrinsic to fix build
# Disable sign comparison warnings. Matches upcoming Bazel setup.
if(NOT CMAKE_CXX_FLAGS MATCHES "-Wno-sign-compare")
-@@ -207,9 +201,9 @@ int main() {
- check_cxx_source_compiles("
- #include <arm_neon.h>
- int main() {
-- uint8_t val = 3, dup[8];
-+ uint8_t val = 3;
- uint8x16_t v = vld1q_dup_u8(&val);
-- vst1q_u8(dup, v);
-+ val = vmaxvq_u8(v);
- return 0;
- }" SNAPPY_HAVE_NEON)
-
Home |
Main Index |
Thread Index |
Old Index