diff options
| author | Wang Mingyu <wangmy@fujitsu.com> | 2026-02-27 18:13:16 +0800 |
|---|---|---|
| committer | Khem Raj <raj.khem@gmail.com> | 2026-03-02 19:25:56 -0800 |
| commit | 0ab79a9176473d08a48cb5dade318113a09fa07e (patch) | |
| tree | 974ea0db48e9241aa413f18f2280c32192af5dbc /meta-networking/recipes-support/stunnel/stunnel_5.77.bb | |
| parent | 513dcb0d0820f85e5bab12f97d6f4f748075eab5 (diff) | |
| download | meta-openembedded-0ab79a9176473d08a48cb5dade318113a09fa07e.tar.gz | |
stunnel: upgrade 5.76 -> 5.77
Changelog:
===========
* Security bugfixes
- OpenSSL DLLs updated to version 3.5.5.
* Bugfixes
- Avoid attempting to fetch OCSP stapling for PSK-only
configuration sections.
* Features
- Merged applicable patches from Fedora and Debian:
- Use SOURCE_DATE_EPOCH for reproducible builds.
- Skip the OpenSSL version check when AUTOPKGTEST_TMP is set.
- Enable PrivateTmp in the stunnel.service template.
- Clarify the manual page for the "curves" option.
- Log client IP addresses on TLS errors.
Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-networking/recipes-support/stunnel/stunnel_5.77.bb')
| -rw-r--r-- | meta-networking/recipes-support/stunnel/stunnel_5.77.bb | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/meta-networking/recipes-support/stunnel/stunnel_5.77.bb b/meta-networking/recipes-support/stunnel/stunnel_5.77.bb new file mode 100644 index 0000000000..954fa896ba --- /dev/null +++ b/meta-networking/recipes-support/stunnel/stunnel_5.77.bb | |||
| @@ -0,0 +1,32 @@ | |||
| 1 | SUMMARY = "Program for providing universal TLS/SSL tunneling service" | ||
| 2 | DESCRIPTION = "SSL encryption wrapper between remote client and local (inetd-startable) or remote server." | ||
| 3 | HOMEPAGE = "https://www.stunnel.org/" | ||
| 4 | SECTION = "net" | ||
| 5 | LICENSE = "GPL-2.0-or-later" | ||
| 6 | LIC_FILES_CHKSUM = "file://COPYING.md;md5=1e4388407e163ad0cde171362f9a7b94" | ||
| 7 | |||
| 8 | DEPENDS = "autoconf-archive libnsl2 openssl" | ||
| 9 | |||
| 10 | SRC_URI = "https://stunnel.org/archive/5.x/${BP}.tar.gz \ | ||
| 11 | file://fix-openssl-no-des.patch \ | ||
| 12 | " | ||
| 13 | |||
| 14 | SRC_URI[sha256sum] = "ec026f4fae4e0d25b940cc7a9451d925e359e7fd59e9edad20baea66ce45f263" | ||
| 15 | |||
| 16 | inherit autotools bash-completion pkgconfig | ||
| 17 | |||
| 18 | PACKAGECONFIG ?= "${@bb.utils.filter('DISTRO_FEATURES', 'ipv6 systemd', d)}" | ||
| 19 | |||
| 20 | PACKAGECONFIG[ipv6] = "--enable-ipv6,--disable-ipv6," | ||
| 21 | PACKAGECONFIG[systemd] = "--enable-systemd,--disable-systemd,systemd" | ||
| 22 | |||
| 23 | EXTRA_OECONF += "--with-ssl='${STAGING_EXECPREFIXDIR}' --disable-fips" | ||
| 24 | |||
| 25 | # When cross compiling, configure defaults to nobody, but provides no option to change it. | ||
| 26 | EXTRA_OEMAKE += "DEFAULT_GROUP='nogroup'" | ||
| 27 | |||
| 28 | # stunnel3 is a Perl wrapper to allow use of the legacy stunnel 3.x commandline | ||
| 29 | # syntax with stunnel >= 4.05 | ||
| 30 | PACKAGES =+ "stunnel3" | ||
| 31 | FILES:stunnel3 = "${bindir}/stunnel3" | ||
| 32 | RDEPENDS:stunnel3 += "${PN} perl" | ||
