[libbarcode-datamatrix-perl] 02/02: Update debian/* files

Xavier Guimard xguimard-guest at moszumanska.debian.org
Tue Nov 14 20:49:36 UTC 2017


This is an automated email from the git hooks/post-receive script.

xguimard-guest pushed a commit to branch master
in repository libbarcode-datamatrix-perl.

commit dc94a6e87dbe1360731fbbc00a1ec8d864238d9a
Author: Xavier Guimard <x.guimard at free.fr>
Date:   Tue Nov 14 21:47:41 2017 +0100

    Update debian/* files
---
 debian/changelog                |  4 +--
 debian/control                  |  8 ++---
 debian/copyright                | 15 +++------
 debian/patches/pod-errors.patch | 70 +++++++++++++++++++++++++++++++++++++++++
 debian/patches/series           |  1 +
 debian/upstream/metadata        |  6 ++--
 6 files changed, 86 insertions(+), 18 deletions(-)

diff --git a/debian/changelog b/debian/changelog
index df3f642..dc549b9 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,5 +1,5 @@
-libbarcode-datamatrix-perl (0.09) UNRELEASED; urgency=low
+libbarcode-datamatrix-perl (0.09-1) unstable; urgency=low
 
   * Initial Release. (Closes: #881758)
 
- -- Xavier Guimard <x.guimard at free.fr>  Tue, 14 Nov 2017 21:10:14 +0100
+ -- Xavier Guimard <x.guimard at free.fr>  Tue, 14 Nov 2017 21:47:20 +0100
diff --git a/debian/control b/debian/control
index 523f7fe..95cf99a 100644
--- a/debian/control
+++ b/debian/control
@@ -18,7 +18,7 @@ Architecture: all
 Depends: ${misc:Depends}, ${perl:Depends},
  libmoo-perl,
  libtype-tiny-perl
-Description: Generate data for Data Matrix barcodes
- (no description was found)
- .
- This description was automagically extracted from the module by dh-make-perl.
+Description: Generator for Data Matrix barcodes
+ Barecode::DataMatrix generates data for Data Matrix barcodes. It is primarily
+ useful as a data source for barcode modules that do rendering, such as
+ HTML::Barcode::DataMatrix or Barecode::DataMatrix::PNG
diff --git a/debian/copyright b/debian/copyright
index ee23d3a..297035c 100644
--- a/debian/copyright
+++ b/debian/copyright
@@ -1,18 +1,13 @@
 Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
 Source: https://metacpan.org/release/Barcode-DataMatrix
-Upstream-Contact: Mons Anderson C<< <inthrax at gmail.com> >> (GD::Barcode::DataMatrix at L<http://code.google.com/p/perl-ex/>, from which this distribution originates), Mark A. Stratman <stratman at gmail.com>
+Upstream-Contact: Mark A. Stratman <stratman at gmail.com>
 Upstream-Name: Barcode-DataMatrix
-DISCLAIMER: This copyright info was automatically extracted
- from the perl module. It may not be accurate, so you better
- check the module sources in order to ensure the module for its
- inclusion in Debian or for general legal information. Please,
- if licensing information is incorrectly generated, file a bug
- on dh-make-perl.
- NOTE: Don't forget to remove this disclaimer once you are happy
- with this file.
 
 Files: *
-Copyright: Mons Anderson C<< <inthrax at gmail.com> >> (GD::Barcode::DataMatrix at L<http://code.google.com/p/perl-ex/>, from which this distribution originates), Mark A. Stratman <stratman at gmail.com>
+Copyright:
+ 2015, Mons Anderson <inthrax at gmail.com>
+ 2015, Mark A. Stratman <stratman at gmail.com>
+ 2015, Paul Cochrane <https://github.com/paultcochrane>
 License: Artistic or GPL-1+
 
 Files: debian/*
diff --git a/debian/patches/pod-errors.patch b/debian/patches/pod-errors.patch
new file mode 100644
index 0000000..145a78e
--- /dev/null
+++ b/debian/patches/pod-errors.patch
@@ -0,0 +1,70 @@
+Description: POD errors
+Author: Xavier Guimard <x.guimard at free.fr>
+Forwarded: https://github.com/mstratman/Barcode-DataMatrix/pull/30
+Last-Update: 2017-11-14
+
+--- libbarcode-datamatrix-perl-0.09.orig/lib/Barcode/DataMatrix/CharDataFiller.pm
++++ libbarcode-datamatrix-perl-0.09/lib/Barcode/DataMatrix/CharDataFiller.pm
+@@ -3,9 +3,12 @@ package Barcode::DataMatrix::CharDataFil
+ use strict;
+ use warnings;
+ 
+-=head1 Barcode::DataMatrix::CharDataFiller
++=head1 NAME
+ 
+-Handle filling character data within the data matrix array.
++Barcode::DataMatrix::CharDataFiller - Handle filling character data within the
++data matrix array.
++
++=head1 DESCRIPTION
+ 
+ The documentation for the methods in this class has been adapted from the
+ comments in
+--- libbarcode-datamatrix-perl-0.09.orig/lib/Barcode/DataMatrix/Constants.pm
++++ libbarcode-datamatrix-perl-0.09/lib/Barcode/DataMatrix/Constants.pm
+@@ -1,10 +1,13 @@
+ package Barcode::DataMatrix::Constants;
+ 
+-=head1 Barcode::DataMatrix::Constants
++=head1 NAME
+ 
+-Constants associated with the Reed-Solomon error correction encoding used
+-for data matrices.  See
+-L<https://en.wikipedia.org/wiki/Reed%E2%80%93Solomon_error_correction> for
++Barcode::DataMatrix::Constants - Constants associated with the Reed-Solomon
++error correction encoding used for data matrices.
++
++=head1 DESCRIPTION
++
++See L<https://en.wikipedia.org/wiki/Reed%E2%80%93Solomon_error_correction> for
+ more information.
+ 
+ =cut
+--- libbarcode-datamatrix-perl-0.09.orig/lib/Barcode/DataMatrix/Engine.pm
++++ libbarcode-datamatrix-perl-0.09/lib/Barcode/DataMatrix/Engine.pm
+@@ -1,8 +1,9 @@
+ package Barcode::DataMatrix::Engine;
+ 
+-=head1 Barcode::DataMatrix::Engine
++=head1 NAME
+ 
+-The engine which generates the data matrix bitmap.
++Barcode::DataMatrix::Engine - The engine which generates the data matrix
++bitmap.
+ 
+ =cut
+ 
+--- libbarcode-datamatrix-perl-0.09.orig/lib/Barcode/DataMatrix/Reed.pm
++++ libbarcode-datamatrix-perl-0.09/lib/Barcode/DataMatrix/Reed.pm
+@@ -1,6 +1,10 @@
+ package Barcode::DataMatrix::Reed;
+ 
+-=head1 Barcode::DataMatrix::Reed
++=head1 NAME
++
++Barcode::DataMatrix::Reed - Renamed version of Algorithm::DataMatrix::Reed
++
++=head1 DESCRIPTION
+ 
+ This is just a renamed version of Algorithm::DataMatrix::Reed
+ by Mons Anderson
diff --git a/debian/patches/series b/debian/patches/series
new file mode 100644
index 0000000..fac1829
--- /dev/null
+++ b/debian/patches/series
@@ -0,0 +1 @@
+pod-errors.patch
diff --git a/debian/upstream/metadata b/debian/upstream/metadata
index dd6d927..9573d40 100644
--- a/debian/upstream/metadata
+++ b/debian/upstream/metadata
@@ -1,5 +1,7 @@
 ---
 Archive: CPAN
-Contact: Mons Anderson C<< <inthrax at gmail.com> >> (GD::Barcode::DataMatrix at L<http://code.google.com/p/perl-ex/>,
-  from which this distribution originates), Mark A. Stratman <stratman at gmail.com>
+Bug-Database: http://github.com/mstratman/Barcode-DataMatrix/issues
+Contact: Mark A. Stratman <stratman at gmail.com>
 Name: Barcode-DataMatrix
+Repository: http://github.com/mstratman/Barcode-DataMatrix.git
+Repository-Browse: http://github.com/mstratman/Barcode-DataMatrix

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-perl/packages/libbarcode-datamatrix-perl.git



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