From owner-svn-ports-all@freebsd.org Thu Oct 1 15:55:08 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 1A4CBA0DBC5; Thu, 1 Oct 2015 15:55:08 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 087771C1B; Thu, 1 Oct 2015 15:55:08 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t91Ft78i060050; Thu, 1 Oct 2015 15:55:07 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t91Ft7Zo060046; Thu, 1 Oct 2015 15:55:07 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201510011555.t91Ft7Zo060046@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Thu, 1 Oct 2015 15:55:06 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398287 - in head/archivers: . brotli X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 01 Oct 2015 15:55:08 -0000 Author: sunpoet Date: Thu Oct 1 15:55:06 2015 New Revision: 398287 URL: https://svnweb.freebsd.org/changeset/ports/398287 Log: - Add brotli 0.2.0 Brotli is a generic-purpose lossless compression algorithm that compresses data using a combination of a modern variant of the LZ77 algorithm, Huffman coding and 2nd order context modeling, with a compression ratio comparable to the best currently available general-purpose compression methods. It is similar in speed with deflate but offers more dense compression. The specification of the Brotli Compressed Data Format is defined in the following internet draft: http://www.ietf.org/id/draft-alakuijala-brotli WWW: https://github.com/google/brotli Added: head/archivers/brotli/ head/archivers/brotli/Makefile (contents, props changed) head/archivers/brotli/distinfo (contents, props changed) head/archivers/brotli/pkg-descr (contents, props changed) Modified: head/archivers/Makefile Modified: head/archivers/Makefile ============================================================================== --- head/archivers/Makefile Thu Oct 1 15:50:25 2015 (r398286) +++ head/archivers/Makefile Thu Oct 1 15:55:06 2015 (r398287) @@ -11,6 +11,7 @@ SUBDIR += ark SUBDIR += atool SUBDIR += bicom + SUBDIR += brotli SUBDIR += bzip SUBDIR += bzip2 SUBDIR += cabextract Added: head/archivers/brotli/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/archivers/brotli/Makefile Thu Oct 1 15:55:06 2015 (r398287) @@ -0,0 +1,28 @@ +# Created by: Sunpoet Po-Chuan Hsieh +# $FreeBSD$ + +PORTNAME= brotli +PORTVERSION= 0.2.0 +DISTVERSIONPREFIX= v +CATEGORIES= archivers + +MAINTAINER= sunpoet@FreeBSD.org +COMMENT= Generic-purpose lossless compression algorithm + +LICENSE= APACHE20 +LICENSE_FILE= ${WRKSRC}/LICENSE + +USE_CXXSTD= c++0x +USE_PYTHON= autoplist distutils +USES= compiler:c++0x python + +PLIST_FILES= bin/brotli + +GH_ACCOUNT= google +USE_GITHUB= yes + +post-install: + ${INSTALL_SCRIPT} ${WRKSRC}/python/bro.py ${STAGEDIR}${PREFIX}/bin/brotli + ${STRIP_CMD} ${STAGEDIR}${PYTHON_SITELIBDIR}/brotli.so + +.include Added: head/archivers/brotli/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/archivers/brotli/distinfo Thu Oct 1 15:55:06 2015 (r398287) @@ -0,0 +1,2 @@ +SHA256 (google-brotli-v0.2.0_GH0.tar.gz) = 634d1089ee21b35e0ec5066cb5e44dd097e04e679e1e8c50bffa2b0dc77c2c29 +SIZE (google-brotli-v0.2.0_GH0.tar.gz) = 7839880 Added: head/archivers/brotli/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/archivers/brotli/pkg-descr Thu Oct 1 15:55:06 2015 (r398287) @@ -0,0 +1,10 @@ +Brotli is a generic-purpose lossless compression algorithm that compresses data +using a combination of a modern variant of the LZ77 algorithm, Huffman coding +and 2nd order context modeling, with a compression ratio comparable to the best +currently available general-purpose compression methods. It is similar in speed +with deflate but offers more dense compression. + +The specification of the Brotli Compressed Data Format is defined in the +following internet draft: http://www.ietf.org/id/draft-alakuijala-brotli + +WWW: https://github.com/google/brotli