Skip to content

Commit

Permalink
Import of CHROMATIC/Pod-PseudoPod-LaTeX-1.000 from CPAN.
Browse files Browse the repository at this point in the history
gitpan-cpan-distribution: Pod-PseudoPod-LaTeX
gitpan-cpan-version:      1.000
gitpan-cpan-path:         CHROMATIC/Pod-PseudoPod-LaTeX-1.000.tar.gz
gitpan-cpan-author:       CHROMATIC
gitpan-cpan-maturity:     released
  • Loading branch information
chromatic authored and Gitpan committed Oct 26, 2014
1 parent c4bc013 commit 798b0d8
Show file tree
Hide file tree
Showing 15 changed files with 522 additions and 322 deletions.
54 changes: 16 additions & 38 deletions Build.PL
Original file line number Diff line number Diff line change
@@ -1,56 +1,34 @@
#! perl

BEGIN { require 5.006002 }

use strict;
use warnings;

use Module::Build;
use File::Spec::Functions;

my $class = Module::Build->subclass(
class => 'Module::Build::FilterTests',
code => <<'END_HERE',
use File::Glob;
use File::Spec::Functions;
sub ACTION_disttest
{
my $self = shift;
local $ENV{PERL_RUN_ALL_TESTS} = 1;
$self->SUPER::ACTION_disttest( @_ );
}
sub find_test_files
{
my $self = shift;
my $tests = $self->SUPER::find_test_files( @_ );
return $tests unless $ENV{PERL_RUN_ALL_TESTS};
my $test_pattern = catfile(qw( t developer *.t ) );
unshift @$tests, File::Glob::bsd_glob( $test_pattern );
return $tests;
}
END_HERE
);

my $builder = $class->new(
my $builder = Module::Build->new(
module_name => 'Pod::PseudoPod::LaTeX',
license => 'perl',
dist_author => 'chromatic <chromatic@wgz.org>',
dist_version_from => 'lib/Pod/PseudoPod/LaTeX.pm',
requires =>
{
'Pod::PseudoPod' => 0,
},
requires =>
{
'Pod::PseudoPod' => '0.15',
'perl' => '5.6.2',
},
build_requires =>
{
'Test::More' => 0,
{
'Test::More' => '0.60',
'IO::String' => 0,
},
config_requires =>
{
'Module::Build' => '0.33',
},
add_to_cleanup => [ 'Pod-PseudoPod-LaTeX-*' ],
create_makefile_pl => 'traditional',
sign => 1,
script_files => [ catfile(qw( scripts ppod2latex )) ],
script_files => [ catfile(qw( scripts ppod2latex )) ],
);

$builder->create_build_script();
7 changes: 6 additions & 1 deletion Changes
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
Revision history for Pod-PseudoPod-LaTeX

0.10 Thu Jun 1 00:02:17 UTC 2006 ($Rev$, $Author$)
1.000 Fri Aug 14 02:07:38 UTC 2009
- added modifications from the Parrot PIR book
- removed unnecessary developer tests and Makefile.PL from tarball
- improved dependencies

0.10 Thu Jun 1 00:02:17 UTC 2006
First version, released on an unsuspecting world.
4 changes: 0 additions & 4 deletions MANIFEST
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,7 @@ lib/Pod/PseudoPod/LaTeX.pm
scripts/ppod2latex
t/00-load.t
t/boilerplate.t
t/developer/pod-coverage.t
t/developer/pod.t
t/test_file.pod
t/escapes.t
t/sections.t
t/translations.t
Makefile.PL
SIGNATURE Added here by Module::Build
20 changes: 12 additions & 8 deletions META.yml
Original file line number Diff line number Diff line change
@@ -1,21 +1,25 @@
---
name: Pod-PseudoPod-LaTeX
version: 0.10
version: 1.000
author:
- 'chromatic <chromatic@wgz.org>'
abstract: convert Pod::PseudoPod documents into LaTeX
license: perl
resources:
license: http://dev.perl.org/licenses/
requires:
Pod::PseudoPod: 0
build_requires:
Test::More: 0
IO::String: 0
Test::More: 0.60
requires:
Pod::PseudoPod: 0.15
perl: v5.6.2
configure_requires:
Module::Build: 0.34
provides:
Pod::PseudoPod::LaTeX:
file: lib/Pod/PseudoPod/LaTeX.pm
version: 0.10
generated_by: Module::Build version 0.2801
version: 1.000
generated_by: Module::Build version 0.34
meta-spec:
url: http://module-build.sourceforge.net/META-spec-v1.2.html
version: 1.2
url: http://module-build.sourceforge.net/META-spec-v1.4.html
version: 1.4
17 changes: 0 additions & 17 deletions Makefile.PL

This file was deleted.

7 changes: 5 additions & 2 deletions README
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Pod::PseudoPod::LaTeX
-------------------

0.10 Thu Jun 1 01:12:30 UTC 2006
1.000 Fri Aug 14 02:08:21 UTC 2009

This module parses Pod::PseudoPod files and produces LaTeX files suitable for
display and printing.
Expand All @@ -15,6 +15,9 @@ To install this module, run the commands:
$ perl ./Build test
$ sudo perl ./Build install

You will also get the program ppod2latex, which converts a valid PseudoPOD file
to LaTeX.

SUPPORT AND DOCUMENTATION

After installing, read the documentation for this module with the perldoc
Expand All @@ -38,7 +41,7 @@ You can also look for information at:

COPYRIGHT AND LICENCE

Copyright (C) 2006 chromatic.
Copyright (C) 2006, 2009 chromatic.

This program is free software; you can redistribute it and/or modify it under
the same terms as Perl itself.
39 changes: 0 additions & 39 deletions SIGNATURE

This file was deleted.

Loading

0 comments on commit 798b0d8

Please sign in to comment.