1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-28 05:29:48 +00:00

archivers/liblz4: Update to 1.10.0

Changes:	https://github.com/lz4/lz4/releases
This commit is contained in:
Po-Chuan Hsieh 2024-07-24 19:44:10 +08:00
parent 9dfb82f700
commit 8f90326975
No known key found for this signature in database
GPG Key ID: 9A4BD10F002DD04B
3 changed files with 40 additions and 8 deletions

View File

@ -1,6 +1,5 @@
PORTNAME= lz4
PORTVERSION= 1.9.4
PORTREVISION= 1
PORTVERSION= 1.10.0
PORTEPOCH= 1
CATEGORIES= archivers
MASTER_SITES= https://github.com/lz4/lz4/releases/download/v${PORTVERSION}/
@ -19,13 +18,22 @@ LICENSE_FILE_GPLv2= ${WRKSRC}/../../programs/COPYING
USES= cpe meson pkgconfig python:build shebangfix
MESON_ARGS= --default-library=both \
-Dalign-test=true \
-Dcontrib=false \
-Ddebug-level=1 \
-Ddistance-max=65535 \
-Denable_multithread=true \
-Dexamples=false \
-Dfast-dec-loop='auto' \
-Dforce-sw-bitcount=false \
-Dfreestanding=false \
-Dmemory-usage=0 \
-Dossfuzz=true \
-Dprograms=true \
-Dunstable=false
-Dunstable=false \
-Duser-memory-functions=false
USE_LDCONFIG= yes
WRKSRC_SUBDIR= contrib/meson
WRKSRC_SUBDIR= build/meson
PLIST_SUB= PORTVERSION=${PORTVERSION}
@ -33,7 +41,7 @@ CPE_VENDOR= lz4_project
PORTSCOUT= limit:^[0-9]*\.
SHEBANG_FILES= ../../tests/*.py meson/*.py
SHEBANG_GLOB= *.py
OPTIONS_DEFINE= TEST

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1696103937
SHA256 (lz4-1.9.4.tar.gz) = 0b0e3aa07c8c063ddf40b082bdf7e37a1562bda40a0ff5272957f3e987e0e54b
SIZE (lz4-1.9.4.tar.gz) = 354063
TIMESTAMP = 1721710218
SHA256 (lz4-1.10.0.tar.gz) = 537512904744b35e232912055ccf8ec66d768639ff3abe5788d90d792ec5f48b
SIZE (lz4-1.10.0.tar.gz) = 387114

View File

@ -0,0 +1,24 @@
--- meson/programs/meson.build.orig 2024-07-21 17:29:49 UTC
+++ meson/programs/meson.build
@@ -49,8 +49,8 @@ lz4cat = custom_target(
output: 'lz4cat',
command: [
'ln',
- '--symbolic',
- '--force',
+ '-s',
+ '-f',
fs.name(lz4.full_path()),
'@OUTPUT@'
]
@@ -62,8 +62,8 @@ unlz4 = custom_target(
output: 'unlz4',
command: [
'ln',
- '--symbolic',
- '--force',
+ '-s',
+ '-f',
fs.name(lz4.full_path()),
'@OUTPUT@'
]