debian/0000755000000000000000000000000012215545411007166 5ustar debian/libdata-ical-perl.examples0000644000000000000000000000001311671742742014201 0ustar examples/* debian/watch0000644000000000000000000000044712101263423010216 0ustar # format version number, currently 3; this line is compulsory! version=3 # URL to the package page followed by a regex to search opts="dversionmangle=s/\+dfsg//" \ https://metacpan.org/release/Data-ICal/ \ .*/Data-ICal-(\d[\d.-]+)\.(?:tar(?:\.gz|\.bz2)?|tgz|zip)$ \ debian sh debian/repack.stub debian/copyright0000644000000000000000000000323012215545342011122 0ustar Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ Upstream-Name: Data-ICal Upstream-Contact: Alex Vandiver Source: https://metacpan.org/release/Data-ICal/ X-Repackaging-Reasoning: Upstream sources are repackaged to remove a file which cannot be redistributed: + doc/rfc2445.txt Additionally, MANIFEST is trimmed from references to this file. . Repackaging is done via debian/repack.sh and can be replayed using "uscan -f" Files: * Copyright: 2005-2009, Best Practical Solutions License: Artistic or GPL-1+ Files: inc/Module/* Copyright: 2002-2012, Adam Kennedy 2002-2012, Audrey Tang 2002-2012, Brian Ingerson License: Artistic or GPL-1+ Files: debian/* Copyright: 2007, Peter Makholm 2009, Jonathan Yu 2009, Antonio Radici 2011, gregor herrmann 2013, Florian Schlichting 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 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 systems, the complete text of version 1 of the GNU General Public License can be found in `/usr/share/common-licenses/GPL-1'. debian/control0000644000000000000000000000313212215545330010570 0ustar Source: libdata-ical-perl Section: perl Priority: optional Maintainer: Debian Perl Group Uploaders: Antonio Radici , Jonathan Yu , gregor herrmann , Florian Schlichting Build-Depends: debhelper (>= 8) Build-Depends-Indep: libtest-longstring-perl, libclass-accessor-perl, libclass-returnvalue-perl, libtest-nowarnings-perl, libtest-pod-coverage-perl, libtest-pod-perl, libtest-warn-perl, libtext-vfile-asdata-perl Standards-Version: 3.9.4 Homepage: https://metacpan.org/release/Data-ICal/ Vcs-Git: git://anonscm.debian.org/pkg-perl/packages/libdata-ical-perl.git Vcs-Browser: http://anonscm.debian.org/gitweb/?p=pkg-perl/packages/libdata-ical-perl.git Package: libdata-ical-perl Architecture: all Depends: ${misc:Depends}, ${perl:Depends}, libclass-accessor-perl, libclass-returnvalue-perl, libtext-vfile-asdata-perl Description: Perl module for manipulating iCalendar (RFC2445) files Data::ICal provides an implementation of Perl objects that represent a given VCALENDAR object as defined in the iCalendar protocol (RFC 2445, MIME type "text/calendar"), as implemented in many popular calendaring programs such as Apple's iCal. . Each Data::ICal object is a collection of "entries", which are objects of a subclass of Data::ICal::Entry. The types of entries defined by iCalendar (which refers to them as "components") include events, to-do items, journal entries, free/busy time indicators and time zone descriptors, but this module currently only implements to-do items and events. debian/repack.stub0000755000000000000000000000346412122160025011333 0ustar #!/bin/sh : <<=cut =pod =head1 NAME repack.stub - script to repack upstream tarballs from uscan =head1 INSTRUCTIONS put this in debian/repack.stub and add "debian sh debian/repack.stub" to the end of the line in debian/watch. you will also need to add a version mangle to debian/watch. then create a debian/repack.local. this is a shell script that is sourced under "set -e", so be careful to check returns codes. =head1 FUNCTIONS =over 4 =item rm rm is replaced by a function that does some magic ("rm -rv" by default), but also changes MANIFEST if $MANIFEST is 1 =item mv mv is replaced by a function that just does mv (by default), but also changes MANIFEST if $MANIFEST is 1 =item requires_version requires_version is there for future usage for requiring certain versions of the script =back =head1 VARIABLES =over 4 =item SUFFIX defaults to +dfsg what to append to the upstream version =item RM_OPTS defaults to -vrf options to pass to rm =item MANIFEST defaults to 0, set to 1 to turn on. this will manipulate MANIFEST files in CPAN tarballs. =item UP_BASE this is the directory where the upstream source is. =back =head1 COPYRIGHT AND LICENSE Copyright 2009, Ryan Niebur License: Artistic or GPL-1+ =cut if [ -z "$REPACK_SH" ]; then if [ -f ../../scripts/repack.sh ]; then REPACK_SH=../../scripts/repack.sh fi if [ -z "$REPACK_SH" ] && which repack.sh > /dev/null; then REPACK_SH=$(which repack.sh) fi fi if [ ! -f "$REPACK_SH" ]; then echo "Couldn't find a repack.sh. please put it in your PATH, put it at ../../scripts/repack.sh, or put it somewhere else and set the REPACK_SH variable" echo "You can get it from http://anonscm.debian.org/gitweb/?p=pkg-perl/scripts.git;a=blob_plain;f=repack.sh;hb=HEAD" exit 1 fi exec "$REPACK_SH" "$@" debian/compat0000644000000000000000000000000211671742742010377 0ustar 8 debian/changelog0000644000000000000000000000720712215545411011046 0ustar libdata-ical-perl (0.21+dfsg-1) unstable; urgency=low [ Salvatore Bonaccorso ] * Change Vcs-Git to canonical URI (git://anonscm.debian.org) * Change search.cpan.org based URIs to metacpan.org based URIs [ gregor herrmann ] * Update debian/repack.stub. [ Axel Beckert ] * debian/copyright: migrate pre-1.0 format to 1.0 using "cme fix dpkg- copyright" [ Florian Schlichting ] * Import Upstream version 0.21+dfsg * Bump years of included M::I copyright * Bump Standards-Version to 3.9.4 (no change) * Drop M::I 0.85 workaround * Add myself to uploaders and copyright -- Florian Schlichting Mon, 16 Sep 2013 11:10:22 +0200 libdata-ical-perl (0.18+dfsg-1) unstable; urgency=low * New upstream release. * Remove fix-spelling-error-in-manpage.patch, applied upstream. * Remove unneeded build dependency on libtest-simple-perl (Test::More is in perl core). * Add /me to Uploaders. -- gregor herrmann Wed, 07 Dec 2011 18:58:35 +0100 libdata-ical-perl (0.17+dfsg-1) unstable; urgency=low * Team upload. * Imported Upstream version 0.17+dfsg * Bump Debhelper compat level to 8. Update Build-Depends on debhelper to (>= 8). * Add fix-spelling-error-in-manpage.patch patch. Fix some spelling error in manpages. -- Salvatore Bonaccorso Sat, 03 Dec 2011 10:35:49 +0100 libdata-ical-perl (0.16+dfsg-2) unstable; urgency=low * Team upload. [ Ryan Niebur ] * Update jawnsy's email address [ Ansgar Burchardt ] * Remove Peter Makholm from Uploaders. (Closes: #580314) * debian/control: Convert Vcs-* fields to Git. * Use source format 3.0 (quilt). * debian/copyright: Formatting changes. * Bump Standards-Version to 3.9.2. -- Ansgar Burchardt Sat, 17 Sep 2011 11:12:45 +0200 libdata-ical-perl (0.16+dfsg-1) unstable; urgency=low * New upstream release + Fixed escaping of backslash (\) characters + Always use CRLF as the newline character, per RFC 3445 * Added /me to Uploaders and Copyright * Standards-Version 3.8.2 (no changes) * Use shorter debhelper format * debian/rules: Get around Module::Install 0.85 bug, which causes CPAN to be executed during build (ick!) [ Nathan Handler ] * debian/watch: Update to ignore development releases. [ gregor herrmann ] * debian/control: bump debhelper to 7.0.50 (override_* feature). -- Jonathan Yu Mon, 13 Jul 2009 19:53:11 -0400 libdata-ical-perl (0.15+dfsg-1) unstable; urgency=low [ Antonio Radici ] * New upstream release * debian/control: + Adding me to the Uploaders + debhelper >= 7, removed cdbs + Standards-Version bumped to 3.8.0 * debian/rules: + using the one generated by dh-make-perl --dh 7, no more cdbs * added debian/repack.sh * debian/watch modified to use repack.sh * debian/compat bumped to 7 * README.Debian removed, the repackaging reason is now in copyright * debian/copyright: + switch to the new format + copyright for repack.sh and inc/* added * added libdata-ical-perl.examples [ gregor herrmann ] * debian/control: Changed: Switched Vcs-Browser field to ViewSVN (source stanza). * debian/control: Added: ${misc:Depends} to Depends: field. * debian/repack.sh: remove .1 from +dfsg version. * debian/control: add libtest-pod{,-coverage}-perl to Build-Depends-Indep in order to enable additional tests. -- Antonio Radici Wed, 04 Mar 2009 23:12:46 +0000 libdata-ical-perl (0.13+dfsg-1) unstable; urgency=low * Initial release (Closes: #426888) -- Peter Makholm Tue, 04 Dec 2007 07:39:22 +0000 debian/source/0000755000000000000000000000000011671742742010501 5ustar debian/source/format0000644000000000000000000000001411671742742011707 0ustar 3.0 (quilt) debian/rules0000755000000000000000000000003612215545235010251 0ustar #!/usr/bin/make -f %: dh $@ debian/repack.local0000644000000000000000000000002711671742742011461 0ustar MANIFEST=1 rm doc/rfc*