author | Antonio Rojas
<arojas@archlinux.org> 2017-02-15 07:06:50 UTC |
committer | Antonio Rojas
<arojas@archlinux.org> 2017-02-15 07:06:50 UTC |
parent | f2222b9d4d42afa3ed9d7510b0984d693b266db1 |
PKGBUILD | +4 | -8 |
no-ssl3.patch | +0 | -29 |
diff --git a/PKGBUILD b/PKGBUILD index 435a254..731f48d 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -4,22 +4,18 @@ pkgbase=qca pkgname=(qca-qt4 qca-qt5) -pkgver=2.1.1 -pkgrel=7 +pkgver=2.1.3 +pkgrel=1 pkgdesc="Qt Cryptographic Architecture" arch=(i686 x86_64) url="http://delta.affinix.com/qca/" license=(LGPL) makedepends=(qt4 qt5-base cmake doxygen nss pkcs11-helper botan1.10) -source=("http://download.kde.org/stable/$pkgbase/$pkgver/src/$pkgbase-$pkgver.tar.xz" - no-ssl3.patch) -md5sums=('657cc701316600199199a6b6cb2c73c9' - '209f9187209d255fc3468ffeb26302e0') +source=("http://download.kde.org/stable/$pkgbase/$pkgver/src/$pkgbase-$pkgver.tar.xz") +md5sums=('5019cc29efcf828681cd93164238ce26') prepare() { mkdir -p build{4,5} - cd $pkgbase-$pkgver - patch -Np1 < "${srcdir}/no-ssl3.patch" } build() { diff --git a/no-ssl3.patch b/no-ssl3.patch deleted file mode 100644 index 1a81490..0000000 --- a/no-ssl3.patch +++ /dev/null @@ -1,29 +0,0 @@ -From: Heiko Becker <heirecka@exherbo.org> -Date: Thu, 24 Sep 2015 20:54:41 +0000 -Subject: qca-ossl: Fix build without SSLv3 -X-Git-Url: http://quickgit.kde.org/?p=qca.git&a=commitdiff&h=20a587d77636186edb044cd2b71d6d90fe98d232 ---- -qca-ossl: Fix build without SSLv3 - -This fixes building with LibreSSL >= 2.3.0 which has removed support -for SSLv3 completely. As far as I know OpenSSL can be configured to -build without it, so it might be helpful there as well. - -REVIEW: 125386 ---- - - ---- a/plugins/qca-ossl/qca-ossl.cpp -+++ b/plugins/qca-ossl/qca-ossl.cpp -@@ -5403,9 +5403,11 @@ - ctx = SSL_CTX_new(SSLv2_client_method()); - break; - #endif -+#ifndef OPENSSL_NO_SSL3_METHOD - case TLS::SSL_v3: - ctx = SSL_CTX_new(SSLv3_client_method()); - break; -+#endif - case TLS::TLS_v1: - ctx = SSL_CTX_new(TLSv1_client_method()); - break;