diff options
author | abs <abs@pkgsrc.org> | 2008-05-28 20:57:15 +0000 |
---|---|---|
committer | abs <abs@pkgsrc.org> | 2008-05-28 20:57:15 +0000 |
commit | a52e8b675cf2a74f05a58c1e36284543a6336610 (patch) | |
tree | 8b868c40cc095fb808fc01619a6df6d51bdb65c8 /textproc | |
parent | e07a1f67b41abaf6afa074d6b085386b7609c2e8 (diff) | |
download | pkgsrc-a52e8b675cf2a74f05a58c1e36284543a6336610.tar.gz |
Updated texproc/p5-YAML-Syck to 1.04
[Changes for 1.04 (JSON::Syck 0.29) - 2008-02-17]
* The 'Name "YAML::Syck::ImplicitBinary" used only once: possible typo'
warnings no longer triggers in Perl 5.10 when running with perl -w.
Reported by: Jesse Vincent
[Changes for 1.03 (JSON::Syck 0.29) - 2008-02-16]
* JSON::Syck: When $JSON::Syck::SingleQuote is false, implicit booleans
such as "yes" and "no" should be dumped with double quotes, instead of
single quotes (which breaks RFC 4627).
Reported by: cho45
[Changes for 1.02 (JSON::Syck 0.28) - 2008-02-16]
* JSON::Syck: Colons in single-quoted strings are no longer loaded
with an extra space after it.
Reported by: Agent Zhang
[Changes for 1.01 (JSON::Syck 0.27) - 2008-01-19]
* JSON::XS is now promoted prominiently in JSON::Syck's documentation.
* Added support for Perl 5.11 and its first-class Regexp objects.
Contributed by: Andreas Koenig
* Tests no longer fail incorrectly when JSON.pm 2.00+ is installed.
Contributed by: Andreas Koenig
* Removed the unused Syck bytecode modules (yamlbyte.h and yaml2byte.c)
to further reduce our memory footprint.
[Changes for 1.00 (JSON::Syck 0.26) - 2007-12-10]
* When $YAML::Syck::SingleQuote is set to true, Dump() now emits newlines
in strings correctly. (Previously it would emit extra newlines.)
[Changes for 0.99 (JSON::Syck 0.26) - 2007-10-23]
* TODOify tests as appropriate for Perl 5.005 and Perl 5.6.x.
[Changes for 0.98 (JSON::Syck 0.26) - 2007-10-13]
* Restore support for Perl 5.005 and earlier.
[Changes for 0.97 (JSON::Syck 0.26) - 2007-09-03]
* When loading !!perl/code with $YAML::Syck::LoadCode set to false,
YAML::Syck now returns a coderef that does nothing (i.e. sub {}),
in accordance with YAML.pm's treatment, instead of returning the
actual code of the sub as a string.
Contributed by: Florian Ragwitz
[Changes for 0.96 (JSON::Syck 0.26) - 2007-08-08]
* The always-quote rule now applies to all implicit booleans
and null values, i.e. strings that match the following regex:
/y|Y
|n|N
|yes|Yes|YES
|no|No|NO
|true|True|TRUE
|false|False|FALSE
|on|On|ON
|off|Off|OFF
|null|Null|NULL
|~
/x
* Bare literals "Y", "N", "y" and "n" are now recognized as
booleans when loading with implicit typing turned on.
* Mixed case strings that does not represent implicit boolean
values, such as "yES" and "nO", are no longer always-quoted.
Contributed by: Malcolm Studd
[Changes for 0.95 (JSON::Syck 0.26) - 2007-08-04]
* "Yes" and "no" (including all upper/lower case forms) are now
always dumped in quoted form to avoid ambiguities when loaded
by loaders with ImplicitTyping set to true.
Reported by: Malcolm Studd
* lib/YAML/Syck.pod is merged back into lib/YAML/Syck.pm.
(No functional changes.)
[Changes for 0.94 (JSON::Syck 0.26) - 2007-07-10]
* Repair broken PAUSE upload, again. (Sigh.)
[Changes for 0.93 (JSON::Syck 0.26) - 2007-07-10]
* Repair broken PAUSE upload.
[Changes for 0.92 (JSON::Syck 0.26) - 2007-07-10]
* Allow for LoadFile(*FH) and DumpFile(*FH), in addition to
($fh) and (\*FH). Also, new tests for LoadFile and DumpFile.
Contributed by: Adriano Ferreira
[Changes for 0.91 (JSON::Syck 0.26) - 2007-06-23]
* Corrected loading Regexps with all combinations of quantifiers.
Contributed by: Ingy döt Net
[Changes for 0.90 (JSON::Syck 0.26) - 2007-06-22]
* Regexes are now dump/loaded correctly with modifiers, with a new
representation: "--- !!perl/regexp:main (?i-xsm:1)", instead of the
old mapping with a REGEXP key. The old form still loads correctly;
the new form corresponds to YAML.pm 0.63 and later.
Requested by: Ingy döt Net
* Loading regexes with modifiers no longer involves an eval"" call.
[Changes for 0.88 (JSON::Syck 0.26) - 2007-06-17]
* New dependency: Scalar::Util, for LoadFile and DumpFile functions.
You can safely do without that module if you do not make use of the
two functions.
* LoadFile and DumpFile now accept glob values, and reject unopened
handles properly instead of silently ignores it.
Contributed by: Adriano Ferreira
[Changes for 0.87 (JSON::Syck 0.25) - 2007-06-17]
* New LoadFile and DumpFile functions for JSON::Syck.
* JSON::Syck now actually exports its functions if you ask for it.
* LoadFile and DumpFile now accept IO objects in addition to file names.
Requested by: Adriano Ferreira
[Changes for 0.86 (JSON::Syck 0.24) - 2007-06-16]
* Support for dumping and loading regexps created by qr//, including
blessed once. Note that loading Regexp values dumped by YAML.pm
currently discards modifiers.
Diffstat (limited to 'textproc')
-rw-r--r-- | textproc/p5-YAML-Syck/Makefile | 8 | ||||
-rw-r--r-- | textproc/p5-YAML-Syck/distinfo | 8 |
2 files changed, 9 insertions, 7 deletions
diff --git a/textproc/p5-YAML-Syck/Makefile b/textproc/p5-YAML-Syck/Makefile index 151bd063d55..8ad8612ca7a 100644 --- a/textproc/p5-YAML-Syck/Makefile +++ b/textproc/p5-YAML-Syck/Makefile @@ -1,12 +1,12 @@ -# $NetBSD: Makefile,v 1.3 2007/10/09 19:19:15 martti Exp $ +# $NetBSD: Makefile,v 1.4 2008/05/28 20:57:15 abs Exp $ -DISTNAME= YAML-Syck-0.85 +DISTNAME= YAML-Syck-1.04 PKGNAME= p5-${DISTNAME} CATEGORIES= perl5 textproc MASTER_SITES= ${MASTER_SITE_PERL_CPAN:=../by-authors/id/A/AU/AUDREYT/} MAINTAINER= bad@NetBSD.org -HOMEPAGE= http://search.cpan.org/~audreyt/YAML-Syck-0.72/ +HOMEPAGE= http://search.cpan.org/~audreyt/YAML-Syck/ COMMENT= Fast, lightweight YAML loader and dumper USE_LANGUAGES= c @@ -16,5 +16,7 @@ PERL5_PACKLIST= auto/YAML/Syck/.packlist BUILD_DEPENDS+= p5-Module-Install-[0-9]*:../../devel/p5-Module-Install +PKG_DESTDIR_SUPPORT= user-destdir + .include "../../lang/perl5/module.mk" .include "../../mk/bsd.pkg.mk" diff --git a/textproc/p5-YAML-Syck/distinfo b/textproc/p5-YAML-Syck/distinfo index 773837ceecf..34af95cc8a0 100644 --- a/textproc/p5-YAML-Syck/distinfo +++ b/textproc/p5-YAML-Syck/distinfo @@ -1,5 +1,5 @@ -$NetBSD: distinfo,v 1.2 2007/04/25 09:39:27 hiramatsu Exp $ +$NetBSD: distinfo,v 1.3 2008/05/28 20:57:15 abs Exp $ -SHA1 (YAML-Syck-0.85.tar.gz) = 22136cdd46579cd22649ca3bda069eb3e5cc3f1b -RMD160 (YAML-Syck-0.85.tar.gz) = a20550acfd674c8be8f1f97832f2803a38474f9a -Size (YAML-Syck-0.85.tar.gz) = 133230 bytes +SHA1 (YAML-Syck-1.04.tar.gz) = 8e62acf801e029222c671e474a1f55f13ec71152 +RMD160 (YAML-Syck-1.04.tar.gz) = ff01088267c182238b07b935ca88f5f49b4e176a +Size (YAML-Syck-1.04.tar.gz) = 144581 bytes |