Date: Thu, 18 Apr 2019 14:55:40 +0000 (UTC) From: Kai Knoblich <kai@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r499270 - in head/archivers: . lizard Message-ID: <201904181455.x3IEteKp079166@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: kai Date: Thu Apr 18 14:55:40 2019 New Revision: 499270 URL: https://svnweb.freebsd.org/changeset/ports/499270 Log: New port: archivers/lizard Lizard (formerly LZ5) is an efficient compressor with very fast decompression. It achieves compression ratio that is comparable to zip/zlib and zstd/brotli (at low and medium compression levels) at decompression speed of 1000 MB/s and faster. WWW: https://github.com/inikep/lizard PR: 237310 Submitted by: Hiroki Tagato <tagattie@yandex.com> Approved by: miwi (mentor) Differential Revision: https://reviews.freebsd.org/D19933 Added: head/archivers/lizard/ head/archivers/lizard/Makefile (contents, props changed) head/archivers/lizard/distinfo (contents, props changed) head/archivers/lizard/pkg-descr (contents, props changed) head/archivers/lizard/pkg-plist (contents, props changed) Modified: head/archivers/Makefile Modified: head/archivers/Makefile ============================================================================== --- head/archivers/Makefile Thu Apr 18 14:44:47 2019 (r499269) +++ head/archivers/Makefile Thu Apr 18 14:55:40 2019 (r499270) @@ -74,6 +74,7 @@ SUBDIR += libunrar SUBDIR += libunrar5 SUBDIR += libzip + SUBDIR += lizard SUBDIR += lrzip SUBDIR += lua-lzlib SUBDIR += lua51-zlib Added: head/archivers/lizard/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/archivers/lizard/Makefile Thu Apr 18 14:55:40 2019 (r499270) @@ -0,0 +1,27 @@ +# $FreeBSD$ + +PORTNAME= lizard +DISTVERSIONPREFIX= v +DISTVERSION= 1.0 +CATEGORIES= archivers + +MAINTAINER= tagattie@yandex.com +COMMENT= Efficient compressor with very fast decompression + +LICENSE= BSD2CLAUSE GPLv2 +LICENSE_COMB= multi +LICENSE_FILE_BSD2CLAUSE= ${WRKSRC}/lib/LICENSE +LICENSE_FILE_GPLv2= ${WRKSRC}/programs/COPYING + +USES= gmake + +USE_GITHUB= yes +GH_ACCOUNT= inikep + +USE_LDCONFIG= yes + +post-install: + ${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/lizard \ + ${STAGEDIR}/${PREFIX}/lib/liblizard.so.1.0.0 + +.include <bsd.port.mk> Added: head/archivers/lizard/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/archivers/lizard/distinfo Thu Apr 18 14:55:40 2019 (r499270) @@ -0,0 +1,3 @@ +TIMESTAMP = 1550625881 +SHA256 (inikep-lizard-v1.0_GH0.tar.gz) = 6f666ed699fc15dc7fdaabfaa55787b40ac251681b50c0d8df017c671a9457e6 +SIZE (inikep-lizard-v1.0_GH0.tar.gz) = 213732 Added: head/archivers/lizard/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/archivers/lizard/pkg-descr Thu Apr 18 14:55:40 2019 (r499270) @@ -0,0 +1,6 @@ +Lizard (formerly LZ5) is an efficient compressor with very fast +decompression. It achieves compression ratio that is comparable to +zip/zlib and zstd/brotli (at low and medium compression levels) at +decompression speed of 1000 MB/s and faster. + +WWW: https://github.com/inikep/lizard Added: head/archivers/lizard/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/archivers/lizard/pkg-plist Thu Apr 18 14:55:40 2019 (r499270) @@ -0,0 +1,14 @@ +bin/lizard +bin/lizardcat +bin/unlizard +include/lizard_common.h +include/lizard_compress.h +include/lizard_frame.h +lib/liblizard.a +lib/liblizard.so +lib/liblizard.so.1 +lib/liblizard.so.1.0.0 +libdata/pkgconfig/liblizard.pc +man/man1/lizard.1.gz +man/man1/lizardcat.1.gz +man/man1/unlizard.1.gz
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201904181455.x3IEteKp079166>