--- libclass-csv-perl-1.03.orig/debian/control +++ libclass-csv-perl-1.03/debian/control @@ -0,0 +1,19 @@ +Source: libclass-csv-perl +Section: perl +Priority: optional +Build-Depends: debhelper (>= 5.0.0) +Build-Depends-Indep: perl (>= 5.8.8-12), libclass-accessor-perl, libtext-csv-xs-perl +Maintainer: Jose Parrella +Standards-Version: 3.7.3 +Homepage: http://search.cpan.org/dist/Class-CSV/ + +Package: libclass-csv-perl +Architecture: all +Depends: ${perl:Depends}, ${misc:Depends}, libclass-accessor-perl, libtext-csv-xs-perl +Description: Class based CSV parser/writer + This module can be used to create objects from CSV files, or to create CSV + files from objects. Text::CSV_XS is used for parsing and creating CSV file + lines, so any limitations in Text::CSV_XS will of course be inherant in this + module. + . + This description was automagically extracted from the module by dh-make-perl. --- libclass-csv-perl-1.03.orig/debian/compat +++ libclass-csv-perl-1.03/debian/compat @@ -0,0 +1 @@ +5 --- libclass-csv-perl-1.03.orig/debian/rules +++ libclass-csv-perl-1.03/debian/rules @@ -0,0 +1,63 @@ +#!/usr/bin/make -f + +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 + + $(PERL) Makefile.PL INSTALLDIRS=vendor \ + INSTALLVENDORARCH=/usr/share/perl5/ \ + VENDORARCHEXP=/usr/share/perl5/ + $(MAKE) + $(MAKE) test + + touch $@ + +clean: + dh_testdir + dh_testroot + + dh_clean build-stamp install-stamp + + [ ! -f Makefile ] || $(MAKE) realclean + +install: install-stamp +install-stamp: build-stamp + dh_testdir + dh_testroot + dh_clean -k + + $(MAKE) install DESTDIR=$(TMP) PREFIX=/usr + + touch $@ + +binary-arch: + +binary-indep: build install + dh_testdir + dh_testroot + dh_installexamples + dh_installdocs README + dh_installchangelogs Changes + dh_perl + 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 --- libclass-csv-perl-1.03.orig/debian/copyright +++ libclass-csv-perl-1.03/debian/copyright @@ -0,0 +1,20 @@ +This is the debian package for the Class-CSV module. +It was created by Jose Parrella using dh-make-perl. + +It was downloaded from http://search.cpan.org/dist/Class-CSV/ + +The upstream author is: David Radunz . + +Copyright: + + (C) 2004 David Radunz + + This library is free software; you can redistribute it and/or modify + it under the same terms as Perl itself. + +On Debian systems, the complete text of the GNU General Public License +can be found in `/usr/share/common-licenses/GPL', the complete text of +the Artistic License can be found in `/usr/share/common-licenses/Artistic'. + +The Debian packaging is (C) 2008, Jose Parrella and +is licensed under the same terms as the software itself (see above). --- libclass-csv-perl-1.03.orig/debian/changelog +++ libclass-csv-perl-1.03/debian/changelog @@ -0,0 +1,21 @@ +libclass-csv-perl (1.03-2.1) unstable; urgency=high + + * Non-maintainer upload. + * Since this modul uses Text::CSV_XS directly it needs to depend + on libtext-csv-xs-perl directly, too. Fix all occurrences + of libtext-csv-perl. (Closes: #487009) + + -- Frank Lichtenheld Tue, 01 Jul 2008 03:17:13 +0200 + +libclass-csv-perl (1.03-2) unstable; urgency=low + + * Adding libclass-accessor-perl and libtext-csv-perl as Build-Deps solves + FTBFS bug (Closes: #462519) + + -- Jose Parrella Wed, 19 Mar 2008 21:12:03 -0430 + +libclass-csv-perl (1.03-1) unstable; urgency=low + + * Initial Release. (Closes: #441398) + + -- Jose Parrella Sat, 12 Jan 2008 10:10:11 -0430