# HG changeset patch # User Hans-G?nter Theisgen # Date 1640964871 -3600 # Node ID 78c6039421c07006b7c63c2332ee7e8a698329a1 # Parent bf59fe730c7815f978a6a17c0e653869a893aba9 updated perl-html-parser (3.72 -> 3.76) diff -r bf59fe730c78 -r 78c6039421c0 perl-html-parser/description.txt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/perl-html-parser/description.txt Fri Dec 31 16:34:31 2021 +0100 @@ -0,0 +1,22 @@ +Objects of the HTML::Parser class will recognize markup and +separate it from plain text (alias data content) in HTML +documents. +As different kinds of markup and text are recognized, the +corresponding event handlers are invoked. + +HTML::Parser is not a generic SGML parser. We have tried to +make it able to deal with the HTML that is actually "out there", +and it normally parses as closely as possible to the way the +popular web browsers do it instead of strictly following one +of the many HTML specifications from W3C. +Where there is disagreement, there is often an option that +you can enable to get the official behaviour. + +The document to be parsed may be supplied in arbitrary chunks. +This makes on-the-fly parsing as documents are received from +the network possible. + +If event driven parsing does not feel right for your application, +you might want to use HTML::PullParser. +This is an HTML::Parser subclass that allows a more conventional +program structure. diff -r bf59fe730c78 -r 78c6039421c0 perl-html-parser/receipt --- a/perl-html-parser/receipt Fri Dec 31 16:29:31 2021 +0100 +++ b/perl-html-parser/receipt Fri Dec 31 16:34:31 2021 +0100 @@ -1,17 +1,19 @@ # SliTaz package receipt. PACKAGE="perl-html-parser" -VERSION="3.72" +VERSION="3.76" CATEGORY="development" SHORT_DESC="HTML::Parser module is a Perl extension." MAINTAINER="pascal.bellard@slitaz.org" LICENSE="GPL" +WEB_SITE="https://metacpan.org/pod/HTML::Parser" +REPOLOGY="perl:html-parser" +SOURCE="HTML-Parser" +TARBALL="$SOURCE-$VERSION.tar.gz" +WGET_URL="https://www.cpan.org/modules/by-module/HTML/$TARBALL" + DEPENDS="perl perl-html-tagset" BUILD_DEPENDS="perl perl-html-tagset" -SOURCE="HTML-Parser" -TARBALL="$SOURCE-$VERSION.tar.gz" -WEB_SITE="https://metacpan.org/release/HTML-Parser" -WGET_URL="https://cpan.metacpan.org/CPAN/authors/id/G/GA/GAAS/$TARBALL" current_version() { @@ -24,12 +26,11 @@ { perl Makefile.PL && make && - make DESTDIR=$DESTDIR install + make install DESTDIR=$DESTDIR } # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { - mkdir -p $fs/usr - cp -a $install/usr/lib $fs/usr + cook_copy_folders lib }