From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Aug 14 12:50:02 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 09AF6618 for ; Wed, 14 Aug 2013 12:50:02 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id D631D2890 for ; Wed, 14 Aug 2013 12:50:01 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id r7ECo1w1001631 for ; Wed, 14 Aug 2013 12:50:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r7ECo1tE001630; Wed, 14 Aug 2013 12:50:01 GMT (envelope-from gnats) Resent-Date: Wed, 14 Aug 2013 12:50:01 GMT Resent-Message-Id: <201308141250.r7ECo1tE001630@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Alexey Degtyarev Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 0F36651C for ; Wed, 14 Aug 2013 12:45:39 +0000 (UTC) (envelope-from alexey@home.renatasystems.org) Received: from home.renatasystems.org (home.renatasystems.org [87.242.77.210]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 6E4E1285D for ; Wed, 14 Aug 2013 12:45:34 +0000 (UTC) Received: from home.renatasystems.org (localhost [127.0.0.1]) by home.renatasystems.org (8.14.5/8.14.5) with ESMTP id r7ECiFd9006976 for ; Wed, 14 Aug 2013 16:44:15 +0400 (MSK) (envelope-from alexey@home.renatasystems.org) Received: (from alexey@localhost) by home.renatasystems.org (8.14.5/8.14.5/Submit) id r7ECiAT6006975; Wed, 14 Aug 2013 16:44:10 +0400 (MSK) (envelope-from alexey) Message-Id: <201308141244.r7ECiAT6006975@home.renatasystems.org> Date: Wed, 14 Aug 2013 16:44:10 +0400 (MSK) From: Alexey Degtyarev To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: ports/181287: New port: archivers/lz4 - fast compressor using LZ4 algorithm X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list Reply-To: Alexey Degtyarev List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Aug 2013 12:50:02 -0000 >Number: 181287 >Category: ports >Synopsis: New port: archivers/lz4 - fast compressor using LZ4 algorithm >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Wed Aug 14 12:50:00 UTC 2013 >Closed-Date: >Last-Modified: >Originator: Alexey Degtyarev >Release: FreeBSD 9.0-RELEASE amd64 >Organization: >Environment: System: FreeBSD home.renatasystems.org 9.0-RELEASE FreeBSD 9.0-RELEASE #0: Mon Jan 30 09:54:00 UTC 2012 root@amd64-builder.renatasystems.org:/usr/obj/usr/src/sys/GENERIC amd64 >Description: LZ4 is a very fast lossless compression algorithm, providing compression speed at 300 MB/s per core, scalable with multi-cores CPU. It also features an extremely fast decoder, with speed in GB/s per core, typically reaching RAM speed limits on multi-core systems. This port introduces command line utility "lz4c": an opensource implementation of LZ4. WWW: https://code.google.com/p/lz4/ >How-To-Repeat: >Fix: --- lz4.shar begins here --- # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # lz4 # lz4/Makefile # lz4/distinfo # lz4/pkg-descr # echo c - lz4 mkdir -p lz4 > /dev/null 2>&1 echo x - lz4/Makefile sed 's/^X//' >lz4/Makefile << 'f7cd9e82d1c3e9e5eb775a74362219ef' X# Created by: Alexey Degtyarev X# $FreeBSD$ X XPORTNAME= lz4 XPORTVERSION= r101 XCATEGORIES= archivers XMASTER_SITES= https://dl.dropboxusercontent.com/u/59565338/LZ4/ \ X ftp://ftp.renatasystems.org/pub/FreeBSD/ports/distfiles/ X XMAINTAINER= alexey@renatasystems.org XCOMMENT= Fast compressor using LZ4 algorithm X XUSE_GMAKE= yes XALL_TARGET= lz4c X XPLIST_FILES= bin/lz4c X Xdo-install: X ${INSTALL_PROGRAM} ${WRKSRC}/lz4c.exe ${PREFIX}/bin/lz4c X X.include f7cd9e82d1c3e9e5eb775a74362219ef echo x - lz4/distinfo sed 's/^X//' >lz4/distinfo << '453bff7ea8c29b8f34691d142c580ccd' XSHA256 (lz4-r101.tar.gz) = db645ba773002b40394875779d35c447450fcf0c459968a0776899f0c7d1435c XSIZE (lz4-r101.tar.gz) = 128678 453bff7ea8c29b8f34691d142c580ccd echo x - lz4/pkg-descr sed 's/^X//' >lz4/pkg-descr << '884c559b6d83abb1bb8ab5e6c3606261' XLZ4 is a very fast lossless compression algorithm, providing compression speed Xat 300 MB/s per core, scalable with multi-cores CPU. It also features an Xextremely fast decoder, with speed in GB/s per core, typically reaching RAM Xspeed limits on multi-core systems. X XWWW: https://code.google.com/p/lz4/ 884c559b6d83abb1bb8ab5e6c3606261 exit --- lz4.shar ends here --- >Release-Note: >Audit-Trail: >Unformatted: