--- libexcel-writer-xlsx-perl-0.47.orig/debian/changelog
+++ libexcel-writer-xlsx-perl-0.47/debian/changelog
@@ -0,0 +1,13 @@
+libexcel-writer-xlsx-perl (0.47-1) unstable; urgency=low
+
+ * New upstream release
+ * lifted standards version, minor cleanups for lintian
+
+ -- Alexander Zangerl <az@debian.org> Fri, 18 May 2012 10:13:12 +1000
+
+libexcel-writer-xlsx-perl (0.46-1) unstable; urgency=low
+
+ * initial packaging (closes: #660731)
+
+ -- Alexander Zangerl <az@debian.org> Mon, 27 Feb 2012 21:06:47 +1000
+
--- libexcel-writer-xlsx-perl-0.47.orig/debian/control
+++ libexcel-writer-xlsx-perl-0.47/debian/control
@@ -0,0 +1,20 @@
+Source: libexcel-writer-xlsx-perl
+Section: perl
+Priority: optional
+Maintainer: Alexander Zangerl <az@debian.org>
+Build-Depends: debhelper (>= 8.0.0)
+Build-Depends-Indep: perl, libarchive-zip-perl
+Standards-Version: 3.9.3
+
+Package: libexcel-writer-xlsx-perl
+Architecture: all
+Depends: ${perl:Depends}, ${misc:Depends}, libarchive-zip-perl
+Homepage: http://jmcnamara.github.com/excel-writer-xlsx/
+Description: module to create Excel spreadsheets in xlsx format
+ The Excel::Writer::XLSX module is used to create an Excel file
+ in the 2007+ XLSX format. The XLSX format is the Office Open XML (OOXML)
+ format used by Excel 2007 and later.
+ .
+ This module cannot, as yet, write to an existing Excel XLSX file. The
+ module uses the same interface as the Spreadsheet::WriteExcel
+ module (which creates binary XLS Excel files).
--- libexcel-writer-xlsx-perl-0.47.orig/debian/copyright
+++ libexcel-writer-xlsx-perl-0.47/debian/copyright
@@ -0,0 +1,16 @@
+This package was debianized by Alexander Zangerl <az@debian.org>.
+It was downloaded from http://search.cpan.org/CPAN/authors/id/J/JM/JMCNAMARA/
+
+Upstream Author: John McNamara <jmcnamara@cpan.org>
+
+Copyright:
+
+"Copyright 2000-2012 John McNamara <jmcnamara@cpan.org>
+
+All Rights Reserved. This module is free software. It may be used, redistributed and/or modified 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'.
+
--- libexcel-writer-xlsx-perl-0.47.orig/debian/libexcel-writer-xlsx-perl.docs
+++ libexcel-writer-xlsx-perl-0.47/debian/libexcel-writer-xlsx-perl.docs
@@ -0,0 +1,2 @@
+README
+examples/
--- libexcel-writer-xlsx-perl-0.47.orig/debian/compat
+++ libexcel-writer-xlsx-perl-0.47/debian/compat
@@ -0,0 +1 @@
+8
--- libexcel-writer-xlsx-perl-0.47.orig/debian/watch
+++ libexcel-writer-xlsx-perl-0.47/debian/watch
@@ -0,0 +1,2 @@
+version=3
+http://search.cpan.org/dist/Excel-Writer-XLSX/ .*/Excel-Writer-XLSX-v?(\d[\d.-]+)\.(?:tar(?:\.gz|\.bz2)?|tgz|zip)$
--- libexcel-writer-xlsx-perl-0.47.orig/debian/rules
+++ libexcel-writer-xlsx-perl-0.47/debian/rules
@@ -0,0 +1,53 @@
+#!/usr/bin/make -f
+# Sample debian/rules that uses debhelper.
+# GNU copyright 1997 to 1999 by Joey Hess.
+
+configure: Makefile
+Makefile: Makefile.PL
+ dh_testdir
+ perl Makefile.PL INSTALLDIRS=vendor
+
+build-arch: build
+build-indep: build
+
+build: build-stamp
+
+build-stamp: configure
+ dh_testdir
+ $(MAKE) OPTIMIZE="-O2 -g -Wall"
+ touch build-stamp
+
+clean:
+ dh_testdir
+ dh_testroot
+ rm -f build-stamp
+ [ ! -f Makefile ] || $(MAKE) distclean
+ rm -f Makefile Makefile.old
+ dh_clean
+
+# Build architecture-independent files here.
+binary-indep: build
+ dh_testdir
+ dh_testroot
+ dh_clean
+ dh_installdirs
+ifeq (,$(filter nocheck,$(DEB_BUILD_OPTIONS)))
+ $(MAKE) test
+endif
+ $(MAKE) install DESTDIR=$(CURDIR)/debian/libexcel-writer-xlsx-perl/
+ dh_install
+ dh_installdocs -n
+ dh_installchangelogs
+ dh_compress
+ dh_fixperms
+ dh_installdeb
+ dh_perl
+ dh_gencontrol
+ dh_md5sums
+ dh_builddeb
+
+# Build architecture-dependent files here.
+binary-arch: build
+
+binary: binary-indep binary-arch
+.PHONY: build clean binary-indep binary-arch binary configure