summaryrefslogtreecommitdiffstats
path: root/meta-perl/recipes-perl/libhtml/libhtml-parser-perl_3.73.bb
diff options
context:
space:
mode:
authorJason Schonberg <schonm@gmail.com>2025-07-11 15:45:17 -0400
committerKhem Raj <raj.khem@gmail.com>2025-07-12 13:50:00 -0700
commit55dac2d04dc1cbbb70ede944987edefbbd05c84c (patch)
tree7a434edb3e55e67d5852242be54901a03bc32484 /meta-perl/recipes-perl/libhtml/libhtml-parser-perl_3.73.bb
parent16c482f5e6d0e2a9b4ad9f72987501c3f61d8c83 (diff)
downloadmeta-openembedded-55dac2d04dc1cbbb70ede944987edefbbd05c84c.tar.gz
libhtml-parser-perl: upgrade 3.72 -> 3.73
Change history for HTML-Parser 2020-08-24 3.73 * Added a .mailmap file to organize contributions accurately. * Ensure all versions are equal and on the current version * Add the .mailmap to the MANIFEST * Change the META information to point to the new GH repository * Add a .perltidyrc to use going forward * Add hctype.h and pfunc.h to the dist as static files and stop asking for them to be built on the user's end. * Remove t/pod.t from userland testing * Remove t/pod-coverage.t from userland testing * Clean up the MANIFEST * Start testing via GitHub Actions/Workflows * Protect active parser from being freed (PR 13, RT #115034) 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-parser-perl_3.73.bb')
-rw-r--r--meta-perl/recipes-perl/libhtml/libhtml-parser-perl_3.73.bb44
1 files changed, 44 insertions, 0 deletions
diff --git a/meta-perl/recipes-perl/libhtml/libhtml-parser-perl_3.73.bb b/meta-perl/recipes-perl/libhtml/libhtml-parser-perl_3.73.bb
new file mode 100644
index 0000000000..a03ec31e29
--- /dev/null
+++ b/meta-perl/recipes-perl/libhtml/libhtml-parser-perl_3.73.bb
@@ -0,0 +1,44 @@
1DESCRIPTION = "This package contains the Parser.pm module with friends."
2HOMEPAGE = "https://metacpan.org/release/CAPOEIRAB/HTML-Parser-3.73"
3SECTION = "libs"
4LICENSE = "Artistic-1.0 | GPL-1.0-or-later"
5
6LIC_FILES_CHKSUM = "file://README;md5=b0459e4426b94753b9a9b8a15f1223b8"
7
8DEPENDS += "perl"
9
10SRC_URI = "${CPAN_MIRROR}/authors/id/C/CA/CAPOEIRAB/HTML-Parser-${PV}.tar.gz"
11
12SRC_URI[sha256sum] = "85f05d944e166b8c5913db54779802eb38f4bbefb89a1730401ef06eb9ad8e69"
13
14S = "${UNPACKDIR}/HTML-Parser-${PV}"
15
16EXTRA_CPANFLAGS = "EXPATLIBPATH=${STAGING_LIBDIR} EXPATINCPATH=${STAGING_INCDIR}"
17
18inherit cpan ptest-perl
19
20do_compile() {
21 export LIBC="$(find ${STAGING_DIR_TARGET}/${base_libdir}/ -name 'libc-*.so')"
22 cpan_do_compile
23}
24
25RDEPENDS:${PN} += "\
26 perl-module-exporter \
27 perl-module-strict \
28 perl-module-vars \
29 perl-module-xsloader \
30 libhtml-tagset-perl \
31"
32
33RDEPENDS:${PN}-ptest += "\
34 liburi-perl \
35 perl-module-config \
36 perl-module-file-spec \
37 perl-module-filehandle \
38 perl-module-io-file \
39 perl-module-selectsaver \
40 perl-module-test \
41 perl-module-test-more \
42"
43
44BBCLASSEXTEND = "native"