diff options
author | Andreas Sturmlechner <asturm@gentoo.org> | 2021-12-24 14:16:12 +0100 |
---|---|---|
committer | Andreas Sturmlechner <asturm@gentoo.org> | 2021-12-24 14:26:47 +0100 |
commit | d1ec024bc9ebd11c3aa6e7c30725e88160a94a26 (patch) | |
tree | c97ca125087f8c2a16d890aee65986a8db54fb22 /dev-qt/qtwebsockets/qtwebsockets-5.15.2-r11.ebuild | |
parent | dev-qt/qtwebchannel: 5.15.2-r10 version bump at KDE fa8b0710 (diff) | |
download | gentoo-d1ec024bc9ebd11c3aa6e7c30725e88160a94a26.tar.gz gentoo-d1ec024bc9ebd11c3aa6e7c30725e88160a94a26.tar.bz2 gentoo-d1ec024bc9ebd11c3aa6e7c30725e88160a94a26.zip |
dev-qt/qtwebsockets: 5.15.2-r11 version bump at KDE b13b5690
"Clear frame on reconnect"
QTBUG: https://bugreports.qt.io/browse/QTBUG-88923
Upstream commit 855a45cb7a3b1beffdb82f9a3fab486a955061ca
"Pass ignoreSslErrors to unterlying QSslSocket"
Upstream commit 7745489fd825445ec8f3793a3c82f07fa12707ce
"QWebSocketProtocol: fix potential UB (signed overflow) in masking operation"
Upstream commit b13b56904b76e96ea52d0efe56395acc94b17d96
Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'dev-qt/qtwebsockets/qtwebsockets-5.15.2-r11.ebuild')
-rw-r--r-- | dev-qt/qtwebsockets/qtwebsockets-5.15.2-r11.ebuild | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/dev-qt/qtwebsockets/qtwebsockets-5.15.2-r11.ebuild b/dev-qt/qtwebsockets/qtwebsockets-5.15.2-r11.ebuild new file mode 100644 index 000000000000..b155dc7585af --- /dev/null +++ b/dev-qt/qtwebsockets/qtwebsockets-5.15.2-r11.ebuild @@ -0,0 +1,29 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +KDE_ORG_COMMIT=b13b56904b76e96ea52d0efe56395acc94b17d96 +inherit qt5-build + +DESCRIPTION="Implementation of the WebSocket protocol for the Qt5 framework" + +if [[ ${QT5_BUILD_TYPE} == release ]]; then + KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~riscv ~sparc ~x86" +fi + +IUSE="qml +ssl" + +DEPEND=" + =dev-qt/qtcore-${QT5_PV}* + =dev-qt/qtnetwork-${QT5_PV}*[ssl=] + qml? ( =dev-qt/qtdeclarative-${QT5_PV}* ) + +" +RDEPEND="${DEPEND}" + +src_prepare() { + qt_use_disable_mod qml quick src/src.pro + + qt5-build_src_prepare +} |