Skip to content

Commit

Permalink
kde5-functions.eclass: add_qt_dep qtwebkit exception
Browse files Browse the repository at this point in the history
Upstream stopped at 5.9.1 and releases are going to be
independent from there on.
  • Loading branch information
a17r committed Jan 13, 2018
1 parent 89cc6c3 commit b9addb0
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions eclass/kde5-functions.eclass
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 1999-2017 Gentoo Foundation
# Copyright 1999-2018 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2

# @ECLASS: kde5-functions.eclass
Expand Down Expand Up @@ -276,7 +276,11 @@ add_qt_dep() {
local slot=${4}

if [[ -z ${version} ]]; then
version=${QT_MINIMAL}
if [[ ${1} = qtwebkit && ${QT_MINIMAL} = 5.9* ]]; then
version=5.9.1 # no more upstream release, need bug #624404
else
version=${QT_MINIMAL}
fi
fi
if [[ -z ${slot} ]]; then
slot="5"
Expand Down

0 comments on commit b9addb0

Please sign in to comment.