svn commit: r561620 - in head/archivers: . gzip-hpp

Yuri Victorovich yuri at FreeBSD.org
Fri Jan 15 07:21:08 UTC 2021


Author: yuri
Date: Fri Jan 15 07:21:07 2021
New Revision: 561620
URL: https://svnweb.freebsd.org/changeset/ports/561620

Log:
  New port: archivers/gzip-hpp: C++ header-only library for gzip compression and decompression

Added:
  head/archivers/gzip-hpp/
  head/archivers/gzip-hpp/Makefile   (contents, props changed)
  head/archivers/gzip-hpp/distinfo   (contents, props changed)
  head/archivers/gzip-hpp/pkg-descr   (contents, props changed)
Modified:
  head/archivers/Makefile

Modified: head/archivers/Makefile
==============================================================================
--- head/archivers/Makefile	Fri Jan 15 06:57:37 2021	(r561619)
+++ head/archivers/Makefile	Fri Jan 15 07:21:07 2021	(r561620)
@@ -36,6 +36,7 @@
     SUBDIR += grzip
     SUBDIR += gtar
     SUBDIR += gzip
+    SUBDIR += gzip-hpp
     SUBDIR += gzrecover
     SUBDIR += ha
     SUBDIR += hlextract

Added: head/archivers/gzip-hpp/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/archivers/gzip-hpp/Makefile	Fri Jan 15 07:21:07 2021	(r561620)
@@ -0,0 +1,30 @@
+# $FreeBSD$
+
+PORTNAME=	gzip-hpp
+DISTVERSIONPREFIX=	v
+DISTVERSION=	0.1.0-1
+DISTVERSIONSUFFIX=	-g7546b35
+CATEGORIES=	archivers devel
+
+MAINTAINER=	yuri at FreeBSD.org
+COMMENT=	C++ header-only library for gzip compression and decompression
+
+LICENSE=	BSD2CLAUSE
+LICENSE_FILE=	${WRKSRC}/LICENSE.md
+
+USE_GITHUB=	yes
+GH_ACCOUNT=	mapbox
+
+NO_BUILD=	yes
+NO_ARCH=	yes
+
+PLIST_FILES=	include/gzip/compress.hpp \
+		include/gzip/config.hpp \
+		include/gzip/decompress.hpp \
+		include/gzip/utils.hpp \
+		include/gzip/version.hpp
+
+do-install:
+	cd ${WRKSRC}/include && ${COPYTREE_SHARE} gzip ${STAGEDIR}${PREFIX}/include
+
+.include <bsd.port.mk>

Added: head/archivers/gzip-hpp/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/archivers/gzip-hpp/distinfo	Fri Jan 15 07:21:07 2021	(r561620)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1610694448
+SHA256 (mapbox-gzip-hpp-v0.1.0-1-g7546b35_GH0.tar.gz) = b369a96eac6294cb7d2f499caa0b09c90b1e894c79ff65681f14f00ad81c527f
+SIZE (mapbox-gzip-hpp-v0.1.0-1-g7546b35_GH0.tar.gz) = 59345

Added: head/archivers/gzip-hpp/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/archivers/gzip-hpp/pkg-descr	Fri Jan 15 07:21:07 2021	(r561620)
@@ -0,0 +1,3 @@
+Gzip C++ lib for gzip compression and decompression.
+
+WWW: https://github.com/mapbox/gzip-hpp


More information about the svn-ports-all mailing list