diff options
author | Tim Orling <timothy.t.orling@linux.intel.com> | 2019-06-27 21:52:24 -0700 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2019-07-10 09:24:32 -0700 |
commit | 8882acb41a49442da2de6d9eafdf976906173cf6 (patch) | |
tree | de5494c18cd5fa73bd0dc972a49b605221bd4721 | |
parent | 9add565ba4dfc8239ed72baf7662cad2c4b21a99 (diff) | |
download | meta-openembedded-8882acb41a49442da2de6d9eafdf976906173cf6.tar.gz |
libnet-ldap-perl: upgrade 0.65 -> 0.66; enable ptest
* Add runtime dependencies
* Add ptest dependencies
Upstream release notes:
0.66 -- Tue Apr 16 11:23:55 CEST 2019
Enhancements
* Entry.pm: accept more options in ldif()
* inc/: refresh install tools
* contrib/ldifsort: new option -h
* documentation extensions
* typo fixes
Bug Fixes
* contrib/schema2ad: fix syntax calculation
* Refresh.pm: fix get_ttl() method
* DSML: fix detection of auxiliary object classes
Signed-off-by: Tim Orling <timothy.t.orling@linux.intel.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
-rw-r--r-- | meta-perl/recipes-perl/libnet/libnet-ldap-perl_0.66.bb (renamed from meta-perl/recipes-perl/libnet/libnet-ldap-perl_0.65.bb) | 26 |
1 files changed, 21 insertions, 5 deletions
diff --git a/meta-perl/recipes-perl/libnet/libnet-ldap-perl_0.65.bb b/meta-perl/recipes-perl/libnet/libnet-ldap-perl_0.66.bb index f2b1f1634..26c7c389d 100644 --- a/meta-perl/recipes-perl/libnet/libnet-ldap-perl_0.65.bb +++ b/meta-perl/recipes-perl/libnet/libnet-ldap-perl_0.66.bb | |||
@@ -9,21 +9,37 @@ SECTION = "libs" | |||
9 | LICENSE = "Artistic-1.0|GPLv1+" | 9 | LICENSE = "Artistic-1.0|GPLv1+" |
10 | LIC_FILES_CHKSUM = "file://README;beginline=3;endline=5;md5=4d6588c2fa0d38ae162f6314d201d89e" | 10 | LIC_FILES_CHKSUM = "file://README;beginline=3;endline=5;md5=4d6588c2fa0d38ae162f6314d201d89e" |
11 | 11 | ||
12 | SRC_URI = "http://search.cpan.org/CPAN/authors/id/M/MA/MARSCHAP/perl-ldap-${PV}.tar.gz" | 12 | SRC_URI = "${CPAN_MIRROR}/authors/id/M/MA/MARSCHAP/perl-ldap-${PV}.tar.gz" |
13 | 13 | ||
14 | SRC_URI[md5sum] = "d057c8db76913d95c0e460c7bdd98b27" | 14 | SRC_URI[md5sum] = "c4c1ae9299cd488e75c1b82904458bef" |
15 | SRC_URI[sha256sum] = "5f57dd261dc16ebf942a272ddafe69526598df71151a51916edc37a4f2f23834" | 15 | SRC_URI[sha256sum] = "09263ce6166e80c98d689d41d09995b813389fd069b784601f6dc57f8e2b4102" |
16 | 16 | ||
17 | S = "${WORKDIR}/perl-ldap-${PV}" | 17 | S = "${WORKDIR}/perl-ldap-${PV}" |
18 | 18 | ||
19 | inherit cpan | 19 | inherit cpan ptest-perl |
20 | 20 | ||
21 | do_configure_prepend() { | 21 | do_configure_prepend() { |
22 | perl -pi -e 's/auto_install_now.*//g' Makefile.PL | 22 | perl -pi -e 's/auto_install_now.*//g' Makefile.PL |
23 | } | 23 | } |
24 | 24 | ||
25 | RDEPENDS_${PN} = "perl \ | 25 | do_install_ptest() { |
26 | cp -r ${B}/data ${D}${PTEST_PATH} | ||
27 | chown -R root:root ${D}${PTEST_PATH} | ||
28 | } | ||
29 | |||
30 | RDEPENDS_${PN} += " \ | ||
26 | libconvert-asn1-perl \ | 31 | libconvert-asn1-perl \ |
27 | libio-socket-ssl-perl \ | 32 | libio-socket-ssl-perl \ |
28 | libauthen-sasl-perl \ | 33 | libauthen-sasl-perl \ |
34 | perl-module-integer \ | ||
29 | " | 35 | " |
36 | |||
37 | RDEPENDS_${PN}-ptest += " \ | ||
38 | libxml-sax-base-perl \ | ||
39 | libxml-sax-writer-perl \ | ||
40 | perl-module-file-compare \ | ||
41 | perl-module-perlio \ | ||
42 | perl-module-test-more \ | ||
43 | " | ||
44 | |||
45 | BBCLASSEXTEND = "native" | ||