From owner-svn-ports-all@freebsd.org Tue Nov 1 20:45:21 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 43BA0C2ACD1; Tue, 1 Nov 2016 20:45:21 +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 F09671899; Tue, 1 Nov 2016 20:45:20 +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 uA1KjKpr030421; Tue, 1 Nov 2016 20:45:20 GMT (envelope-from swills@FreeBSD.org) Received: (from swills@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id uA1KjJgI030416; Tue, 1 Nov 2016 20:45:19 GMT (envelope-from swills@FreeBSD.org) Message-Id: <201611012045.uA1KjJgI030416@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: swills set sender to swills@FreeBSD.org using -f From: Steve Wills Date: Tue, 1 Nov 2016 20:45:19 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r425091 - in head/devel: . rubygem-gem-compare 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.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: Tue, 01 Nov 2016 20:45:21 -0000 Author: swills Date: Tue Nov 1 20:45:19 2016 New Revision: 425091 URL: https://svnweb.freebsd.org/changeset/ports/425091 Log: devel/rubygem-gem-compare: create port gem-compare is a RubyGems plugin that helps to compare versions of the given gem. It searches for differences in metadata as well as in files. WWW: http://github.com/fedora-ruby/gem-compare Added: head/devel/rubygem-gem-compare/ head/devel/rubygem-gem-compare/Makefile (contents, props changed) head/devel/rubygem-gem-compare/distinfo (contents, props changed) head/devel/rubygem-gem-compare/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Tue Nov 1 20:36:42 2016 (r425090) +++ head/devel/Makefile Tue Nov 1 20:45:19 2016 (r425091) @@ -5055,6 +5055,7 @@ SUBDIR += rubygem-forwardable-extended SUBDIR += rubygem-gdata SUBDIR += rubygem-gem_plugin + SUBDIR += rubygem-gem-compare SUBDIR += rubygem-gemcutter SUBDIR += rubygem-gemnasium-gitlab-service SUBDIR += rubygem-gemnasium-parser Added: head/devel/rubygem-gem-compare/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/rubygem-gem-compare/Makefile Tue Nov 1 20:45:19 2016 (r425091) @@ -0,0 +1,20 @@ +# $FreeBSD$ + +PORTNAME= gem-compare +PORTVERSION= 0.0.7 +CATEGORIES= devel rubygems +MASTER_SITES= RG + +MAINTAINER= ruby@FreeBSD.org +COMMENT= RubyGems plugin for comparing gem versions + +RUN_DEPENDS= rubygem-json>=0:devel/rubygem-json \ + rubygem-curb>=0:ftp/rubygem-curb \ + rubygem-diffy>=0:textproc/rubygem-diffy \ + rubygem-rainbow>=0:devel/rubygem-rainbow \ + rubygem-gemnasium-parser>=0:devel/rubygem-gemnasium-parser + +USE_RUBY= yes +USES= gem + +.include Added: head/devel/rubygem-gem-compare/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/rubygem-gem-compare/distinfo Tue Nov 1 20:45:19 2016 (r425091) @@ -0,0 +1,3 @@ +TIMESTAMP = 1478031520 +SHA256 (rubygem/gem-compare-0.0.7.gem) = 3225a4d8cb4407ed2d8aa1adb4e5bf1cf0ed93f13000aa088d53ebb8152d7cdd +SIZE (rubygem/gem-compare-0.0.7.gem) = 19456 Added: head/devel/rubygem-gem-compare/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/rubygem-gem-compare/pkg-descr Tue Nov 1 20:45:19 2016 (r425091) @@ -0,0 +1,4 @@ +gem-compare is a RubyGems plugin that helps to compare versions of the given +gem. It searches for differences in metadata as well as in files. + +WWW: http://github.com/fedora-ruby/gem-compare