Up to [cvs.NetBSD.org] / pkgsrc / databases / p5-MARC-Record
Request diff between arbitrary revisions
Default branch: MAIN
Revision 1.7 / (download) - annotate - [select for diffs], Tue Oct 26 10:09:37 2021 UTC (2 years, 1 month ago) by nia
Branch: MAIN
CVS Tags: pkgsrc-2023Q3-base,
pkgsrc-2023Q3,
pkgsrc-2023Q2-base,
pkgsrc-2023Q2,
pkgsrc-2023Q1-base,
pkgsrc-2023Q1,
pkgsrc-2022Q4-base,
pkgsrc-2022Q4,
pkgsrc-2022Q3-base,
pkgsrc-2022Q3,
pkgsrc-2022Q2-base,
pkgsrc-2022Q2,
pkgsrc-2022Q1-base,
pkgsrc-2022Q1,
pkgsrc-2021Q4-base,
pkgsrc-2021Q4,
HEAD
Changes since 1.6: +2 -2
lines
Diff to previous 1.6 (colored)
databases: Replace RMD160 checksums with BLAKE2s checksums All checksums have been double-checked against existing RMD160 and SHA512 hashes The following distfiles could not be fetched (some may be only fetched conditionally): ./databases/cstore/distinfo D6.data.ros.gz ./databases/cstore/distinfo cstore0.2.tar.gz ./databases/cstore/distinfo data4.tar.gz
Revision 1.6 / (download) - annotate - [select for diffs], Thu Oct 7 13:35:26 2021 UTC (2 years, 1 month ago) by nia
Branch: MAIN
Changes since 1.5: +1 -2
lines
Diff to previous 1.5 (colored)
databases: Remove SHA1 distfile hashes
Revision 1.5 / (download) - annotate - [select for diffs], Sun Sep 17 08:47:28 2017 UTC (6 years, 2 months ago) by wiz
Branch: MAIN
CVS Tags: pkgsrc-2021Q3-base,
pkgsrc-2021Q3,
pkgsrc-2021Q2-base,
pkgsrc-2021Q2,
pkgsrc-2021Q1-base,
pkgsrc-2021Q1,
pkgsrc-2020Q4-base,
pkgsrc-2020Q4,
pkgsrc-2020Q3-base,
pkgsrc-2020Q3,
pkgsrc-2020Q2-base,
pkgsrc-2020Q2,
pkgsrc-2020Q1-base,
pkgsrc-2020Q1,
pkgsrc-2019Q4-base,
pkgsrc-2019Q4,
pkgsrc-2019Q3-base,
pkgsrc-2019Q3,
pkgsrc-2019Q2-base,
pkgsrc-2019Q2,
pkgsrc-2019Q1-base,
pkgsrc-2019Q1,
pkgsrc-2018Q4-base,
pkgsrc-2018Q4,
pkgsrc-2018Q3-base,
pkgsrc-2018Q3,
pkgsrc-2018Q2-base,
pkgsrc-2018Q2,
pkgsrc-2018Q1-base,
pkgsrc-2018Q1,
pkgsrc-2017Q4-base,
pkgsrc-2017Q4,
pkgsrc-2017Q3-base,
pkgsrc-2017Q3
Changes since 1.4: +5 -5
lines
Diff to previous 1.4 (colored)
p5-MARC-Record: update to 2.0.7. 2.0.7 Tue May 23 20:41:13 EDT 2017 [FIXES] - RT#108123: clean up MANIFEST.SKIP - GH#1: marcdump now prints warnings (Johann Rolschewski) - remove a reference to SourceForge - fix a reference to the per4lib mailing list
Revision 1.4 / (download) - annotate - [select for diffs], Tue Nov 3 01:56:21 2015 UTC (8 years ago) by agc
Branch: MAIN
CVS Tags: pkgsrc-2017Q2-base,
pkgsrc-2017Q2,
pkgsrc-2017Q1-base,
pkgsrc-2017Q1,
pkgsrc-2016Q4-base,
pkgsrc-2016Q4,
pkgsrc-2016Q3-base,
pkgsrc-2016Q3,
pkgsrc-2016Q2-base,
pkgsrc-2016Q2,
pkgsrc-2016Q1-base,
pkgsrc-2016Q1,
pkgsrc-2015Q4-base,
pkgsrc-2015Q4
Changes since 1.3: +2 -1
lines
Diff to previous 1.3 (colored)
Add SHA512 digests for distfiles for databases category Problems found with existing distfiles: distfiles/D6.data.ros.gz distfiles/cstore0.2.tar.gz distfiles/data4.tar.gz distfiles/sphinx-2.2.7-release.tar.gz No changes made to the cstore or mariadb55-client distinfo files. Otherwise, existing SHA1 digests verified and found to be the same on the machine holding the existing distfiles (morden). All existing SHA1 digests retained for now as an audit trail.
Revision 1.3 / (download) - annotate - [select for diffs], Fri May 9 15:24:03 2014 UTC (9 years, 6 months ago) by wen
Branch: MAIN
CVS Tags: pkgsrc-2015Q3-base,
pkgsrc-2015Q3,
pkgsrc-2015Q2-base,
pkgsrc-2015Q2,
pkgsrc-2015Q1-base,
pkgsrc-2015Q1,
pkgsrc-2014Q4-base,
pkgsrc-2014Q4,
pkgsrc-2014Q3-base,
pkgsrc-2014Q3,
pkgsrc-2014Q2-base,
pkgsrc-2014Q2
Changes since 1.2: +4 -4
lines
Diff to previous 1.2 (colored)
Update to 2.0.6 Upstream changes: 2.0.6 Tue Oct 22 16:17:06 UTC 2013 [ENHANCEMENTS] - MARC::Field->as_string() now accepts an optional second parameter to specify the delimiter to use between subfields. (Tomas Cohen Arazi) - MARC::Field->delete_subfield() can now accept a regexp to specify the subfields to remove. For example, to remove all numeric subfields, one can say: $field->delete_subfield(code => qr/\d/); (Jason Stephenson) [FIXES] - the warnings pragma is now used throughout MARC::Record - $field->as_string('0') now returns the contents of subfield $0 rather than the contents of all of the subfields in the field. - RT#88421: add newline after printing warnings (Jason Stephenson) - RT#85804: fix spelling glitch (Gregor Herrmann) 2.0.5 Mon Feb 11 20:39:10 PST 2013 - fix use of qw(...) in test case so that module passes tests with Perl 5.17.x. 2.0.4 Sat Feb 9 19:01:47 PST 2013 [ENHANCEMENTS] - add MARC::Field->set_indicator($indpos, $indval), a mutator for indicators - add MARC::Field->set_tag to allow tags to be renamed (Robin Sheat) - delete_subfield(), if given a single subfield label as its argument, will delete all instances of the specified subfield, increasing its DWIM factor - improved POD for MARC::Field->delete_subfield() [FIXES] - RT#70346: delete_subfield() no longer clears entire field if arguments are badly formatted - croak if invalid arguments are passed to delete_subfield() - fix error in tutorial (thanks to Tom Burton-West for the catch) - RT#76990: emit leader of correct length even if record longer than 99,999 octets (Julian Maurice) - RT#67094: croak with correct error if attempting to create MARC::Field sans subfields - corrected POD for indicator() method - move tag validity check to new class method, is_valid_tag($tagno) - move indicator validity check to new class method, is_valid_indicator($indval) - have MARC::Record pass perlcritic --gentle (mostly) - remove function prototypes (see http://www.perlmonks.org/?node_id=861966)
Revision 1.2 / (download) - annotate - [select for diffs], Tue Aug 16 20:11:31 2011 UTC (12 years, 3 months ago) by wiz
Branch: MAIN
CVS Tags: pkgsrc-2014Q1-base,
pkgsrc-2014Q1,
pkgsrc-2013Q4-base,
pkgsrc-2013Q4,
pkgsrc-2013Q3-base,
pkgsrc-2013Q3,
pkgsrc-2013Q2-base,
pkgsrc-2013Q2,
pkgsrc-2013Q1-base,
pkgsrc-2013Q1,
pkgsrc-2012Q4-base,
pkgsrc-2012Q4,
pkgsrc-2012Q3-base,
pkgsrc-2012Q3,
pkgsrc-2012Q2-base,
pkgsrc-2012Q2,
pkgsrc-2012Q1-base,
pkgsrc-2012Q1,
pkgsrc-2011Q4-base,
pkgsrc-2011Q4,
pkgsrc-2011Q3-base,
pkgsrc-2011Q3
Changes since 1.1: +4 -4
lines
Diff to previous 1.1 (colored)
Update to 2.0.3: 2.0.3 Fri Jan 14 17:50:12 EST 2011 - RT#62296: fix crash when dealing with record bigger than 99999 bytes (Alex Arnaud) - test cases for MARC::Field->subfields() - RT#61198: let subfields return an empty array on control fields (Colin Campbell) 2.0.2 Tue May 4 13:04:07 EDT 2010 - RT#57180: put back and expanded copyright statement in README at Debian request - set license element in META.yml 2.0.1 Sat May 1 15:59:54 EDT 2010 [ENHANCEMENTS] - improve support for subclassing MARC::Field (Dan Wells) - RT#55993: MARC::Record->insert_fields_after can now insert after last field in record (Frédéric Demians) - added methods to MARC::Field to allow a (class-level) list of fields that should be considered control fields in addition to 001-009. Includes test t/extra_controlfields.t, and supports alphabetic characters in the tag labels. The new methods are allow_controlfield_tags disallow_controlfield_tags is_controlfield_tag (Bill Dueber) - added MARC::Record::delete_fields() and t/delete-field.t (Ed Summers) - documentation improvements (Mike Rylander and Dan Scott) - baked in minimum Perl version required: 5.8.2
Revision 1.1.1.1 / (download) - annotate - [select for diffs] (vendor branch), Tue Sep 16 18:04:23 2008 UTC (15 years, 2 months ago) by he
Branch: TNF
CVS Tags: pkgsrc-base,
pkgsrc-2011Q2-base,
pkgsrc-2011Q2,
pkgsrc-2011Q1-base,
pkgsrc-2011Q1,
pkgsrc-2010Q4-base,
pkgsrc-2010Q4,
pkgsrc-2010Q3-base,
pkgsrc-2010Q3,
pkgsrc-2010Q2-base,
pkgsrc-2010Q2,
pkgsrc-2010Q1-base,
pkgsrc-2010Q1,
pkgsrc-2009Q4-base,
pkgsrc-2009Q4,
pkgsrc-2009Q3-base,
pkgsrc-2009Q3,
pkgsrc-2009Q2-base,
pkgsrc-2009Q2,
pkgsrc-2009Q1-base,
pkgsrc-2009Q1,
pkgsrc-2008Q4-base,
pkgsrc-2008Q4,
pkgsrc-2008Q3-base,
pkgsrc-2008Q3
Changes since 1.1: +0 -0
lines
Diff to previous 1.1 (colored)
Import p5-MARC-Record version 2.0.0 from pkgsrc-wip. This is primarily so that p5-Net-Z3950-ZOOM can compile without having pkgsrc-wip checked out (oops!). MARC::Record provides yet another collection of routines to process MARC records.
Revision 1.1 / (download) - annotate - [select for diffs], Tue Sep 16 18:04:23 2008 UTC (15 years, 2 months ago) by he
Branch: MAIN
Initial revision