summaryrefslogtreecommitdiffstats
path: root/meta/recipes-connectivity/openssl
diff options
context:
space:
mode:
authorAndrej Valek <andrej.valek@siemens.com>2018-08-16 14:27:57 +0200
committerRichard Purdie <richard.purdie@linuxfoundation.org>2018-08-19 16:35:22 +0100
commit47a73c522817ba352ac4ddae660be8dc47486460 (patch)
treeb9b9eb7a5b1c56353df2bf463883233a447d0ceb /meta/recipes-connectivity/openssl
parent06b5355b9d4c75e3d8b8f6cfa0f83a505eb07934 (diff)
downloadpoky-47a73c522817ba352ac4ddae660be8dc47486460.tar.gz
openssl: update 1.1.0h -> 1.1.0i
Please see this security advisory: https://www.openssl.org/news/secadv/20180612.txt Remove obsolete patch. (From OE-Core rev: 0d19caefeeca14f44c80ccb716c30b17f14255a5) Signed-off-by: Andrej Valek <andrej.valek@siemens.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-connectivity/openssl')
-rw-r--r--meta/recipes-connectivity/openssl/openssl/0002-Revert-util-dofile.pl-only-quote-stuff-that-actually.patch29
-rw-r--r--meta/recipes-connectivity/openssl/openssl_1.1.0i.bb (renamed from meta/recipes-connectivity/openssl/openssl_1.1.0h.bb)5
2 files changed, 2 insertions, 32 deletions
diff --git a/meta/recipes-connectivity/openssl/openssl/0002-Revert-util-dofile.pl-only-quote-stuff-that-actually.patch b/meta/recipes-connectivity/openssl/openssl/0002-Revert-util-dofile.pl-only-quote-stuff-that-actually.patch
deleted file mode 100644
index 81a9b2d060..0000000000
--- a/meta/recipes-connectivity/openssl/openssl/0002-Revert-util-dofile.pl-only-quote-stuff-that-actually.patch
+++ /dev/null
@@ -1,29 +0,0 @@
1openssl-1.1.0h: Fix c_rehash perl errors
2
3[No upstream tracking] -- https://github.com/openssl/openssl/issues/5772
4
5dofile.pl: Revert only quote stuff that actually needs quoting
6
7This wasn't a good solution, too many things depend on the quotes being
8there consistently.
9
10Upstream-Status: Backport [https://github.com/openssl/openssl/commit/00701e5ea84861b74d9d624f21a6b3fcb12e8acd]
11bug: 5772
12Signed-off-by: Andrej Valek <andrej.valek@siemens.com>
13
14diff --git a/util/dofile.pl b/util/dofile.pl
15index 955224df7d..b0e20681dd 100644
16--- a/util/dofile.pl
17+++ b/util/dofile.pl
18@@ -99,9 +99,9 @@ package main;
19 # This adds quotes (") around the given string, and escapes any $, @, \,
20 # " and ' by prepending a \ to them.
21 sub quotify1 {
22- my $s = my $orig = shift @_;
23+ my $s = shift @_;
24 $s =~ s/([\$\@\\"'])/\\$1/g;
25- $s ne $orig || $s =~ /\s/ ? '"'.$s.'"' : $s;
26+ '"'.$s.'"';
27 }
28
29 # quotify_l LIST
diff --git a/meta/recipes-connectivity/openssl/openssl_1.1.0h.bb b/meta/recipes-connectivity/openssl/openssl_1.1.0i.bb
index 8b3d92203f..7929d81b45 100644
--- a/meta/recipes-connectivity/openssl/openssl_1.1.0h.bb
+++ b/meta/recipes-connectivity/openssl/openssl_1.1.0i.bb
@@ -14,15 +14,14 @@ SRC_URI = "http://www.openssl.org/source/openssl-${PV}.tar.gz \
14 file://run-ptest \ 14 file://run-ptest \
15 file://openssl-c_rehash.sh \ 15 file://openssl-c_rehash.sh \
16 file://0001-Take-linking-flags-from-LDFLAGS-env-var.patch \ 16 file://0001-Take-linking-flags-from-LDFLAGS-env-var.patch \
17 file://0002-Revert-util-dofile.pl-only-quote-stuff-that-actually.patch \
18 " 17 "
19 18
20SRC_URI_append_class-nativesdk = " \ 19SRC_URI_append_class-nativesdk = " \
21 file://environment.d-openssl.sh \ 20 file://environment.d-openssl.sh \
22 " 21 "
23 22
24SRC_URI[md5sum] = "5271477e4d93f4ea032b665ef095ff24" 23SRC_URI[md5sum] = "9495126aafd2659d357ea66a969c3fe1"
25SRC_URI[sha256sum] = "5835626cde9e99656585fc7aaa2302a73a7e1340bf8c14fd635a62c66802a517" 24SRC_URI[sha256sum] = "ebbfc844a8c8cc0ea5dc10b86c9ce97f401837f3fa08c17b2cdadc118253cf99"
26 25
27inherit lib_package multilib_header ptest relative_symlinks 26inherit lib_package multilib_header ptest relative_symlinks
28 27