Date: Fri, 15 Jan 2021 07:30:18 +0000 (UTC) From: Yuri Victorovich <yuri@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r561621 - in head/archivers: . zstr Message-ID: <202101150730.10F7UILV059643@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: yuri Date: Fri Jan 15 07:30:17 2021 New Revision: 561621 URL: https://svnweb.freebsd.org/changeset/ports/561621 Log: New port: archivers/zstr: C++ header-only ZLib wrapper Added: head/archivers/zstr/ head/archivers/zstr/Makefile (contents, props changed) head/archivers/zstr/distinfo (contents, props changed) head/archivers/zstr/pkg-descr (contents, props changed) Modified: head/archivers/Makefile Modified: head/archivers/Makefile ============================================================================== --- head/archivers/Makefile Fri Jan 15 07:21:07 2021 (r561620) +++ head/archivers/Makefile Fri Jan 15 07:30:17 2021 (r561621) @@ -257,6 +257,7 @@ SUBDIR += zoo SUBDIR += zopfli SUBDIR += zstd + SUBDIR += zstr SUBDIR += zutils .include <bsd.port.subdir.mk> Added: head/archivers/zstr/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/archivers/zstr/Makefile Fri Jan 15 07:30:17 2021 (r561621) @@ -0,0 +1,27 @@ +# $FreeBSD$ + +PORTNAME= zstr +DISTVERSIONPREFIX= v +DISTVERSION= 1.0.4 +CATEGORIES= archivers devel + +MAINTAINER= yuri@FreeBSD.org +COMMENT= C++ header-only ZLib wrapper + +LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE + +USE_GITHUB= yes +GH_ACCOUNT= mateidavid + +NO_BUILD= yes +NO_ARCH= yes + +PLIST_FILES= include/strict_fstream.hpp \ + include/zstr.hpp \ + include/zstr_make_unique_polyfill.h + +do-install: + cd ${WRKSRC}/src && ${COPYTREE_SHARE} . ${STAGEDIR}${PREFIX}/include + +.include <bsd.port.mk> Added: head/archivers/zstr/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/archivers/zstr/distinfo Fri Jan 15 07:30:17 2021 (r561621) @@ -0,0 +1,3 @@ +TIMESTAMP = 1610695544 +SHA256 (mateidavid-zstr-v1.0.4_GH0.tar.gz) = a594a3a9c192a6d9e93f9585910d41f7ee6791eb7c454d40c922656324b3058e +SIZE (mateidavid-zstr-v1.0.4_GH0.tar.gz) = 11326 Added: head/archivers/zstr/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/archivers/zstr/pkg-descr Fri Jan 15 07:30:17 2021 (r561621) @@ -0,0 +1,10 @@ +The zstr C++ header-only library enables the use of C++ standard iostreams to +access ZLib-compressed streams. + +For input access (decompression), the compression format is auto-detected, and +multiple concatenated compressed streams are decompressed seamlessly. + +For output access (compression), the only parameter exposed by this API is the +compression level. + +WWW: https://github.com/mateidavid/zstr
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202101150730.10F7UILV059643>