Skip to content

Commit

Permalink
Merge pull request #1 from einhverfr/master
Browse files Browse the repository at this point in the history
Windows support
  • Loading branch information
einhverfr committed Apr 8, 2014
2 parents 403b8f5 + b10a5fa commit d564370
Show file tree
Hide file tree
Showing 18 changed files with 463 additions and 228 deletions.
4 changes: 4 additions & 0 deletions Changes
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
Revision history for the LaTeX::Driver module -*- indented-text -*-

0.20 2014-04-09
- Removed IPC::ShellCmd dependency since newer versions not on CPAN
- Fixed Win32 support

0.20_03 2013-10-31
- switched Makefile.PL to Module::Install

Expand Down
52 changes: 11 additions & 41 deletions MANIFEST
Original file line number Diff line number Diff line change
@@ -1,44 +1,5 @@
Changes
INSTALL
MANIFEST This list of files
MANIFEST.SKIP
META.yml Module meta-data (added by MakeMaker)
Makefile.PL
NOTES
README General information, installation, etc.
README.md
TODO
inc/Devel/AssertOS.pm
inc/Devel/AssertOS/AIX.pm
inc/Devel/AssertOS/BSDOS.pm
inc/Devel/AssertOS/DGUX.pm
inc/Devel/AssertOS/DragonflyBSD.pm
inc/Devel/AssertOS/Dynix.pm
inc/Devel/AssertOS/FreeBSD.pm
inc/Devel/AssertOS/HPUX.pm
inc/Devel/AssertOS/Interix.pm
inc/Devel/AssertOS/Irix.pm
inc/Devel/AssertOS/Linux.pm
inc/Devel/AssertOS/MacOSX.pm
inc/Devel/AssertOS/MachTen.pm
inc/Devel/AssertOS/MidnightBSD.pm
inc/Devel/AssertOS/MirOSBSD.pm
inc/Devel/AssertOS/NetBSD.pm
inc/Devel/AssertOS/OSF.pm
inc/Devel/AssertOS/OpenBSD.pm
inc/Devel/AssertOS/QNX.pm
inc/Devel/AssertOS/QNX/Neutrino.pm
inc/Devel/AssertOS/QNX/v4.pm
inc/Devel/AssertOS/SCO.pm
inc/Devel/AssertOS/Solaris.pm
inc/Devel/AssertOS/SunOS.pm
inc/Devel/AssertOS/SysVr4.pm
inc/Devel/AssertOS/SysVr5.pm
inc/Devel/AssertOS/Unicos.pm
inc/Devel/AssertOS/Unix.pm
inc/Devel/CheckOS.pm
inc/Module/Install.pm
inc/Module/Install/AssertOS.pm
inc/Module/Install/AuthorRequires.pm
inc/Module/Install/AuthorTests.pm
inc/Module/Install/Base.pm
Expand All @@ -51,13 +12,21 @@ inc/Module/Install/ReadmeFromPod.pm
inc/Module/Install/Scripts.pm
inc/Module/Install/Win32.pm
inc/Module/Install/WriteAll.pm
INSTALL
lib/LaTeX/Driver.pm
lib/LaTeX/Driver.pm.new
lib/LaTeX/Driver/FilterProgram.pm
script/README
Makefile.PL
MANIFEST This list of files
MANIFEST.SKIP
META.yml Module meta-data (added by MakeMaker)
NOTES
README General information, installation, etc.
README.md
script/latex2dvi
script/latex2pdf
script/latex2ps
script/README
t/00-basic.t
t/01-errors.t
t/02-brokendocs.t
Expand All @@ -75,9 +44,9 @@ t/90-kwalitee.t
t/91-pod.t
t/92-pod-coverage.t
t/93-perl-critic.t
t/README
t/lib/Test/LaTeX/Driver.pm
t/perlcriticrc
t/README
t/testdata/00-common/testinc2.tex
t/testdata/01-errors/01-errors.tex
t/testdata/02-brokendocs/02-brokendocs.tex
Expand All @@ -99,3 +68,4 @@ t/testdata/30-output-to-variable/30-output-to-variable.tex
t/testdata/31-input-from-variable/31-input-from-variable.tex
t/testdata/40-pkg-longtable/40-pkg-longtable.tex
t/testdata/README
TODO
3 changes: 3 additions & 0 deletions MANIFEST.SKIP
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
#defaults
^Makefile$
^blib/
.hg/
^pm_to_blib
^blibdirs
.git/
Expand All @@ -11,3 +12,5 @@ MYMETA.yml
MYMETA.json
MANIFEST.bak
Makefile.old
AssertOS
CheckOS
5 changes: 1 addition & 4 deletions Makefile.PL
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,6 @@ use inc::Module::Install 0.91;
use Module::Install::ReadmeFromPod;
use Module::Install::AuthorRequires;
use Module::Install::AuthorTests;
use Module::Install::AssertOS;

assertos qw/ Unix /;

license 'perl';

Expand All @@ -23,8 +20,8 @@ requires 'File::Spec';
requires 'Getopt::Long';
requires 'IO::File';
requires 'parent';
requires 'IPC::ShellCmd' => 0.002;
requires 'Readonly';
requires 'File::pushd';

test_requires 'Test::More' => '0.88';

Expand Down
Loading

0 comments on commit d564370

Please sign in to comment.