diff options
| author | wangmy <wangmy@fujitsu.com> | 2021-12-27 22:33:24 +0800 |
|---|---|---|
| committer | Khem Raj <raj.khem@gmail.com> | 2021-12-27 11:46:41 -0800 |
| commit | 13bfa7431be64cc0c2ea99fd0099830cbfd9eb28 (patch) | |
| tree | ab63823bb0bca9498da2f62d443c100fd3f7f632 /meta-perl/recipes-perl/libio/libio-socket-ssl-perl_2.073.bb | |
| parent | d830b7ad4a957a4667d000f840d9442db13250d2 (diff) | |
| download | meta-openembedded-13bfa7431be64cc0c2ea99fd0099830cbfd9eb28.tar.gz | |
libio-socket-ssl-perl: upgrade 2.072 -> 2.073
Changelog:
=========
fix behavior and tests for openssl 3.0.1
fix #110 - prevent internal error warning in some cases
Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-perl/recipes-perl/libio/libio-socket-ssl-perl_2.073.bb')
| -rw-r--r-- | meta-perl/recipes-perl/libio/libio-socket-ssl-perl_2.073.bb | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/meta-perl/recipes-perl/libio/libio-socket-ssl-perl_2.073.bb b/meta-perl/recipes-perl/libio/libio-socket-ssl-perl_2.073.bb new file mode 100644 index 0000000000..ef7fd08bfe --- /dev/null +++ b/meta-perl/recipes-perl/libio/libio-socket-ssl-perl_2.073.bb | |||
| @@ -0,0 +1,46 @@ | |||
| 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=12;endline=12;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[sha256sum] = "b2c0b34df97cb1aa816221cee2454a1efd89b86ccbda810389a30e0d08cf57c8" | ||
| 26 | |||
| 27 | S = "${WORKDIR}/IO-Socket-SSL-${PV}" | ||
| 28 | |||
| 29 | inherit cpan ptest | ||
| 30 | |||
| 31 | do_install:append () { | ||
| 32 | mkdir -p ${D}${docdir}/${PN}/ | ||
| 33 | cp ${S}/BUGS ${D}${docdir}/${PN}/ | ||
| 34 | cp ${S}/Changes ${D}${docdir}/${PN}/ | ||
| 35 | cp ${S}/README ${D}${docdir}/${PN}/ | ||
| 36 | cp -pRP ${S}/docs ${D}${docdir}/${PN}/ | ||
| 37 | cp -pRP ${S}/certs ${D}${docdir}/${PN}/ | ||
| 38 | cp -pRP ${S}/example ${D}${docdir}/${PN}/ | ||
| 39 | } | ||
| 40 | |||
| 41 | do_install_ptest () { | ||
| 42 | cp -r ${B}/t ${D}${PTEST_PATH} | ||
| 43 | cp -r ${B}/certs ${D}${PTEST_PATH} | ||
| 44 | } | ||
| 45 | |||
| 46 | BBCLASSEXTEND = "native" | ||
