diff options
Diffstat (limited to 'archivers')
| -rw-r--r-- | archivers/brotli/Makefile | 18 | ||||
| -rw-r--r-- | archivers/brotli/distinfo | 10 | ||||
| -rw-r--r-- | archivers/brotli/files/extra-patch-static-libs | 40 | ||||
| -rw-r--r-- | archivers/brotli/files/patch-CMakeLists.txt | 11 | ||||
| -rw-r--r-- | archivers/kf6-karchive/distinfo | 6 | ||||
| -rw-r--r-- | archivers/lha/Makefile | 5 | ||||
| -rw-r--r-- | archivers/php-lz4/Makefile | 3 | ||||
| -rw-r--r-- | archivers/php-lz4/distinfo | 6 | ||||
| -rw-r--r-- | archivers/py-brotli/Makefile | 9 | ||||
| -rw-r--r-- | archivers/py-brotli/distinfo | 6 | ||||
| -rw-r--r-- | archivers/py-brotli/files/patch-MANIFEST.in | 19 | ||||
| -rw-r--r-- | archivers/py-brotli/files/patch-setup.py | 125 | ||||
| -rw-r--r-- | archivers/py-zipstream-ng/Makefile | 2 | ||||
| -rw-r--r-- | archivers/zstd/Makefile | 11 | ||||
| -rw-r--r-- | archivers/zstd/distinfo | 4 | ||||
| -rw-r--r-- | archivers/zstr/Makefile | 2 | ||||
| -rw-r--r-- | archivers/zstr/distinfo | 6 |
17 files changed, 69 insertions, 214 deletions
diff --git a/archivers/brotli/Makefile b/archivers/brotli/Makefile index 9878b7513768..6e77060e2902 100644 --- a/archivers/brotli/Makefile +++ b/archivers/brotli/Makefile @@ -1,11 +1,11 @@ PORTNAME= brotli DISTVERSIONPREFIX= v -DISTVERSION= 1.1.0 +DISTVERSION= 1.2.0 PORTEPOCH= 1 CATEGORIES= archivers devel - -PATCH_SITES= https://github.com/google/${PORTNAME}/commit/ -PATCHFILES= 741610efd335a8b6ff9be4c9bed643e0a74fdb6a.patch:-p1 +MASTER_SITES+= https://github.com/google/${PORTNAME}/releases/download/${DISTVERSIONFULL}/ +DISTFILES+= testdata.txz +DIST_SUBDIR= ${PORTNAME}/${DISTVERSION} MAINTAINER= osa@FreeBSD.org COMMENT= Generic-purpose lossless compression algorithm @@ -14,7 +14,7 @@ WWW= https://github.com/google/brotli LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE -USES= cmake:testing cpe pkgconfig +USES= cmake cpe pathfix CPE_VENDOR= google USE_LDCONFIG= yes @@ -23,12 +23,16 @@ GH_ACCOUNT= google PLIST_SUB= SHLIBVER=${DISTVERSION:R} -CMAKE_OFF= BUILD_TESTING +TEST_TARGET= test + CMAKE_ARGS= -DSHARE_INSTALL_PREFIX=share OPTIONS_DEFINE= STATIC OPTIONS_SUB= yes -STATIC_EXTRA_PATCHES= ${PATCHDIR}/extra-patch-static-libs +STATIC_CMAKE_BOOL= BROTLI_BUILD_FOR_PACKAGE + +post-extract: + ${MV} ${WRKDIR}/tests/testdata/* ${WRKSRC}/tests/testdata/ .include <bsd.port.mk> diff --git a/archivers/brotli/distinfo b/archivers/brotli/distinfo index 9adf1b378f4a..bf61b532f163 100644 --- a/archivers/brotli/distinfo +++ b/archivers/brotli/distinfo @@ -1,5 +1,5 @@ -TIMESTAMP = 1736034427 -SHA256 (google-brotli-v1.1.0_GH0.tar.gz) = e720a6ca29428b803f4ad165371771f5398faba397edf6778837a18599ea13ff -SIZE (google-brotli-v1.1.0_GH0.tar.gz) = 511969 -SHA256 (741610efd335a8b6ff9be4c9bed643e0a74fdb6a.patch) = 99ccada03a1c0ac09a93d14c81a5c2ee7bf4563aaafacc290a5070503dc60c1b -SIZE (741610efd335a8b6ff9be4c9bed643e0a74fdb6a.patch) = 1024 +TIMESTAMP = 1761638001 +SHA256 (brotli/1.2.0/testdata.txz) = e8624d888f13067e7635353397cf42956bf4ca1382da67f9cec8d43e800deecb +SIZE (brotli/1.2.0/testdata.txz) = 3830712 +SHA256 (brotli/1.2.0/google-brotli-v1.2.0_GH0.tar.gz) = 816c96e8e8f193b40151dad7e8ff37b1221d019dbcb9c35cd3fadbfe6477dfec +SIZE (brotli/1.2.0/google-brotli-v1.2.0_GH0.tar.gz) = 646315 diff --git a/archivers/brotli/files/extra-patch-static-libs b/archivers/brotli/files/extra-patch-static-libs deleted file mode 100644 index 857fb4515bdf..000000000000 --- a/archivers/brotli/files/extra-patch-static-libs +++ /dev/null @@ -1,40 +0,0 @@ ---- CMakeLists.txt.orig 2023-08-21 13:36:24 UTC -+++ CMakeLists.txt -@@ -122,12 +122,15 @@ endif() - - file(GLOB_RECURSE BROTLI_COMMON_SOURCES RELATIVE ${CMAKE_CURRENT_SOURCE_DIR} c/common/*.c) - add_library(brotlicommon ${BROTLI_COMMON_SOURCES}) -+add_library(brotlicommonstatic STATIC ${BROTLI_COMMON_SOURCES}) - - file(GLOB_RECURSE BROTLI_DEC_SOURCES RELATIVE ${CMAKE_CURRENT_SOURCE_DIR} c/dec/*.c) - add_library(brotlidec ${BROTLI_DEC_SOURCES}) -+add_library(brotlidecstatic STATIC ${BROTLI_DEC_SOURCES}) - - file(GLOB_RECURSE BROTLI_ENC_SOURCES RELATIVE ${CMAKE_CURRENT_SOURCE_DIR} c/enc/*.c) - add_library(brotlienc ${BROTLI_ENC_SOURCES}) -+add_library(brotliencstatic STATIC ${BROTLI_ENC_SOURCES}) - - # Older CMake versions does not understand INCLUDE_DIRECTORIES property. - include_directories(${BROTLI_INCLUDE_DIRS}) -@@ -152,6 +155,10 @@ foreach(lib ${BROTLI_LIBRARIES_CORE}) - set_property(TARGET ${lib} APPEND PROPERTY INTERFACE_INCLUDE_DIRECTORIES "$<BUILD_INTERFACE:${BROTLI_INCLUDE_DIRS}>") - endforeach() - -+set_property(TARGET brotlicommonstatic PROPERTY OUTPUT_NAME brotlicommon) -+set_property(TARGET brotlidecstatic PROPERTY OUTPUT_NAME brotlidec) -+set_property(TARGET brotliencstatic PROPERTY OUTPUT_NAME brotlienc) -+ - if(NOT BROTLI_EMSCRIPTEN) - target_link_libraries(brotlidec brotlicommon) - target_link_libraries(brotlienc brotlicommon) -@@ -185,7 +192,9 @@ if(NOT BROTLI_BUNDLED_MODE) - LIBRARY DESTINATION "${CMAKE_INSTALL_LIBDIR}" - RUNTIME DESTINATION "${CMAKE_INSTALL_BINDIR}" - ) -- -+ install(TARGETS brotlicommonstatic ARCHIVE DESTINATION "${CMAKE_INSTALL_LIBDIR}") -+ install(TARGETS brotlidecstatic ARCHIVE DESTINATION "${CMAKE_INSTALL_LIBDIR}") -+ install(TARGETS brotliencstatic ARCHIVE DESTINATION "${CMAKE_INSTALL_LIBDIR}") - install( - DIRECTORY ${BROTLI_INCLUDE_DIRS}/brotli - DESTINATION "${CMAKE_INSTALL_INCLUDEDIR}" diff --git a/archivers/brotli/files/patch-CMakeLists.txt b/archivers/brotli/files/patch-CMakeLists.txt new file mode 100644 index 000000000000..c385c8a8cab8 --- /dev/null +++ b/archivers/brotli/files/patch-CMakeLists.txt @@ -0,0 +1,11 @@ +--- CMakeLists.txt.orig 2025-10-27 13:07:48 UTC ++++ CMakeLists.txt +@@ -153,6 +153,8 @@ foreach(lib ${BROTLI_SHARED_LIBRARIES} ${BROTLI_STATIC + foreach(lib ${BROTLI_SHARED_LIBRARIES} ${BROTLI_STATIC_LIBRARIES}) + target_link_libraries(${lib} ${LIBM_LIBRARY}) + set_property(TARGET ${lib} APPEND PROPERTY INCLUDE_DIRECTORIES ${BROTLI_INCLUDE_DIRS}) ++ string(REGEX REPLACE "-static$" "" lib_base "${lib}") ++ set_property(TARGET ${lib} PROPERTY OUTPUT_NAME ${lib_base}) + set_target_properties(${lib} PROPERTIES + VERSION "${BROTLI_ABI_COMPATIBILITY}.${BROTLI_ABI_AGE}.${BROTLI_ABI_REVISION}" + SOVERSION "${BROTLI_ABI_COMPATIBILITY}") diff --git a/archivers/kf6-karchive/distinfo b/archivers/kf6-karchive/distinfo index ceb80e8d1e0f..c36bc38f6c5f 100644 --- a/archivers/kf6-karchive/distinfo +++ b/archivers/kf6-karchive/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1759784966 -SHA256 (KDE/frameworks/6.19/karchive-6.19.0.tar.xz) = 944332d802d0e128cebd087ffd50b726d100347973c2037c6051c72d54512a9e -SIZE (KDE/frameworks/6.19/karchive-6.19.0.tar.xz) = 1147772 +TIMESTAMP = 1762892862 +SHA256 (KDE/frameworks/6.20/karchive-6.20.0.tar.xz) = f6a508d537d283e2a106e848a939e971cdf1a059779825e4482609aa981ffadd +SIZE (KDE/frameworks/6.20/karchive-6.20.0.tar.xz) = 1148308 diff --git a/archivers/lha/Makefile b/archivers/lha/Makefile index 0db09fdc7a4f..0e96abf80cca 100644 --- a/archivers/lha/Makefile +++ b/archivers/lha/Makefile @@ -2,12 +2,13 @@ PORTNAME= lha PORTVERSION= 1.14i PORTREVISION= 10 CATEGORIES= archivers -MASTER_SITES= http://www2m.biglobe.ne.jp/~dolphin/lha/prog/ +MASTER_SITES= ftp://ftp.dinoex.de/pub/FreeBSD/distfiles/ \ + https://ftp.dinoex.de/pub/FreeBSD/distfiles/ DISTNAME= ${PORTNAME}-${PORTVERSION:S/.//} MAINTAINER= dinoex@FreeBSD.org COMMENT= Archive files using LZSS and Huffman compression (.lzh files) -WWW= http://www2m.biglobe.ne.jp/~dolphin/lha/lha.htm +WWW= https://web.archive.org/web/20200221013928/http://www2m.biglobe.ne.jp/~dolphin/lha/lha-unix.htm LICENSE= LHA LICENSE_NAME= License of lha diff --git a/archivers/php-lz4/Makefile b/archivers/php-lz4/Makefile index cb370abf7ec7..4f2866ca2092 100644 --- a/archivers/php-lz4/Makefile +++ b/archivers/php-lz4/Makefile @@ -1,6 +1,5 @@ PORTNAME= lz4 -DISTVERSION= 0.5.0 -PORTREVISION= 2 +DISTVERSION= 0.6.0 CATEGORIES= archivers PKGNAMEPREFIX= ${PHP_PKGNAMEPREFIX} diff --git a/archivers/php-lz4/distinfo b/archivers/php-lz4/distinfo index 443052c014a1..c22c979d0e26 100644 --- a/archivers/php-lz4/distinfo +++ b/archivers/php-lz4/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1754010146 -SHA256 (kjdev-php-ext-lz4-0.5.0_GH0.tar.gz) = 8e88154b50aecff0d4074296f7f5c8a3b8f1ce6fcea77d1508821e23a4788804 -SIZE (kjdev-php-ext-lz4-0.5.0_GH0.tar.gz) = 70642 +TIMESTAMP = 1763558643 +SHA256 (kjdev-php-ext-lz4-0.6.0_GH0.tar.gz) = 49cfcb981be2fe584712ac9f85ee143db5f44da738f635fcd2c9f24c929bc662 +SIZE (kjdev-php-ext-lz4-0.6.0_GH0.tar.gz) = 72652 diff --git a/archivers/py-brotli/Makefile b/archivers/py-brotli/Makefile index 469fb77231b7..6ff560d669ca 100644 --- a/archivers/py-brotli/Makefile +++ b/archivers/py-brotli/Makefile @@ -1,9 +1,8 @@ PORTNAME= brotli -PORTVERSION= 1.1.0 +PORTVERSION= 1.2.0 CATEGORIES= archivers python MASTER_SITES= PYPI PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} -DISTNAME= Brotli-${PORTVERSION} MAINTAINER= sunpoet@FreeBSD.org COMMENT= Generic-purpose lossless compression algorithm @@ -13,6 +12,7 @@ LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE BUILD_DEPENDS= brotli>=${PORTVERSION},1<${PORTVERSION}_99,1:archivers/brotli \ + ${PYTHON_PKGNAMEPREFIX}pkgconfig>=0:devel/py-pkgconfig@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}setuptools>=0:devel/py-setuptools@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}wheel>=0:devel/py-wheel@${PY_FLAVOR} LIB_DEPENDS= libbrotlicommon.so:archivers/brotli @@ -20,11 +20,12 @@ LIB_DEPENDS= libbrotlicommon.so:archivers/brotli USES= cpe python USE_PYTHON= autoplist concurrent pep517 +MAKE_ENV= USE_SYSTEM_BROTLI=1 + CPE_VENDOR= google post-patch: - @${REINPLACE_CMD} -e 's|%%LOCALBASE%%|${LOCALBASE}|' ${WRKSRC}/setup.py - @${MV} ${WRKSRC}/c/common/version.h ${WRKSRC}/ + @${REINPLACE_CMD} -e 's|%%PORTVERSION%%|${PORTVERSION}|' ${WRKSRC}/setup.py # Clean up bundled libraries @${RM} -r ${WRKSRC}/c/ diff --git a/archivers/py-brotli/distinfo b/archivers/py-brotli/distinfo index 47ce4f770c02..a710bf7e479b 100644 --- a/archivers/py-brotli/distinfo +++ b/archivers/py-brotli/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1694348256 -SHA256 (Brotli-1.1.0.tar.gz) = 81de08ac11bcb85841e440c13611c00b67d3bf82698314928d0b676362546724 -SIZE (Brotli-1.1.0.tar.gz) = 7372270 +TIMESTAMP = 1762567689 +SHA256 (brotli-1.2.0.tar.gz) = e310f77e41941c13340a95976fe66a8a95b01e783d430eeaf7a2f87e0a57dd0a +SIZE (brotli-1.2.0.tar.gz) = 7388632 diff --git a/archivers/py-brotli/files/patch-MANIFEST.in b/archivers/py-brotli/files/patch-MANIFEST.in deleted file mode 100644 index 7e2266d92276..000000000000 --- a/archivers/py-brotli/files/patch-MANIFEST.in +++ /dev/null @@ -1,19 +0,0 @@ ---- MANIFEST.in.orig 2023-09-09 22:24:31 UTC -+++ MANIFEST.in -@@ -1,11 +1,4 @@ - include CONTRIBUTING.md --include c/common/*.c --include c/common/*.h --include c/dec/*.c --include c/dec/*.h --include c/enc/*.c --include c/enc/*.h --include c/include/brotli/*.h - include LICENSE - include MANIFEST.in - include python/_brotli.cc -@@ -16,4 +9,3 @@ include python/tests/* - include README.md - include setup.py - include tests/testdata/* --include c/tools/brotli.c diff --git a/archivers/py-brotli/files/patch-setup.py b/archivers/py-brotli/files/patch-setup.py index 47808c0d1135..2a06bb990889 100644 --- a/archivers/py-brotli/files/patch-setup.py +++ b/archivers/py-brotli/files/patch-setup.py @@ -1,124 +1,11 @@ ---- setup.py.orig 2023-09-07 13:16:56 UTC +--- setup.py.orig 2025-11-05 18:03:58 UTC +++ setup.py -@@ -35,7 +35,7 @@ def read_define(path, macro): +@@ -142,7 +142,7 @@ NAME = "brotli" - def get_version(): - """ Return library version string from 'common/version.h' file. """ -- version_file_path = os.path.join(CURR_DIR, 'c', 'common', 'version.h') -+ version_file_path = os.path.join(CURR_DIR, 'version.h') - major = read_define(version_file_path, 'BROTLI_VERSION_MAJOR') - minor = read_define(version_file_path, 'BROTLI_VERSION_MINOR') - patch = read_define(version_file_path, 'BROTLI_VERSION_PATCH') -@@ -128,7 +128,7 @@ class BuildExt(build_ext): - target_lang=language) + NAME = "brotli" +-VERSION = get_version() ++VERSION = "%%PORTVERSION%%" --NAME = 'Brotli' -+NAME = 'brotli' - - VERSION = get_version() - -@@ -177,96 +177,17 @@ EXT_MODULES = [ - '_brotli', - sources=[ - 'python/_brotli.c', -- 'c/common/constants.c', -- 'c/common/context.c', -- 'c/common/dictionary.c', -- 'c/common/platform.c', -- 'c/common/shared_dictionary.c', -- 'c/common/transform.c', -- 'c/dec/bit_reader.c', -- 'c/dec/decode.c', -- 'c/dec/huffman.c', -- 'c/dec/state.c', -- 'c/enc/backward_references.c', -- 'c/enc/backward_references_hq.c', -- 'c/enc/bit_cost.c', -- 'c/enc/block_splitter.c', -- 'c/enc/brotli_bit_stream.c', -- 'c/enc/cluster.c', -- 'c/enc/command.c', -- 'c/enc/compound_dictionary.c', -- 'c/enc/compress_fragment.c', -- 'c/enc/compress_fragment_two_pass.c', -- 'c/enc/dictionary_hash.c', -- 'c/enc/encode.c', -- 'c/enc/encoder_dict.c', -- 'c/enc/entropy_encode.c', -- 'c/enc/fast_log.c', -- 'c/enc/histogram.c', -- 'c/enc/literal_cost.c', -- 'c/enc/memory.c', -- 'c/enc/metablock.c', -- 'c/enc/static_dict.c', -- 'c/enc/utf8_util.c', - ], - depends=[ -- 'c/common/constants.h', -- 'c/common/context.h', -- 'c/common/dictionary.h', -- 'c/common/platform.h', -- 'c/common/shared_dictionary_internal.h', -- 'c/common/transform.h', -- 'c/common/version.h', -- 'c/dec/bit_reader.h', -- 'c/dec/huffman.h', -- 'c/dec/prefix.h', -- 'c/dec/state.h', -- 'c/enc/backward_references.h', -- 'c/enc/backward_references_hq.h', -- 'c/enc/backward_references_inc.h', -- 'c/enc/bit_cost.h', -- 'c/enc/bit_cost_inc.h', -- 'c/enc/block_encoder_inc.h', -- 'c/enc/block_splitter.h', -- 'c/enc/block_splitter_inc.h', -- 'c/enc/brotli_bit_stream.h', -- 'c/enc/cluster.h', -- 'c/enc/cluster_inc.h', -- 'c/enc/command.h', -- 'c/enc/compound_dictionary.h', -- 'c/enc/compress_fragment.h', -- 'c/enc/compress_fragment_two_pass.h', -- 'c/enc/dictionary_hash.h', -- 'c/enc/encoder_dict.h', -- 'c/enc/entropy_encode.h', -- 'c/enc/entropy_encode_static.h', -- 'c/enc/fast_log.h', -- 'c/enc/find_match_length.h', -- 'c/enc/hash.h', -- 'c/enc/hash_composite_inc.h', -- 'c/enc/hash_forgetful_chain_inc.h', -- 'c/enc/hash_longest_match64_inc.h', -- 'c/enc/hash_longest_match_inc.h', -- 'c/enc/hash_longest_match_quickly_inc.h', -- 'c/enc/hash_rolling_inc.h', -- 'c/enc/hash_to_binary_tree_inc.h', -- 'c/enc/histogram.h', -- 'c/enc/histogram_inc.h', -- 'c/enc/literal_cost.h', -- 'c/enc/memory.h', -- 'c/enc/metablock.h', -- 'c/enc/metablock_inc.h', -- 'c/enc/params.h', -- 'c/enc/prefix.h', -- 'c/enc/quality.h', -- 'c/enc/ringbuffer.h', -- 'c/enc/static_dict.h', -- 'c/enc/static_dict_lut.h', -- 'c/enc/utf8_util.h', -- 'c/enc/write_bits.h', - ], - include_dirs=[ -- 'c/include', -+ '%%LOCALBASE%%/include', -+ ], -+ libraries=[ -+ 'brotlicommon', 'brotlidec', 'brotlienc', -+ ], -+ library_dirs=[ -+ '%%LOCALBASE%%/lib', - ]), - ] + URL = "https://github.com/google/brotli" diff --git a/archivers/py-zipstream-ng/Makefile b/archivers/py-zipstream-ng/Makefile index b13e2474e0b5..26f1b0b0494d 100644 --- a/archivers/py-zipstream-ng/Makefile +++ b/archivers/py-zipstream-ng/Makefile @@ -17,4 +17,6 @@ TEST_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pytest-cov>0:devel/py-pytest-cov@${PY_FLAVO USES= python USE_PYTHON= autoplist distutils pytest +NO_ARCH= yes + .include <bsd.port.mk> diff --git a/archivers/zstd/Makefile b/archivers/zstd/Makefile index 08c117e9fe55..b56e3290420d 100644 --- a/archivers/zstd/Makefile +++ b/archivers/zstd/Makefile @@ -1,8 +1,14 @@ PORTNAME= zstd PORTVERSION= 1.5.7 +PORTREVISION= 1 CATEGORIES= archivers MASTER_SITES= https://github.com/facebook/zstd/releases/download/v${PORTVERSION}/ +# update manpages to v1.5.7, were missed in the release, +# see https://github.com/facebook/zstd/releases/tag/v1.5.7 +PATCH_SITES= https://github.com/facebook/zstd/commit/ +PATCHFILES= 6af3842118ea5325480b403213b2a9fbed3d3d74.diff:-p1 # v1.5.7 manpages + MAINTAINER= sunpoet@FreeBSD.org COMMENT= Fast real-time compression algorithm WWW= https://facebook.github.io/zstd/ \ @@ -13,8 +19,8 @@ LICENSE_COMB= dual LICENSE_FILE_BSD3CLAUSE=${WRKSRC}/LICENSE LICENSE_FILE_GPLv2= ${WRKSRC}/COPYING -LIB_DEPENDS= liblz4.so:archivers/liblz4 - +# Note this port is in the dependency chain of lang/python314 +# as a requisite, thus cannot use meson or python to build USES= cpe gmake localbase:ldflags tar:zst ALL_TARGET= default @@ -25,6 +31,7 @@ MAKE_ENV= INSTALL_DATA="${INSTALL_DATA}" \ INSTALL_PROGRAM="${INSTALL_PROGRAM}" \ INSTALL_SCRIPT="${INSTALL_SCRIPT}" \ V=1 +MAKE_ARGS+= ${_MAKE_JOBS} HAVE_LZ4=0 TEST_TARGET= check USE_LDCONFIG= yes diff --git a/archivers/zstd/distinfo b/archivers/zstd/distinfo index 06fcc91f806d..53cddd81d61c 100644 --- a/archivers/zstd/distinfo +++ b/archivers/zstd/distinfo @@ -1,3 +1,5 @@ -TIMESTAMP = 1740022434 +TIMESTAMP = 1762084535 SHA256 (zstd-1.5.7.tar.zst) = 5b331d961d6989dc21bb03397fc7a2a4d86bc65a14adc5ffbbce050354e30fd2 SIZE (zstd-1.5.7.tar.zst) = 1862563 +SHA256 (6af3842118ea5325480b403213b2a9fbed3d3d74.diff) = 505a0dc5d6b9a3e6d5eba26a90dfc6b488908bbd8a616229aa4f4a04c357883b +SIZE (6af3842118ea5325480b403213b2a9fbed3d3d74.diff) = 53062 diff --git a/archivers/zstr/Makefile b/archivers/zstr/Makefile index 26e7c686ccdd..0875a59ef98a 100644 --- a/archivers/zstr/Makefile +++ b/archivers/zstr/Makefile @@ -1,6 +1,6 @@ PORTNAME= zstr DISTVERSIONPREFIX= v -DISTVERSION= 1.0.7 +DISTVERSION= 1.1.0 CATEGORIES= archivers devel MAINTAINER= yuri@FreeBSD.org diff --git a/archivers/zstr/distinfo b/archivers/zstr/distinfo index a49235bd99d8..68cf8ed1d334 100644 --- a/archivers/zstr/distinfo +++ b/archivers/zstr/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1670483092 -SHA256 (mateidavid-zstr-v1.0.7_GH0.tar.gz) = 8d2ddae68ff7bd0a6fce6150a8f52ad9ce1bed2c4056c8846f4dec4f2dc60819 -SIZE (mateidavid-zstr-v1.0.7_GH0.tar.gz) = 11743 +TIMESTAMP = 1763257302 +SHA256 (mateidavid-zstr-v1.1.0_GH0.tar.gz) = b77ef8b961233a100a34da588962a95a2f3b00c9b2dc0ea67100b36ec72128af +SIZE (mateidavid-zstr-v1.1.0_GH0.tar.gz) = 13130 |
