Upstream changes:
version 1.18; 2013-09-21
* bugfix: store peep chain link reliably under threads
* update tests for Perl 5.19.4's removal of the special treatment of
aliased undef in arrays
* in doc, switch to consistent use of British English spellings
* doc typo fix
version 1.17; 2013-08-04
* bugfix: correct the dtrace-related macro squashing for Perls prior
to 5.13.8, where the macros had the wrong number of parameters and
prevented compilation
* bugfix: use core's PL_no_localize_ref string constant as data string
rather than format string
* update to handle the new padrange op type in Perl 5.17.6
* update to handle the new op allocation mechanism in Perl 5.17.2
* clarify and expand documentation around list-like assignments
* clarify documentation of deref() regarding lvalueness
* remove the bulk of the documentation from the README file
a) refer 'perl' in their Makefile, or
b) have a directory name of p5-*, or
c) have any dependency on any p5-* package
Like last time, where this caused no complaints.
AutoDia is an open-source, auto-documentation and auto-diagramming
system allowing you to automatically generate Images, XML, HTML or Dia files.
It has been written to make GNOME Dia and any Diagram Application that
can use similar XML more powerful. I hope to make Dia more popular than
the commercial equivilents because of the ability to vastly extend it in
this way.
AutoDia's design goals have been good Object Orientation such as
plenty of abstraction, use of inheritance, extensability, robustness
and elegance. Speed and security are not concerns as this application is
designed to generate xml for documents in a batch processing manner, not
an interactive manner, and is a single user application for use from the
console.
AutoDia has been previously known as autodial. The output file is still
called autodia.out.dia by default. The executable files are now called
autodia.pl and autodia_java.pl, the only difference being an additional
section near the start of the latter to enable INLINE::Java.
1.15 to 1.16.
pkgsrc changes:
- Add USE_LANGUAGES=c to remark it's an XS module requiring a C compiler
Upstream changes:
version 1.16; 2011-11-17
* bugfix: use supported API to put destructor calls on the save stack
(the unsupported way used before was wrong for 64-bit systems on
perl 5.13.1 and later)
* document the behaviour of "alias return" in more detail
* convert .cvsignore to .gitignore
* port to Perl 5.15.0, where the op type aelemfast has been split into
aelemfast and aelemfast_lex
* test compatibility with Devel::CallParser
Changes 1.14:
* bugfix: never unhook peephole optimiser, because unhooking is liable
to fail if anything else hooked it
* bugfix: revise check for dorassign opcode to cope with FreeBSD's
mutant Perl 5.8 that has it
* test POD syntax and coverage
1.08 Fri Oct 22 09:39 BST 2010
- Updated to work with Perl versions 5.11.0 up to 5.13.0,
including particularly the major change in when rv2cv ops get
built in 5.11.2
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!
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=...").
Data::Alias provides a comprehensive set of aliasing operations.
Data::Alias is a module that allows you to apply "aliasing semantics"
to a section of code, causing aliases to be made whereever Perl
would normally make copies instead. You can use this to improve
efficiency and readability, when compared to using references.