r30740 - in /trunk/libpalm-perl: ChangeLog Changes LICENSE MANIFEST META.yml Makefile.PL Palm/ README examples/ lib/ t/ test.pl util/

diocles-guest at users.alioth.debian.org diocles-guest at users.alioth.debian.org
Sun Feb 15 23:29:45 UTC 2009


Author: diocles-guest
Date: Sun Feb 15 23:29:41 2009
New Revision: 30740

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=30740
Log:
Merge upstream version 1.009.

Added:
    trunk/libpalm-perl/Changes
      - copied unchanged from r25541, branches/upstream/libpalm-perl/current/Changes
    trunk/libpalm-perl/LICENSE
      - copied unchanged from r25541, branches/upstream/libpalm-perl/current/LICENSE
    trunk/libpalm-perl/META.yml
      - copied unchanged from r25541, branches/upstream/libpalm-perl/current/META.yml
    trunk/libpalm-perl/examples/
      - copied from r25541, branches/upstream/libpalm-perl/current/examples/
    trunk/libpalm-perl/lib/
      - copied from r25541, branches/upstream/libpalm-perl/current/lib/
    trunk/libpalm-perl/t/
      - copied from r25541, branches/upstream/libpalm-perl/current/t/
Removed:
    trunk/libpalm-perl/ChangeLog
    trunk/libpalm-perl/Palm/
    trunk/libpalm-perl/test.pl
    trunk/libpalm-perl/util/
Modified:
    trunk/libpalm-perl/MANIFEST
    trunk/libpalm-perl/Makefile.PL
    trunk/libpalm-perl/README

Modified: trunk/libpalm-perl/MANIFEST
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libpalm-perl/MANIFEST?rev=30740&op=diff
==============================================================================
--- trunk/libpalm-perl/MANIFEST (original)
+++ trunk/libpalm-perl/MANIFEST Sun Feb 15 23:29:41 2009
@@ -1,18 +1,41 @@
-ChangeLog
+Changes
+examples/add-memo
+examples/copydb
+examples/pdbdump
+FAQ
+lib/Address.pm
+lib/Datebook.pm
+lib/DateTime.pm
+lib/Mail.pm
+lib/Memo.pm
+lib/Palm.pm
+lib/PDB.pm
+lib/Raw.pm
+lib/StdAppInfo.pm
+lib/ToDo.pm
+lib/ZirePhoto.pm
+LICENSE
+Makefile.PL
 MANIFEST
 README
-FAQ
+t/address.t
+t/AddressDB.pdb
+t/bogus1DB.pdb
+t/bogus2DB.pdb
+t/bogusdb.t
+t/datebook.t
+t/DatebookDB.pdb
+t/load.t
+t/loadwrite.t
+t/mail.t
+t/MailDB.pdb
+t/memo.t
+t/MemoDB.pdb
+t/mkpdbname.t
+t/pod.t
+t/pod_coverage.t
+t/test_manifest
+t/todo.t
+t/ToDoDB.pdb
 TODO
-Makefile.PL
-test.pl
-Palm/Address.pm
-Palm/Datebook.pm
-Palm/Mail.pm
-Palm/Memo.pm
-Palm/PDB.pm
-Palm/Raw.pm
-Palm/StdAppInfo.pm
-Palm/ToDo.pm
-util/add-memo
-util/copydb
-util/pdbdump
+META.yml                                 Module meta-data (added by MakeMaker)

Modified: trunk/libpalm-perl/Makefile.PL
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libpalm-perl/Makefile.PL?rev=30740&op=diff
==============================================================================
--- trunk/libpalm-perl/Makefile.PL (original)
+++ trunk/libpalm-perl/Makefile.PL Sun Feb 15 23:29:41 2009
@@ -1,10 +1,37 @@
 use ExtUtils::MakeMaker;
-# See lib/ExtUtils/MakeMaker.pm for details of how to influence
-# the contents of the Makefile that is written.
+
+eval "use Test::Manifest 1.14";
+
+my @classes = qw( 
+	Address Datebook DateTime Mail 
+	Memo PDB Raw StdAppInfo ToDo 
+	ZirePhoto
+	);
+
 WriteMakefile(
-    'NAME'		=> 'Palm',
-    'VERSION'		=> '1.003_000',
+    'NAME'			=> 'Palm',
+	'ABSTRACT'		=> 'Module for handling PalmOS databases',
+    'VERSION'		=> '1.009',
+    'LICENSE'       => 'perl',
     'DISTNAME'		=> 'p5-Palm',	# More descriptive than just "Palm"
-    'INSTALLDIRS'	=> 'site',
-    'EXE_FILES'		=> [ 'util/pdbdump' ],
+	'AUTHOR'        => 'brian d foy <bdfoy at cpan.org>',
+	
+	'PREREQ_PM'		=> {
+		'Test::More'	=> '0',
+		},
+
+	'PM'           => {
+		'lib/Palm.pm' => '$(INST_LIBDIR)/Palm.pm',
+		map { ( "lib/$_.pm", "\$(INST_LIBDIR)/Palm/$_.pm" ) } @classes
+		},
+
+	'MAN3PODS'     => {
+		'lib/Palm.pm' => '$(INST_MAN3DIR)/Palm.3',
+		map { ( "lib/$_.pm", "\$(INST_MAN3DIR)/Palm::$_.3" ) } @classes
+		},
+
+    'EXE_FILES'		=> [ 'examples/pdbdump' ],
+
+	clean  => { FILES    => q|*.bak p5-*| },
+
 );

Modified: trunk/libpalm-perl/README
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libpalm-perl/README?rev=30740&op=diff
==============================================================================
--- trunk/libpalm-perl/README (original)
+++ trunk/libpalm-perl/README Sun Feb 15 23:29:41 2009
@@ -2,16 +2,16 @@
 manipulating, and writing the .pdb and .prc database files used by
 PalmOS devices such as the PalmPilot and its successors.
 
-	Copyright (C) 1999, 2000 by Andrew Arensburger
+Copyright (C) 1999, 2000 by Andrew Arensburger
 
-    This program is free software; you can redistribute it and/or
-    modify it under the terms of the Artistic License, a copy of which
-    can be found with the Perl distribution.
+This program is free software; you can redistribute it and/or
+modify it under the terms of the Artistic License, a copy of which
+can be found with the Perl distribution.
 
-    This code is distributed in the hope that it will be useful, but
-    WITHOUT ANY WARRANTY; without even the implied warranty of
-    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-    Artistic License for more details.
+This code is distributed in the hope that it will be useful, but
+WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+Artistic License for more details.
 
 * INSTALLING:
 
@@ -19,23 +19,21 @@
 	- Run "perl Makefile.PL" to create the Makefile.
 	- Run "make" to build everything.
 	- Run "make install" to install the package.
+
 Easy, huh?
 
 * DOCUMENTATION:
 
-	All documentation is in the form of PODs embedded in the
-module files themselves. Use
-	pod2text Palm/PDB.pm
-to read the documentation for Palm::PDB.
-	You'll want to start with Palm::PDB, then Palm::Raw, then the
-others.
+	All documentation is in the form of PODs embedded in the module
+	files themselves. Use pod2text Palm/PDB.pm to read the
+	documentation for Palm::PDB. You'll want to start with Palm::PDB,
+	then Palm::Raw, then the others.
 
 * FEEDBACK:
 
 	If you have any comments, suggestions, bug reports, patches,
 etc., please send mail to the maintainer, Andrew Arensburger, at
-<arensb at ooblick.com>. See also
-	http://www.ooblick.com/software/coldsync/
+<arensb at ooblick.com>. See also http://www.ooblick.com/software/coldsync/
 
 * AUTHORS AND CONTRIBUTORS:
 
@@ -48,3 +46,7 @@
 		attribute.
 	Kenneth Lorber <keni at his.com>: fixed "pdbdump" to handle
 		arrays in parsed records (e.g., Datebook exceptions).
+	Alessandro Zummo <azummo at towertech.it>: DateTime.pm, ZirePhoto.pm
+	Kurt Starsinic <kstar at cpan.org>: documentation patch.
+	Seb Wills <saw27 at mrao.cam.ac.uk>: documentation.
+	brian d foy <bdfoy at cpan.org>




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