r25576 - in /trunk/libspreadsheet-read-perl/debian: changelog control libspreadsheet-read-perl.examples patches/ patches/interpreter.patch patches/series rules

jeremiah-guest at users.alioth.debian.org jeremiah-guest at users.alioth.debian.org
Tue Sep 23 20:24:57 UTC 2008


Author: jeremiah-guest
Date: Tue Sep 23 20:24:48 2008
New Revision: 25576

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=25576
Log:
Added the patch dir and patches, added more packages to Build-Depends, re-worded the description so it sounds less unlikely. 

Added:
    trunk/libspreadsheet-read-perl/debian/libspreadsheet-read-perl.examples
    trunk/libspreadsheet-read-perl/debian/patches/
    trunk/libspreadsheet-read-perl/debian/patches/interpreter.patch
    trunk/libspreadsheet-read-perl/debian/patches/series
Modified:
    trunk/libspreadsheet-read-perl/debian/changelog
    trunk/libspreadsheet-read-perl/debian/control
    trunk/libspreadsheet-read-perl/debian/rules

Modified: trunk/libspreadsheet-read-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libspreadsheet-read-perl/debian/changelog?rev=25576&op=diff
==============================================================================
--- trunk/libspreadsheet-read-perl/debian/changelog (original)
+++ trunk/libspreadsheet-read-perl/debian/changelog Tue Sep 23 20:24:48 2008
@@ -1,43 +1,4 @@
 libspreadsheet-read-perl (0.28-1) UNRELEASED; urgency=low
-
-  TODO:
-
-  1) 0.28 was still missing in branches/upstream -> done.
-
-  2) recommended: add some packages to B-D-I to run more tests. the build gives
-     good hints:
-  
-     Warning: prerequisite Spreadsheet::ParseExcel 0.26 not found.
-     Warning: prerequisite Spreadsheet::ReadSXC 0.2 not found.
-     Warning: prerequisite Text::CSV 1 not found.
-     Warning: prerequisite Text::CSV_PP 1.05 not found.
-     Warning: prerequisite Text::CSV_XS 0.23 not found.
-     ..
-     t/20_csv.......skipped
-      all skipped: No CSV parser found
-     t/21_csv.......skipped
-      all skipped: No CSV parser found
-     t/30_xls.......skipped
-      all skipped: No M$-Excel parser found
-     t/31_clr.......skipped
-      all skipped: No M$-Excel parser found
-
-  3) the long description refers to oo.org and Spreadsheet::ReadSXC, but this
-     module doesn't exist in debian
-     (and "read any spreadsheet format" seems a bit exaggerated if it's a
-     wrapper around Spreadsheet::ParseExcel and Text::CSV)
-     
-  4) Read.pm is patched:
-  
-     -#!/pro/bin/perl
-     +#!/usr/bin/perl
-  
-     while this is a good idea we generally use quilt for managing patches
-     instead of changing the code directly:
-     http://pkg-perl.alioth.debian.org/howto/quilt.html
-  
-  5) maybe nice: install the examples, i.e. create
-     debian/libspreadsheet-read-perl.examples with "examples/*" as its content
 
   * Initial Release. Closes: #497780
 

Modified: trunk/libspreadsheet-read-perl/debian/control
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libspreadsheet-read-perl/debian/control?rev=25576&op=diff
==============================================================================
--- trunk/libspreadsheet-read-perl/debian/control (original)
+++ trunk/libspreadsheet-read-perl/debian/control Tue Sep 23 20:24:48 2008
@@ -1,8 +1,8 @@
 Source: libspreadsheet-read-perl
 Section: perl
 Priority: optional
-Build-Depends: debhelper (>= 7)
-Build-Depends-Indep:  perl (>= 5.6.10-12), libtest-pod-perl, libtest-pod-coverage-perl
+Build-Depends: debhelper (>= 7), quilt
+Build-Depends-Indep:  perl (>= 5.6.10-12), libtest-pod-perl, libtest-pod-coverage-perl, libtext-csv-perl, libspreadsheet-parseexcel-perl, libtext-csv-xs-perl 
 Maintainer: Debian Perl Group <pkg-perl-maintainers at lists.alioth.debian.org>
 Uploaders: Jeremiah C. Foster <jeremiah at jeremiahfoster.com>
 Standards-Version: 3.8.0
@@ -15,8 +15,8 @@
 Depends: ${perl:Depends}, ${misc:Depends}, libio-stringy-perl, libtext-csv-perl (>= 1)
 Recommends: libtext-csv-xs-perl (>= 0.29), libspreadsheet-parseexcel-perl (>= 0.26)
 Suggests: perl-tk, libtk-tablematrix-perl
-Description: Transparently read any spreadsheet format and return its content
- Spreadsheet::Read reads any spreadsheet format and return the 
+Description: Read common spreadsheet formats and return the data
+ Spreadsheet::Read reads most common spreadsheet formats and returns the 
  content in a easy-to-read manner.
  .
  For OpenOffice this module uses Spreadsheet::ReadSXC

Added: trunk/libspreadsheet-read-perl/debian/libspreadsheet-read-perl.examples
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libspreadsheet-read-perl/debian/libspreadsheet-read-perl.examples?rev=25576&op=file
==============================================================================
--- trunk/libspreadsheet-read-perl/debian/libspreadsheet-read-perl.examples (added)
+++ trunk/libspreadsheet-read-perl/debian/libspreadsheet-read-perl.examples Tue Sep 23 20:24:48 2008
@@ -1,0 +1,1 @@
+examples/*

Added: trunk/libspreadsheet-read-perl/debian/patches/interpreter.patch
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libspreadsheet-read-perl/debian/patches/interpreter.patch?rev=25576&op=file
==============================================================================
--- trunk/libspreadsheet-read-perl/debian/patches/interpreter.patch (added)
+++ trunk/libspreadsheet-read-perl/debian/patches/interpreter.patch Tue Sep 23 20:24:48 2008
@@ -1,0 +1,10 @@
+Index: libspreadsheet-read-perl/Read.pm
+===================================================================
+--- libspreadsheet-read-perl.orig/Read.pm	2008-09-23 21:26:03.000000000 +0200
++++ libspreadsheet-read-perl/Read.pm	2008-09-23 21:27:42.000000000 +0200
+@@ -1,4 +1,4 @@
+-#!/pro/bin/perl
++#!/usr/bin/perl
+ 
+ package Spreadsheet::Read;
+ 

Added: trunk/libspreadsheet-read-perl/debian/patches/series
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libspreadsheet-read-perl/debian/patches/series?rev=25576&op=file
==============================================================================
--- trunk/libspreadsheet-read-perl/debian/patches/series (added)
+++ trunk/libspreadsheet-read-perl/debian/patches/series Tue Sep 23 20:24:48 2008
@@ -1,0 +1,1 @@
+interpreter.patch

Modified: trunk/libspreadsheet-read-perl/debian/rules
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libspreadsheet-read-perl/debian/rules?rev=25576&op=diff
==============================================================================
--- trunk/libspreadsheet-read-perl/debian/rules (original)
+++ trunk/libspreadsheet-read-perl/debian/rules Tue Sep 23 20:24:48 2008
@@ -1,7 +1,9 @@
 #!/usr/bin/make -f
 
+include /usr/share/quilt/quilt.make
+
 build: build-stamp
-build-stamp:
+build-stamp: $(QUILT_STAMPFN)
 	dh build
 	touch $@
 




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