From owner-svn-ports-head@freebsd.org Tue Dec 22 17:11:41 2015 Return-Path: Delivered-To: svn-ports-head@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 D2661A4EC03; Tue, 22 Dec 2015 17:11:41 +0000 (UTC) (envelope-from sunpoet@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 95E211C3F; Tue, 22 Dec 2015 17:11:41 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id tBMHBeKv085644; Tue, 22 Dec 2015 17:11:40 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id tBMHBeJd085640; Tue, 22 Dec 2015 17:11:40 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201512221711.tBMHBeJd085640@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Tue, 22 Dec 2015 17:11:40 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r404258 - in head/archivers: . snzip X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 22 Dec 2015 17:11:42 -0000 Author: sunpoet Date: Tue Dec 22 17:11:40 2015 New Revision: 404258 URL: https://svnweb.freebsd.org/changeset/ports/404258 Log: - Add snzip 1.0.2 - While I'm here: - Add LICENSE_FILE - Add OPTIONS_DEFINE Snzip is one of command line tools using snappy. This supports five types of file formats: framing-format, old framing-format, SNZ format, snappy-java format and snappy-in-java format. The default format is framing-format. WWW: https://github.com/kubo/snzip PR: 205511 Submitted by: Added: head/archivers/snzip/ head/archivers/snzip/Makefile (contents, props changed) head/archivers/snzip/distinfo (contents, props changed) head/archivers/snzip/pkg-descr (contents, props changed) Modified: head/archivers/Makefile Modified: head/archivers/Makefile ============================================================================== --- head/archivers/Makefile Tue Dec 22 17:04:52 2015 (r404257) +++ head/archivers/Makefile Tue Dec 22 17:11:40 2015 (r404258) @@ -189,6 +189,7 @@ SUBDIR += sharutils SUBDIR += snappy SUBDIR += snappy-java + SUBDIR += snzip SUBDIR += squeeze SUBDIR += squsq SUBDIR += stuffit Added: head/archivers/snzip/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/archivers/snzip/Makefile Tue Dec 22 17:11:40 2015 (r404258) @@ -0,0 +1,27 @@ +# $FreeBSD$ + +PORTNAME= snzip +PORTVERSION= 1.0.2 +CATEGORIES= archivers + +MAINTAINER= mizhka@gmail.com +COMMENT= Compression/decompression tool based on snappy library + +LICENSE= BSD2CLAUSE +LICENSE_FILE= ${WRKSRC}/COPYING + +LIB_DEPENDS= libsnappy.so:${PORTSDIR}/archivers/snappy + +OPTIONS_DEFINE= DOCS + +USE_GITHUB= yes +GH_ACCOUNT= kubo + +USES= autoreconf +CONFIGURE_ARGS= --with-snappy=${LOCALBASE} +GNU_CONFIGURE= yes + +PLIST_FILES= bin/snzip +PORTDOCS= * + +.include Added: head/archivers/snzip/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/archivers/snzip/distinfo Tue Dec 22 17:11:40 2015 (r404258) @@ -0,0 +1,2 @@ +SHA256 (kubo-snzip-1.0.2_GH0.tar.gz) = ec2763e15ca42455a32a53c8eefb92d7a4b8ea2f518a6e04c0f11f86c4924847 +SIZE (kubo-snzip-1.0.2_GH0.tar.gz) = 1754963 Added: head/archivers/snzip/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/archivers/snzip/pkg-descr Tue Dec 22 17:11:40 2015 (r404258) @@ -0,0 +1,10 @@ +Snzip is one of command line tools using snappy. This supports five types of +file formats: + framing-format, + old framing-format, + SNZ format, + snappy-java format + and snappy-in-java format. +The default format is framing-format. + +WWW: https://github.com/kubo/snzip