diff options
| author | Gianfranco Costamagna <costamagna.gianfranco@gmail.com> | 2022-11-23 14:06:05 +0100 |
|---|---|---|
| committer | Khem Raj <raj.khem@gmail.com> | 2022-11-23 08:25:31 -0800 |
| commit | c897f9291a940b075a7e10270a89625a083b0612 (patch) | |
| tree | 4086479876b6a03b511cdb116283e475e9ae753c /meta-oe | |
| parent | d7f46fa816964e30edb2ccfecc57a26251cc351c (diff) | |
| download | meta-openembedded-c897f9291a940b075a7e10270a89625a083b0612.tar.gz | |
boinc-client: Update boinc from 7.18.1 to 7.20.4
Drop patches now upstream, or deprecated due to gtk3 switch
Signed-off-by: Gianfranco Costamagna <costamagnagianfranco@yahoo.it>
Signed-off-by: Gianfranco Costamagna <locutusofborg@debian.org>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-oe')
| -rw-r--r-- | meta-oe/recipes-extended/boinc/boinc-client/4563.patch | 36 | ||||
| -rw-r--r-- | meta-oe/recipes-extended/boinc/boinc-client/gtk-configure.patch | 28 | ||||
| -rw-r--r-- | meta-oe/recipes-extended/boinc/boinc-client_7.20.4.bb (renamed from meta-oe/recipes-extended/boinc/boinc-client_7.18.1.bb) | 16 |
3 files changed, 3 insertions, 77 deletions
diff --git a/meta-oe/recipes-extended/boinc/boinc-client/4563.patch b/meta-oe/recipes-extended/boinc/boinc-client/4563.patch deleted file mode 100644 index a18da45395..0000000000 --- a/meta-oe/recipes-extended/boinc/boinc-client/4563.patch +++ /dev/null | |||
| @@ -1,36 +0,0 @@ | |||
| 1 | From 689dc20ede9768377d4032ff8c70b58269c8dc9c Mon Sep 17 00:00:00 2001 | ||
| 2 | From: Charlie Fenton <charlief@example.com> | ||
| 3 | Date: Mon, 18 Oct 2021 01:43:08 -0700 | ||
| 4 | Subject: [PATCH 01/10] Mac: update dependent libraries to latest: | ||
| 5 | c-ares-1.17.2, curl-7.79.1, freetype-2.11.0, openssl-3.0.0 Previously updated | ||
| 6 | to wxWidgets-3.1.5. FTGL version ftgl-2.1.3~rc5 is still the current | ||
| 7 | version. | ||
| 8 | |||
| 9 | --- | ||
| 10 | lib/crypt.cpp | 7 +- | ||
| 11 | 8 files changed, 199 insertions(+), 150 deletions(-) | ||
| 12 | |||
| 13 | diff --git a/lib/crypt.cpp b/lib/crypt.cpp | ||
| 14 | index 01249cfc340..9b1f69160b8 100644 | ||
| 15 | --- a/lib/crypt.cpp | ||
| 16 | +++ b/lib/crypt.cpp | ||
| 17 | @@ -1,6 +1,6 @@ | ||
| 18 | // This file is part of BOINC. | ||
| 19 | // http://boinc.berkeley.edu | ||
| 20 | -// Copyright (C) 2008 University of California | ||
| 21 | +// Copyright (C) 2021 University of California | ||
| 22 | // | ||
| 23 | // BOINC is free software; you can redistribute it and/or modify it | ||
| 24 | // under the terms of the GNU Lesser General Public License | ||
| 25 | @@ -672,7 +672,10 @@ int check_validity_of_cert( | ||
| 26 | } | ||
| 27 | #ifdef HAVE_OPAQUE_RSA_DSA_DH | ||
| 28 | RSA *rsa; | ||
| 29 | - rsa = EVP_PKEY_get0_RSA(pubKey); | ||
| 30 | + // CAUTION: In OpenSSL 3.0.0, EVP_PKEY_get0_RSA() now returns a | ||
| 31 | + // pointer of type "const struct rsa_st*" to an immutable value. | ||
| 32 | + // Do not try to modify the contents of the returned struct. | ||
| 33 | + rsa = (rsa_st*)EVP_PKEY_get0_RSA(pubKey); | ||
| 34 | if (!RSA_blinding_on(rsa, c)) { | ||
| 35 | #else | ||
| 36 | if (!RSA_blinding_on(pubKey->pkey.rsa, c)) { | ||
diff --git a/meta-oe/recipes-extended/boinc/boinc-client/gtk-configure.patch b/meta-oe/recipes-extended/boinc/boinc-client/gtk-configure.patch deleted file mode 100644 index 3b814e903c..0000000000 --- a/meta-oe/recipes-extended/boinc/boinc-client/gtk-configure.patch +++ /dev/null | |||
| @@ -1,28 +0,0 @@ | |||
| 1 | From d53e9617fb6446780478bb13907efd111f241cd1 Mon Sep 17 00:00:00 2001 | ||
| 2 | From: Khem Raj <raj.khem@gmail.com> | ||
| 3 | Date: Thu, 3 Nov 2016 01:20:33 -0700 | ||
| 4 | Subject: [PATCH] Check for gtk2+ only when manager is enabled | ||
| 5 | |||
| 6 | Signed-off-by: Khem Raj <raj.khem@gmail.com> | ||
| 7 | Upstream-Status: Pending | ||
| 8 | |||
| 9 | --- | ||
| 10 | configure.ac | 6 +++++- | ||
| 11 | 1 file changed, 5 insertions(+), 1 deletion(-) | ||
| 12 | |||
| 13 | diff --git a/configure.ac b/configure.ac | ||
| 14 | index 7beeb34ae2..35234c2762 100644 | ||
| 15 | --- a/configure.ac | ||
| 16 | +++ b/configure.ac | ||
| 17 | @@ -1044,6 +1044,11 @@ else | ||
| 18 | AM_CONDITIONAL([GUI_GTK], false) | ||
| 19 | fi | ||
| 20 | |||
| 21 | +dnl ---------- GTK+2.0----------------------------------------------------- | ||
| 22 | +if test "X${no_x}" != "Xyes"; then | ||
| 23 | + PKG_CHECK_MODULES([GTK2], [gtk+-2.0]) | ||
| 24 | +fi | ||
| 25 | + | ||
| 26 | dnl ---------- libNotify -------------------------------------------------- | ||
| 27 | if test "${enable_manager}" = yes ; then | ||
| 28 | PKG_CHECK_MODULES(LIBNOTIFY, [libnotify]) | ||
diff --git a/meta-oe/recipes-extended/boinc/boinc-client_7.18.1.bb b/meta-oe/recipes-extended/boinc/boinc-client_7.20.4.bb index 8f85a508e7..4cbbca23f2 100644 --- a/meta-oe/recipes-extended/boinc/boinc-client_7.18.1.bb +++ b/meta-oe/recipes-extended/boinc/boinc-client_7.20.4.bb | |||
| @@ -26,15 +26,13 @@ DEPENDS = "curl \ | |||
| 26 | sqlite3 \ | 26 | sqlite3 \ |
| 27 | virtual/egl \ | 27 | virtual/egl \ |
| 28 | ${@bb.utils.contains('DISTRO_FEATURES', 'wayland', 'libnotify', '', d)} \ | 28 | ${@bb.utils.contains('DISTRO_FEATURES', 'wayland', 'libnotify', '', d)} \ |
| 29 | ${@bb.utils.contains('DISTRO_FEATURES', 'x11', 'gtk+ libnotify xcb-util libxscrnsaver', '', d)} \ | 29 | ${@bb.utils.contains('DISTRO_FEATURES', 'x11', 'gtk+3 wxwidgets libnotify xcb-util libxscrnsaver', '', d)} \ |
| 30 | nettle \ | 30 | nettle \ |
| 31 | " | 31 | " |
| 32 | SRCREV = "b49adfb118211e11c719766c0d71e7bdfe7f3363" | 32 | SRCREV = "1eca0c7931d0409d65a1254dc5d5c46abe058daa" |
| 33 | BRANCH = "client_release/7/7.18" | 33 | BRANCH = "client_release/7/7.20" |
| 34 | SRC_URI = "git://github.com/BOINC/boinc;protocol=https;branch=${BRANCH} \ | 34 | SRC_URI = "git://github.com/BOINC/boinc;protocol=https;branch=${BRANCH} \ |
| 35 | file://boinc-AM_CONDITIONAL.patch \ | 35 | file://boinc-AM_CONDITIONAL.patch \ |
| 36 | file://gtk-configure.patch \ | ||
| 37 | file://4563.patch \ | ||
| 38 | file://0001-scripts-Do-not-check-for-files-on-build-host.patch \ | 36 | file://0001-scripts-Do-not-check-for-files-on-build-host.patch \ |
| 39 | " | 37 | " |
| 40 | 38 | ||
| @@ -61,14 +59,6 @@ EXTRA_OECONF += "\ | |||
| 61 | " | 59 | " |
| 62 | export PKG_CONFIG = "${STAGING_BINDIR_NATIVE}/pkg-config" | 60 | export PKG_CONFIG = "${STAGING_BINDIR_NATIVE}/pkg-config" |
| 63 | 61 | ||
| 64 | do_configure:prepend () { | ||
| 65 | if [ "${@bb.utils.contains('DEPENDS', 'gtk+', '1', '0', d)}" = "0" ] | ||
| 66 | then | ||
| 67 | export GTK2_CFLAGS="" | ||
| 68 | export GTK2_LIBS="" | ||
| 69 | fi | ||
| 70 | } | ||
| 71 | |||
| 72 | do_compile:prepend () { | 62 | do_compile:prepend () { |
| 73 | # Disable rpaths | 63 | # Disable rpaths |
| 74 | sed -i -e 's|^hardcode_libdir_flag_spec=.*|hardcode_libdir_flag_spec=""|g' ${B}/libtool | 64 | sed -i -e 's|^hardcode_libdir_flag_spec=.*|hardcode_libdir_flag_spec=""|g' ${B}/libtool |
