aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJason W. Bacon <jwb@FreeBSD.org>2023-02-09 19:35:52 +0000
committerJason W. Bacon <jwb@FreeBSD.org>2023-02-09 19:37:01 +0000
commite0f318708a580cc4b3ef062cceac223612916f26 (patch)
tree4685159d80033a4f4f777522292736d4138b5721
parent3d2ef90d0f941012262285b93a854172a7dc3c79 (diff)
downloadports-e0f318708a580cc4b3ef062cceac223612916f26.tar.gz
ports-e0f318708a580cc4b3ef062cceac223612916f26.zip
archivers/streamvbyte: Update to 0.5.2
A few fixes, including clang 15 support Changes: https://github.com/lemire/streamvbyte/releases Reported by: portscout
-rw-r--r--archivers/streamvbyte/Makefile6
-rw-r--r--archivers/streamvbyte/distinfo6
-rw-r--r--archivers/streamvbyte/pkg-descr15
3 files changed, 12 insertions, 15 deletions
diff --git a/archivers/streamvbyte/Makefile b/archivers/streamvbyte/Makefile
index d5d1bcea151c..de5369a76dcd 100644
--- a/archivers/streamvbyte/Makefile
+++ b/archivers/streamvbyte/Makefile
@@ -1,6 +1,6 @@
PORTNAME= streamvbyte
DISTVERSIONPREFIX= v
-DISTVERSION= 0.5.1
+DISTVERSION= 0.5.2
CATEGORIES= archivers
MAINTAINER= jwb@FreeBSD.org
@@ -10,8 +10,8 @@ WWW= https://github.com/lemire/streamvbyte
LICENSE= APACHE20
LICENSE_FILE= ${WRKSRC}/LICENSE
-BROKEN_powerpc= Test fails on big-endian systems
-BROKEN_powerpc64= Test fails on big-endian systems
+BROKEN_powerpc= test fails on big-endian systems
+BROKEN_powerpc64= test fails on big-endian systems
USES= cmake
USE_GITHUB= yes
diff --git a/archivers/streamvbyte/distinfo b/archivers/streamvbyte/distinfo
index b39f38b42a21..ead69fceb2c2 100644
--- a/archivers/streamvbyte/distinfo
+++ b/archivers/streamvbyte/distinfo
@@ -1,3 +1,3 @@
-TIMESTAMP = 1661638393
-SHA256 (lemire-streamvbyte-v0.5.1_GH0.tar.gz) = b0f2403582f90b79f4bb37a4835ca3d62e43358d71b09a8f7e7920862faf0709
-SIZE (lemire-streamvbyte-v0.5.1_GH0.tar.gz) = 75644
+TIMESTAMP = 1675965569
+SHA256 (lemire-streamvbyte-v0.5.2_GH0.tar.gz) = 6c64b1bcd69515e77111df274db9cbc471c5d65cb9769c7b95d3b56941b622dd
+SIZE (lemire-streamvbyte-v0.5.2_GH0.tar.gz) = 75802
diff --git a/archivers/streamvbyte/pkg-descr b/archivers/streamvbyte/pkg-descr
index 80199789c53d..f3bb1fe4edd3 100644
--- a/archivers/streamvbyte/pkg-descr
+++ b/archivers/streamvbyte/pkg-descr
@@ -1,11 +1,8 @@
StreamVByte is an integer compression technique that applies SIMD
-instructions (vectorization) to Google's varint approach. The net result
-is faster than other byte-oriented compression techniques.
-
-The approach is patent-free, the code is available under the Apache License.
-
-It includes fast differential coding.
-
-It assumes a recent Intel processor (e.g., haswell or better, though we provide
-runtime dispatching for compatibility with legacy systems) or an ARM processor
+instructions (vectorization) to Google's varint approach. The net
+result is faster than other byte-oriented compression techniques. The
+approach is patent-free, the code is available under the Apache
+License. It includes fast differential coding. It assumes a recent
+Intel processor (e.g., haswell or better, though we provide runtime
+dispatching for compatibility with legacy systems) or an ARM processor
with NEON instructions (which is almost all of them).