summaryrefslogtreecommitdiffstats
path: root/meta-perl/recipes-perl/libcrypt/libcrypt-openssl-rsa-perl_0.34.bb
diff options
context:
space:
mode:
authorJason Schonberg <schonm@gmail.com>2025-09-14 08:45:06 -0400
committerKhem Raj <raj.khem@gmail.com>2025-09-15 09:55:16 -0700
commit0587c7ac7e85d54ab29a812b090a761ef1b74aed (patch)
tree91141fc247ed4957a4409e63d9e08a9e6328c4be /meta-perl/recipes-perl/libcrypt/libcrypt-openssl-rsa-perl_0.34.bb
parent219f5c96cc744c73b732ddfb7c62d0448aa565ae (diff)
downloadmeta-openembedded-0587c7ac7e85d54ab29a812b090a761ef1b74aed.tar.gz
libcrypt-openssl-rsa-perl: upgrade 0.33 -> 0.34
License-Update: Still the same license. Checksum change due to the change of the physical address of the FSF. 0.34 May 5 2025 - Production release. 0.34_03 May 4 2025 - Fix bug in rsa_crypt. Need to pass NULL 0.34_02 May 4 2025 - t/rsa.t needs to tolerate sha1 being disabled on rhel. 0.34_01 May 3 2025 - docs - plaintext = decrypt(cyphertext) - #44 - Fix issue when libz is not linked on AIX - #50 - Correct openssl version may not be found - #52 - Out of memory on openssl 1.1.1w hpux - #47 - Update FSF address and LGPL name in LICENSE - #55 - stop using AutoLoader - #48 - Whirlpool is missing the header - Move github repo to cpan-authors - Fully support openSSL 3.x API Signed-off-by: Jason Schonberg <schonm@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-perl/recipes-perl/libcrypt/libcrypt-openssl-rsa-perl_0.34.bb')
-rw-r--r--meta-perl/recipes-perl/libcrypt/libcrypt-openssl-rsa-perl_0.34.bb39
1 files changed, 39 insertions, 0 deletions
diff --git a/meta-perl/recipes-perl/libcrypt/libcrypt-openssl-rsa-perl_0.34.bb b/meta-perl/recipes-perl/libcrypt/libcrypt-openssl-rsa-perl_0.34.bb
new file mode 100644
index 0000000000..ffcfa196e8
--- /dev/null
+++ b/meta-perl/recipes-perl/libcrypt/libcrypt-openssl-rsa-perl_0.34.bb
@@ -0,0 +1,39 @@
1SUMMARY = "Crypt Openssl RSA cpan module"
2SECTION = "libs"
3HOMEPAGE = "https://metacpan.org/pod/Crypt::OpenSSL::RSA"
4LICENSE = "Artistic-1.0 | GPL-1.0-or-later"
5LIC_FILES_CHKSUM = "file://LICENSE;md5=399bd4de06d233aa49afa7c47cea8117"
6
7SRC_URI = "${CPAN_MIRROR}/authors/id/T/TO/TODDR/Crypt-OpenSSL-RSA-${PV}.tar.gz \
8"
9
10SRC_URI[sha256sum] = "368ed198e1fbaebaa2e681d77dbb3c6f0f94e9bacd97b2674759bfaa75bf4a35"
11
12DEPENDS += "libcrypt-openssl-guess-perl-native openssl"
13
14RDEPENDS:${PN} = " \
15 libcrypt-openssl-random-perl \
16 perl-module-autoloader \
17 perl-module-carp \
18 perl-module-strict \
19 perl-module-warnings \
20 perl-module-xsloader \
21"
22
23EXTRA_CPANFLAGS = "INC='-I${STAGING_INCDIR}' LIBS='-L${STAGING_LIBDIR} -lssl -L${STAGING_DIR_TARGET}${base_libdir} -lcrypto'"
24
25S = "${UNPACKDIR}/Crypt-OpenSSL-RSA-${PV}"
26
27inherit cpan ptest-perl
28
29do_compile() {
30 export OTHERLDFLAGS='-Wl,-rpath'
31 cpan_do_compile
32}
33
34RDEPENDS:${PN}-ptest = " \
35 ${PN} \
36 perl-module-file-copy \
37 perl-module-test \
38 perl-module-test-more \
39"