2014-05-30 01:38:20 by Thomas Klausner | Files touched by this commit (3049) |
Log message:
Bump for perl-5.20.0.
Do it for all packages that
* mention perl, or
* have a directory name starting with p5-*, or
* depend on a package starting with p5-
like last time, for 5.18, where this didn't lead to complaints.
Let me know if you have any this time.
|
2013-05-31 14:42:58 by Thomas Klausner | Files touched by this commit (2880) |
Log message:
Bump all packages for perl-5.18, that
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.
|
2012-10-28 07:31:10 by Aleksej Saushev | Files touched by this commit (600) |
Log message:
Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days.
|
2012-10-22 01:13:03 by Thomas Klausner | Files touched by this commit (2) |
Log message:
Update to 5.03:
5.03 2012-09-22
Release by Christopher J. Madsen
[THINGS THAT MAY BREAK YOUR CODE OR TESTS]
* as_HTML no longer indents <textarea> (Tomohiro Hosaka) (RT #70385)
[FIXES]
* as_trimmed_text did not accept '0' for extra_chars
[DOCUMENTATION]
* Explain that as_text never adds whitespace (RT #66498)
* Explain what extra_chars can contain for as_trimmed_text.
|
2012-10-03 23:59:10 by Thomas Klausner | Files touched by this commit (2798) |
Log message:
Bump all packages that use perl, or depend on a p5-* package, or
are called p5-*.
I hope that's all of them.
|
2012-07-25 09:25:14 by Matthias Scheler | Files touched by this commit (1) |
Log message:
Fix incorrect package directory in dependency line.
|
2012-07-24 10:38:54 by Jens Rehsack | Files touched by this commit (2) |
Log message:
Updating package for Perl 5 distribution of HTML::Tree from CPAN in
www/p5-HTML-Tree from 4.2 to 5.02.
pkgsrc changes:
- adjust dependencies
- adjust Perl 5 build type
upstream changes:
5.02 2012-06-27
Release by Christopher J. Madsen
[TESTS]
* Do not attempt to check result of $! in construct_tree.t
(The fix in 5.01 was not successful.)
5.01 2012-06-20
Release by Christopher J. Madsen
[TESTS]
* Force C locale in construct_tree.t (in non-English locales,
$! will produce messages in a different language) (RT #77823)
* Add test for preserving whitespace while parsing.
5.00 2012-06-12
Release by Christopher J. Madsen
There are only some minor documentation changes since 4.903.
This is a summary of the most significant changes since 4.2.
[THINGS THAT MAY BREAK YOUR CODE OR TESTS]
* Use weak references to avoid memory leaks
See "Weak References" in HTML::Element for details.
* new_from_file now dies if the file cannot be opened. $! records
the specific problem. (Previously, you got a tree with a few
implicit elements.)
* Some methods normally returning a scalar could return the empty
list in certain circumstances. This has been corrected. The
affected methods are: address, deobjectify_text, detach, is_inside,
& pindex.
* deprecate the Version sub/method. Use the VERSION method instead.
[ENHANCEMENTS]
* add new_from_url (Using LWP) (David Pottage) (RT #68097)
[DOCUMENTATION]
* Explain that parse_file (and new_from_file) opens files in binary mode
BUT THIS IS PLANNED TO CHANGE.
4.903 2012-06-08
Trial Release by Christopher J. Madsen
[DOCUMENTATION]
* Explain that parse_file (and new_from_file) opens files in binary mode
BUT THIS IS PLANNED TO CHANGE.
[TESTS]
* test error handling for new_from_file & new_from_url
* remove use_ok from most tests
(if the module won't load, the tests can't pass anyway)
4.902 2012-06-06
Trial Release by Christopher J. Madsen
[THINGS THAT MAY BREAK YOUR CODE OR TESTS]
* new_from_url now dies if the request fails or the response is not HTML
4.901 2012-06-06
Trial Release by Christopher J. Madsen
[THINGS THAT MAY BREAK YOUR CODE OR TESTS]
* new_from_file now dies if the file cannot be opened. $! records
the specific problem. (Previously, you got a tree with a few
implicit elements.)
* Some methods normally returning a scalar could return the empty
list in certain circumstances. This has been corrected. The
affected methods are: address, deobjectify_text, detach, is_inside,
& pindex.
[FIXES]
* new_from_url did not call eof after parsing
[DOCUMENTATION]
* Improve SEE ALSO for HTML::TreeBuilder
* General documentation cleanup
4.900 2012-06-01
Trial Release by Christopher J. Madsen
[THINGS THAT MAY BREAK YOUR CODE OR TESTS]
* Use weak references to avoid memory leaks
See "Weak References" in HTML::Element for details.
* deprecate the Version sub/method. Use the VERSION method instead.
[ENHANCEMENTS]
* add new_from_url (Using LWP) (David Pottage) (RT #68097)
|
2011-08-07 10:47:37 by Matthias Scheler | Files touched by this commit (2) |
Log message:
Update "p5-HTML-Tree" package to version 4.2. Changes since version 4.1:
- [FIXES]
- Tied all $VERSION to HTML::Element to ensure latest package is used
for all modules. RT #66110
- Moved perlcritic tests to xt/author
- [DOCUMENTATION]
- Added text and link to "Perl and LWP" book.
- Fix Authors is all PM files.
|
2010-12-02 13:30:30 by Thomas Klausner | Files touched by this commit (2) |
Log message:
Update to 4.1:
4.1 Mon Oct 25 2010
[FIXES]
* '/' is a valid attribute (pull from tokuhirom) (RT #61809)
* Change check fo subclasses in as_HTML. (RT #61673)
* Fix ProhibitThreeArgumentOpen being triggered. (RT #61857)
|
2010-09-21 23:19:25 by Jens Rehsack | Files touched by this commit (2) |
Log message:
Updating www/p5-HTML-Tree from 3.23nb2 to 4.0
pkgsrc changes:
- adjust dependencies
- adding license definition
Upstream changes:
4.0 Mon Sep 20 2010
[THINGS THAT MAY BREAK YOUR CODE OR TESTS]
* Changes to entity encoding from ord values to XML entities may break
tests expecting � style encoding.
* Attribute names are now validated in as_XML and invalid names will
cause an error.
[FIXES]
* Optionally empty tags with content now have close tag. (RT #49932 #41806)
* Added attribute name validation. (RT #23439)
* Added span to @TAGS in AsSubs. (RT #55848)
* Changed tag encoding to human readable form, e.g. >, and stopped
re-encoding encoded tags (RT #55835)
* Added no_expand_entities option to disable entity decoding when
parsing source. (RT #24947)
* Fix replace_with not setting parent for an array of content.
(RT #28204 #45495)
* Removed newline being appended to as_HTML output. (RT #41739)
* Fix invalid parent for subsclasses. (RT #36247)
* Fixed #! line in tests (RT #41945)
* Switched to Module::Build
* Fixed Perl::Critic errors
* Added lots of use strict and use warnings
* Fix PERL_UNICODE breaking tests. (RT #28404)
* Add check for class type to traverse. (RT #35948)
* Move attribute name validation to as_XML. (RT #60619)
* Fix critic test exploding if Test::Perl::Critic isn't installed.
* Fix annoying message about x.yy_z not being numeric in t/building.t
* Added extra_chars options to as_trimmed_text (RT #26436)
* Added catch for broken table tags (RT #59980)
* Replace parentheses for constants. (RT #58880)
* Removed build deps Devel::Cover, Test::Pod::Coverage, Test::Perl::Critic.
(RT #58878)
* Added create_makefile_pl => 'traditional' to Build.PL (RT #58878)
[ENHANCEMENTS]
* (Ricardo Signes RT #26282) The secret hack to allow elements to be created
from classes other than HTML::Element has been cleaned up and documented
for the benefit of TreeBuilder subclasses.
q.v., HTML::TreeBuilder->element_class
* Added HTML::Element::encoded_content to control encoding of entities on
output.
[TESTS]
* Added test for optionally empty tags, like A.
* Added test for invalid attribute name.
* Added more tests for entity parsing.
* Add parent test from Christopher J. Madsen. (RT #28204)
* Add subclass test. (RT #36247)
[DOCUMENTATION]
* Docs spelling patch from Ansgar Burchardt <ansgar@43-1.org> (RT #55836)
* Added definition of white space to as_trimmed_text. (RT #26436)
|