This is an automated email from the git hooks/post-receive script. dod pushed a commit to branch master in repository libopengl-image-perl.
commit 8d119100758412567a9b44ea1c760f7645fea406 Author: Dominique Dumont <d...@debian.org> Date: Thu Oct 2 19:55:52 2014 +0200 added patch to fix the pod --- debian/patches/fix-pod | 214 +++++++++++++++++++++++++++++++++++++++++++++++++ debian/patches/series | 1 + 2 files changed, 215 insertions(+) diff --git a/debian/patches/fix-pod b/debian/patches/fix-pod new file mode 100644 index 0000000..221694c --- /dev/null +++ b/debian/patches/fix-pod @@ -0,0 +1,214 @@ +Description: Fix pod files + Re-arranged data. No semantic modif were done. +Author: dod +--- a/Image.pod ++++ b/Image.pod +@@ -1,24 +1,18 @@ + =head1 NAME + +- OpenGL::Image - v1.03 copyright 2007 Graphcomp - ALL RIGHTS RESERVED +- Author: Bob "grafman" Free - graf...@graphcomp.com +- Contributor: Geoff Broadwell +- +- This program is free software; you can redistribute it and/or +- modify it under the same terms as Perl itself. +- ++OpenGL::Image - OpenGL wrapper to load images + + =head1 DESCRIPTION + +- This module is an extensible wrapper to abstract imaging interfaces ++This module is an extensible wrapper to abstract imaging interfaces + +- By default, this module uses the OpenGL::Image::Targa module; support for +- other imaging libraries may be added by providing plug-in modules +- in the OpenGL/Image folder. +- +- An OpenGL::Image::Magick module is also provided for use with +- PerlMagick. For best performance, ImageMagick 6.3.5 or newer should +- be installed. ++By default, this module uses the OpenGL::Image::Targa module; support for ++other imaging libraries may be added by providing plug-in modules ++in the OpenGL/Image folder. ++ ++An OpenGL::Image::Magick module is also provided for use with ++PerlMagick. For best performance, ImageMagick 6.3.5 or newer should ++be installed. + + + =head1 SYNOPSIS +@@ -174,4 +168,21 @@ + # Get image blob. + my $blob = $img->GetBlob(); + ++=head1 VERSION ++ ++v1.03 ++ ++=head1 AUTHOR ++ ++Author: Bob "grafman" Free - graf...@graphcomp.com ++ ++Contributor: Geoff Broadwell ++ ++=head1 COPYRIGHT AND LICENSE ++ ++copyright 2007 Graphcomp - ALL RIGHTS RESERVED ++ ++This program is free software; you can redistribute it and/or ++modify it under the same terms as Perl itself. ++ + =cut +--- a/Image/Common.pm ++++ b/Image/Common.pm +@@ -23,17 +23,12 @@ + + =head1 NAME + +- OpenGL::Image::Common - copyright 2007 Graphcomp - ALL RIGHTS RESERVED +- Author: Bob "grafman" Free - graf...@graphcomp.com +- +- This program is free software; you can redistribute it and/or +- modify it under the same terms as Perl itself. +- ++OpenGL::Image::Common - class for OpenGL imaging engines + + =head1 DESCRIPTION + +- This module provides a base class for OpenGL imaging engines. +- Requires the OpenGL module. ++This module provides a base class for OpenGL imaging engines. ++Requires the OpenGL module. + + + =head1 SYNOPSIS +@@ -143,6 +138,21 @@ + # Get image blob. + my $blob = $img->GetBlob(); + ++=head1 VERSION ++ ++v1.03 ++ ++=head1 AUTHOR ++ ++Author: Bob "grafman" Free - graf...@graphcomp.com ++ ++=head1 COPYRIGHT AND LICENSE ++ ++copyright 2007 Graphcomp - ALL RIGHTS RESERVED ++ ++This program is free software; you can redistribute it and/or ++modify it under the same terms as Perl itself. ++ + =cut + + +--- a/Image/Magick.pm ++++ b/Image/Magick.pm +@@ -29,24 +29,19 @@ + + =head1 NAME + +- OpenGL::Image::Magick - copyright 2007 Graphcomp - ALL RIGHTS RESERVED +- Author: Bob "grafman" Free - graf...@graphcomp.com +- +- This program is free software; you can redistribute it and/or +- modify it under the same terms as Perl itself. +- ++OpenGL::Image::Magick - load images with Image::Magick in OpenGL + + =head1 DESCRIPTION + +- This is a driver module for use with the OpenGL module. +- While it may be called directly, it will more often be called +- by the OpenGL::Image abstraction module. ++This is a driver module for use with the OpenGL module. ++While it may be called directly, it will more often be called ++by the OpenGL::Image abstraction module. + +- Note: OpenGL::Image defaults to this module. ++Note: OpenGL::Image defaults to this module. + +- This is a subclass of the OpenGL::Image::Common module. ++This is a subclass of the OpenGL::Image::Common module. + +- Requires the Image::Magick module; 6.3.5 or newer is recommended. ++Requires the Image::Magick module; 6.3.5 or newer is recommended. + + + =head1 SYNOPSIS +@@ -142,6 +137,23 @@ + # Get image blob. + my $blob = $img->GetBlob(); + ++=head1 VERSION ++ ++v1.03 ++ ++=head1 AUTHOR ++ ++Author: Bob "grafman" Free - graf...@graphcomp.com ++ ++=head1 COPYRIGHT AND LICENSE ++ ++copyright 2007 Graphcomp - ALL RIGHTS RESERVED ++ ++This program is free software; you can redistribute it and/or ++modify it under the same terms as Perl itself. ++ ++ ++ + =cut + + eval 'use Image::Magick'; +--- a/Image/Targa.pm ++++ b/Image/Targa.pm +@@ -30,20 +30,15 @@ + + =head1 NAME + +- OpenGL::Image::Targa - copyright 2007 Graphcomp - ALL RIGHTS RESERVED +- Author: Bob "grafman" Free - graf...@graphcomp.com +- +- This program is free software; you can redistribute it and/or +- modify it under the same terms as Perl itself. +- ++OpenGL::Image::Targa -load images with Targa in OpenGL + + =head1 DESCRIPTION + +- This is a driver module for use with the OpenGL module. +- While it may be called directly, it will more often be called +- by the OpenGL::Image abstraction module. ++This is a driver module for use with the OpenGL module. ++While it may be called directly, it will more often be called ++by the OpenGL::Image abstraction module. + +- This is a subclass of the OpenGL::Image::Common module. ++This is a subclass of the OpenGL::Image::Common module. + + + =head1 SYNOPSIS +@@ -133,6 +128,21 @@ + # Get image blob. + my $blob = $img->GetBlob(); + ++=head1 VERSION ++ ++v1.03 ++ ++=head1 AUTHOR ++ ++Author: Bob "grafman" Free - graf...@graphcomp.com ++ ++=head1 COPYRIGHT AND LICENSE ++ ++copyright 2007 Graphcomp - ALL RIGHTS RESERVED ++ ++This program is free software; you can redistribute it and/or ++modify it under the same terms as Perl itself. ++ + =cut + + diff --git a/debian/patches/series b/debian/patches/series new file mode 100644 index 0000000..af2358e --- /dev/null +++ b/debian/patches/series @@ -0,0 +1 @@ +fix-pod -- Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-perl/packages/libopengl-image-perl.git _______________________________________________ Pkg-perl-cvs-commits mailing list Pkg-perl-cvs-commits@lists.alioth.debian.org http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-perl-cvs-commits