diff options
| author | Wang Mingyu <wangmy@fujitsu.com> | 2024-04-17 09:40:26 +0800 |
|---|---|---|
| committer | Khem Raj <raj.khem@gmail.com> | 2024-04-21 10:52:44 -0700 |
| commit | fb14ebb3465fc4ad425cefff90381ce9a4f36552 (patch) | |
| tree | 38b13afa1d43b9c4d8226602b938ddcff0aef99d /meta-oe/recipes-support/opensc/opensc_0.25.1.bb | |
| parent | 691f05bb2f37e8782bad3073a5a71d519d3d1313 (diff) | |
| download | meta-openembedded-fb14ebb3465fc4ad425cefff90381ce9a4f36552.tar.gz | |
opensc: upgrade 0.25.0 -> 0.25.1
Changelog:
============
* Add missing file to dist tarball to build documentation
* Fix RSA decryption with PKCS#1 v1.5 padding
* Fix crash when app is not set
Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-oe/recipes-support/opensc/opensc_0.25.1.bb')
| -rw-r--r-- | meta-oe/recipes-support/opensc/opensc_0.25.1.bb | 49 |
1 files changed, 49 insertions, 0 deletions
diff --git a/meta-oe/recipes-support/opensc/opensc_0.25.1.bb b/meta-oe/recipes-support/opensc/opensc_0.25.1.bb new file mode 100644 index 0000000000..19fb78092e --- /dev/null +++ b/meta-oe/recipes-support/opensc/opensc_0.25.1.bb | |||
| @@ -0,0 +1,49 @@ | |||
| 1 | SUMMARY = "Smart card library and applications" | ||
| 2 | DESCRIPTION = "OpenSC is a tool for accessing smart card devices. Basic\ | ||
| 3 | functionality (e.g. SELECT FILE, READ BINARY) should work on any ISO\ | ||
| 4 | 7816-4 compatible smart card. Encryption and decryption using private\ | ||
| 5 | keys on the smart card is possible with PKCS\ | ||
| 6 | such as the FINEID (Finnish Electronic IDentity) card. Swedish Posten\ | ||
| 7 | eID cards have also been confirmed to work." | ||
| 8 | |||
| 9 | HOMEPAGE = "https://github.com/OpenSC/OpenSC/wiki" | ||
| 10 | SECTION = "System Environment/Libraries" | ||
| 11 | LICENSE = "LGPL-2.0-or-later" | ||
| 12 | LIC_FILES_CHKSUM = "file://COPYING;md5=cb8aedd3bced19bd8026d96a8b6876d7" | ||
| 13 | |||
| 14 | #v0.21.0 | ||
| 15 | SRCREV = "0a4b772d6fdab9bfaaa3123775a48a7cb6c5e7c6" | ||
| 16 | SRC_URI = "git://github.com/OpenSC/OpenSC;branch=stable-0.25;protocol=https" | ||
| 17 | DEPENDS = "virtual/libiconv openssl" | ||
| 18 | |||
| 19 | S = "${WORKDIR}/git" | ||
| 20 | inherit autotools pkgconfig bash-completion | ||
| 21 | |||
| 22 | EXTRA_OECONF = " \ | ||
| 23 | --disable-static \ | ||
| 24 | --disable-ctapi \ | ||
| 25 | --disable-doc \ | ||
| 26 | --disable-strict \ | ||
| 27 | " | ||
| 28 | EXTRA_OEMAKE = "DESTDIR=${D}" | ||
| 29 | |||
| 30 | PACKAGECONFIG ??= "pcsc" | ||
| 31 | |||
| 32 | PACKAGECONFIG[openct] = "--enable-openct,--disable-openct,openct" | ||
| 33 | PACKAGECONFIG[pcsc] = "--enable-pcsc,--disable-pcsc,pcsc-lite,pcsc-lite pcsc-lite-lib" | ||
| 34 | |||
| 35 | RDEPENDS:${PN} = "readline" | ||
| 36 | |||
| 37 | FILES:${PN} += "\ | ||
| 38 | ${libdir}/opensc-pkcs11.so \ | ||
| 39 | ${libdir}/onepin-opensc-pkcs11.so \ | ||
| 40 | ${libdir}/pkcs11-spy.so \ | ||
| 41 | " | ||
| 42 | FILES:${PN}-dev += "\ | ||
| 43 | ${libdir}/onepin-opensc-pkcs11.so \ | ||
| 44 | ${libdir}/pkcs11/opensc-pkcs11.so \ | ||
| 45 | ${libdir}/pkcs11/onepin-opensc-pkcs11.so \ | ||
| 46 | ${libdir}/pkcs11/pkcs11-spy.so \ | ||
| 47 | " | ||
| 48 | |||
| 49 | BBCLASSEXTEND = "native" | ||
