From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Aug 17 02:30: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 DEB7C382 for ; Sat, 17 Aug 2013 02:30: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 CC3472E5F for ; Sat, 17 Aug 2013 02:30:02 +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 r7H2U2lF073890 for ; Sat, 17 Aug 2013 02:30:02 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r7H2U29V073889; Sat, 17 Aug 2013 02:30:02 GMT (envelope-from gnats) Date: Sat, 17 Aug 2013 02:30:02 GMT Message-Id: <201308170230.r7H2U29V073889@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org Cc: From: dfilter@FreeBSD.ORG (dfilter service) Subject: Re: ports/181287: commit references a PR X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list Reply-To: dfilter service List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 17 Aug 2013 02:30:02 -0000 The following reply was made to PR ports/181287; it has been noted by GNATS. From: dfilter@FreeBSD.ORG (dfilter service) To: bug-followup@FreeBSD.org Cc: Subject: Re: ports/181287: commit references a PR Date: Sat, 17 Aug 2013 02:24:47 +0000 (UTC) Author: vanilla Date: Sat Aug 17 02:24:38 2013 New Revision: 324828 URL: http://svnweb.freebsd.org/changeset/ports/324828 Log: Add lz4 r101, fast compressor using LZ4 algorithm. PR: ports/181287 Submitted by: Alexey Degtyarev Added: head/archivers/lz4/ head/archivers/lz4/Makefile (contents, props changed) head/archivers/lz4/distinfo (contents, props changed) head/archivers/lz4/files/ head/archivers/lz4/files/patch-Makefile (contents, props changed) head/archivers/lz4/patch-Makefile (contents, props changed) head/archivers/lz4/pkg-descr (contents, props changed) Modified: head/archivers/Makefile Modified: head/archivers/Makefile ============================================================================== --- head/archivers/Makefile Sat Aug 17 00:16:12 2013 (r324827) +++ head/archivers/Makefile Sat Aug 17 02:24:38 2013 (r324828) @@ -70,6 +70,7 @@ SUBDIR += linux-f10-ucl SUBDIR += linux-f10-upx SUBDIR += lrzip + SUBDIR += lz4 SUBDIR += lzip SUBDIR += lzlib SUBDIR += lzma Added: head/archivers/lz4/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/archivers/lz4/Makefile Sat Aug 17 02:24:38 2013 (r324828) @@ -0,0 +1,21 @@ +# Created by: Alexey Degtyarev +# $FreeBSD$ + +PORTNAME= lz4 +PORTVERSION= r101 +CATEGORIES= archivers +MASTER_SITES= https://dl.dropboxusercontent.com/u/59565338/LZ4/ \ + ftp://ftp.renatasystems.org/pub/FreeBSD/ports/distfiles/ + +MAINTAINER= alexey@renatasystems.org +COMMENT= Fast compressor using LZ4 algorithm + +USES= gmake +ALL_TARGET= lz4c + +PLIST_FILES= bin/lz4c + +do-install: + ${INSTALL_PROGRAM} ${WRKSRC}/lz4c.exe ${PREFIX}/bin/lz4c + +.include Added: head/archivers/lz4/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/archivers/lz4/distinfo Sat Aug 17 02:24:38 2013 (r324828) @@ -0,0 +1,2 @@ +SHA256 (lz4-r101.tar.gz) = db645ba773002b40394875779d35c447450fcf0c459968a0776899f0c7d1435c +SIZE (lz4-r101.tar.gz) = 128678 Added: head/archivers/lz4/files/patch-Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/archivers/lz4/files/patch-Makefile Sat Aug 17 02:24:38 2013 (r324828) @@ -0,0 +1,10 @@ +--- Makefile.orig 2013-08-17 10:13:57.000000000 +0800 ++++ Makefile 2013-08-17 10:14:10.000000000 +0800 +@@ -1,5 +1,5 @@ +-CC=gcc +-CFLAGS=-I. -std=c99 -Wall -W -Wundef -Wno-implicit-function-declaration ++CC:=$(CC) ++CFLAGS:=-I. -std=c99 -Wall -W -Wundef -Wno-implicit-function-declaration + + OS := $(shell uname) + ifeq ($(OS),Linux) Added: head/archivers/lz4/patch-Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/archivers/lz4/patch-Makefile Sat Aug 17 02:24:38 2013 (r324828) @@ -0,0 +1,18 @@ +--- Makefile.orig 2013-08-08 02:43:06.000000000 +0800 ++++ Makefile 2013-08-17 10:11:19.000000000 +0800 +@@ -1,12 +1,7 @@ +-CC=gcc +-CFLAGS=-I. -std=c99 -Wall -W -Wundef -Wno-implicit-function-declaration ++CC:=$(CC) ++CFLAGS+=-I. -std=c99 -Wall -W -Wundef -Wno-implicit-function-declaration + +-OS := $(shell uname) +-ifeq ($(OS),Linux) +-EXT = +-else +-EXT =.exe +-endif ++EXT= + + default: lz4c + Added: head/archivers/lz4/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/archivers/lz4/pkg-descr Sat Aug 17 02:24:38 2013 (r324828) @@ -0,0 +1,6 @@ +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. + +WWW: https://code.google.com/p/lz4/ _______________________________________________ svn-ports-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/svn-ports-all To unsubscribe, send any mail to "svn-ports-all-unsubscribe@freebsd.org"