Commit graph

23 commits

Author SHA1 Message Date
sno
769ccc89f9 Updating textproc/p5-YAML from 0.71nb1 to 0.72
Upstream changes:
version: 0.72
date:    Wed Sep 1 11:54:00 AEST 2010
changes:
- Upgrade to Module::Install 1.00
- Upgraded author tests via new ADAMK release automation
- Normalise Ingy's name to ASCII in Makefile.PL so that we don't have
  Unicode in our own META.yml
2010-09-01 20:30:33 +00:00
seb
c3f1e700ad Bump the PKGREVISION for all packages which depend directly on perl,
to trigger/signal a rebuild for the transition 5.10.1 -> 5.12.1.

The list of packages is computed by finding all packages which end
up having either of PERL5_USE_PACKLIST, BUILDLINK_API_DEPENDS.perl,
or PERL5_PACKLIST defined in their make setup (tested via
"make show-vars VARNAMES=..."), minus the packages updated after
the perl package update.

sno@ was right after all, obache@ kindly asked and he@ led the
way. Thanks!
2010-08-21 16:32:42 +00:00
seb
e3ffc94acd Update p5-YAML from version 0.71 to version 0.71nb1.
Pkgsrc changes:
Set PERL5_MODULE_TYPE to Module::Install::Bundled so a circular
dependency on involving devel/p5-Module-Build, textproc/p5-YAML and
devel/p5-Module-Install is avoided.
2010-01-17 13:47:34 +00:00
sno
9d2d41e72b Updating textproc/p5-YAML from 0.70 to 0.71
pkgsrc changes:
  - Adding module type

Upstream changes:
version: 0.71
date:    Sun Jan 3 12:25:00 AEST 2010
changes:
- Set file encoding to UTF-8 in LoadFile/DumpFile (RT#25434) by Olivier Mengue
- We shouldn't have to care about 5.8.0. Since it's causing CPAN Testers
  failures, bump the minimum Perl to 5.8.1
2010-01-17 00:14:11 +00:00
sno
53d83ad51d Updating package textproc/p5-YAML from 0.68 to 0.70
pkgsrc changes:
  - Adding license (perl license)

Upstream changes:
version: 0.70
date:    Tue Aug 11 02:52:10 AEST 2009
changes:
- Updated Module::Install dependency to 0.91
- Bumping dependency to 5.8.0 but I think it's only in the test suite.
  However, I can't prove it. So if anyone wants 5.6 compatibility back
  you need to fix or rewrite the test suite.

version: 0.69_02
date:    Mon Aug 10 22:37:37 AEST 2009
changes:
- Developer $VERSION now has eval correction

version: 0.69_01
date:    Sun Jul  9 02:01:12 AEST 2009
changes:
- Added $VERSION to all modules
- Removed the use of use base
- Imported into the svn.ali.as repo
2009-08-18 16:24:16 +00:00
he
7061c777c2 Update from version 0.66nb1 to 0.68.
Pkgsrc changes:
 o Add dependency on p5-Filter for Filter::Util::Call

Upstream changes:

version: 0.68
date:    Thu Dec  4 01:00:44 PST 2008
changes:
- Used update Test::Base to ensure Filter::Util::Call

version: 0.67
date:    Mon Dec  1 02:34:21 PST 2008
changes:
- Add YAML::Any
- Move ysh to YAML::Shell
- Add doc section explaining YAML::Old
2008-12-12 21:05:25 +00:00
he
b021813da0 Bump the PKGREVISION for all packages which depend directly on perl,
to trigger/signal a rebuild for the transition 5.8.8 -> 5.10.0.

The list of packages is computed by finding all packages which end
up having either of PERL5_USE_PACKLIST, BUILDLINK_API_DEPENDS.perl,
or PERL5_PACKLIST defined in their make setup (tested via
"make show-vars VARNAMES=...").
2008-10-19 19:17:40 +00:00
heinz
7ee34ad120 The package supports installation to DESTDIR.
No compiler necessary.
2008-01-08 22:49:47 +00:00
wiz
c2b8dd2ba0 Update to 0.66:
version: 0.66
date:    Thu Sep 27 01:37:16 PDT 2007
changes:
- Blessed code refs with LoadCode=0 still get blessed. rafl++

---
version: 0.65
date:    Thu Jun 21 17:37:32 PDT 2007
changes:
- \z is really \0
- Speed up regexp loading. audreyt++

---
version: 0.64
date:    Thu Jun 21 14:31:20 PDT 2007
changes:
- Better support for loading regexps. audreyt++

---
version: 0.63
date:    Wed Jun 20 16:03:22 PDT 2007
changes:
- Don't emit nodes blessed into '' in the new tag scheme, and improve semantics
  of loading such nodes.
- New support for dumping/loading regexps.
2007-11-29 14:19:49 +00:00
jlam
56ba4d2690 Remove empty PLISTs from pkgsrc since revision 1.33 of plist/plist.mk
can handle packages having no PLIST files.
2007-10-25 16:54:26 +00:00
obache
97b060c8b4 Update p5-YAML to 0.62.
Based on patch provided by Martin Wilke via PR 34343
(avoiding interaction in configure stage).

*** WARNING ***

This release breaks compatibility with versions earlier than version 0.60 of
YAML::Syck and YAML.pm when serializing blessed references.

from COMPATIBILITY:
YAML.pm 0.60 breaks compatability with older version by changing the
tags that are output for serialized objects.

This was the old way:

    --- !perl/Foo::Bar {}
    --- !perl/@Baz []
    --- !perl/$Quux ""

New way:

    --- !!perl/hash:Foo::Bar {}
    --- !!perl/array:Baz []
    --- !!perl/scalar:Quux ""

* This change was made after discussions with the Python and Ruby
  implementors to standardize on this form.
* YAML::Syck was updated at the same time as YAML.pm so that they
  serialize objects the same way.
* YAML.pm roundtrips the new format and still parses the old (now
  deprecated) format.
* The best strategy is to update to the latest version.
* There are potential problems if you use YAML for RPC and the server
  and client versions don't match.

Changes:
---
version: 0.62
date:    Mon Jul  3 15:41:20 PDT 2006
changes:
- Patch from rgs for Catalyst users

---
version: 0.61
date:    Sun Jul  2 15:25:08 CDT 2006
changes:
- New CGI.pm made test fail.

---
version: 0.60
date:    Fri Jun 30 21:55:55 CDT 2006
changes:
- Changed object tag format in non backwards compatible way
- Removed support for folded scalar emission
- Added new tests
- Sync with YAML::Syck

---
version: 0.58
date:    Tue Feb 14 12:42:34 PST 2006
changes:
- Fixed bug reported by Slaven Rezic on 5.8.0
- Fixed a ysh bug reported on rt. 17589
2006-10-28 08:37:40 +00:00
jlam
9c8b5ede43 Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no
developer is officially maintaining the package.

The rationale for changing this from "tech-pkg" to "pkgsrc-users" is
that it implies that any user can try to maintain the package (by
submitting patches to the mailing list).  Since the folks most likely
to care about the package are the folks that want to use it or are
already using it, this would leverage the energy of users who aren't
developers.
2006-03-04 21:28:51 +00:00
abs
0064a8ff05 Update textproc/p5-YAML to 0.57 - needed for p5-Catalyst-5.63
Changes since 0.39:

version: 0.57
date:    Wed Feb  1 23:06:25 PST 2006
changes:
- Add obligatory '1;' to end of each module.

---
version: 0.56
date:    Mon Jan 30 10:26:33 PST 2006
change:
- Add Module::Install::TestBase support

---
version: 0.55
date:    Sun Jan 29 19:03:35 PST 2006
change:
- Load YAML::Node because Module::Build expects it to be loaded.
  We can undo this when Module::Build starts loading it for itself.

---
version: 0.54
date:    Sun Jan 29 17:28:46 PST 2006
change:
- Remove dependency on Class::Spiffy (and/or Spiffy).

---
version: 0.53
date:    Thu Jan 19 06:03:17 PST 2006
change:
- Depend on Class::Spiffy instead of Spiffy. No source filtering.

---
version: 0.52
date:    Wed Jan 18 14:25:24 PST 2006
change:
- Error in Spiffy-0.26 causing problems. Require 0.27

---
version: 0.51
date:    Sat Jan 14 17:09:09 GMT 2006
change:
- Tests pass on win32 and cygwin
- Don't gpg sign the distribution tarball

---
version: 0.50
date:    Sun Dec 25 11:09:18 PST 2005
changes:
- Major refactoring of YAML.pm
- Completely OO with same old functional UI
- Support the $YAML::Stringify option which most be on for objects to get
  stringified. Otherwise dump the object.
- Can dump overloaded objects now.
- Completely refactor test suite using Test::Base
- Create Test::YAML
- Make test framework compatible with YAML::Syck - Test-Base-0.45
- Reviewed all rt bugs. fixed many
- Reviewed all emailed bugs. Fixed many.
- Helped audrey complete YAML::Syck and worked on interoperability issues
- Test well known yaml docs like svk and META.yml
- Eliminate unsafe string evals
- Can use with autouse. Spiffy-0.25
- Support YAML::Marshall to help classes that want to do their own marshalling
- Make objects tags configurable
- -M option for ysh to test other implementations like YAML::Syck
2006-02-02 23:16:47 +00:00
wiz
679cc0f92e Update to 0.39:
version: 0.39
date:    Tue Apr 12 15:28:40 PDT 2005
changes:
- Need newer Test::More or tests hang.
2005-11-01 12:57:05 +00:00
jlam
7fbb8d9527 Bump the PKGREVISIONs of all (638) packages that hardcode the locations
of Perl files to deal with the perl-5.8.7 update that moved all
pkgsrc-installed Perl files into the "vendor" directories.
2005-08-06 06:19:03 +00:00
jlam
7a6521287b Turn PERL5_PACKLIST into a relative path instead of an absolute path.
These paths are now relative to PERL5_PACKLIST_DIR, which currently
defaults to ${PERL5_SITEARCH}.  There is no change to the binary
packages.
2005-07-13 18:01:18 +00:00
epg
17cf4bb5e2 Update to 0.38.
Upstream changes:

version: 0.38
date:    Thu Mar 31 01:43:21 PST 2005
changes:
- Deleted Spiffy -XXX artifact :(

---
version: 0.37
date:    Thu Mar 31 01:56:24 CST 2005
changes:
- All the edge cases with hash key dumping (commas, [], {}, etc)
  should now be covered
2005-05-09 22:40:27 +00:00
tv
f816d81489 Remove USE_BUILDLINK3 and NO_BUILDLINK; these are no longer used. 2005-04-11 21:44:48 +00:00
agc
c71cac836a Add RMD160 digests to the SHA1 ones. 2005-02-24 14:48:39 +00:00
wiz
8ee8fc56c8 Update to 0.36:
changes:
- Slight changes to the way things are dumped.
- Fixed bugs dumping "foo\nbar" for svk acceptance
2005-02-19 12:31:15 +00:00
grant
908e765695 since perl is now built with threads on most platforms, the perl archlib
module directory has changed (eg. "darwin-2level" vs.
"darwin-thread-multi-2level").

binary packages of perl modules need to be distinguishable between
being built against threaded perl and unthreaded perl, so bump the
PKGREVISION of all perl module packages and introduce
BUILDLINK_RECOMMENDED for perl as perl>=5.8.5nb5 so the correct
dependencies are registered and the binary packages are distinct.

addresses PR pkg/28619 from H. Todd Fujinaka.
2004-12-20 11:30:55 +00:00
minskim
fbb35cfde6 Bl3ify and enable pkgviews installation. 2004-04-22 06:04:17 +00:00
epg
f843636dfd import YAML-0.35
This is an implementation of YAML (YAML Ain't Markup Language,
http://www.yaml.org/) for Perl.
2003-12-03 15:56:20 +00:00