diff options
author | Aaron Boxer <boxerab@gmail.com> | 2021-09-13 12:12:37 -0400 |
---|---|---|
committer | GStreamer Marge Bot <gitlab-merge-bot@gstreamer-foundation.org> | 2021-10-29 23:38:38 +0000 |
commit | 8baea3c1292531d38ffafb0cf0ecbe1500fa5826 (patch) | |
tree | c5489828b9354f518f11adfec83356cba1baa5d4 | |
parent | 07afb4694c9ae035452a38d2f694ee3601197945 (diff) |
openssl.recipe: upgrade to version 1.1.1l
Fixes CVE-2021-3712 and CVE-2021-3711
https://www.openssl.org/news/vulnerabilities-1.1.1.html
Part-of: <https://gitlab.freedesktop.org/gstreamer/cerbero/-/merge_requests/764>
-rw-r--r-- | recipes/openssl.recipe | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/recipes/openssl.recipe b/recipes/openssl.recipe index db3d68e8..8d07bbbf 100644 --- a/recipes/openssl.recipe +++ b/recipes/openssl.recipe @@ -8,11 +8,11 @@ class Recipe(recipe.Recipe): # Note: openssl helpfully moves tarballs somewhere else (old/x.y.z/) # whenever a new release comes out, so make sure to mirror to fdo when # bumping the release! - version = '1.1.1k' + version = '1.1.1l' licenses = [{License.OPENSSL: ['LICENSE']}] stype = SourceType.TARBALL url = 'https://ftp.openssl.org/source/{0}-{1}.tar.gz'.format(name, version) - tarball_checksum = '892a0875b9872acd04a9fde79b1f943075d5ea162415de3047c327df33fbaee5' + tarball_checksum = '0b7a3e5e59c34827fe0c3a74b7ec8baef302b98fa80088d7f9153aa16fa76bd1' deps = ['ca-certificates', 'zlib'] # Parallel make fails randomly due to undefined macros, probably races allow_parallel_build = False |