From owner-svn-ports-head@FreeBSD.ORG Sat Mar 2 04:25:14 2013 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 4B6E82C5; Sat, 2 Mar 2013 04:25:14 +0000 (UTC) (envelope-from rpaulo@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) by mx1.freebsd.org (Postfix) with ESMTP id 0D825916; Sat, 2 Mar 2013 04:25:14 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.5/8.14.5) with ESMTP id r224PDQf031336; Sat, 2 Mar 2013 04:25:13 GMT (envelope-from rpaulo@svn.freebsd.org) Received: (from rpaulo@localhost) by svn.freebsd.org (8.14.5/8.14.5/Submit) id r224PD2W031333; Sat, 2 Mar 2013 04:25:13 GMT (envelope-from rpaulo@svn.freebsd.org) Message-Id: <201303020425.r224PD2W031333@svn.freebsd.org> From: Rui Paulo Date: Sat, 2 Mar 2013 04:25:13 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r313185 - head/textproc/rubygem-ri_cal 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.14 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: Sat, 02 Mar 2013 04:25:14 -0000 Author: rpaulo (src committer) Date: Sat Mar 2 04:25:13 2013 New Revision: 313185 URL: http://svnweb.freebsd.org/changeset/ports/313185 Log: New port: rubygem-ri_cal. It's possible that 'devel' is the wrong component, but I followed the status quo. The Ruby gems dealing with calendar files should probably be in textproc. RiCal is a new Ruby Library for parsing, generating, and using iCalendar (RFC 2445) format data. Reviewed by: jgh Added: head/textproc/rubygem-ri_cal/ head/textproc/rubygem-ri_cal/Makefile (contents, props changed) head/textproc/rubygem-ri_cal/distinfo (contents, props changed) head/textproc/rubygem-ri_cal/pkg-descr (contents, props changed) Added: head/textproc/rubygem-ri_cal/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/rubygem-ri_cal/Makefile Sat Mar 2 04:25:13 2013 (r313185) @@ -0,0 +1,17 @@ +# $FreeBSD$ + +PORTNAME= ri_cal +PORTVERSION= 0.8.8 +CATEGORIES= devel rubygems +MASTER_SITES= RG + +MAINTAINER= ruby@FreeBSD.org +COMMENT= Library for parsing, and generating iCalendar data + +LICENSE= MIT + +USE_RUBY= yes +USE_RUBYGEMS= yes +RUBYGEM_AUTOPLIST=yes + +.include Added: head/textproc/rubygem-ri_cal/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/rubygem-ri_cal/distinfo Sat Mar 2 04:25:13 2013 (r313185) @@ -0,0 +1,2 @@ +SHA256 (rubygem/ri_cal-0.8.8.gem) = 200d7709e693e661b87230c2530e96bbe276591cf552f379bbee3aab86518fba +SIZE (rubygem/ri_cal-0.8.8.gem) = 429568 Added: head/textproc/rubygem-ri_cal/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/rubygem-ri_cal/pkg-descr Sat Mar 2 04:25:13 2013 (r313185) @@ -0,0 +1,19 @@ +RiCal is a new Ruby Library for parsing, generating, and using iCalendar +(RFC 2445) format data. + +RiCal distinguishes itself from existing Ruby libraries in providing +support for + +Timezone components in Calendars. This means that RiCal parses VTIMEZONE +data and instantiates timezone objects which can be used to convert +times in the calendar to and from UTC time. In addition, RiCal allows +created calendars and components to use time zones understood by TZInfo gem +(from either the TZInfo gem or from Rails ActiveSupport => 2.2). +When a calendar with TZInfo time zones is exported, RFC 2445 conforming +VTIMEZONE components will be included, allowing other programs to process +the result. +Enumeration of recurring occurrences. For example, if an Event has one +or more recurrence rules, then the occurrences of the event can be enumerated +as a series of Event occurrences. + +WWW: http://ri-cal.rubyforge.org/