Commit graph

24 commits

Author SHA1 Message Date
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
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
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
wiz
f7f306028b Update to 2.18:
2.18  Aug 15 2007
      - Non-unique key attribute values now trigger a warning (or a fatal
        error in strict mode) rather than silently discarding data (patch
        from Daniel Baysinger)

2.17  Aug 02 2007
      - Added parse_string(), parse_file() and parse_fh() methods
      - Added default_config_file(), and build_simple_tree() hook methods
      - Tweak to implementation of exporting (patch from Stuart Moore)
      - Documented hook methods
      - Fixed test suite race condition (RT#28603 from Andreas J. König)
2007-09-18 21:18:10 +00:00
wiz
601583c320 Whitespace cleanup, courtesy of pkglint.
Patch provided by Sergey Svishchev in private mail.
2007-02-22 19:26:05 +00:00
joerg
5dfaaf310b DESTDIR support. 2006-11-05 17:06:43 +00:00
seb
bf86f92de0 Update to version 2.16.
Changes since last packaged version (2.14):

2.16  Oct 30 2006
      - Added test/fix for bad GroupTags option (report from Lee Goddard)
      - Added new_hashref() hook method
      - refactored cache save/restore methods for easier overriding

2.15  Oct 03 2006
      - Makefile.PL changes: reject known-bad PurePerl and RTF parser modules;
        default to XML::SAX::Expat if no parser installed
      - allow '.' characters in variable names (suggested by Cosimo Streppone)
      - fix output of undefs in arrayrefs with SuppressEmpty (reported by
        かんな - Kanna)
      - tidy up code and docs around lexical filehandle passed to OutputFile
        (report from Helge Sauer)
      - reduce memory usage by passing XML strings by reference (patch from
        Dan Sully)
2006-11-03 22:27:34 +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
joerg
5911def816 Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
wiz
768c589c29 Bump BUILDLINK_RECOMMENDED of textproc/expat to 2.0.0 because
of the shlib major bump.
PKGREVISION++ for the dependencies.
2006-01-24 07:31:52 +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
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
4ee23145cd Update to 2.14:
2.14  Jan 29 2005
      - unlink and lock fixes for VMS (patch from Peter (Stig) Edwards)

2.13  Nov 17 2004
      - Fixed bug where NoIndent broke KeyAttr (reported by David Haas)
      - Added copy_hash helper method which may be overridden to avoid
        tied hashes becoming untied during XMLout (patch from Jan Sundberg)
      - Fixed bug where GroupTags corrupted source hashref in XMLout
        (reported by Bram)
      - Tweaks to SuppressEmpty for undef with XMLout (report from jamesb),
        behaviour now matches docs and additional behaviour of setting
        option to 1 will skip undefined values altogether
2005-02-19 18:46:39 +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
bad
48ee82be71 Update p5-XML-Simple to 2.12. Distfile for 2.07 has vanished from the mirrors.
Relevant changes since 2.07:
      - added NumericEscape option
      - added ValueAttr option (patch from Anton Berezin)
      - suppress 'wide character in print' warning (reported by Dawei Lin)
      - Added AttrIndent option (patch from Volker Moell)
      - Hash keys are now sorted alphabetically by default; enable the
        new NoSort option if you don't want this (patch from Volker Moell)
      - Fixed bug where disabling array folding broke anonymous array handling
      - Fixed bug when unfolding a tied hash
      - SuppressEmpty patch from Douglas Wilson
      - POD update re XMLin(XMLout($data)) caveats (bug report from Slaven
        Rezic)
      - fixed hash ordering assumption in test script (reported by Michel
        Rodriguez)
      - fixed variable expansion not happening in attributes (patch from Paul
        Bussé)
2004-07-19 10:43:01 +00:00
jlam
848d6eb2a3 bl3ify 2004-01-05 22:16:24 +00:00
grant
ca3be631f2 s/netbsd.org/NetBSD.org/ 2003-07-17 22:50:55 +00:00
jschauma
e366d0c694 Use tech-pkg@ in favor of packages@ as MAINTAINER for orphaned packages.
Should anybody feel like they could be the maintainer for any of thewe packages,
please adjust.
2003-06-02 01:15:31 +00:00
mjl
13af48bfee Update p5-XML-Simple to 2.07
- added test to catch old versions of Storable which lack locking support
  - removed new-style loop which broke on 5.005_03
  - suppress more uninitialised variable warnings
  - fixed strict mode requiring ForceArray on output
  - fixed warnings about uninitialised values
  - fixed warnings when NormaliseSpace undefined
  - added support for specifying ForceArray using regular expressions
  - added check to escape_value to guard against undefined argument
  - added NoIndent option
  - integrated a patch
    + new facility for removing extra levels of indirection (using
      the new 'GroupTags' option)
    + new facility for rolling the dreaded 'content' hash up into a
      scalar if there are no keys left after array folding (using the
      '-' prefix mode on the ContentKey option)
    + new facility for doing variable substitution in the XML; variables
      can be defined in Perl (using the new 'Variables' option) or in
      the XML document (using the new 'VarAttr' option)
  - added 'NormaliseSpace' option for tidying up hash keys and other
    text content if required
  - option names are now case-insensitive and can include underscores
  - XMLin() and XMLout() are now aliased to xml_in() and xml_out() when
    called as methods or imported explicitly
  - option names passed to XML::Simple->new() are now validated
2003-05-24 09:26:56 +00:00
shell
209bb3036c Updated to p5-XML-Simple-2.03
Changes :
- fixed circular reference check which was incorrectly catching
  'parallel' references (patch from Theo Lengyel)
- changed Storable calls to use locking (reported by Randal
  Schwarz)
- fixed bug whereby :strict mode required forcearray on
  XMLout() (reported by Ville Skytta)
- first production release with SAX support
- added support for 'strict mode' using :strict import tag
- removed locking code (as it was incompatible with iThreads)
- integrated patch for test failures from Sean Campbell
- fixed stringification of references during folding (reported
  by Trond Michelsen)
- fixed incompatability with Tie::IxHash (reported by
  Venkataramana Mokkapati)
- PODs updated

* for changes before v2.00, see ChangeLog
2003-01-31 11:07:05 +00:00
seb
0d75c1efb1 Use buildlink2. Use perl5/module.mk. 2002-10-20 17:45:59 +00:00
cjep
efd4ca4c9e Initial import of XML::Simple 1.08 into the NetBSD packages collection as
textproc/p5-XML-Simple.

This Perl module provides an easy API to read and write XML (especially
configuration files).
2002-08-22 06:34:58 +00:00