Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 7 Jul 2016 13:55:21 +0000 (UTC)
From:      Steven Kreuzer <skreuzer@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r418183 - in head/archivers: . lzfse
Message-ID:  <201607071355.u67DtLKf069341@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: skreuzer
Date: Thu Jul  7 13:55:20 2016
New Revision: 418183
URL: https://svnweb.freebsd.org/changeset/ports/418183

Log:
  This is a reference C implementation of the LZFSE compressor introduced in the
  Compression library with OS X 10.11 and iOS 9.
  
  LZFSE is a Lempel-Ziv style data compression algorithm using Finite State
  Entropy coding. It targets similar compression rates at higher compression and
  decompression speed compared to deflate using zlib.
  
  WWW: https://github.com/lzfse/lzfse

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

Modified: head/archivers/Makefile
==============================================================================
--- head/archivers/Makefile	Thu Jul  7 13:30:54 2016	(r418182)
+++ head/archivers/Makefile	Thu Jul  7 13:55:20 2016	(r418183)
@@ -72,6 +72,7 @@
     SUBDIR += linux-f10-ucl
     SUBDIR += linux-f10-upx
     SUBDIR += lrzip
+    SUBDIR += lzfse
     SUBDIR += lzip
     SUBDIR += lzlib
     SUBDIR += lzma

Added: head/archivers/lzfse/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/archivers/lzfse/Makefile	Thu Jul  7 13:55:20 2016	(r418183)
@@ -0,0 +1,18 @@
+# Created by: Steven Kreuzer <skreuzer@FreeBSD.org>
+# $FreeBSD$
+
+PORTNAME=	lzfse
+PORTVERSION=	20160707
+CATEGORIES=	archivers
+
+MAINTAINER=	skreuzer@FreeBSD.org
+COMMENT=	Lempel-Ziv style data compression algorithm
+
+USE_GITHUB=	yes
+GH_ACCOUNT=	lzfse
+GH_TAGNAME=	4591228
+
+USES=	gmake
+MAKE_ARGS+=	INSTALL_PREFIX="${STAGEDIR}${PREFIX}"
+
+.include <bsd.port.mk>

Added: head/archivers/lzfse/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/archivers/lzfse/distinfo	Thu Jul  7 13:55:20 2016	(r418183)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1467897116
+SHA256 (lzfse-lzfse-20160707-4591228_GH0.tar.gz) = a6b8609947ed610d52f8438ad67c3fd6589f0ae831feae2ef10c2cfc2568d11f
+SIZE (lzfse-lzfse-20160707-4591228_GH0.tar.gz) = 45414

Added: head/archivers/lzfse/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/archivers/lzfse/pkg-descr	Thu Jul  7 13:55:20 2016	(r418183)
@@ -0,0 +1,8 @@
+This is a reference C implementation of the LZFSE compressor introduced in the
+Compression library with OS X 10.11 and iOS 9.
+
+LZFSE is a Lempel-Ziv style data compression algorithm using Finite State
+Entropy coding. It targets similar compression rates at higher compression and
+decompression speed compared to deflate using zlib.
+
+WWW: https://github.com/lzfse/lzfse

Added: head/archivers/lzfse/pkg-plist
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/archivers/lzfse/pkg-plist	Thu Jul  7 13:55:20 2016	(r418183)
@@ -0,0 +1,4 @@
+@comment $FreeBSD$
+include/lzfse.h
+lib/liblzfse.a
+bin/lzfse



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201607071355.u67DtLKf069341>