r65876 - in /trunk/libpod-readme-perl: Build.PL Changes MANIFEST META.yml Makefile.PL debian/changelog debian/control debian/copyright debian/rules lib/Pod/Readme.pm

ansgar at users.alioth.debian.org ansgar at users.alioth.debian.org
Thu Dec 16 11:57:21 UTC 2010


Author: ansgar
Date: Thu Dec 16 11:57:12 2010
New Revision: 65876

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=65876
Log:
* New upstream release.
* debian/rules: Drop --buildsystem=perl_build: Build.PL is no longer there.
  Also remove build-dep on libmodule-build-perl and lower required version
  of debhelper.
* debian/copyright: Refer to /usr/share/common-licenses/GPL-1; refer to
  "Debain systems" instead of "Debian GNU/Linux systems".
* Bump Standards-Version to 3.9.1.

Removed:
    trunk/libpod-readme-perl/Build.PL
Modified:
    trunk/libpod-readme-perl/Changes
    trunk/libpod-readme-perl/MANIFEST
    trunk/libpod-readme-perl/META.yml
    trunk/libpod-readme-perl/Makefile.PL
    trunk/libpod-readme-perl/debian/changelog
    trunk/libpod-readme-perl/debian/control
    trunk/libpod-readme-perl/debian/copyright
    trunk/libpod-readme-perl/debian/rules
    trunk/libpod-readme-perl/lib/Pod/Readme.pm

Modified: trunk/libpod-readme-perl/Changes
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libpod-readme-perl/Changes?rev=65876&op=diff
==============================================================================
--- trunk/libpod-readme-perl/Changes (original)
+++ trunk/libpod-readme-perl/Changes Thu Dec 16 11:57:12 2010
@@ -1,4 +1,10 @@
 Revision history for Perl extension Pod::Readme.
+
+0.11  2010-12-09
+        - Recognise the =encoding directive, rather than dying when it's
+          encountered.
+          TODO: actually take heed of it.
+          Thanks to Ivan Bessarabov for bringing this to my attention!
 
 0.10  2010-05-19
         - David Precious <davidp at preshweb.co.uk> taking over maintainership

Modified: trunk/libpod-readme-perl/MANIFEST
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libpod-readme-perl/MANIFEST?rev=65876&op=diff
==============================================================================
--- trunk/libpod-readme-perl/MANIFEST (original)
+++ trunk/libpod-readme-perl/MANIFEST Thu Dec 16 11:57:12 2010
@@ -1,8 +1,6 @@
-Build.PL
 Changes
 Makefile.PL
 MANIFEST
-META.yml
 README
 bin/pod2readme
 t/10-basic.t
@@ -10,3 +8,4 @@
 t/90-pod.t
 t/90-podcover.t
 lib/Pod/Readme.pm
+META.yml                                 Module meta-data (added by MakeMaker)

Modified: trunk/libpod-readme-perl/META.yml
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libpod-readme-perl/META.yml?rev=65876&op=diff
==============================================================================
--- trunk/libpod-readme-perl/META.yml (original)
+++ trunk/libpod-readme-perl/META.yml Thu Dec 16 11:57:12 2010
@@ -1,32 +1,27 @@
----
-abstract: 'Convert POD to README file'
+--- #YAML:1.0
+name:               Pod-Readme
+version:            0.11
+abstract:           Convert POD to README file
 author:
-  - 'Robert Rothenberg <rrwo at cpan.org>'
+    - David Precious <davidp at preshweb.co.uk>
+license:            perl
+distribution_type:  module
+configure_requires:
+    ExtUtils::MakeMaker:  0
 build_requires:
-  Test::More: 0
-configure_requires:
-  Module::Build: 0.36
-generated_by: 'Module::Build version 0.3603'
-license: perl
+    ExtUtils::MakeMaker:  0
+requires:
+    Carp:            0
+    File::Copy:      0
+    IO::File:        0
+    Pod::Text:       3.0
+    Regexp::Common:  0
+    Test::More:      0
+no_index:
+    directory:
+        - t
+        - inc
+generated_by:       ExtUtils::MakeMaker version 6.56
 meta-spec:
-  url: http://module-build.sourceforge.net/META-spec-v1.4.html
-  version: 1.4
-name: Pod-Readme
-provides:
-  Pod::Readme:
-    file: lib/Pod/Readme.pm
-    version: 0.10
-recommends:
-  Test::Pod: 1.00
-  Test::Pod::Coverage: 0
-  Test::Portability::Files: 0
-requires:
-  Carp: 0
-  File::Copy: 0
-  IO::File: 0
-  Pod::Text: 3.0
-  Regexp::Common: 0
-  perl: 5.005
-resources:
-  license: http://dev.perl.org/licenses/
-version: 0.10
+    url:      http://module-build.sourceforge.net/META-spec-v1.4.html
+    version:  1.4

Modified: trunk/libpod-readme-perl/Makefile.PL
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libpod-readme-perl/Makefile.PL?rev=65876&op=diff
==============================================================================
--- trunk/libpod-readme-perl/Makefile.PL (original)
+++ trunk/libpod-readme-perl/Makefile.PL Thu Dec 16 11:57:12 2010
@@ -1,22 +1,27 @@
-# Note: this file was auto-generated by Module::Build::Compat version 0.3603
-require 5.005;
+use strict;
+use warnings;
 use ExtUtils::MakeMaker;
-WriteMakefile
-(
-          'NAME' => 'Pod::Readme',
-          'VERSION_FROM' => 'lib/Pod/Readme.pm',
-          'PREREQ_PM' => {
-                           'Carp' => 0,
-                           'File::Copy' => 0,
-                           'IO::File' => 0,
-                           'Pod::Text' => '3.0',
-                           'Regexp::Common' => 0,
-                           'Test::More' => 0
-                         },
-          'INSTALLDIRS' => 'site',
-          'EXE_FILES' => [
-                           'bin/pod2readme'
-                         ],
-          'PL_FILES' => {}
-        )
-;
+WriteMakefile(
+    NAME => 'Pod::Readme',
+    AUTHOR => 'David Precious <davidp at preshweb.co.uk>',
+    VERSION_FROM => 'lib/Pod/Readme.pm',
+    ABSTRACT_FROM => 'lib/Pod/Readme.pm',
+    ($ExtUtils::MakeMaker::VERSION >= 6.3002
+        ? (LICENSE=> 'perl')
+                : ()),
+    PREREQ_PM => {
+                    'Carp' => '0',
+                    'File::Copy' => '0',
+                    'IO::File' => '0',
+                    'Pod::Text' => '3.0',
+                    'Regexp::Common' => '0',
+                    'Test::More' => '0'
+                    },
+    INSTALLDIRS => 'site',
+    EXE_FILES => [
+                    'bin/pod2readme'
+                    ],
+    PL_FILES => {},
+    dist       => { COMPRESS => 'gzip -9f', SUFFIX => 'gz' },
+    clean      => { FILES => 'Pod-Readme-*' },
+);

Modified: trunk/libpod-readme-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libpod-readme-perl/debian/changelog?rev=65876&op=diff
==============================================================================
--- trunk/libpod-readme-perl/debian/changelog (original)
+++ trunk/libpod-readme-perl/debian/changelog Thu Dec 16 11:57:12 2010
@@ -1,8 +1,15 @@
-libpod-readme-perl (0.10-2) UNRELEASED; urgency=low
+libpod-readme-perl (0.11-1) unstable; urgency=low
 
+  * New upstream release.
+  * debian/rules: Drop --buildsystem=perl_build: Build.PL is no longer there.
+    Also remove build-dep on libmodule-build-perl and lower required version
+    of debhelper.
+  * debian/copyright: Refer to /usr/share/common-licenses/GPL-1; refer to
+    "Debain systems" instead of "Debian GNU/Linux systems".
+  * Bump Standards-Version to 3.9.1.
   * Update my email address.
 
- -- Ansgar Burchardt <ansgar at debian.org>  Mon, 01 Nov 2010 11:17:18 +0100
+ -- Ansgar Burchardt <ansgar at debian.org>  Thu, 16 Dec 2010 12:56:56 +0100
 
 libpod-readme-perl (0.10-1) unstable; urgency=low
 

Modified: trunk/libpod-readme-perl/debian/control
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libpod-readme-perl/debian/control?rev=65876&op=diff
==============================================================================
--- trunk/libpod-readme-perl/debian/control (original)
+++ trunk/libpod-readme-perl/debian/control Thu Dec 16 11:57:12 2010
@@ -1,12 +1,12 @@
 Source: libpod-readme-perl
 Section: perl
 Priority: optional
-Build-Depends: debhelper (>= 7.3.7), perl (>= 5.10) | libmodule-build-perl
+Build-Depends: debhelper (>= 7)
 Build-Depends-Indep: perl, libregexp-common-perl
 Maintainer: Debian Perl Group <pkg-perl-maintainers at lists.alioth.debian.org>
 Uploaders: Antonio Radici <antonio at dyne.org>,
  Ansgar Burchardt <ansgar at debian.org>
-Standards-Version: 3.8.4
+Standards-Version: 3.9.1
 Homepage: http://search.cpan.org/dist/Pod-Readme/
 Vcs-Svn: svn://svn.debian.org/pkg-perl/trunk/libpod-readme-perl/
 Vcs-Browser: http://svn.debian.org/viewsvn/pkg-perl/trunk/libpod-readme-perl/

Modified: trunk/libpod-readme-perl/debian/copyright
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libpod-readme-perl/debian/copyright?rev=65876&op=diff
==============================================================================
--- trunk/libpod-readme-perl/debian/copyright (original)
+++ trunk/libpod-readme-perl/debian/copyright Thu Dec 16 11:57:12 2010
@@ -11,15 +11,17 @@
 License: Artistic or GPL-1+
 
 License: Artistic
-    This program is free software; you can redistribute it and/or modify
-    it under the terms of the Artistic License, which comes with Perl.
-    On Debian GNU/Linux systems, the complete text of the Artistic License
-    can be found in `/usr/share/common-licenses/Artistic'
+ This program is free software; you can redistribute it and/or modify
+ it under the terms of the Artistic License, which comes with Perl.
+ .
+ On Debian systems, the complete text of the Artistic License can be
+ found in `/usr/share/common-licenses/Artistic'.
 
 License: GPL-1+
-    This program is free software; you can redistribute it and/or modify
-    it under the terms of the GNU General Public License as published by
-    the Free Software Foundation; either version 1, or (at your option)
-    any later version.
-    On Debian GNU/Linux systems, the complete text of the GNU General
-    Public License can be found in `/usr/share/common-licenses/GPL'
+ This program is free software; you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 1, or (at your option)
+ any later version.
+ .
+ On Debian systems, the complete text of version 1 of the GNU General
+ Public License can be found in `/usr/share/common-licenses/GPL-1'.

Modified: trunk/libpod-readme-perl/debian/rules
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libpod-readme-perl/debian/rules?rev=65876&op=diff
==============================================================================
--- trunk/libpod-readme-perl/debian/rules (original)
+++ trunk/libpod-readme-perl/debian/rules Thu Dec 16 11:57:12 2010
@@ -1,4 +1,4 @@
 #!/usr/bin/make -f
 
 %:
-	dh --buildsystem=perl_build $@
+	dh $@

Modified: trunk/libpod-readme-perl/lib/Pod/Readme.pm
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libpod-readme-perl/lib/Pod/Readme.pm?rev=65876&op=diff
==============================================================================
--- trunk/libpod-readme-perl/lib/Pod/Readme.pm (original)
+++ trunk/libpod-readme-perl/lib/Pod/Readme.pm Thu Dec 16 11:57:12 2010
@@ -60,7 +60,7 @@
 
 @ISA = qw( Pod::PlainText );
 
-$VERSION = '0.10';
+$VERSION = '0.11';
 
 =begin internal
 
@@ -264,6 +264,32 @@
   }
 }
 
+=begin internal
+
+=over
+
+=item cmd_encoding
+
+Handle =encoding directive.
+
+TODO: actually change the encoding of the output file.
+
+=back
+
+=end internal
+
+=cut
+
+sub cmd_encoding {
+    my $self = shift;
+    my $encoding = (split /\s+/, shift)[0];
+    if ($self->{_encoding}) {
+        die "=encoding option must occur only once!";
+    }
+    $self->{_encoding} = $encoding;
+    # TODO: Need to actually do something with this option
+    # At least recognising it and not dying is a step in the right direction.
+}
 
 =begin internal
 




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