r2535 - in packages/libtie-ical-perl/trunk: . debian lib/Tie samples t

gregor herrmann gregoa-guest at costa.debian.org
Sun Apr 9 13:38:56 UTC 2006


Author: gregoa-guest
Date: 2006-04-09 13:38:55 +0000 (Sun, 09 Apr 2006)
New Revision: 2535

Added:
   packages/libtie-ical-perl/trunk/debian/
   packages/libtie-ical-perl/trunk/debian/changelog
   packages/libtie-ical-perl/trunk/debian/compat
   packages/libtie-ical-perl/trunk/debian/control
   packages/libtie-ical-perl/trunk/debian/copyright
   packages/libtie-ical-perl/trunk/debian/rules
   packages/libtie-ical-perl/trunk/debian/watch
Modified:
   packages/libtie-ical-perl/trunk/Build.PL
   packages/libtie-ical-perl/trunk/CHANGES
   packages/libtie-ical-perl/trunk/MANIFEST
   packages/libtie-ical-perl/trunk/META.yml
   packages/libtie-ical-perl/trunk/Makefile.PL
   packages/libtie-ical-perl/trunk/README
   packages/libtie-ical-perl/trunk/TODO
   packages/libtie-ical-perl/trunk/lib/Tie/iCal.pm
   packages/libtie-ical-perl/trunk/samples/demo.ics
   packages/libtie-ical-perl/trunk/samples/demo.pl
   packages/libtie-ical-perl/trunk/samples/uniquify.pl
   packages/libtie-ical-perl/trunk/t/a_use.t
   packages/libtie-ical-perl/trunk/t/b_tie.t
   packages/libtie-ical-perl/trunk/t/c_storefetch.t
Log:
Load libtie-ical-perl-0.13 into packages/libtie-ical-perl/trunk.



Property changes on: packages/libtie-ical-perl/trunk/Build.PL
___________________________________________________________________
Name: svn:executable
   - 
   + *


Property changes on: packages/libtie-ical-perl/trunk/CHANGES
___________________________________________________________________
Name: svn:executable
   - 
   + *


Property changes on: packages/libtie-ical-perl/trunk/MANIFEST
___________________________________________________________________
Name: svn:executable
   - 
   + *


Property changes on: packages/libtie-ical-perl/trunk/META.yml
___________________________________________________________________
Name: svn:executable
   - 
   + *


Property changes on: packages/libtie-ical-perl/trunk/Makefile.PL
___________________________________________________________________
Name: svn:executable
   - 
   + *


Property changes on: packages/libtie-ical-perl/trunk/README
___________________________________________________________________
Name: svn:executable
   - 
   + *


Property changes on: packages/libtie-ical-perl/trunk/TODO
___________________________________________________________________
Name: svn:executable
   - 
   + *

Added: packages/libtie-ical-perl/trunk/debian/changelog
===================================================================
--- packages/libtie-ical-perl/trunk/debian/changelog	2006-04-09 13:38:40 UTC (rev 2534)
+++ packages/libtie-ical-perl/trunk/debian/changelog	2006-04-09 13:38:55 UTC (rev 2535)
@@ -0,0 +1,6 @@
+libtie-ical-perl (0.13-1) unstable; urgency=low
+
+  * Initial Release (closes: #313389).
+
+ -- gregor herrmann <gregor+debian at comodo.priv.at>  Sun,  9 Apr 2006 15:18:37 +0200
+

Added: packages/libtie-ical-perl/trunk/debian/compat
===================================================================
--- packages/libtie-ical-perl/trunk/debian/compat	2006-04-09 13:38:40 UTC (rev 2534)
+++ packages/libtie-ical-perl/trunk/debian/compat	2006-04-09 13:38:55 UTC (rev 2535)
@@ -0,0 +1 @@
+5

Added: packages/libtie-ical-perl/trunk/debian/control
===================================================================
--- packages/libtie-ical-perl/trunk/debian/control	2006-04-09 13:38:40 UTC (rev 2534)
+++ packages/libtie-ical-perl/trunk/debian/control	2006-04-09 13:38:55 UTC (rev 2535)
@@ -0,0 +1,24 @@
+Source: libtie-ical-perl
+Section: perl
+Priority: optional
+Build-Depends: debhelper (>= 5.0.0), libmodule-build-perl
+Build-Depends-Indep: perl (>= 5.8.0-7)
+Maintainer: Debian Perl Group <pkg-perl-maintainers at lists.alioth.debian.org>
+Uploaders: gregor herrmann <gregor+debian at comodo.priv.at>
+Standards-Version: 3.6.2
+
+Package: libtie-ical-perl
+Architecture: all
+Depends: ${perl:Depends}, ${misc:Depends}, 
+Description:  Tie iCal files to Perl hashes
+ Tie::iCal represents an RFC2445 iCalendar file as a Perl hash. Each key in
+ the hash represents an iCalendar component like VEVENT, VTODO or VJOURNAL.
+ Each component in the file must have a unique UID property as specified in
+ the RFC 2445. A file containing non-unique UIDs can be converted to have
+ only unique UIDs (see samples/uniquify.pl).
+ .
+ The module makes very little effort in understanding what each iCalendar
+ property means and concentrates on the format of the iCalendar file only.
+ .
+  Homepage: http://search.cpan.org/~bsdz/Tie-iCal-0.13/lib/Tie/iCal.pm
+  

Added: packages/libtie-ical-perl/trunk/debian/copyright
===================================================================
--- packages/libtie-ical-perl/trunk/debian/copyright	2006-04-09 13:38:40 UTC (rev 2534)
+++ packages/libtie-ical-perl/trunk/debian/copyright	2006-04-09 13:38:55 UTC (rev 2535)
@@ -0,0 +1,19 @@
+This is the debian package for the Tie-iCal module.
+It was created by gregor herrmann <gregor+debian at comodo.priv.at> using dh-make-perl.
+
+It was downloaded from http://search.cpan.org/~bsdz/Tie-iCal-0.13/lib/Tie/iCal.pm
+
+The upstream author is: 
+Blair Sutton, <bsdz at cpan.org>, http://www.numeninest.com/.
+
+Copyright:
+Copyright (c) 2005 Blair Sutton
+
+Licence:
+This program is free software; you can redistribute it and/or modify it
+under the same terms as Perl itself.
+
+Perl is distributed under your choice of the GNU General Public License or
+the Artistic License.  On Debian GNU/Linux systems, the complete text of the
+GNU General Public License can be found in `/usr/share/common-licenses/GPL'
+and the Artistic Licence in `/usr/share/common-licenses/Artistic'.

Added: packages/libtie-ical-perl/trunk/debian/rules
===================================================================
--- packages/libtie-ical-perl/trunk/debian/rules	2006-04-09 13:38:40 UTC (rev 2534)
+++ packages/libtie-ical-perl/trunk/debian/rules	2006-04-09 13:38:55 UTC (rev 2535)
@@ -0,0 +1,81 @@
+#!/usr/bin/make -f
+# This debian/rules file is provided as a template for normal perl
+# packages. It was created by Marc Brockschmidt <marc at dch-faq.de> for
+# the Debian Perl Group (http://pkg-perl.alioth.debian.org/) but may
+# be used freely wherever it is useful.
+#
+# It was later modified by Jason Kohles <email at jasonkohles.com>
+# http://www.jasonkohles.com/ to support Module::Build installed modules
+
+# Uncomment this to turn on verbose mode.
+#export DH_VERBOSE=1
+
+# If set to a true value then MakeMaker's prompt function will
+# always return the default without waiting for user input.
+export PERL_MM_USE_DEFAULT=1
+
+PACKAGE=$(shell dh_listpackages)
+
+ifndef PERL
+PERL = /usr/bin/perl
+endif
+
+TMP     =$(CURDIR)/debian/$(PACKAGE)
+
+build: build-stamp
+build-stamp:
+	dh_testdir
+
+	# Add commands to compile the package here
+	$(PERL) Build.PL installdirs=vendor
+	OPTIMIZE="-Wall -O2 -g" $(PERL) Build
+
+	touch build-stamp
+
+clean:
+	dh_testdir
+	dh_testroot
+
+	# Add commands to clean up after the build process here
+	[ ! -f Build ] || $(PERL) Build distclean
+
+	dh_clean build-stamp install-stamp
+
+install: build install-stamp
+install-stamp:
+	dh_testdir
+	dh_testroot
+	dh_clean -k
+
+	# Add commands to install the package into debian/$PACKAGE_NAME here
+	$(PERL) Build test
+	$(PERL) Build install destdir=$(TMP)
+
+	touch install-stamp
+
+binary-arch:
+# We have nothing to do by default.
+
+binary-indep: build install
+	dh_testdir
+	dh_testroot
+#	dh_installcron
+#	dh_installmenu
+	dh_installexamples samples/*
+	dh_installdocs README TODO
+	dh_installchangelogs CHANGES
+	dh_perl
+	dh_link
+	dh_strip
+	dh_compress
+	dh_fixperms
+	dh_installdeb
+	dh_gencontrol
+	dh_md5sums
+	dh_builddeb
+
+source diff:                                                                  
+	@echo >&2 'source and diff are obsolete - use dpkg-source -b'; false
+
+binary: binary-indep binary-arch
+.PHONY: build clean binary-indep binary-arch binary


Property changes on: packages/libtie-ical-perl/trunk/debian/rules
___________________________________________________________________
Name: svn:executable
   + *

Added: packages/libtie-ical-perl/trunk/debian/watch
===================================================================
--- packages/libtie-ical-perl/trunk/debian/watch	2006-04-09 13:38:40 UTC (rev 2534)
+++ packages/libtie-ical-perl/trunk/debian/watch	2006-04-09 13:38:55 UTC (rev 2535)
@@ -0,0 +1,3 @@
+# format version number, currently 3; this line is compulsory!
+version=3
+http://mirrors.kernel.org/cpan/modules/by-module/Tie/Tie-iCal-([\d\.]+)\.tar\.gz


Property changes on: packages/libtie-ical-perl/trunk/lib/Tie/iCal.pm
___________________________________________________________________
Name: svn:executable
   - 
   + *


Property changes on: packages/libtie-ical-perl/trunk/samples/demo.ics
___________________________________________________________________
Name: svn:executable
   - 
   + *

Modified: packages/libtie-ical-perl/trunk/samples/demo.pl
===================================================================
--- packages/libtie-ical-perl/trunk/samples/demo.pl	2006-04-09 13:38:40 UTC (rev 2534)
+++ packages/libtie-ical-perl/trunk/samples/demo.pl	2006-04-09 13:38:55 UTC (rev 2535)
@@ -1,3 +1,5 @@
+#!/usr/bin/perl
+
 use Tie::iCal;
 use Data::Dumper;
 
@@ -84,4 +86,4 @@
 print "hit Enter to test CLEAR..\n";
 getc(STDIN);
 print "CLEAR test..\n";
-%eventscopy = ();
\ No newline at end of file
+%eventscopy = ();


Property changes on: packages/libtie-ical-perl/trunk/samples/demo.pl
___________________________________________________________________
Name: svn:executable
   - 
   + *

Modified: packages/libtie-ical-perl/trunk/samples/uniquify.pl
===================================================================
--- packages/libtie-ical-perl/trunk/samples/uniquify.pl	2006-04-09 13:38:40 UTC (rev 2534)
+++ packages/libtie-ical-perl/trunk/samples/uniquify.pl	2006-04-09 13:38:55 UTC (rev 2535)
@@ -1,3 +1,5 @@
+#!/usr/bin/perl
+
 use Tie::iCal;
 
 unlink "unique.ics", "nonunique.ics";
@@ -71,4 +73,4 @@
 DTSTART;VALUE=DATE:20031225
 DTEND;VALUE=DATE:20031226
 END:VEVENT
-END:VCALENDAR
\ No newline at end of file
+END:VCALENDAR


Property changes on: packages/libtie-ical-perl/trunk/samples/uniquify.pl
___________________________________________________________________
Name: svn:executable
   - 
   + *


Property changes on: packages/libtie-ical-perl/trunk/t/a_use.t
___________________________________________________________________
Name: svn:executable
   - 
   + *


Property changes on: packages/libtie-ical-perl/trunk/t/b_tie.t
___________________________________________________________________
Name: svn:executable
   - 
   + *


Property changes on: packages/libtie-ical-perl/trunk/t/c_storefetch.t
___________________________________________________________________
Name: svn:executable
   - 
   + *




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