Mon Apr 27 15:07:30 2015 UTC ()
(pkgsrc)
 - LICENSE to ${PERL5_LICENSE}
 - Add 5 more DEPENDS, p5-Module-Install-*, p5-Test-*
 - Convert to PERL5_MODULE_TYPE=     Module::Install
 - Drop patch-aa
(upstream)
 - Update 0.10 to 0.200.4
-------------------------
 0.200.4 2014-04-12
    - Disabled bibtex tests by default due to frequently not found LaTex
      sty not found.

    - Disabled t/30 and t/31 unless dvips is found

0.200.3 2014-04-11
    - xelatex tests now optional because they add too many external
      dependencies

0.200.1 2014-04-10
    - Fixed stale dependency (unused) in Test::LaTeX::Driver

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

0.20_02  2013-10-29
    - added -timeout option (requires IPC::ShellCmd 0.003)
    - added -capture_stderr option and stderr() method to retrieve captured stderr

0.20_01  2013-10-18
    - Now maintained on github
    - reformatted Changes file
    - removed MYMETA.{json,yml} from MANIFEST and added to MANIFEST.SKIP (RT89155)
    - use IPC::ShellCmd to run commands
    - remove LaTeX::Driver::Paths - paths determined at runtime

0.12  2012-08-31
    - fixed typo in settings of ps2pdf/pdf2ps (RT79233)
    - add missing dependency on Readonly (RT79330)

0.11  2012-08-30
    - rewrote loop in run_latex() and need_to_run_bibtex() to use a
      lexical variable to avoid subtle errors with
      Template::Plugin::Latex (RT50684)


(mef)
diff -r1.11 -r1.12 pkgsrc/print/p5-LaTeX-Driver/Makefile
diff -r1.3 -r1.4 pkgsrc/print/p5-LaTeX-Driver/distinfo
diff -r1.2 -r0 pkgsrc/print/p5-LaTeX-Driver/patches/patch-aa

cvs diff -r1.11 -r1.12 pkgsrc/print/p5-LaTeX-Driver/Makefile (expand / switch to unified diff)

--- pkgsrc/print/p5-LaTeX-Driver/Makefile 2014/05/29 23:37:16 1.11
+++ pkgsrc/print/p5-LaTeX-Driver/Makefile 2015/04/27 15:07:30 1.12
@@ -1,28 +1,33 @@ @@ -1,28 +1,33 @@
1# $NetBSD: Makefile,v 1.11 2014/05/29 23:37:16 wiz Exp $ 1# $NetBSD: Makefile,v 1.12 2015/04/27 15:07:30 mef Exp $
2# 2#
3 3
4DISTNAME= LaTeX-Driver-0.10 4DISTNAME= LaTeX-Driver-0.200.4
5PKGNAME= p5-${DISTNAME} 5PKGNAME= p5-${DISTNAME}
6PKGREVISION= 5 
7CATEGORIES= print 6CATEGORIES= print
8MASTER_SITES= ${MASTER_SITE_PERL_CPAN:=LaTeX/} 7MASTER_SITES= ${MASTER_SITE_PERL_CPAN:=LaTeX/}
9 8
10MAINTAINER= pkgsrc-users@NetBSD.org 9MAINTAINER= pkgsrc-users@NetBSD.org
11HOMEPAGE= http://search.cpan.org/dist/LaTeX-Driver/ 10HOMEPAGE= http://search.cpan.org/dist/LaTeX-Driver/
12COMMENT= Perl module encapsulates the details of invoking the Latex programs 11COMMENT= Perl module encapsulates the details of invoking the Latex programs
13LICENSE= gnu-gpl-v2 # OR artistic 12LICENSE= ${PERL5_LICENSE}
14 13
15USE_TOOLS+= gs:run 14USE_TOOLS+= gs:run
16 15
17DEPENDS+= makeindexk-[0-9]*:../../textproc/makeindexk 16DEPENDS+= makeindexk-[0-9]*:../../textproc/makeindexk
18DEPENDS+= p5-Class-Accessor-[0-9]*:../../devel/p5-Class-Accessor 17DEPENDS+= p5-Class-Accessor-[0-9]*:../../devel/p5-Class-Accessor
 18DEPENDS+= p5-Module-Install-ReadmeFromPod-[0-9]*:../../devel/p5-Module-Install-ReadmeFromPod
 19DEPENDS+= p5-Module-Install-AuthorRequires-[0-9]*:../../devel/p5-Module-Install-AuthorRequires
 20DEPENDS+= p5-Module-Install-AuthorTests-[0-9]*:../../devel/p5-Module-Install-AuthorTests
 21DEPENDS+= p5-Test-NoTabs-[0-9]*:../../devel/p5-Test-NoTabs
 22DEPENDS+= p5-Test-Spelling-[0-9]*:../../devel/p5-Test-Spelling
19DEPENDS+= p5-Exception-Class-[0-9]*:../../devel/p5-Exception-Class 23DEPENDS+= p5-Exception-Class-[0-9]*:../../devel/p5-Exception-Class
20DEPENDS+= p5-File-Slurp-[0-9]*:../../devel/p5-File-Slurp 24DEPENDS+= p5-File-Slurp-[0-9]*:../../devel/p5-File-Slurp
21DEPENDS+= tex-latex-bin-[0-9]*:../../print/tex-latex-bin 25DEPENDS+= tex-latex-bin-[0-9]*:../../print/tex-latex-bin
22DEPENDS+= web2c-[0-9]*:../../print/web2c 26DEPENDS+= web2c-[0-9]*:../../print/web2c
23DEPENDS+= dvipsk-[0-9]*:../../print/dvipsk 27DEPENDS+= dvipsk-[0-9]*:../../print/dvipsk
24 28
 29PERL5_MODULE_TYPE= Module::Install
25PERL5_PACKLIST= auto/LaTeX/Driver/.packlist 30PERL5_PACKLIST= auto/LaTeX/Driver/.packlist
26 31
27.include "../../lang/perl5/module.mk" 32.include "../../lang/perl5/module.mk"
28.include "../../mk/bsd.pkg.mk" 33.include "../../mk/bsd.pkg.mk"

cvs diff -r1.3 -r1.4 pkgsrc/print/p5-LaTeX-Driver/distinfo (expand / switch to unified diff)

--- pkgsrc/print/p5-LaTeX-Driver/distinfo 2011/11/11 11:37:08 1.3
+++ pkgsrc/print/p5-LaTeX-Driver/distinfo 2015/04/27 15:07:30 1.4
@@ -1,6 +1,5 @@ @@ -1,6 +1,5 @@
1$NetBSD: distinfo,v 1.3 2011/11/11 11:37:08 sno Exp $ 1$NetBSD: distinfo,v 1.4 2015/04/27 15:07:30 mef Exp $
2 2
3SHA1 (LaTeX-Driver-0.10.tar.gz) = a1c6049befda5495b3096ea2603c6dc0aab1fa2f 3SHA1 (LaTeX-Driver-0.200.4.tar.gz) = ca3c70b65eaa36945b425ea2fa11b7a37da92109
4RMD160 (LaTeX-Driver-0.10.tar.gz) = 07c07f634ca0627651f4da971b057694f1e3c36a 4RMD160 (LaTeX-Driver-0.200.4.tar.gz) = f0dfea6bf80054e3f7a7a2a28724ccb17574a5f6
5Size (LaTeX-Driver-0.10.tar.gz) = 30666 bytes 5Size (LaTeX-Driver-0.200.4.tar.gz) = 63968 bytes
6SHA1 (patch-aa) = 141b618ea03267e565952f8f45f67f9dfb13f3bf 

File Deleted: pkgsrc/print/p5-LaTeX-Driver/patches/Attic/patch-aa