diff options
author | Tim Orling <timothy.t.orling@linux.intel.com> | 2018-01-27 01:29:02 -0800 |
---|---|---|
committer | Armin Kuster <akuster808@gmail.com> | 2018-02-11 11:50:56 -0800 |
commit | 120ee26f51c7a26f1d90de5986733ceb29919ae1 (patch) | |
tree | a826199926b143ae08cc5a9326f7ab6bb9ce59bc /meta-perl/recipes-perl/libio/libio-socket-ssl-perl_2.054.bb | |
parent | 798995bc2d03a6c24bd8946df218bb0d4008651e (diff) | |
download | meta-openembedded-120ee26f51c7a26f1d90de5986733ceb29919ae1.tar.gz |
libio-socket-ssl-perl: upgrade from 2.052 -> 2.054
Changes:
2.054 2018/01/22
- added missing test certificates to MANIFEST
2.053 2018/01/21
- small behavior fixes
- if SSL_fingerprint is used and matches don't check for OCSP
- Utils::CERT_create - small fixes to properly specific purpose, ability to
use predefined complex purpose but disable some features
- update PublicSuffix
- updates for documentation, especially regarding pitfalls with forking or using
non-blocking sockets. Spelling fixes.
- test fixes and improvements
- stability improvements for live tests
- regenerate certificate in certs/ and make sure they are limited to the
correct purpose. Checkin program used to generate certificates.
- adjust tests since certificates have changed and some tests used
certificates intended for client authentication as server certificates,
which now no longer works
Signed-off-by: Tim Orling <timothy.t.orling@linux.intel.com>
Signed-off-by: Armin Kuster <akuster808@gmail.com>
Diffstat (limited to 'meta-perl/recipes-perl/libio/libio-socket-ssl-perl_2.054.bb')
-rw-r--r-- | meta-perl/recipes-perl/libio/libio-socket-ssl-perl_2.054.bb | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/meta-perl/recipes-perl/libio/libio-socket-ssl-perl_2.054.bb b/meta-perl/recipes-perl/libio/libio-socket-ssl-perl_2.054.bb new file mode 100644 index 0000000000..ea78bc4e00 --- /dev/null +++ b/meta-perl/recipes-perl/libio/libio-socket-ssl-perl_2.054.bb | |||
@@ -0,0 +1,47 @@ | |||
1 | SUMMARY = "Perl library for transparent SSL" | ||
2 | DESCRIPTION = "This module is a true drop-in replacement for IO::Socket::INET that \ | ||
3 | uses SSL to encrypt data before it is transferred to a remote server \ | ||
4 | or client. IO::Socket::SSL supports all the extra features that one \ | ||
5 | needs to write a full-featured SSL client or server application: \ | ||
6 | multiple SSL contexts, cipher selection, certificate verification, and \ | ||
7 | SSL version selection. As an extra bonus, it works perfectly with \ | ||
8 | mod_perl." | ||
9 | HOMEPAGE = "http://search.cpan.org/dist/IO-Socket-SSL/" | ||
10 | SECTION = "libs" | ||
11 | |||
12 | LICENSE = "Artistic-1.0|GPLv1+" | ||
13 | LIC_FILES_CHKSUM = "file://META.yml;beginline=11;endline=11;md5=963ce28228347875ace682de56eef8e8" | ||
14 | |||
15 | RDEPENDS_${PN} += "\ | ||
16 | libnet-ssleay-perl \ | ||
17 | perl-module-autoloader \ | ||
18 | perl-module-scalar-util \ | ||
19 | perl-module-io-socket \ | ||
20 | " | ||
21 | |||
22 | SRC_URI = "http://search.cpan.org/CPAN/authors/id/S/SU/SULLR/IO-Socket-SSL-${PV}.tar.gz \ | ||
23 | file://run-ptest \ | ||
24 | " | ||
25 | SRC_URI[md5sum] = "e1b412e28d107c716e7ca637e2b7f8bd" | ||
26 | SRC_URI[sha256sum] = "02ea04e9a336a7d3ca9aa604c0c5b5aaf3efa513cefecfc73cc79ceeb5131e4b" | ||
27 | |||
28 | S = "${WORKDIR}/IO-Socket-SSL-${PV}" | ||
29 | |||
30 | inherit cpan ptest | ||
31 | |||
32 | do_install_append () { | ||
33 | mkdir -p ${D}${docdir}/${PN}/ | ||
34 | cp ${S}/BUGS ${D}${docdir}/${PN}/ | ||
35 | cp ${S}/Changes ${D}${docdir}/${PN}/ | ||
36 | cp ${S}/README ${D}${docdir}/${PN}/ | ||
37 | cp -pRP ${S}/docs ${D}${docdir}/${PN}/ | ||
38 | cp -pRP ${S}/certs ${D}${docdir}/${PN}/ | ||
39 | cp -pRP ${S}/example ${D}${docdir}/${PN}/ | ||
40 | } | ||
41 | |||
42 | do_install_ptest () { | ||
43 | cp -r ${B}/t ${D}${PTEST_PATH} | ||
44 | cp -r ${B}/certs ${D}${PTEST_PATH} | ||
45 | } | ||
46 | |||
47 | BBCLASSEXTEND = "native" | ||