diff options
author | Jason Schonberg <schonm@gmail.com> | 2025-09-18 15:00:53 -0400 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2025-09-19 12:22:00 -0700 |
commit | f7244cbb0f183ee29ff050527ebf95e606f5f8fd (patch) | |
tree | b684742bb4ba772f5ab24cd2145e1e48d4f4377f /meta-perl/recipes-perl/libhtml/libhtml-tree-perl_5.04.bb | |
parent | f200e9c401288c315c7c039a66ec9f2054d31396 (diff) | |
download | meta-openembedded-f7244cbb0f183ee29ff050527ebf95e606f5f8fd.tar.gz |
libhtml-tree-perl: upgrade 5.03 -> 5.04
License-Update: Still distributed under the same terms as Perl itself.
refresh patch.
5.04 2017--04-17
Release by Jeff Fearn
[FIXES]
* Remove Distzilla to fix RT #120521 #89820
* Add POD to htmltree RT #116367
* Speed up is_inside method RT #113415
- From Todd Rinaldo https://github.com/madsen/HTML-Tree/pull/5
* Fix extra spaces being added to comments RT #94311
- From Tomaz Solc
* Don't needlessly escape characters in element content RT #93431
- From Tomaz Solc
Signed-off-by: Jason Schonberg <schonm@gmail.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-perl/recipes-perl/libhtml/libhtml-tree-perl_5.04.bb')
-rw-r--r-- | meta-perl/recipes-perl/libhtml/libhtml-tree-perl_5.04.bb | 50 |
1 files changed, 50 insertions, 0 deletions
diff --git a/meta-perl/recipes-perl/libhtml/libhtml-tree-perl_5.04.bb b/meta-perl/recipes-perl/libhtml/libhtml-tree-perl_5.04.bb new file mode 100644 index 0000000000..59bab0c748 --- /dev/null +++ b/meta-perl/recipes-perl/libhtml/libhtml-tree-perl_5.04.bb | |||
@@ -0,0 +1,50 @@ | |||
1 | SUMMARY = "HTML::TreeBuilder - Parser that builds a HTML syntax tree" | ||
2 | DESCRIPTION = "This distribution contains a suite of modules for representing, \ | ||
3 | creating, and extracting information from HTML syntax trees; there is \ | ||
4 | also relevent documentation. These modules used to be part of the \ | ||
5 | libwww-perl distribution, but are now unbundled in order to facilitate \ | ||
6 | a separate development track." | ||
7 | SECTION = "libs" | ||
8 | |||
9 | HOMEPAGE = "https://metacpan.org/release/JFEARN/HTML-Tree-5.04/source/README" | ||
10 | |||
11 | LICENSE = "Artistic-1.0 | GPL-1.0-or-later" | ||
12 | LIC_FILES_CHKSUM = "file://README;beginline=74;endline=91;md5=260d31d31370658947ae050eef27aca9" | ||
13 | |||
14 | SRC_URI = "${CPAN_MIRROR}/authors/id/J/JF/JFEARN/HTML-Tree-${PV}.tar.gz \ | ||
15 | file://bin-htmltree-fix-shebang.patch \ | ||
16 | " | ||
17 | SRC_URI[sha256sum] = "1959ea2f7a9f1491903238d3a2cbef3a8e9aaaa75963f7114dbf54dca791b7be" | ||
18 | |||
19 | S = "${UNPACKDIR}/HTML-Tree-${PV}" | ||
20 | |||
21 | inherit cpan_build | ||
22 | |||
23 | export PERL_USE_UNSAFE_INC = "1" | ||
24 | |||
25 | DEPENDS += "libmodule-build-perl-native \ | ||
26 | " | ||
27 | |||
28 | do_install:append() { | ||
29 | sed -i \ | ||
30 | -e 's|${TMPDIR}||g' \ | ||
31 | `find ${D}/usr/share/doc/perl/html/site/lib/HTML/ -type f` \ | ||
32 | `find ${D}/usr/lib/perl5 -type f -name .packlist` | ||
33 | } | ||
34 | |||
35 | RPROVIDES:${PN} = " libhtml-element-perl \ | ||
36 | libhtml-tree-assubs-perl \ | ||
37 | libhtml-tree-perl \ | ||
38 | libhtml-treebuilder-perl \ | ||
39 | " | ||
40 | |||
41 | RDEPENDS:${PN} = " perl-module-b \ | ||
42 | perl-module-base \ | ||
43 | perl-module-strict \ | ||
44 | perl-module-warnings \ | ||
45 | perl-module-exporter \ | ||
46 | perl-module-carp \ | ||
47 | " | ||
48 | |||
49 | BBCLASSEXTEND = "native" | ||
50 | |||