While here, set LICENSE same as perl5.
What's new in version 0.98:
- No changes. Production release after CPAN testers cleared.
What's new in version 0.97_01:
All changes in this release are from perl 5 porters:
- Update address for FSF in POD
- z/OS: CPAN-ized ext/ and lib/
- Missing ; in Tie::File
- Typos in comments
- BeOS specific Updates
- turn the alarm off in the tests (was Re: maint @ 20617 (on VMS))
- fix for VMS - last if $last_read_was_short
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=...").
Packaged by Jens Rehsack and provided via PR 39221.
Tie::File represents a regular text file as a Perl array. Each element in the
array corresponds to a record in the file. The first line of the file is
element 0 of the array; the second line is element 1, and so on.
The file is not loaded into memory, so this will work even for gigantic files.
Changes to the array are reflected in the file immediately.