From ff79e08c4e182a0ca600f033c8baa842056f92f9 Mon Sep 17 00:00:00 2001 From: Karl Berry Date: Fri, 25 Mar 2016 22:06:44 +0000 Subject: bibtexperllibs (25mar16) git-svn-id: svn://tug.org/texlive/trunk@40139 c570f23f-e606-0410-a88d-b1316a301751 --- .../source/support/bibtexperllibs/BibTeX-Parser/Changes | 3 +++ .../source/support/bibtexperllibs/BibTeX-Parser/META.yml | 2 +- .../source/support/bibtexperllibs/BibTeX-Parser/Makefile.PL | 2 +- .../source/support/bibtexperllibs/BibTeX-Parser/README | 4 ++-- .../source/support/bibtexperllibs/BibTeX-Parser/dist.ini | 2 +- .../source/support/bibtexperllibs/BibTeX-Parser/t/13_output.t | 11 +++++++++-- .../support/bibtexperllibs/BibTeX-Parser/t/bibs/english.bib | 2 +- Master/texmf-dist/source/support/bibtexperllibs/README | 11 ++++++----- 8 files changed, 24 insertions(+), 13 deletions(-) (limited to 'Master/texmf-dist/source/support/bibtexperllibs') diff --git a/Master/texmf-dist/source/support/bibtexperllibs/BibTeX-Parser/Changes b/Master/texmf-dist/source/support/bibtexperllibs/BibTeX-Parser/Changes index 3785e372e7e..e39743738f4 100644 --- a/Master/texmf-dist/source/support/bibtexperllibs/BibTeX-Parser/Changes +++ b/Master/texmf-dist/source/support/bibtexperllibs/BibTeX-Parser/Changes @@ -1,5 +1,8 @@ Revision history for BibTeX-Parser +0.69 2016-03-24 15:13:50-04:00 + Added option canonize_names to Entry::to_string + 0.68 2016-03-10 13:45:31-05:00 Now we preserve the order of entries diff --git a/Master/texmf-dist/source/support/bibtexperllibs/BibTeX-Parser/META.yml b/Master/texmf-dist/source/support/bibtexperllibs/BibTeX-Parser/META.yml index 6ccee5fe89c..4ad914183f5 100644 --- a/Master/texmf-dist/source/support/bibtexperllibs/BibTeX-Parser/META.yml +++ b/Master/texmf-dist/source/support/bibtexperllibs/BibTeX-Parser/META.yml @@ -1,6 +1,6 @@ --- #YAML:1.0 name: BibTeX-Parser -version: 0.68 +version: 0.69 abstract: A pure perl BibTeX parser author: - Gerhard Gossen and Boris Veytsman diff --git a/Master/texmf-dist/source/support/bibtexperllibs/BibTeX-Parser/Makefile.PL b/Master/texmf-dist/source/support/bibtexperllibs/BibTeX-Parser/Makefile.PL index da91d807db7..e135d79029f 100644 --- a/Master/texmf-dist/source/support/bibtexperllibs/BibTeX-Parser/Makefile.PL +++ b/Master/texmf-dist/source/support/bibtexperllibs/BibTeX-Parser/Makefile.PL @@ -29,7 +29,7 @@ my %WriteMakefileArgs = ( "TEST_REQUIRES" => { "Test::More" => "0.88" }, - "VERSION" => "0.68", + "VERSION" => "0.69", "test" => { "TESTS" => "t/*.t" } diff --git a/Master/texmf-dist/source/support/bibtexperllibs/BibTeX-Parser/README b/Master/texmf-dist/source/support/bibtexperllibs/BibTeX-Parser/README index 185cd151198..2f76b0bc279 100644 --- a/Master/texmf-dist/source/support/bibtexperllibs/BibTeX-Parser/README +++ b/Master/texmf-dist/source/support/bibtexperllibs/BibTeX-Parser/README @@ -1,9 +1,9 @@ This archive contains the distribution BibTeX-Parser, -version 0.68: +version 0.69: A pure perl BibTeX parser -This software is copyright (c) 2013--2015 by Gerhard Gossen and Boris Veytsman +This software is copyright (c) 2013--2016 by Gerhard Gossen and Boris Veytsman This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself. diff --git a/Master/texmf-dist/source/support/bibtexperllibs/BibTeX-Parser/dist.ini b/Master/texmf-dist/source/support/bibtexperllibs/BibTeX-Parser/dist.ini index ca341ef139b..386d1f20257 100644 --- a/Master/texmf-dist/source/support/bibtexperllibs/BibTeX-Parser/dist.ini +++ b/Master/texmf-dist/source/support/bibtexperllibs/BibTeX-Parser/dist.ini @@ -1,5 +1,5 @@ name = BibTeX-Parser -version = 0.68 +version = 0.69 author = Gerhard Gossen and Boris Veytsman license = Perl_5 copyright_holder = Gerhard Gossen and Boris Veytsman diff --git a/Master/texmf-dist/source/support/bibtexperllibs/BibTeX-Parser/t/13_output.t b/Master/texmf-dist/source/support/bibtexperllibs/BibTeX-Parser/t/13_output.t index e298aa5a59e..ba0ea673cad 100644 --- a/Master/texmf-dist/source/support/bibtexperllibs/BibTeX-Parser/t/13_output.t +++ b/Master/texmf-dist/source/support/bibtexperllibs/BibTeX-Parser/t/13_output.t @@ -15,13 +15,20 @@ my $parser = new BibTeX::Parser $fh; while (my $entry = $parser->next) { if($entry->key eq 'key01') { - my $result='@ARTICLE{key01, + my $result1='@ARTICLE{key01, year = {1950}, author = {Duck, Donald and Else, Someone}, title = {Title text}, month = {January~1}, }'; - is($entry->to_string,$result); + my $result2='@ARTICLE{key01, + year = {1950}, + author = {Donald Duck and Someone Else}, + title = {Title text}, + month = {January~1}, +}'; + is($entry->to_string,$result1); + is($entry->to_string(canonize_names=>0),$result2); } } diff --git a/Master/texmf-dist/source/support/bibtexperllibs/BibTeX-Parser/t/bibs/english.bib b/Master/texmf-dist/source/support/bibtexperllibs/BibTeX-Parser/t/bibs/english.bib index c7cd3409222..021b0d58f9e 100644 --- a/Master/texmf-dist/source/support/bibtexperllibs/BibTeX-Parser/t/bibs/english.bib +++ b/Master/texmf-dist/source/support/bibtexperllibs/BibTeX-Parser/t/bibs/english.bib @@ -1,4 +1,4 @@ -$Id: english.bib,v 1.3 2016/03/10 19:00:02 boris Exp $ +$Id: english.bib,v 1.4 2016/03/24 22:47:03 boris Exp $ Please notify Adrian F Clark of any additions or corrections to this list. diff --git a/Master/texmf-dist/source/support/bibtexperllibs/README b/Master/texmf-dist/source/support/bibtexperllibs/README index 65d114cced2..97327b97139 100644 --- a/Master/texmf-dist/source/support/bibtexperllibs/README +++ b/Master/texmf-dist/source/support/bibtexperllibs/README @@ -1,18 +1,19 @@ BibTeX Perl Libs - Version 1.0 + Version 1.1 Gerhard Gossen and Boris Veytsman This package provides BibTeX related Perl libraries by Gerhard Gossen, -maintained and repacked by Boris Veytsman, boris@varphi.com, for -TeXLive and other TDS-compliant distributions. The libraries are -written in pure Perl, so shoud work out of the box on any -architecture. +maintained and repackaged by Boris Veytsman for TeXLive and other +TDS-compliant distributions. The libraries are written in pure Perl, +so shoud work out of the box on any architecture. To use them in your scripts, add to the @INC variable the directory scripts/bibtexperllibs inside your TeX distribution. Changes: + version 1.1 Upgraded BibTeX::Parser to v0.69 + version 1.0 Upgraded BibTeX::Parser to v0.68 and LaTeX::ToUnicode to 0.04 version 0.2 New upstream version for BibTeX::Parser (0.66) -- cgit v1.2.3