This is an automated email from the git hooks/post-receive script. js pushed a commit to annotated tag upstream/1.19 in repository libcatmandu-marc-perl.
commit eae542decd212c5181c8c32f38ac22d2601b2d9d Author: Patrick Hochstenbach <[email protected]> Date: Tue May 17 11:48:33 2016 +0200 Adding version numbers to all packages --- lib/Catmandu/Exporter/MARC.pm | 2 ++ lib/Catmandu/Exporter/MARC/ALEPHSEQ.pm | 2 ++ lib/Catmandu/Exporter/MARC/Base.pm | 2 ++ lib/Catmandu/Exporter/MARC/MARCMaker.pm | 2 ++ lib/Catmandu/Exporter/MARC/MiJ.pm | 2 ++ lib/Catmandu/Exporter/MARC/USMARC.pm | 2 ++ lib/Catmandu/Exporter/MARC/XML.pm | 2 ++ lib/Catmandu/Fix/Bind/marc_each.pm | 2 ++ lib/Catmandu/Fix/Condition/marc_match.pm | 2 ++ lib/Catmandu/Fix/Inline/marc_add.pm | 2 ++ lib/Catmandu/Fix/Inline/marc_map.pm | 2 ++ lib/Catmandu/Fix/Inline/marc_remove.pm | 2 ++ lib/Catmandu/Fix/Inline/marc_set.pm | 2 ++ lib/Catmandu/Fix/marc_add.pm | 2 ++ lib/Catmandu/Fix/marc_decode_dollar_subfields.pm | 2 ++ lib/Catmandu/Fix/marc_in_json.pm | 2 ++ lib/Catmandu/Fix/marc_map.pm | 2 ++ lib/Catmandu/Fix/marc_remove.pm | 2 ++ lib/Catmandu/Fix/marc_set.pm | 2 ++ lib/Catmandu/Fix/marc_xml.pm | 2 ++ lib/Catmandu/Importer/MARC.pm | 2 ++ lib/Catmandu/Importer/MARC/ALEPHSEQ.pm | 2 ++ lib/Catmandu/Importer/MARC/Decoder.pm | 2 ++ lib/Catmandu/Importer/MARC/Lint.pm | 2 ++ lib/Catmandu/Importer/MARC/MARCMaker.pm | 2 ++ lib/Catmandu/Importer/MARC/MiJ.pm | 2 ++ lib/Catmandu/Importer/MARC/MicroLIF.pm | 2 ++ lib/Catmandu/Importer/MARC/RAW.pm | 2 ++ lib/Catmandu/Importer/MARC/Record.pm | 2 ++ lib/Catmandu/Importer/MARC/USMARC.pm | 2 ++ lib/Catmandu/Importer/MARC/XML.pm | 2 ++ 31 files changed, 62 insertions(+) diff --git a/lib/Catmandu/Exporter/MARC.pm b/lib/Catmandu/Exporter/MARC.pm index c63ae7f..eafe997 100644 --- a/lib/Catmandu/Exporter/MARC.pm +++ b/lib/Catmandu/Exporter/MARC.pm @@ -50,6 +50,8 @@ package Catmandu::Exporter::MARC; use Catmandu::Sane; use Moo; +our $VERSION = '0.215'; + has type => (is => 'ro' , default => sub { 'XML' }); has _exporter => (is => 'ro' , lazy => 1 , builder => '_build_exporter' , handles => 'Catmandu::Exporter'); has _exporter_args => (is => 'rwp', writer => '_set_exporter_args'); diff --git a/lib/Catmandu/Exporter/MARC/ALEPHSEQ.pm b/lib/Catmandu/Exporter/MARC/ALEPHSEQ.pm index dc3d16e..0cef856 100644 --- a/lib/Catmandu/Exporter/MARC/ALEPHSEQ.pm +++ b/lib/Catmandu/Exporter/MARC/ALEPHSEQ.pm @@ -55,6 +55,8 @@ use Catmandu::Util qw(xml_escape is_different :array :is); use List::Util; use Moo; +our $VERSION = '0.215'; + with 'Catmandu::Exporter', 'Catmandu::Exporter::MARC::Base'; has record => (is => 'ro' , default => sub { 'record'}); diff --git a/lib/Catmandu/Exporter/MARC/Base.pm b/lib/Catmandu/Exporter/MARC/Base.pm index 8ec1320..176dbe0 100644 --- a/lib/Catmandu/Exporter/MARC/Base.pm +++ b/lib/Catmandu/Exporter/MARC/Base.pm @@ -3,6 +3,8 @@ use Moo::Role; use MARC::Record; use MARC::Field; +our $VERSION = '0.215'; + sub _raw_to_marc_record { my ($self,$data) = @_; my $marc = MARC::Record->new(); diff --git a/lib/Catmandu/Exporter/MARC/MARCMaker.pm b/lib/Catmandu/Exporter/MARC/MARCMaker.pm index 55b0482..9dc56a7 100644 --- a/lib/Catmandu/Exporter/MARC/MARCMaker.pm +++ b/lib/Catmandu/Exporter/MARC/MARCMaker.pm @@ -56,6 +56,8 @@ use MARC::Record; use MARC::Field; use MARC::File::MARCMaker; +our $VERSION = '0.215'; + with 'Catmandu::Exporter', 'Catmandu::Exporter::MARC::Base'; has record => (is => 'ro' , default => sub { 'record'}); diff --git a/lib/Catmandu/Exporter/MARC/MiJ.pm b/lib/Catmandu/Exporter/MARC/MiJ.pm index b689f4a..80267d4 100644 --- a/lib/Catmandu/Exporter/MARC/MiJ.pm +++ b/lib/Catmandu/Exporter/MARC/MiJ.pm @@ -56,6 +56,8 @@ use MARC::Record; use MARC::Field; use MARC::File::MiJ; +our $VERSION = '0.215'; + with 'Catmandu::Exporter', 'Catmandu::Exporter::MARC::Base'; has record => (is => 'ro' , default => sub { 'record'}); diff --git a/lib/Catmandu/Exporter/MARC/USMARC.pm b/lib/Catmandu/Exporter/MARC/USMARC.pm index 10ece10..16cafa1 100644 --- a/lib/Catmandu/Exporter/MARC/USMARC.pm +++ b/lib/Catmandu/Exporter/MARC/USMARC.pm @@ -56,6 +56,8 @@ use MARC::Record; use MARC::Field; use MARC::File::USMARC; +our $VERSION = '0.215'; + with 'Catmandu::Exporter', 'Catmandu::Exporter::MARC::Base'; has record => (is => 'ro' , default => sub { 'record'}); diff --git a/lib/Catmandu/Exporter/MARC/XML.pm b/lib/Catmandu/Exporter/MARC/XML.pm index 4feeea3..8b6bdd1 100644 --- a/lib/Catmandu/Exporter/MARC/XML.pm +++ b/lib/Catmandu/Exporter/MARC/XML.pm @@ -3,6 +3,8 @@ use Catmandu::Sane; use Catmandu::Util qw(xml_escape is_different :array :is); use Moo; +our $VERSION = '0.215'; + with 'Catmandu::Exporter', 'Catmandu::Exporter::MARC::Base'; has record => (is => 'ro' , default => sub { 'record'}); diff --git a/lib/Catmandu/Fix/Bind/marc_each.pm b/lib/Catmandu/Fix/Bind/marc_each.pm index 46df79f..36a5f9c 100644 --- a/lib/Catmandu/Fix/Bind/marc_each.pm +++ b/lib/Catmandu/Fix/Bind/marc_each.pm @@ -3,6 +3,8 @@ package Catmandu::Fix::Bind::marc_each; use Moo; use Catmandu::Util; +our $VERSION = '0.215'; + with 'Catmandu::Fix::Bind'; has done => (is => 'ro'); diff --git a/lib/Catmandu/Fix/Condition/marc_match.pm b/lib/Catmandu/Fix/Condition/marc_match.pm index 31ec477..0ed4a4e 100644 --- a/lib/Catmandu/Fix/Condition/marc_match.pm +++ b/lib/Catmandu/Fix/Condition/marc_match.pm @@ -7,6 +7,8 @@ use Catmandu::Fix::remove_field; use Moo; use Catmandu::Fix::Has; +our $VERSION = '0.215'; + with 'Catmandu::Fix::Condition'; has marc_path => (fix_arg => 1); diff --git a/lib/Catmandu/Fix/Inline/marc_add.pm b/lib/Catmandu/Fix/Inline/marc_add.pm index 558213b..7d972df 100644 --- a/lib/Catmandu/Fix/Inline/marc_add.pm +++ b/lib/Catmandu/Fix/Inline/marc_add.pm @@ -9,6 +9,8 @@ require Exporter; @EXPORT_OK = qw(marc_add); %EXPORT_TAGS = (all => [qw(marc_add)]); +our $VERSION = '0.215'; + sub marc_add { my ($data,$marc_path,@subfields) = @_; my (%subfields) = @subfields; diff --git a/lib/Catmandu/Fix/Inline/marc_map.pm b/lib/Catmandu/Fix/Inline/marc_map.pm index dff37b7..fbbfe95 100644 --- a/lib/Catmandu/Fix/Inline/marc_map.pm +++ b/lib/Catmandu/Fix/Inline/marc_map.pm @@ -59,6 +59,8 @@ require Exporter; @EXPORT_OK = qw(marc_map); %EXPORT_TAGS = (all => [qw(marc_map)]); +our $VERSION = '0.215'; + sub marc_map { my ($data,$marc_path,%opts) = @_; diff --git a/lib/Catmandu/Fix/Inline/marc_remove.pm b/lib/Catmandu/Fix/Inline/marc_remove.pm index 38ffc86..9d04b3f 100644 --- a/lib/Catmandu/Fix/Inline/marc_remove.pm +++ b/lib/Catmandu/Fix/Inline/marc_remove.pm @@ -8,6 +8,8 @@ require Exporter; @EXPORT_OK = qw(marc_remove); %EXPORT_TAGS = (all => [qw(marc_remove)]); +our $VERSION = '0.215'; + sub marc_remove { my ($data,$marc_path) = @_; my $ret = defined $data ? clone($data) : { record => [] }; diff --git a/lib/Catmandu/Fix/Inline/marc_set.pm b/lib/Catmandu/Fix/Inline/marc_set.pm index c6d5822..5783a0b 100644 --- a/lib/Catmandu/Fix/Inline/marc_set.pm +++ b/lib/Catmandu/Fix/Inline/marc_set.pm @@ -9,6 +9,8 @@ require Exporter; @EXPORT_OK = qw(marc_set); %EXPORT_TAGS = (all => [qw(marc_set)]); +our $VERSION = '0.215'; + sub marc_set { my ($data,$marc_path,$value) = @_; my $record = $data->{record}; diff --git a/lib/Catmandu/Fix/marc_add.pm b/lib/Catmandu/Fix/marc_add.pm index c54d964..db83e3f 100644 --- a/lib/Catmandu/Fix/marc_add.pm +++ b/lib/Catmandu/Fix/marc_add.pm @@ -5,6 +5,8 @@ use Catmandu::Util qw(:is); use Moo; use Catmandu::Fix::Has; +our $VERSION = '0.215'; + has marc_tag => (fix_arg => 1); has subfields => (fix_arg => 'collect'); diff --git a/lib/Catmandu/Fix/marc_decode_dollar_subfields.pm b/lib/Catmandu/Fix/marc_decode_dollar_subfields.pm index 4c5fe05..7923178 100644 --- a/lib/Catmandu/Fix/marc_decode_dollar_subfields.pm +++ b/lib/Catmandu/Fix/marc_decode_dollar_subfields.pm @@ -3,6 +3,8 @@ package Catmandu::Fix::marc_decode_dollar_subfields; use Moo; use Data::Dumper; +our $VERSION = '0.215'; + sub fix { my ($self,$data) = @_; diff --git a/lib/Catmandu/Fix/marc_in_json.pm b/lib/Catmandu/Fix/marc_in_json.pm index 3890837..3fc45fd 100644 --- a/lib/Catmandu/Fix/marc_in_json.pm +++ b/lib/Catmandu/Fix/marc_in_json.pm @@ -5,6 +5,8 @@ use Catmandu::Util qw(:is); use Moo; use Catmandu::Fix::Has; +our $VERSION = '0.215'; + has record => (fix_opt => 1); has reverse => (fix_opt => 1); diff --git a/lib/Catmandu/Fix/marc_map.pm b/lib/Catmandu/Fix/marc_map.pm index d640b83..a621a98 100644 --- a/lib/Catmandu/Fix/marc_map.pm +++ b/lib/Catmandu/Fix/marc_map.pm @@ -5,6 +5,8 @@ use Carp qw(confess); use Moo; use Catmandu::Fix::Has; +our $VERSION = '0.215'; + has marc_path => (fix_arg => 1); has path => (fix_arg => 1); has record => (fix_opt => 1); diff --git a/lib/Catmandu/Fix/marc_remove.pm b/lib/Catmandu/Fix/marc_remove.pm index 1982523..9a97d96 100644 --- a/lib/Catmandu/Fix/marc_remove.pm +++ b/lib/Catmandu/Fix/marc_remove.pm @@ -5,6 +5,8 @@ use Carp qw(confess); use Moo; use Catmandu::Fix::Has; +our $VERSION = '0.215'; + has marc_path => (fix_arg => 1); has record => (fix_opt => 1); diff --git a/lib/Catmandu/Fix/marc_set.pm b/lib/Catmandu/Fix/marc_set.pm index 72e068f..6aeed4c 100644 --- a/lib/Catmandu/Fix/marc_set.pm +++ b/lib/Catmandu/Fix/marc_set.pm @@ -6,6 +6,8 @@ use Carp qw(confess); use Moo; use Catmandu::Fix::Has; +our $VERSION = '0.215'; + has marc_path => (fix_arg => 1); has value => (fix_arg => 1); has record => (fix_opt => 1); diff --git a/lib/Catmandu/Fix/marc_xml.pm b/lib/Catmandu/Fix/marc_xml.pm index 5e4d686..24a097c 100644 --- a/lib/Catmandu/Fix/marc_xml.pm +++ b/lib/Catmandu/Fix/marc_xml.pm @@ -7,6 +7,8 @@ use Catmandu::Exporter::MARC::XML; use Catmandu::Util qw(:is :data); use Catmandu::Fix::Has; +our $VERSION = '0.215'; + has path => (fix_arg => 1); # Transform a raw MARC array into MARCXML diff --git a/lib/Catmandu/Importer/MARC.pm b/lib/Catmandu/Importer/MARC.pm index ceaa309..1bded29 100644 --- a/lib/Catmandu/Importer/MARC.pm +++ b/lib/Catmandu/Importer/MARC.pm @@ -116,6 +116,8 @@ use Catmandu::Sane; use Catmandu::Util; use Moo; +our $VERSION = '0.215'; + has type => (is => 'ro' , default => sub { 'USMARC' }); has _importer => (is => 'ro' , lazy => 1 , builder => '_build_importer' , handles => ['generator']); has _importer_args => (is => 'rwp', writer => '_set_importer_args'); diff --git a/lib/Catmandu/Importer/MARC/ALEPHSEQ.pm b/lib/Catmandu/Importer/MARC/ALEPHSEQ.pm index eb296f7..141fe2b 100644 --- a/lib/Catmandu/Importer/MARC/ALEPHSEQ.pm +++ b/lib/Catmandu/Importer/MARC/ALEPHSEQ.pm @@ -47,6 +47,8 @@ package Catmandu::Importer::MARC::ALEPHSEQ; use Catmandu::Sane; use Moo; +our $VERSION = '0.215'; + with 'Catmandu::Importer'; sub generator { diff --git a/lib/Catmandu/Importer/MARC/Decoder.pm b/lib/Catmandu/Importer/MARC/Decoder.pm index a4c7ecd..f78808d 100644 --- a/lib/Catmandu/Importer/MARC/Decoder.pm +++ b/lib/Catmandu/Importer/MARC/Decoder.pm @@ -3,6 +3,8 @@ package Catmandu::Importer::MARC::Decoder; use Catmandu::Sane; use Moo; +our $VERSION = '0.215'; + sub decode { my ($self, $record, $id) = @_; return unless eval { $record->isa('MARC::Record') }; diff --git a/lib/Catmandu/Importer/MARC/Lint.pm b/lib/Catmandu/Importer/MARC/Lint.pm index f8d52c0..33f1aa9 100644 --- a/lib/Catmandu/Importer/MARC/Lint.pm +++ b/lib/Catmandu/Importer/MARC/Lint.pm @@ -64,6 +64,8 @@ use MARC::File::USMARC; use MARC::Lint; use Catmandu::Importer::MARC::Decoder; +our $VERSION = '0.215'; + with 'Catmandu::Importer'; has id => (is => 'ro' , default => sub { '001' }); diff --git a/lib/Catmandu/Importer/MARC/MARCMaker.pm b/lib/Catmandu/Importer/MARC/MARCMaker.pm index 85aa17d..95899bf 100644 --- a/lib/Catmandu/Importer/MARC/MARCMaker.pm +++ b/lib/Catmandu/Importer/MARC/MARCMaker.pm @@ -54,6 +54,8 @@ use Moo; use MARC::File::MARCMaker; use Catmandu::Importer::MARC::Decoder; +our $VERSION = '0.215'; + with 'Catmandu::Importer'; has id => (is => 'ro' , default => sub { '001' }); diff --git a/lib/Catmandu/Importer/MARC/MiJ.pm b/lib/Catmandu/Importer/MARC/MiJ.pm index 66ffbc0..c2e1c1a 100644 --- a/lib/Catmandu/Importer/MARC/MiJ.pm +++ b/lib/Catmandu/Importer/MARC/MiJ.pm @@ -55,6 +55,8 @@ use MARC::Record; use Catmandu::Importer::MARC::Decoder; use MARC::File::MiJ; +our $VERSION = '0.215'; + with 'Catmandu::Importer'; has id => (is => 'ro' , default => sub { '001' }); diff --git a/lib/Catmandu/Importer/MARC/MicroLIF.pm b/lib/Catmandu/Importer/MARC/MicroLIF.pm index 2682bf4..09e4951 100644 --- a/lib/Catmandu/Importer/MARC/MicroLIF.pm +++ b/lib/Catmandu/Importer/MARC/MicroLIF.pm @@ -54,6 +54,8 @@ use Moo; use MARC::File::MicroLIF; use Catmandu::Importer::MARC::Decoder; +our $VERSION = '0.215'; + with 'Catmandu::Importer'; has id => (is => 'ro' , default => sub { '001' }); diff --git a/lib/Catmandu/Importer/MARC/RAW.pm b/lib/Catmandu/Importer/MARC/RAW.pm index 82ba3be..5c089c9 100644 --- a/lib/Catmandu/Importer/MARC/RAW.pm +++ b/lib/Catmandu/Importer/MARC/RAW.pm @@ -53,6 +53,8 @@ use Catmandu::Sane; use Moo; use MARC::Parser::RAW; +our $VERSION = '0.215'; + with 'Catmandu::Importer'; has id => (is => 'ro' , default => sub { '001' }); diff --git a/lib/Catmandu/Importer/MARC/Record.pm b/lib/Catmandu/Importer/MARC/Record.pm index f7e0a38..a2138b8 100644 --- a/lib/Catmandu/Importer/MARC/Record.pm +++ b/lib/Catmandu/Importer/MARC/Record.pm @@ -55,6 +55,8 @@ use Catmandu::Sane; use Catmandu::Importer::MARC::Decoder; use Moo; +our $VERSION = '0.215'; + with 'Catmandu::Importer'; has id => (is => 'ro' , default => sub { '001' }); diff --git a/lib/Catmandu/Importer/MARC/USMARC.pm b/lib/Catmandu/Importer/MARC/USMARC.pm index 76bce4f..19cc195 100644 --- a/lib/Catmandu/Importer/MARC/USMARC.pm +++ b/lib/Catmandu/Importer/MARC/USMARC.pm @@ -53,6 +53,8 @@ use Catmandu::Sane; use Moo; use MARC::File::USMARC; +our $VERSION = '0.215'; + with 'Catmandu::Importer'; has id => (is => 'ro' , default => sub { '001' }); diff --git a/lib/Catmandu/Importer/MARC/XML.pm b/lib/Catmandu/Importer/MARC/XML.pm index 5d73299..8a74cd6 100644 --- a/lib/Catmandu/Importer/MARC/XML.pm +++ b/lib/Catmandu/Importer/MARC/XML.pm @@ -54,6 +54,8 @@ use Moo; use Catmandu::Importer::MARC::Decoder; use MARC::File::XML (BinaryEncoding => 'UTF-8', DefaultEncoding => 'UTF-8', RecordFormat => 'MARC21'); +our $VERSION = '0.215'; + with 'Catmandu::Importer'; has id => (is => 'ro' , default => sub { '001' }); -- Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-perl/packages/libcatmandu-marc-perl.git _______________________________________________ Pkg-perl-cvs-commits mailing list [email protected] http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-perl-cvs-commits
