r52993 - in /trunk/libical-parser-perl/debian: ./ changelog compat control copyright libical-parser-perl.docs rules watch

jawnsy-guest at users.alioth.debian.org jawnsy-guest at users.alioth.debian.org
Wed Feb 17 21:50:48 UTC 2010


Author: jawnsy-guest
Date: Wed Feb 17 21:50:41 2010
New Revision: 52993

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=52993
Log:
[svn-inject] Applying Debian modifications to trunk

Added:
    trunk/libical-parser-perl/debian/
    trunk/libical-parser-perl/debian/changelog
    trunk/libical-parser-perl/debian/compat
    trunk/libical-parser-perl/debian/control
    trunk/libical-parser-perl/debian/copyright
    trunk/libical-parser-perl/debian/libical-parser-perl.docs
    trunk/libical-parser-perl/debian/rules   (with props)
    trunk/libical-parser-perl/debian/watch

Added: trunk/libical-parser-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libical-parser-perl/debian/changelog?rev=52993&op=file
==============================================================================
--- trunk/libical-parser-perl/debian/changelog (added)
+++ trunk/libical-parser-perl/debian/changelog Wed Feb 17 21:50:41 2010
@@ -1,0 +1,5 @@
+libical-parser-perl (1.16-1) UNRELEASED; urgency=low
+
+  * Initial Release.
+
+ -- Jonathan Yu <jawnsy at cpan.org>  Wed, 17 Feb 2010 17:09:28 -0500

Added: trunk/libical-parser-perl/debian/compat
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libical-parser-perl/debian/compat?rev=52993&op=file
==============================================================================
--- trunk/libical-parser-perl/debian/compat (added)
+++ trunk/libical-parser-perl/debian/compat Wed Feb 17 21:50:41 2010
@@ -1,0 +1,1 @@
+7

Added: trunk/libical-parser-perl/debian/control
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libical-parser-perl/debian/control?rev=52993&op=file
==============================================================================
--- trunk/libical-parser-perl/debian/control (added)
+++ trunk/libical-parser-perl/debian/control Wed Feb 17 21:50:41 2010
@@ -1,0 +1,39 @@
+Source: libical-parser-perl
+Section: perl
+Priority: optional
+Build-Depends: debhelper (>= 7)
+Build-Depends-Indep: perl, libfreezethaw-perl (>= 0.43), libio-string-perl,
+  libdatetime-format-ical-perl (>= 0.08),
+  libtext-vfile-asdata-perl (>= 0.02)
+Maintainer: Debian Perl Group <pkg-perl-maintainers at lists.alioth.debian.org>
+Uploaders: Jonathan Yu <jawnsy at cpan.org>
+Standards-Version: 3.8.4
+Homepage: http://search.cpan.org/dist/iCal-Parser/
+Vcs-Svn: svn://svn.debian.org/pkg-perl/trunk/libical-parser-perl/
+Vcs-Browser: http://svn.debian.org/viewsvn/pkg-perl/trunk/libical-parser-perl/
+
+Package: libical-parser-perl
+Architecture: all
+Depends: ${perl:Depends}, ${misc:Depends}, libio-string-perl,
+  libdatetime-format-ical-perl (>= 0.08),
+  libtext-vfile-asdata-perl (>= 0.02)
+Description: Parse iCalendar files into a data structure
+ iCal::Parser processes iCalendar (vCalendar 2.0) files as specified in RFC
+ 2445 into a data structure. It handles recurrences (RRULEs), exclusions
+ (EXDATEs), event updates (events with a RECURRENCE-ID), and nested data
+ structures (ATTENDEES and VALARMs). It currently ignores the VTIMEZONE,
+ VJOURNAL and VFREEBUSY entry types.
+ .
+ The data structure returned is a hash like the following:
+ .
+ {
+ .
+ calendars=>[\%cal, ...],
+ .
+ events=>{yyyy=>{mm=>{dd}=>{UID=>\%event}}
+ .
+ todos=>[\%todo, ...]
+ .
+ }
+ .
+ This description was automagically extracted from the module by dh-make-perl.

Added: trunk/libical-parser-perl/debian/copyright
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libical-parser-perl/debian/copyright?rev=52993&op=file
==============================================================================
--- trunk/libical-parser-perl/debian/copyright (added)
+++ trunk/libical-parser-perl/debian/copyright Wed Feb 17 21:50:41 2010
@@ -1,0 +1,36 @@
+Format-Specification: http://svn.debian.org/wsvn/dep/web/deps/dep5.mdwn?op=file&rev=135
+Maintainer: Rick Frankel, cpan at rickster.com
+Source: http://search.cpan.org/dist/iCal-Parser/
+Name: iCal-Parser
+DISCLAIMER: This copyright info was automatically extracted 
+ from the perl module. It may not be accurate, so you better 
+ check the module sources in order to ensure the module for its 
+ inclusion in Debian or for general legal information. Please, 
+ if licensing information is incorrectly generated, file a bug 
+ on dh-make-perl.
+ NOTE: Don't forget to remove this disclaimer once you are happy
+ with this file.
+
+Files: *
+Copyright: Rick Frankel, cpan at rickster.com
+License: Artistic or GPL-1+
+
+Files: debian/*
+Copyright: 2010, Jonathan Yu <jawnsy at cpan.org>
+License: Artistic or GPL-1+
+
+License: Artistic
+ This program is free software; you can redistribute it and/or modify
+ it under the terms of the Artistic License, which comes with Perl.
+ .
+ On Debian GNU/Linux systems, the complete text of the Artistic License
+ can be found in `/usr/share/common-licenses/Artistic'
+
+License: GPL-1+
+ This program is free software; you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 1, or (at your option)
+ any later version.
+ .
+ On Debian GNU/Linux systems, the complete text of the GNU General
+ Public License can be found in `/usr/share/common-licenses/GPL'

Added: trunk/libical-parser-perl/debian/libical-parser-perl.docs
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libical-parser-perl/debian/libical-parser-perl.docs?rev=52993&op=file
==============================================================================
--- trunk/libical-parser-perl/debian/libical-parser-perl.docs (added)
+++ trunk/libical-parser-perl/debian/libical-parser-perl.docs Wed Feb 17 21:50:41 2010
@@ -1,0 +1,1 @@
+README

Added: trunk/libical-parser-perl/debian/rules
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libical-parser-perl/debian/rules?rev=52993&op=file
==============================================================================
--- trunk/libical-parser-perl/debian/rules (added)
+++ trunk/libical-parser-perl/debian/rules Wed Feb 17 21:50:41 2010
@@ -1,0 +1,4 @@
+#!/usr/bin/make -f
+
+%:
+	dh $@

Propchange: trunk/libical-parser-perl/debian/rules
------------------------------------------------------------------------------
    svn:executable = *

Added: trunk/libical-parser-perl/debian/watch
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libical-parser-perl/debian/watch?rev=52993&op=file
==============================================================================
--- trunk/libical-parser-perl/debian/watch (added)
+++ trunk/libical-parser-perl/debian/watch Wed Feb 17 21:50:41 2010
@@ -1,0 +1,2 @@
+version=3
+http://search.cpan.org/dist/iCal-Parser/   .*/iCal-Parser-v?(\d[\d.-]+)\.(?:tar(?:\.gz|\.bz2)?|tgz|zip)$




More information about the Pkg-perl-cvs-commits mailing list