From owner-svn-ports-all@freebsd.org Wed Jul 27 10:55:45 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 10A6DBA39AC; Wed, 27 Jul 2016 10:55:45 +0000 (UTC) (envelope-from tz@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 E26B219F6; Wed, 27 Jul 2016 10:55:44 +0000 (UTC) (envelope-from tz@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u6RAtiFI071064; Wed, 27 Jul 2016 10:55:44 GMT (envelope-from tz@FreeBSD.org) Received: (from tz@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u6RAthtW071059; Wed, 27 Jul 2016 10:55:43 GMT (envelope-from tz@FreeBSD.org) Message-Id: <201607271055.u6RAthtW071059@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tz set sender to tz@FreeBSD.org using -f From: Torsten Zuehlsdorff Date: Wed, 27 Jul 2016 10:55:43 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r419171 - in head/devel: . rubygem-chronic_duration rubygem-chronic_duration/files 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.22 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: Wed, 27 Jul 2016 10:55:45 -0000 Author: tz Date: Wed Jul 27 10:55:43 2016 New Revision: 419171 URL: https://svnweb.freebsd.org/changeset/ports/419171 Log: New port: devel/rubygem-chronic_duration A simple Ruby natural language parser for elapsed time. (For example, 4 hours and 30 minutes, 6 minutes 4 seconds, 3 days, etc.) Returns all results in seconds. WWW: https://github.com/hpoydar/chronic_duration Approved by: pi (mentor) Added: head/devel/rubygem-chronic_duration/ head/devel/rubygem-chronic_duration/Makefile (contents, props changed) head/devel/rubygem-chronic_duration/distinfo (contents, props changed) head/devel/rubygem-chronic_duration/files/ head/devel/rubygem-chronic_duration/files/patch-chronic__duration.gemspec (contents, props changed) head/devel/rubygem-chronic_duration/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Wed Jul 27 10:22:26 2016 (r419170) +++ head/devel/Makefile Wed Jul 27 10:55:43 2016 (r419171) @@ -4861,6 +4861,7 @@ SUBDIR += rubygem-cf-uaa-lib SUBDIR += rubygem-childprocess SUBDIR += rubygem-chronic + SUBDIR += rubygem-chronic_duration SUBDIR += rubygem-clamp SUBDIR += rubygem-classifier SUBDIR += rubygem-classifier-reborn Added: head/devel/rubygem-chronic_duration/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/rubygem-chronic_duration/Makefile Wed Jul 27 10:55:43 2016 (r419171) @@ -0,0 +1,21 @@ +# Created by: Torsten Zuehlsdorff +# $FreeBSD$ + +PORTNAME= chronic_duration +PORTVERSION= 0.10.6 +CATEGORIES= devel rubygems +MASTER_SITES= RG + +MAINTAINER= ruby@FreeBSD.org +COMMENT= Natural language parser for elapsed time + +LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE.txt + +RUN_DEPENDS= rubygem-numerizer>=0.1.1:devel/rubygem-numerizer + +NO_ARCH= yes +USE_RUBY= yes +USES= gem + +.include Added: head/devel/rubygem-chronic_duration/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/rubygem-chronic_duration/distinfo Wed Jul 27 10:55:43 2016 (r419171) @@ -0,0 +1,3 @@ +TIMESTAMP = 1469615692 +SHA256 (rubygem/chronic_duration-0.10.6.gem) = fac58d4147d3183a40811400380cafcef049f2bb02421d2fd1c6e685fbe8facc +SIZE (rubygem/chronic_duration-0.10.6.gem) = 11264 Added: head/devel/rubygem-chronic_duration/files/patch-chronic__duration.gemspec ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/rubygem-chronic_duration/files/patch-chronic__duration.gemspec Wed Jul 27 10:55:43 2016 (r419171) @@ -0,0 +1,11 @@ +--- chronic_duration.gemspec.orig 2016-07-27 10:38:00 UTC ++++ chronic_duration.gemspec +@@ -22,7 +22,7 @@ Gem::Specification.new do |s| + s.specification_version = 4 + + if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then +- s.add_runtime_dependency(%q.freeze, ["~> 0.1.1"]) ++ s.add_runtime_dependency(%q.freeze, [">= 0.1.1"]) + s.add_development_dependency(%q.freeze, ["~> 10.0.3"]) + s.add_development_dependency(%q.freeze, ["~> 2.12.0"]) + else Added: head/devel/rubygem-chronic_duration/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/rubygem-chronic_duration/pkg-descr Wed Jul 27 10:55:43 2016 (r419171) @@ -0,0 +1,5 @@ +A simple Ruby natural language parser for elapsed time. (For example, 4 hours +and 30 minutes, 6 minutes 4 seconds, 3 days, etc.) Returns all results in +seconds. + +WWW: https://github.com/hpoydar/chronic_duration