From d0ba86dc2763b2fdc72384d977becc983826be0a Mon Sep 17 00:00:00 2001 From: CvH Date: Sun, 1 Nov 2020 19:37:08 +0100 Subject: [PATCH] libimobiledevice: update to 1.3.0 --- .../addons/addon-depends/libimobiledevice/package.mk | 6 +++--- .../libimobiledevice-0001-disable-sslv3.patch | 12 ------------ 2 files changed, 3 insertions(+), 15 deletions(-) delete mode 100644 packages/addons/addon-depends/libimobiledevice/patches/libimobiledevice-0001-disable-sslv3.patch diff --git a/packages/addons/addon-depends/libimobiledevice/package.mk b/packages/addons/addon-depends/libimobiledevice/package.mk index 4903e06aab..0a89ee43fe 100644 --- a/packages/addons/addon-depends/libimobiledevice/package.mk +++ b/packages/addons/addon-depends/libimobiledevice/package.mk @@ -2,11 +2,11 @@ # Copyright (C) 2016-present Team LibreELEC (https://libreelec.tv) PKG_NAME="libimobiledevice" -PKG_VERSION="1.2.0" -PKG_SHA256="786b0de0875053bf61b5531a86ae8119e320edab724fc62fe2150cc931f11037" +PKG_VERSION="1.3.0" +PKG_SHA256="53f2640c6365cd9f302a6248f531822dc94a6cced3f17128d4479a77bd75b0f6" PKG_LICENSE="GPL" PKG_SITE="http://www.libimobiledevice.org" -PKG_URL="http://www.libimobiledevice.org/downloads/$PKG_NAME-$PKG_VERSION.tar.bz2" +PKG_URL="https://github.com/libimobiledevice/libimobiledevice/releases/download/${PKG_VERSION}/libimobiledevice-${PKG_VERSION}.tar.bz2" PKG_DEPENDS_TARGET="toolchain libusbmuxd openssl" PKG_LONGDESC="A cross-platform software library that talks the protocols to support Apple devices." PKG_TOOLCHAIN="autotools" diff --git a/packages/addons/addon-depends/libimobiledevice/patches/libimobiledevice-0001-disable-sslv3.patch b/packages/addons/addon-depends/libimobiledevice/patches/libimobiledevice-0001-disable-sslv3.patch deleted file mode 100644 index c267427648..0000000000 --- a/packages/addons/addon-depends/libimobiledevice/patches/libimobiledevice-0001-disable-sslv3.patch +++ /dev/null @@ -1,12 +0,0 @@ -diff -u -r libimobiledevice-1.2.0/src/idevice.c libimobiledevice-1.2.0-nossl3/src/idevice.c ---- libimobiledevice-1.2.0/src/idevice.c 2015-01-28 02:10:32.000000000 +0100 -+++ libimobiledevice-1.2.0-nossl3/src/idevice.c 2016-03-03 18:33:45.912308242 +0100 -@@ -678,7 +678,7 @@ - } - BIO_set_fd(ssl_bio, (int)(long)connection->data, BIO_NOCLOSE); - -- SSL_CTX *ssl_ctx = SSL_CTX_new(SSLv3_method()); -+ SSL_CTX *ssl_ctx = SSL_CTX_new(SSLv23_method()); - if (ssl_ctx == NULL) { - debug_info("ERROR: Could not create SSL context."); - BIO_free(ssl_bio);