texlive[47520] Master/texmf-dist: bibtexperllibs (30apr18)
commits+karl at tug.org
commits+karl at tug.org
Tue May 1 00:44:50 CEST 2018
Revision: 47520
http://tug.org/svn/texlive?view=revision&revision=47520
Author: karl
Date: 2018-05-01 00:44:49 +0200 (Tue, 01 May 2018)
Log Message:
-----------
bibtexperllibs (30apr18)
Modified Paths:
--------------
trunk/Master/texmf-dist/scripts/bibtexperllibs/BibTeX/Parser/Author.pm
trunk/Master/texmf-dist/scripts/bibtexperllibs/BibTeX/Parser/Entry.pm
trunk/Master/texmf-dist/scripts/bibtexperllibs/BibTeX/Parser.pm
trunk/Master/texmf-dist/source/support/bibtexperllibs/BibTeX-Parser/Changes
trunk/Master/texmf-dist/source/support/bibtexperllibs/BibTeX-Parser/META.yml
trunk/Master/texmf-dist/source/support/bibtexperllibs/BibTeX-Parser/Makefile.PL
trunk/Master/texmf-dist/source/support/bibtexperllibs/BibTeX-Parser/README
trunk/Master/texmf-dist/source/support/bibtexperllibs/BibTeX-Parser/dist.ini
trunk/Master/texmf-dist/source/support/bibtexperllibs/BibTeX-Parser/t/bibs/english.bib
trunk/Master/texmf-dist/source/support/bibtexperllibs/README
Modified: trunk/Master/texmf-dist/scripts/bibtexperllibs/BibTeX/Parser/Author.pm
===================================================================
--- trunk/Master/texmf-dist/scripts/bibtexperllibs/BibTeX/Parser/Author.pm 2018-04-30 22:44:33 UTC (rev 47519)
+++ trunk/Master/texmf-dist/scripts/bibtexperllibs/BibTeX/Parser/Author.pm 2018-04-30 22:44:49 UTC (rev 47520)
@@ -1,6 +1,6 @@
package BibTeX::Parser::Author;
{
- $BibTeX::Parser::Author::VERSION = '1.01';
+ $BibTeX::Parser::Author::VERSION = '1.02';
}
use warnings;
@@ -263,7 +263,7 @@
my $self = shift;
if ($self->jr) {
- return $self->von . " " . $self->last . ", " . $self->jr . ", " . $self->first;
+ return ($self->von ? $self->von . " " : '') . " " . $self->last . ", " . $self->jr . ", " . $self->first;
} else {
return ($self->von ? $self->von . " " : '') . $self->last . ($self->first ? ", " . $self->first : '');
}
@@ -393,7 +393,7 @@
=head1 VERSION
-version 1.01
+version 1.02
=head1 AUTHOR
Modified: trunk/Master/texmf-dist/scripts/bibtexperllibs/BibTeX/Parser/Entry.pm
===================================================================
--- trunk/Master/texmf-dist/scripts/bibtexperllibs/BibTeX/Parser/Entry.pm 2018-04-30 22:44:33 UTC (rev 47519)
+++ trunk/Master/texmf-dist/scripts/bibtexperllibs/BibTeX/Parser/Entry.pm 2018-04-30 22:44:49 UTC (rev 47520)
@@ -1,6 +1,6 @@
package BibTeX::Parser::Entry;
{
- $BibTeX::Parser::Entry::VERSION = '1.01';
+ $BibTeX::Parser::Entry::VERSION = '1.02';
}
use warnings;
@@ -415,7 +415,7 @@
=head1 VERSION
-version 1.01
+version 1.02
=head1 AUTHOR
Modified: trunk/Master/texmf-dist/scripts/bibtexperllibs/BibTeX/Parser.pm
===================================================================
--- trunk/Master/texmf-dist/scripts/bibtexperllibs/BibTeX/Parser.pm 2018-04-30 22:44:33 UTC (rev 47519)
+++ trunk/Master/texmf-dist/scripts/bibtexperllibs/BibTeX/Parser.pm 2018-04-30 22:44:49 UTC (rev 47520)
@@ -1,6 +1,6 @@
package BibTeX::Parser;
{
- $BibTeX::Parser::VERSION = '1.01';
+ $BibTeX::Parser::VERSION = '1.02';
}
# ABSTRACT: A pure perl BibTeX parser
use warnings;
@@ -345,7 +345,7 @@
=head1 VERSION
-version 1.01
+version 1.02
=head1 AUTHOR
Modified: trunk/Master/texmf-dist/source/support/bibtexperllibs/BibTeX-Parser/Changes
===================================================================
--- trunk/Master/texmf-dist/source/support/bibtexperllibs/BibTeX-Parser/Changes 2018-04-30 22:44:33 UTC (rev 47519)
+++ trunk/Master/texmf-dist/source/support/bibtexperllibs/BibTeX-Parser/Changes 2018-04-30 22:44:49 UTC (rev 47520)
@@ -1,5 +1,8 @@
Revision history for BibTeX-Parser
+1.02 2018-04-29 03:19:56 +0000
+ Corrected the bug when Jr is not accompanied by von.
+
1.01 2017-11-19 03:12:34 +0000
New options for to_string:
- print_pre - whether to print text preceding the entry
Modified: trunk/Master/texmf-dist/source/support/bibtexperllibs/BibTeX-Parser/META.yml
===================================================================
--- trunk/Master/texmf-dist/source/support/bibtexperllibs/BibTeX-Parser/META.yml 2018-04-30 22:44:33 UTC (rev 47519)
+++ trunk/Master/texmf-dist/source/support/bibtexperllibs/BibTeX-Parser/META.yml 2018-04-30 22:44:49 UTC (rev 47520)
@@ -20,4 +20,4 @@
IO::String: 0
LaTeX::ToUnicode: 0.02
Test::More: 0
-version: 1.01
+version: 1.02
Modified: trunk/Master/texmf-dist/source/support/bibtexperllibs/BibTeX-Parser/Makefile.PL
===================================================================
--- trunk/Master/texmf-dist/source/support/bibtexperllibs/BibTeX-Parser/Makefile.PL 2018-04-30 22:44:33 UTC (rev 47519)
+++ trunk/Master/texmf-dist/source/support/bibtexperllibs/BibTeX-Parser/Makefile.PL 2018-04-30 22:44:49 UTC (rev 47520)
@@ -29,7 +29,7 @@
"TEST_REQUIRES" => {
"Test::More" => "0.88"
},
- "VERSION" => "1.01",
+ "VERSION" => "1.02",
"test" => {
"TESTS" => "t/*.t"
}
Modified: trunk/Master/texmf-dist/source/support/bibtexperllibs/BibTeX-Parser/README
===================================================================
--- trunk/Master/texmf-dist/source/support/bibtexperllibs/BibTeX-Parser/README 2018-04-30 22:44:33 UTC (rev 47519)
+++ trunk/Master/texmf-dist/source/support/bibtexperllibs/BibTeX-Parser/README 2018-04-30 22:44:49 UTC (rev 47520)
@@ -1,5 +1,5 @@
This archive contains the distribution BibTeX-Parser,
-version 1.01:
+version 1.02:
A pure perl BibTeX parser
Modified: trunk/Master/texmf-dist/source/support/bibtexperllibs/BibTeX-Parser/dist.ini
===================================================================
--- trunk/Master/texmf-dist/source/support/bibtexperllibs/BibTeX-Parser/dist.ini 2018-04-30 22:44:33 UTC (rev 47519)
+++ trunk/Master/texmf-dist/source/support/bibtexperllibs/BibTeX-Parser/dist.ini 2018-04-30 22:44:49 UTC (rev 47520)
@@ -1,5 +1,5 @@
name = BibTeX-Parser
-version = 1.01
+version = 1.02
author = Gerhard Gossen <gerhard.gossen at googlemail.com> and Boris Veytsman <boris at varphi.com>
license = Perl_5
copyright_holder = Gerhard Gossen and Boris Veytsman
Modified: trunk/Master/texmf-dist/source/support/bibtexperllibs/BibTeX-Parser/t/bibs/english.bib
===================================================================
--- trunk/Master/texmf-dist/source/support/bibtexperllibs/BibTeX-Parser/t/bibs/english.bib 2018-04-30 22:44:33 UTC (rev 47519)
+++ trunk/Master/texmf-dist/source/support/bibtexperllibs/BibTeX-Parser/t/bibs/english.bib 2018-04-30 22:44:49 UTC (rev 47520)
@@ -1,4 +1,4 @@
-$Id: english.bib,v 1.6 2017/12/10 02:43:44 boris Exp $
+$Id: english.bib,v 1.7 2018/04/29 19:39:51 boris Exp $
Please notify Adrian F Clark <alien at uk.ac.essex.ese> of any additions
or corrections to this list.
Modified: trunk/Master/texmf-dist/source/support/bibtexperllibs/README
===================================================================
--- trunk/Master/texmf-dist/source/support/bibtexperllibs/README 2018-04-30 22:44:33 UTC (rev 47519)
+++ trunk/Master/texmf-dist/source/support/bibtexperllibs/README 2018-04-30 22:44:49 UTC (rev 47520)
@@ -1,5 +1,5 @@
BibTeX Perl Libs
- Version 1.4
+ Version 1.5
Gerhard Gossen and Boris Veytsman
This package provides BibTeX related Perl libraries by Gerhard Gossen,
@@ -12,6 +12,8 @@
Changes:
+ version 1.5 Upgraded BibTeX::Parser to 1.02 (bugfixes)
+
version 1.4 Upgraded BibTeX::Parser to 1.01
version 1.3 Upgraded BibTeX::Parser to 1.00
More information about the tex-live-commits
mailing list