From owner-svn-ports-all@freebsd.org Sat Apr 23 15:08:20 2016 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 15058B1AB08; Sat, 23 Apr 2016 15:08:20 +0000 (UTC) (envelope-from swills@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 C0ED110AB; Sat, 23 Apr 2016 15:08:19 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u3NF8IsX008770; Sat, 23 Apr 2016 15:08:18 GMT (envelope-from swills@FreeBSD.org) Received: (from swills@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u3NF8ICm008766; Sat, 23 Apr 2016 15:08:18 GMT (envelope-from swills@FreeBSD.org) Message-Id: <201604231508.u3NF8ICm008766@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: swills set sender to swills@FreeBSD.org using -f From: Steve Wills Date: Sat, 23 Apr 2016 15:08:18 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r413879 - in head/archivers: . rubygem-ruby-xz 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.21 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: Sat, 23 Apr 2016 15:08:20 -0000 Author: swills Date: Sat Apr 23 15:08:18 2016 New Revision: 413879 URL: https://svnweb.freebsd.org/changeset/ports/413879 Log: archivers/rubygem-ruby-xz: create port These are simple Ruby bindings for the liblzma library (http://tukaani.org/xz/), which is best known for the extreme compression ratio. Since FFI is used to implement the bindings, no compilation is needed and they should work with JRuby as well. WWW: http://quintus.github.io/ruby-xz Added: head/archivers/rubygem-ruby-xz/ head/archivers/rubygem-ruby-xz/Makefile (contents, props changed) head/archivers/rubygem-ruby-xz/distinfo (contents, props changed) head/archivers/rubygem-ruby-xz/pkg-descr (contents, props changed) Modified: head/archivers/Makefile Modified: head/archivers/Makefile ============================================================================== --- head/archivers/Makefile Sat Apr 23 15:05:21 2016 (r413878) +++ head/archivers/Makefile Sat Apr 23 15:08:18 2016 (r413879) @@ -189,6 +189,7 @@ SUBDIR += rubygem-bzip2-ruby SUBDIR += rubygem-libarchive SUBDIR += rubygem-minitar + SUBDIR += rubygem-ruby-xz SUBDIR += rubygem-rubyzip SUBDIR += rubygem-rubyzip2 SUBDIR += rvm Added: head/archivers/rubygem-ruby-xz/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/archivers/rubygem-ruby-xz/Makefile Sat Apr 23 15:08:18 2016 (r413879) @@ -0,0 +1,15 @@ +# $FreeBSD$ + +PORTNAME= ruby-xz +PORTVERSION= 0.2.2 +CATEGORIES= archivers rubygems +MASTER_SITES= RG + +MAINTAINER= ruby@FreeBSD.org +COMMENT= Ruby bindings for the liblzma library + +USE_RUBY= yes +USE_RUBYGEMS= yes +RUBYGEM_AUTOPLIST= yes + +.include Added: head/archivers/rubygem-ruby-xz/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/archivers/rubygem-ruby-xz/distinfo Sat Apr 23 15:08:18 2016 (r413879) @@ -0,0 +1,2 @@ +SHA256 (rubygem/ruby-xz-0.2.2.gem) = 6c482a4743ddfbb9b4ef892338eac5ddf90ad1da79f2c5c4e74cbb513e413055 +SIZE (rubygem/ruby-xz-0.2.2.gem) = 20480 Added: head/archivers/rubygem-ruby-xz/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/archivers/rubygem-ruby-xz/pkg-descr Sat Apr 23 15:08:18 2016 (r413879) @@ -0,0 +1,6 @@ +These are simple Ruby bindings for the liblzma library +(http://tukaani.org/xz/), which is best known for the extreme compression +ratio. Since FFI is used to implement the bindings, no compilation is needed +and they should work with JRuby as well. + +WWW: http://quintus.github.io/ruby-xz