From owner-svn-ports-all@freebsd.org Wed Aug 9 00:44:07 2017 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 3568CDDB123; Wed, 9 Aug 2017 00:44:07 +0000 (UTC) (envelope-from ultima@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::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 1001E7EAE7; Wed, 9 Aug 2017 00:44:06 +0000 (UTC) (envelope-from ultima@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v790i6C4001242; Wed, 9 Aug 2017 00:44:06 GMT (envelope-from ultima@FreeBSD.org) Received: (from ultima@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v790i5qi001237; Wed, 9 Aug 2017 00:44:05 GMT (envelope-from ultima@FreeBSD.org) Message-Id: <201708090044.v790i5qi001237@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: ultima set sender to ultima@FreeBSD.org using -f From: Richard Gallamore Date: Wed, 9 Aug 2017 00:44:05 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r447585 - in head/archivers: . c-blosc X-SVN-Group: ports-head X-SVN-Commit-Author: ultima X-SVN-Commit-Paths: in head/archivers: . c-blosc X-SVN-Commit-Revision: 447585 X-SVN-Commit-Repository: ports 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.23 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: Wed, 09 Aug 2017 00:44:07 -0000 Author: ultima Date: Wed Aug 9 00:44:05 2017 New Revision: 447585 URL: https://svnweb.freebsd.org/changeset/ports/447585 Log: Blosc is a high performance compressor optimized for binary data. It has been designed to transmit data to the processor cache faster than the traditional, non-compressed, direct memory fetch approach via a memcpy() OS call. Blosc is the first compressor (that I'm aware of) that is meant not only to reduce the size of large datasets on-disk or in-memory, but also to accelerate memory-bound computations. WWW: http://blosc.org/ PR: 220908 Submitted by: Iblis Lin (maintainer) Reviewed by: matthew (mentor), mat Approved by: matthew (mentor) Differential Revision: https://reviews.freebsd.org/D11889 Added: head/archivers/c-blosc/ head/archivers/c-blosc/Makefile (contents, props changed) head/archivers/c-blosc/distinfo (contents, props changed) head/archivers/c-blosc/pkg-descr (contents, props changed) head/archivers/c-blosc/pkg-plist (contents, props changed) Modified: head/archivers/Makefile Modified: head/archivers/Makefile ============================================================================== --- head/archivers/Makefile Wed Aug 9 00:43:50 2017 (r447584) +++ head/archivers/Makefile Wed Aug 9 00:44:05 2017 (r447585) @@ -14,6 +14,7 @@ SUBDIR += brotli SUBDIR += bzip SUBDIR += bzip2 + SUBDIR += c-blosc SUBDIR += cabextract SUBDIR += dact SUBDIR += deb2targz Added: head/archivers/c-blosc/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/archivers/c-blosc/Makefile Wed Aug 9 00:44:05 2017 (r447585) @@ -0,0 +1,56 @@ +# Created by: iblis +# $FreeBSD$ + +PORTNAME= c-blosc +PORTVERSION= 1.12.1 +DISTVERSIONPREFIX= v +CATEGORIES= archivers devel + +MAINTAINER= iblis@hs.ntnu.edu.tw +COMMENT= Blocking, shuffling and loss-less compression library + +LICENSE= BSD3CLAUSE +LICENSE_FILE= ${WRKSRC}/LICENSES/BLOSC.txt + +USES= cmake compiler:c11 +USE_CSTD= c11 +USE_LDCONFIG= yes + +USE_GITHUB= yes +GH_ACCOUNT= Blosc + +TEST_TARGET= test + +PLIST_SUB= VERSION="${PORTVERSION:R:R}" \ + SOVERSION="${PORTVERSION}" + +CMAKE_ARGS= -DBUILD_SHARED=ON + +OPTIONS_DEFINE= STATIC TEST AVX2 LZ4 SNAPPY ZLIB ZSTD +OPTIONS_DEFAULT= STATIC LZ4 SNAPPY ZLIB ZSTD +OPTIONS_SUB= yes + +AVX2_DESC= Attempt to build with AVX2 instructions + +AVX2_CMAKE_BOOL_OFF= DEACTIVATE_AVX2 + +LZ4_CMAKE_ON= -DPREFER_EXTERNAL_LZ4=ON +LZ4_CMAKE_BOOL_OFF= DEACTIVATE_LZ4 +LZ4_LIB_DEPENDS= liblz4.so:archivers/liblz4 + +SNAPPY_CMAKE_ON= -DPREFER_EXTERNAL_SNAPPY=ON +SNAPPY_CMAKE_BOOL_OFF= DEACTIVATE_SNAPPY +SNAPPY_LIB_DEPENDS= libsnappy.so:archivers/snappy + +STATIC_CMAKE_BOOL= BUILD_STATIC + +TEST_CMAKE_BOOL= BUILD_TESTS BUILD_BENCHMARKS + +ZLIB_CMAKE_ON= -DPREFER_EXTERNAL_ZLIB=ON +ZLIB_CMAKE_BOOL_OFF= DEACTIVATE_ZLIB + +ZSTD_CMAKE_ON= -DPREFER_EXTERNAL_ZSTD=ON +ZSTD_CMAKE_BOOL_OFF= DEACTIVATE_ZSTD +ZSTD_LIB_DEPENDS= libzstd.so:archivers/zstd + +.include Added: head/archivers/c-blosc/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/archivers/c-blosc/distinfo Wed Aug 9 00:44:05 2017 (r447585) @@ -0,0 +1,3 @@ +TIMESTAMP = 1500619085 +SHA256 (Blosc-c-blosc-v1.12.1_GH0.tar.gz) = e04535e816bb942bedc9a0ba209944d1eb34e26e2d9cca37f114e8ee292cb3c8 +SIZE (Blosc-c-blosc-v1.12.1_GH0.tar.gz) = 683510 Added: head/archivers/c-blosc/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/archivers/c-blosc/pkg-descr Wed Aug 9 00:44:05 2017 (r447585) @@ -0,0 +1,8 @@ +Blosc is a high performance compressor optimized for binary data. +It has been designed to transmit data to the processor cache faster +than the traditional, non-compressed, direct memory fetch approach +via a memcpy() OS call. Blosc is the first compressor (that I'm aware of) +that is meant not only to reduce the size of large datasets on-disk or +in-memory, but also to accelerate memory-bound computations. + +WWW: http://blosc.org/ Added: head/archivers/c-blosc/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/archivers/c-blosc/pkg-plist Wed Aug 9 00:44:05 2017 (r447585) @@ -0,0 +1,7 @@ +include/blosc-export.h +include/blosc.h +%%STATIC%%lib/libblosc.a +lib/libblosc.so +lib/libblosc.so.%%VERSION%% +lib/libblosc.so.%%SOVERSION%% +libdata/pkgconfig/blosc.pc