diff options
| author | Tim Orling <timothy.t.orling@linux.intel.com> | 2019-06-17 15:11:41 -0700 |
|---|---|---|
| committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2019-06-19 12:46:43 +0100 |
| commit | 4cab85009c3b82e2afbfc902ca084db79b231000 (patch) | |
| tree | a3a6fae2143a2625e3cc84fc9348148076337ae4 /meta/recipes-extended/perl/libxml-sax-perl_1.02.bb | |
| parent | 25230682d9a3e61b5fd84efbc9f502a63f32d3ac (diff) | |
| download | poky-4cab85009c3b82e2afbfc902ca084db79b231000.tar.gz | |
libxml-sax-perl: upgrade 1.00 -> 1.02
* Sort ptest dependencies alphabetically
Upstream release notes:
1.02 14 Jun 2019 Grant McLean
- Spelling fixes (patch from Ville Skyttä)
- Add repo location to metadata (patches from Ville Skyttä & Martin McGrath)
- Reorganise module files under lib/XML
- Regenerate MANIFEST using 'make manifest' to include missing test files
(From OE-Core rev: 2bd3e9b1aa7bf550564484df842a8a6f89b73497)
Signed-off-by: Tim Orling <timothy.t.orling@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-extended/perl/libxml-sax-perl_1.02.bb')
| -rw-r--r-- | meta/recipes-extended/perl/libxml-sax-perl_1.02.bb | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/meta/recipes-extended/perl/libxml-sax-perl_1.02.bb b/meta/recipes-extended/perl/libxml-sax-perl_1.02.bb new file mode 100644 index 0000000000..02ee34ee17 --- /dev/null +++ b/meta/recipes-extended/perl/libxml-sax-perl_1.02.bb | |||
| @@ -0,0 +1,42 @@ | |||
| 1 | SUMMARY = "Perl module for using and building Perl SAX2 XML processors" | ||
| 2 | HOMEPAGE = "http://search.cpan.org/dist/XML-SAX/" | ||
| 3 | DESCRIPTION = "XML::SAX consists of several framework classes for using and \ | ||
| 4 | building Perl SAX2 XML parsers, filters, and drivers. It is designed \ | ||
| 5 | around the need to be able to "plug in" different SAX parsers to an \ | ||
| 6 | application without requiring programmer intervention. Those of you \ | ||
| 7 | familiar with the DBI will be right at home. Some of the designs \ | ||
| 8 | come from the Java JAXP specification (SAX part), only without the \ | ||
| 9 | javaness." | ||
| 10 | |||
| 11 | SECTION = "libs" | ||
| 12 | LICENSE = "Artistic-1.0 | GPL-1.0+" | ||
| 13 | DEPENDS += "libxml-namespacesupport-perl-native" | ||
| 14 | RDEPENDS_${PN} += "libxml-namespacesupport-perl libxml-sax-base-perl perl-module-file-temp" | ||
| 15 | |||
| 16 | LIC_FILES_CHKSUM = "file://LICENSE;md5=65c4cd8f39c24c7135ed70dacbcb09e3" | ||
| 17 | |||
| 18 | SRC_URI = "http://search.cpan.org/CPAN/authors/id/G/GR/GRANTM/XML-SAX-${PV}.tar.gz" | ||
| 19 | |||
| 20 | SRC_URI[md5sum] = "b62e3754523695c7f5bbcafa3676a38d" | ||
| 21 | SRC_URI[sha256sum] = "4506c387043aa6a77b455f00f57409f3720aa7e553495ab2535263b4ed1ea12a" | ||
| 22 | |||
| 23 | S = "${WORKDIR}/XML-SAX-${PV}" | ||
| 24 | |||
| 25 | inherit cpan ptest-perl | ||
| 26 | |||
| 27 | do_install_ptest() { | ||
| 28 | cp -r ${B}/testfiles ${D}${PTEST_PATH} | ||
| 29 | chown -R root:root ${D}${PTEST_PATH}/testfiles | ||
| 30 | } | ||
| 31 | |||
| 32 | RDEPENDS_${PN} += "perl-module-encode perl-module-perlio" | ||
| 33 | |||
| 34 | RDEPENDS_${PN}-ptest += " \ | ||
| 35 | perl-module-base \ | ||
| 36 | perl-module-encode-byte \ | ||
| 37 | perl-module-encode-unicode \ | ||
| 38 | perl-module-fatal \ | ||
| 39 | perl-module-test \ | ||
| 40 | " | ||
| 41 | |||
| 42 | BBCLASSEXTEND = "native nativesdk" | ||
