public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] proj/kde:master commit in: www-client/falkon/
@ 2017-10-03 21:30 Andreas Sturmlechner
  0 siblings, 0 replies; 41+ messages in thread
From: Andreas Sturmlechner @ 2017-10-03 21:30 UTC (permalink / raw
  To: gentoo-commits

commit:     f23491ccba930a8108572bda4f42c664b3636e16
Author:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Tue Oct  3 21:28:19 2017 +0000
Commit:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Tue Oct  3 21:29:40 2017 +0000
URL:        https://gitweb.gentoo.org/proj/kde.git/commit/?id=f23491cc

www-client/falkon: New package

Package-Manager: Portage-2.3.11, Repoman-2.3.3

 www-client/falkon/falkon-9999.ebuild | 68 ++++++++++++++++++++++++++++++++++++
 www-client/falkon/metadata.xml       | 15 ++++++++
 2 files changed, 83 insertions(+)

diff --git a/www-client/falkon/falkon-9999.ebuild b/www-client/falkon/falkon-9999.ebuild
new file mode 100644
index 0000000000..cab43a30f1
--- /dev/null
+++ b/www-client/falkon/falkon-9999.ebuild
@@ -0,0 +1,68 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+PLUGINS_HASH="80fea7df7765fdf9c9c64fdb667052b25f1c0a22"
+PLUGINS_VERSION="2016.05.26" # if there are no updates, we can use the older archive
+# QT_MINIMAL="5.9.2"
+inherit kde5
+
+DESCRIPTION="Cross-platform web browser using QtWebEngine"
+HOMEPAGE="https://www.qupzilla.com/"
+SRC_URI+=" https://github.com/QupZilla/qupzilla-plugins/archive/${PLUGINS_HASH}.tar.gz -> qupzilla-plugins-${PLUGINS_VERSION}.tar.gz"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS=""
+IUSE="dbus gnome-keyring kwallet libressl nonblockdialogs +X"
+
+RDEPEND="
+	$(add_qt_dep qtdeclarative 'widgets')
+	$(add_qt_dep qtgui)
+	$(add_qt_dep qtnetwork 'ssl')
+	$(add_qt_dep qtprintsupport)
+	$(add_qt_dep qtsql 'sqlite')
+	$(add_qt_dep qtwebchannel)
+	$(add_qt_dep qtwebengine 'widgets')
+	$(add_qt_dep qtwidgets)
+	dbus? ( $(add_qt_dep qtdbus) )
+	gnome-keyring? ( gnome-base/gnome-keyring )
+	kwallet? ( $(add_frameworks_dep kwallet) )
+	libressl? ( dev-libs/libressl:= )
+	!libressl? ( dev-libs/openssl:0= )
+	X? (
+		$(add_qt_dep qtx11extras)
+		x11-libs/libxcb:=
+	)
+"
+DEPEND="${RDEPEND}
+	$(add_qt_dep linguist-tools)
+	$(add_qt_dep qtconcurrent)
+	gnome-keyring? ( virtual/pkgconfig )
+"
+
+DOCS=( AUTHORS BUILDING.md CHANGELOG FAQ README.md )
+
+src_unpack() {
+	kde5_src_unpack
+	[[ ${KDE_BUILD_TYPE} = live && -n ${A} ]] && default
+}
+
+src_prepare() {
+	kde5_src_prepare
+	# get extra plugins into qupzilla build tree
+	mv "${WORKDIR}"/qupzilla-plugins-${PLUGINS_HASH}/plugins/* "${S}"/src/plugins/ || die
+}
+
+src_configure() {
+	local mycmakeargs=(
+		-DDISABLE_DBUS=$(usex dbus)
+		-DBUILD_KEYRING=$(usex gnome-keyring)
+		$(cmake-utils_use_find_package kwallet KF5Wallet)
+		-DNONBLOCK_JS_DIALOGS=$(usex nonblockdialogs)
+		-DNOT_X11=$(usex !X)
+		-DDISABLE_UPDATES_CHECK=OFF
+	)
+	kde5_src_configure
+}

diff --git a/www-client/falkon/metadata.xml b/www-client/falkon/metadata.xml
new file mode 100644
index 0000000000..97e1a6dcfd
--- /dev/null
+++ b/www-client/falkon/metadata.xml
@@ -0,0 +1,15 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+	<maintainer type="project">
+		<email>qt@gentoo.org</email>
+		<name>Gentoo Qt Project</name>
+	</maintainer>
+	<use>
+		<flag name="kwallet">Enable encrypted storage of passwords with <pkg>kde-frameworks/kwallet</pkg></flag>
+		<flag name="nonblockdialogs">Enable fancy non-blocking JavaScript dialogs
+			shown inside the page, not blocking the application window. When closing
+			browser windows with open dialogs, this can crash the application.
+		</flag>
+	</use>
+</pkgmetadata>


^ permalink raw reply related	[flat|nested] 41+ messages in thread

* [gentoo-commits] proj/kde:master commit in: www-client/falkon/
@ 2017-10-04 16:47 Andreas Sturmlechner
  0 siblings, 0 replies; 41+ messages in thread
From: Andreas Sturmlechner @ 2017-10-04 16:47 UTC (permalink / raw
  To: gentoo-commits

commit:     f7dc10d944f46786ae874d2503aa0c5cb3ff41ed
Author:     Perfect Gentleman <perfect007gentleman <AT> gmail <DOT> com>
AuthorDate: Wed Oct  4 04:38:19 2017 +0000
Commit:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Wed Oct  4 16:41:26 2017 +0000
URL:        https://gitweb.gentoo.org/proj/kde.git/commit/?id=f7dc10d9

www-client/falkon: Fix PLUGINS_VERSION, DOCS

Closes: https://github.com/gentoo/kde/pull/862

 www-client/falkon/falkon-9999.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/www-client/falkon/falkon-9999.ebuild b/www-client/falkon/falkon-9999.ebuild
index cab43a30f1..31bca77324 100644
--- a/www-client/falkon/falkon-9999.ebuild
+++ b/www-client/falkon/falkon-9999.ebuild
@@ -4,7 +4,7 @@
 EAPI=6
 
 PLUGINS_HASH="80fea7df7765fdf9c9c64fdb667052b25f1c0a22"
-PLUGINS_VERSION="2016.05.26" # if there are no updates, we can use the older archive
+PLUGINS_VERSION="2017.03.26" # if there are no updates, we can use the older archive
 # QT_MINIMAL="5.9.2"
 inherit kde5
 
@@ -42,7 +42,7 @@ DEPEND="${RDEPEND}
 	gnome-keyring? ( virtual/pkgconfig )
 "
 
-DOCS=( AUTHORS BUILDING.md CHANGELOG FAQ README.md )
+DOCS=( BUILDING.md CHANGELOG README.md )
 
 src_unpack() {
 	kde5_src_unpack


^ permalink raw reply related	[flat|nested] 41+ messages in thread

* [gentoo-commits] proj/kde:master commit in: www-client/falkon/
@ 2017-10-08  8:10 Johannes Huber
  0 siblings, 0 replies; 41+ messages in thread
From: Johannes Huber @ 2017-10-08  8:10 UTC (permalink / raw
  To: gentoo-commits

commit:     084740756716d1b22e89acc2bcb062e70616ee31
Author:     Johannes Huber <johu <AT> gentoo <DOT> org>
AuthorDate: Sun Oct  8 07:18:25 2017 +0000
Commit:     Johannes Huber <johu <AT> gentoo <DOT> org>
CommitDate: Sun Oct  8 07:18:25 2017 +0000
URL:        https://gitweb.gentoo.org/proj/kde.git/commit/?id=08474075

www-client/falkon: Raise QT_MINIMAL to 5.9.2

Package-Manager: Portage-2.3.11, Repoman-2.3.3

 www-client/falkon/falkon-9999.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/www-client/falkon/falkon-9999.ebuild b/www-client/falkon/falkon-9999.ebuild
index 31bca77324..63bb128ac6 100644
--- a/www-client/falkon/falkon-9999.ebuild
+++ b/www-client/falkon/falkon-9999.ebuild
@@ -5,7 +5,7 @@ EAPI=6
 
 PLUGINS_HASH="80fea7df7765fdf9c9c64fdb667052b25f1c0a22"
 PLUGINS_VERSION="2017.03.26" # if there are no updates, we can use the older archive
-# QT_MINIMAL="5.9.2"
+QT_MINIMAL="5.9.2"
 inherit kde5
 
 DESCRIPTION="Cross-platform web browser using QtWebEngine"


^ permalink raw reply related	[flat|nested] 41+ messages in thread

* [gentoo-commits] proj/kde:master commit in: www-client/falkon/
@ 2017-10-08 18:09 Andreas Sturmlechner
  0 siblings, 0 replies; 41+ messages in thread
From: Andreas Sturmlechner @ 2017-10-08 18:09 UTC (permalink / raw
  To: gentoo-commits

commit:     db56bb4b57f98982b6917847a18175f36125d189
Author:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Sun Oct  8 17:43:46 2017 +0000
Commit:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Sun Oct  8 18:08:44 2017 +0000
URL:        https://gitweb.gentoo.org/proj/kde.git/commit/?id=db56bb4b

www-client/falkon: Fix cmake warning, tests handling, missing blocker

Package-Manager: Portage-2.3.11, Repoman-2.3.3

 www-client/falkon/falkon-9999.ebuild | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/www-client/falkon/falkon-9999.ebuild b/www-client/falkon/falkon-9999.ebuild
index 63bb128ac6..e35481cd32 100644
--- a/www-client/falkon/falkon-9999.ebuild
+++ b/www-client/falkon/falkon-9999.ebuild
@@ -5,6 +5,9 @@ EAPI=6
 
 PLUGINS_HASH="80fea7df7765fdf9c9c64fdb667052b25f1c0a22"
 PLUGINS_VERSION="2017.03.26" # if there are no updates, we can use the older archive
+
+KDE_TEST="forceoptional-recursive"
+KDE_TESTPATTERN="tests\/autotests"
 QT_MINIMAL="5.9.2"
 inherit kde5
 
@@ -61,7 +64,7 @@ src_configure() {
 		-DBUILD_KEYRING=$(usex gnome-keyring)
 		$(cmake-utils_use_find_package kwallet KF5Wallet)
 		-DNONBLOCK_JS_DIALOGS=$(usex nonblockdialogs)
-		-DNOT_X11=$(usex !X)
+		-DNO_X11=$(usex !X)
 		-DDISABLE_UPDATES_CHECK=OFF
 	)
 	kde5_src_configure


^ permalink raw reply related	[flat|nested] 41+ messages in thread

* [gentoo-commits] proj/kde:master commit in: www-client/falkon/
@ 2017-10-08 19:07 Andreas Sturmlechner
  0 siblings, 0 replies; 41+ messages in thread
From: Andreas Sturmlechner @ 2017-10-08 19:07 UTC (permalink / raw
  To: gentoo-commits

commit:     30c1aaff4b717c2783bae5fb535e3cd7ee12f834
Author:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Sun Oct  8 19:07:33 2017 +0000
Commit:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Sun Oct  8 19:07:33 2017 +0000
URL:        https://gitweb.gentoo.org/proj/kde.git/commit/?id=30c1aaff

www-client/falkon: Add missing blocker

Package-Manager: Portage-2.3.11, Repoman-2.3.3

 www-client/falkon/falkon-9999.ebuild | 7 +++++--
 1 file changed, 5 insertions(+), 2 deletions(-)

diff --git a/www-client/falkon/falkon-9999.ebuild b/www-client/falkon/falkon-9999.ebuild
index e35481cd32..666068deb2 100644
--- a/www-client/falkon/falkon-9999.ebuild
+++ b/www-client/falkon/falkon-9999.ebuild
@@ -20,7 +20,7 @@ SLOT="0"
 KEYWORDS=""
 IUSE="dbus gnome-keyring kwallet libressl nonblockdialogs +X"
 
-RDEPEND="
+COMMON_DEPEND="
 	$(add_qt_dep qtdeclarative 'widgets')
 	$(add_qt_dep qtgui)
 	$(add_qt_dep qtnetwork 'ssl')
@@ -39,11 +39,14 @@ RDEPEND="
 		x11-libs/libxcb:=
 	)
 "
-DEPEND="${RDEPEND}
+DEPEND="${COMMON_RDEPEND}
 	$(add_qt_dep linguist-tools)
 	$(add_qt_dep qtconcurrent)
 	gnome-keyring? ( virtual/pkgconfig )
 "
+RDEPEND="${COMMON_RDEPEND}
+	!www-client/qupzilla
+"
 
 DOCS=( BUILDING.md CHANGELOG README.md )
 


^ permalink raw reply related	[flat|nested] 41+ messages in thread

* [gentoo-commits] proj/kde:master commit in: www-client/falkon/
@ 2017-10-11 16:14 Johannes Huber
  0 siblings, 0 replies; 41+ messages in thread
From: Johannes Huber @ 2017-10-11 16:14 UTC (permalink / raw
  To: gentoo-commits

commit:     48da07e6ce7fc1c033dbd9434c0a322210e9adcd
Author:     Jan Kundrát <jkt <AT> kde <DOT> org>
AuthorDate: Tue Oct 10 16:45:37 2017 +0000
Commit:     Johannes Huber <johu <AT> gentoo <DOT> org>
CommitDate: Wed Oct 11 16:13:20 2017 +0000
URL:        https://gitweb.gentoo.org/proj/kde.git/commit/?id=48da07e6

www-client/falkon: Fix dbus configure option

...because it was actually implemented backwards.

Closes: https://github.com/gentoo/kde/pull/864
Signed-off-by: Johannes Huber <johu <AT> gentoo.org>

 www-client/falkon/falkon-9999.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/www-client/falkon/falkon-9999.ebuild b/www-client/falkon/falkon-9999.ebuild
index 666068deb2..e917a90c7e 100644
--- a/www-client/falkon/falkon-9999.ebuild
+++ b/www-client/falkon/falkon-9999.ebuild
@@ -63,7 +63,7 @@ src_prepare() {
 
 src_configure() {
 	local mycmakeargs=(
-		-DDISABLE_DBUS=$(usex dbus)
+		-DDISABLE_DBUS=$(usex dbus no yes)
 		-DBUILD_KEYRING=$(usex gnome-keyring)
 		$(cmake-utils_use_find_package kwallet KF5Wallet)
 		-DNONBLOCK_JS_DIALOGS=$(usex nonblockdialogs)


^ permalink raw reply related	[flat|nested] 41+ messages in thread

* [gentoo-commits] proj/kde:master commit in: www-client/falkon/
@ 2017-10-11 16:17 Johannes Huber
  0 siblings, 0 replies; 41+ messages in thread
From: Johannes Huber @ 2017-10-11 16:17 UTC (permalink / raw
  To: gentoo-commits

commit:     fa3b3b75991683ee3c336baa1c920f133f488c6e
Author:     Johannes Huber <johu <AT> gentoo <DOT> org>
AuthorDate: Wed Oct 11 16:17:31 2017 +0000
Commit:     Johannes Huber <johu <AT> gentoo <DOT> org>
CommitDate: Wed Oct 11 16:17:31 2017 +0000
URL:        https://gitweb.gentoo.org/proj/kde.git/commit/?id=fa3b3b75

www-client/falkon: Simplify configure switch

Package-Manager: Portage-2.3.11, Repoman-2.3.3

 www-client/falkon/falkon-9999.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/www-client/falkon/falkon-9999.ebuild b/www-client/falkon/falkon-9999.ebuild
index e917a90c7e..4f40dc5a2d 100644
--- a/www-client/falkon/falkon-9999.ebuild
+++ b/www-client/falkon/falkon-9999.ebuild
@@ -63,7 +63,7 @@ src_prepare() {
 
 src_configure() {
 	local mycmakeargs=(
-		-DDISABLE_DBUS=$(usex dbus no yes)
+		-DDISABLE_DBUS=$(usex !dbus)
 		-DBUILD_KEYRING=$(usex gnome-keyring)
 		$(cmake-utils_use_find_package kwallet KF5Wallet)
 		-DNONBLOCK_JS_DIALOGS=$(usex nonblockdialogs)


^ permalink raw reply related	[flat|nested] 41+ messages in thread

* [gentoo-commits] proj/kde:master commit in: www-client/falkon/
@ 2017-10-20 17:50 Andreas Sturmlechner
  0 siblings, 0 replies; 41+ messages in thread
From: Andreas Sturmlechner @ 2017-10-20 17:50 UTC (permalink / raw
  To: gentoo-commits

commit:     a0ad3be9232134f04b2e45d6e8989ba43a4420ea
Author:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Fri Oct 20 17:50:19 2017 +0000
Commit:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Fri Oct 20 17:50:19 2017 +0000
URL:        https://gitweb.gentoo.org/proj/kde.git/commit/?id=a0ad3be9

www-client/falkon: Drop QUPZILLA_PLUGINS

They are not on kde resources and not meant for falkon.

Package-Manager: Portage-2.3.12, Repoman-2.3.3

 www-client/falkon/falkon-9999.ebuild | 15 ---------------
 1 file changed, 15 deletions(-)

diff --git a/www-client/falkon/falkon-9999.ebuild b/www-client/falkon/falkon-9999.ebuild
index 4f40dc5a2d..28efdd3e34 100644
--- a/www-client/falkon/falkon-9999.ebuild
+++ b/www-client/falkon/falkon-9999.ebuild
@@ -3,9 +3,6 @@
 
 EAPI=6
 
-PLUGINS_HASH="80fea7df7765fdf9c9c64fdb667052b25f1c0a22"
-PLUGINS_VERSION="2017.03.26" # if there are no updates, we can use the older archive
-
 KDE_TEST="forceoptional-recursive"
 KDE_TESTPATTERN="tests\/autotests"
 QT_MINIMAL="5.9.2"
@@ -13,7 +10,6 @@ inherit kde5
 
 DESCRIPTION="Cross-platform web browser using QtWebEngine"
 HOMEPAGE="https://www.qupzilla.com/"
-SRC_URI+=" https://github.com/QupZilla/qupzilla-plugins/archive/${PLUGINS_HASH}.tar.gz -> qupzilla-plugins-${PLUGINS_VERSION}.tar.gz"
 
 LICENSE="GPL-3"
 SLOT="0"
@@ -50,17 +46,6 @@ RDEPEND="${COMMON_RDEPEND}
 
 DOCS=( BUILDING.md CHANGELOG README.md )
 
-src_unpack() {
-	kde5_src_unpack
-	[[ ${KDE_BUILD_TYPE} = live && -n ${A} ]] && default
-}
-
-src_prepare() {
-	kde5_src_prepare
-	# get extra plugins into qupzilla build tree
-	mv "${WORKDIR}"/qupzilla-plugins-${PLUGINS_HASH}/plugins/* "${S}"/src/plugins/ || die
-}
-
 src_configure() {
 	local mycmakeargs=(
 		-DDISABLE_DBUS=$(usex !dbus)


^ permalink raw reply related	[flat|nested] 41+ messages in thread

* [gentoo-commits] proj/kde:master commit in: www-client/falkon/
@ 2017-10-23 11:06 Michael Palimaka
  0 siblings, 0 replies; 41+ messages in thread
From: Michael Palimaka @ 2017-10-23 11:06 UTC (permalink / raw
  To: gentoo-commits

commit:     950dce98f5356fdb4cb35d21d543c26db912e374
Author:     Michael Palimaka <kensington <AT> gentoo <DOT> org>
AuthorDate: Mon Oct 23 11:06:20 2017 +0000
Commit:     Michael Palimaka <kensington <AT> gentoo <DOT> org>
CommitDate: Mon Oct 23 11:06:31 2017 +0000
URL:        https://gitweb.gentoo.org/proj/kde.git/commit/?id=950dce98

www-client/falkon: fix dependencies

Closes: https://bugs.gentoo.org/635152
Package-Manager: Portage-2.3.8, Repoman-2.3.3

 www-client/falkon/falkon-9999.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/www-client/falkon/falkon-9999.ebuild b/www-client/falkon/falkon-9999.ebuild
index 28efdd3e34..91e58c788c 100644
--- a/www-client/falkon/falkon-9999.ebuild
+++ b/www-client/falkon/falkon-9999.ebuild
@@ -35,12 +35,12 @@ COMMON_DEPEND="
 		x11-libs/libxcb:=
 	)
 "
-DEPEND="${COMMON_RDEPEND}
+DEPEND="${COMMON_DEPEND}
 	$(add_qt_dep linguist-tools)
 	$(add_qt_dep qtconcurrent)
 	gnome-keyring? ( virtual/pkgconfig )
 "
-RDEPEND="${COMMON_RDEPEND}
+RDEPEND="${COMMON_DEPEND}
 	!www-client/qupzilla
 "
 


^ permalink raw reply related	[flat|nested] 41+ messages in thread

* [gentoo-commits] proj/kde:master commit in: www-client/falkon/
@ 2017-12-28 10:58 Andreas Sturmlechner
  0 siblings, 0 replies; 41+ messages in thread
From: Andreas Sturmlechner @ 2017-12-28 10:58 UTC (permalink / raw
  To: gentoo-commits

commit:     3e3bdd36be2474b66e0cf6db8fd11d09f5308866
Author:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Thu Dec 28 10:57:53 2017 +0000
Commit:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Thu Dec 28 10:58:07 2017 +0000
URL:        https://gitweb.gentoo.org/proj/kde.git/commit/?id=3e3bdd36

www-client/falkon: Add missing RDEPEND on dev-qt/qtsvg:5

Package is loading svg icons at runtime.

Package-Manager: Portage-2.3.19, Repoman-2.3.6

 www-client/falkon/falkon-9999.ebuild | 1 +
 1 file changed, 1 insertion(+)

diff --git a/www-client/falkon/falkon-9999.ebuild b/www-client/falkon/falkon-9999.ebuild
index 91e58c788c..873761e1ce 100644
--- a/www-client/falkon/falkon-9999.ebuild
+++ b/www-client/falkon/falkon-9999.ebuild
@@ -42,6 +42,7 @@ DEPEND="${COMMON_DEPEND}
 "
 RDEPEND="${COMMON_DEPEND}
 	!www-client/qupzilla
+	$(add_qt_dep qtsvg)
 "
 
 DOCS=( BUILDING.md CHANGELOG README.md )


^ permalink raw reply related	[flat|nested] 41+ messages in thread

* [gentoo-commits] proj/kde:master commit in: www-client/falkon/
@ 2018-01-24 16:45 Andreas Sturmlechner
  0 siblings, 0 replies; 41+ messages in thread
From: Andreas Sturmlechner @ 2018-01-24 16:45 UTC (permalink / raw
  To: gentoo-commits

commit:     8102493fbc93854f46745724750701acdf937186
Author:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Wed Jan 24 16:45:42 2018 +0000
Commit:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Wed Jan 24 16:45:42 2018 +0000
URL:        https://gitweb.gentoo.org/proj/kde.git/commit/?id=8102493f

www-client/falkon: Set KDE_TEST=true, drop USE=nonblockdialogs

Package-Manager: Portage-2.3.20, Repoman-2.3.6

 www-client/falkon/falkon-9999.ebuild | 6 ++----
 www-client/falkon/metadata.xml       | 4 ----
 2 files changed, 2 insertions(+), 8 deletions(-)

diff --git a/www-client/falkon/falkon-9999.ebuild b/www-client/falkon/falkon-9999.ebuild
index a500535c43..9d0d99cb64 100644
--- a/www-client/falkon/falkon-9999.ebuild
+++ b/www-client/falkon/falkon-9999.ebuild
@@ -3,8 +3,7 @@
 
 EAPI=6
 
-KDE_TEST="forceoptional-recursive"
-KDE_TESTPATTERN="tests\/autotests"
+KDE_TEST="true"
 QT_MINIMAL="5.9.2"
 inherit kde5
 
@@ -14,7 +13,7 @@ HOMEPAGE="https://www.qupzilla.com/"
 LICENSE="GPL-3"
 SLOT="0"
 KEYWORDS=""
-IUSE="dbus gnome-keyring kwallet libressl nonblockdialogs +X"
+IUSE="dbus gnome-keyring kwallet libressl +X"
 
 COMMON_DEPEND="
 	$(add_qt_dep qtdeclarative 'widgets')
@@ -52,7 +51,6 @@ src_configure() {
 		-DDISABLE_DBUS=$(usex !dbus)
 		-DBUILD_KEYRING=$(usex gnome-keyring)
 		$(cmake-utils_use_find_package kwallet KF5Wallet)
-		-DNONBLOCK_JS_DIALOGS=$(usex nonblockdialogs)
 		-DNO_X11=$(usex !X)
 		-DDISABLE_UPDATES_CHECK=OFF
 	)

diff --git a/www-client/falkon/metadata.xml b/www-client/falkon/metadata.xml
index 97e1a6dcfd..007c58ff2b 100644
--- a/www-client/falkon/metadata.xml
+++ b/www-client/falkon/metadata.xml
@@ -7,9 +7,5 @@
 	</maintainer>
 	<use>
 		<flag name="kwallet">Enable encrypted storage of passwords with <pkg>kde-frameworks/kwallet</pkg></flag>
-		<flag name="nonblockdialogs">Enable fancy non-blocking JavaScript dialogs
-			shown inside the page, not blocking the application window. When closing
-			browser windows with open dialogs, this can crash the application.
-		</flag>
 	</use>
 </pkgmetadata>


^ permalink raw reply related	[flat|nested] 41+ messages in thread

* [gentoo-commits] proj/kde:master commit in: www-client/falkon/
@ 2018-01-25 19:17 Jimi Huotari
  0 siblings, 0 replies; 41+ messages in thread
From: Jimi Huotari @ 2018-01-25 19:17 UTC (permalink / raw
  To: gentoo-commits

commit:     0d083fc84376e65e260406c10dafab8dcddfc43a
Author:     Jimi Huotari <chiitoo <AT> gentoo <DOT> org>
AuthorDate: Thu Jan 25 19:01:04 2018 +0000
Commit:     Jimi Huotari <chiitoo <AT> gentoo <DOT> org>
CommitDate: Thu Jan 25 19:10:12 2018 +0000
URL:        https://gitweb.gentoo.org/proj/kde.git/commit/?id=0d083fc8

www-client/falkon: Remove 'DISABLE_UPDATES_CHECK' from configure.

Upstream-Commit: 6f20d5e5117a986e03d4b16ffbb4050fd1c0e733

Package-Manager: Portage-2.3.20, Repoman-2.3.6

 www-client/falkon/falkon-9999.ebuild | 1 -
 1 file changed, 1 deletion(-)

diff --git a/www-client/falkon/falkon-9999.ebuild b/www-client/falkon/falkon-9999.ebuild
index 9b09b1cab6..9c33059531 100644
--- a/www-client/falkon/falkon-9999.ebuild
+++ b/www-client/falkon/falkon-9999.ebuild
@@ -50,7 +50,6 @@ src_configure() {
 		-DBUILD_KEYRING=$(usex gnome-keyring)
 		$(cmake-utils_use_find_package kwallet KF5Wallet)
 		-DNO_X11=$(usex !X)
-		-DDISABLE_UPDATES_CHECK=OFF
 	)
 	kde5_src_configure
 }


^ permalink raw reply related	[flat|nested] 41+ messages in thread

* [gentoo-commits] proj/kde:master commit in: www-client/falkon/
@ 2018-01-25 19:17 Jimi Huotari
  0 siblings, 0 replies; 41+ messages in thread
From: Jimi Huotari @ 2018-01-25 19:17 UTC (permalink / raw
  To: gentoo-commits

commit:     a4029aef660320523f9f71411b3eba60e07289cd
Author:     Jimi Huotari <chiitoo <AT> gentoo <DOT> org>
AuthorDate: Thu Jan 25 11:14:34 2018 +0000
Commit:     Jimi Huotari <chiitoo <AT> gentoo <DOT> org>
CommitDate: Thu Jan 25 19:08:56 2018 +0000
URL:        https://gitweb.gentoo.org/proj/kde.git/commit/?id=a4029aef

www-client/falkon: Remove unneeded 'DOCS'.

Upstream has removed 'BUILDING.md', and the remaining documentation
is installed even without specifying them via 'DOCS'.

Upstream-Commit: 3aa237b55f2b80d81562e8b1b0202c6d9b8be23c

Package-Manager: Portage-2.3.20, Repoman-2.3.6

 www-client/falkon/falkon-9999.ebuild | 2 --
 1 file changed, 2 deletions(-)

diff --git a/www-client/falkon/falkon-9999.ebuild b/www-client/falkon/falkon-9999.ebuild
index 9d0d99cb64..9b09b1cab6 100644
--- a/www-client/falkon/falkon-9999.ebuild
+++ b/www-client/falkon/falkon-9999.ebuild
@@ -44,8 +44,6 @@ RDEPEND="${COMMON_DEPEND}
 	$(add_qt_dep qtsvg)
 "
 
-DOCS=( BUILDING.md CHANGELOG README.md )
-
 src_configure() {
 	local mycmakeargs=(
 		-DDISABLE_DBUS=$(usex !dbus)


^ permalink raw reply related	[flat|nested] 41+ messages in thread

* [gentoo-commits] proj/kde:master commit in: www-client/falkon/
@ 2018-03-01 13:20 Andreas Sturmlechner
  0 siblings, 0 replies; 41+ messages in thread
From: Andreas Sturmlechner @ 2018-03-01 13:20 UTC (permalink / raw
  To: gentoo-commits

commit:     6500fe131649873c33c990e2d0416e0ae434db3c
Author:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Thu Mar  1 13:19:50 2018 +0000
Commit:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Thu Mar  1 13:19:50 2018 +0000
URL:        https://gitweb.gentoo.org/proj/kde.git/commit/?id=6500fe13

www-client/falkon: Add migration info to pkg_postinst

Package-Manager: Portage-2.3.24, Repoman-2.3.6

 www-client/falkon/falkon-9999.ebuild | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/www-client/falkon/falkon-9999.ebuild b/www-client/falkon/falkon-9999.ebuild
index 9c33059531..ddbeac9e7b 100644
--- a/www-client/falkon/falkon-9999.ebuild
+++ b/www-client/falkon/falkon-9999.ebuild
@@ -53,3 +53,9 @@ src_configure() {
 	)
 	kde5_src_configure
 }
+
+pkg_postinst() {
+	kde5_pkg_postinst
+	elog "If you were previously using QupZilla, you can manually migrate your profiles"
+	elog "by moving the config directory from ~/.config/qupzilla to ~/.config/falkon"
+}


^ permalink raw reply related	[flat|nested] 41+ messages in thread

* [gentoo-commits] proj/kde:master commit in: www-client/falkon/
@ 2018-03-17  0:27 Andreas Sturmlechner
  0 siblings, 0 replies; 41+ messages in thread
From: Andreas Sturmlechner @ 2018-03-17  0:27 UTC (permalink / raw
  To: gentoo-commits

commit:     5f78ff6f11d682dc7dd983b6420bc36a82139bf2
Author:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Sat Mar 17 00:15:09 2018 +0000
Commit:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Sat Mar 17 00:24:16 2018 +0000
URL:        https://gitweb.gentoo.org/proj/kde.git/commit/?id=5f78ff6f

www-client/falkon: Rename USE kwallet -> kde, add new DEPEND

Upstream commit 933dadc6b2e80c6b3bc22c2bc7f63a7598f7afc3

Package-Manager: Portage-2.3.24, Repoman-2.3.6

 www-client/falkon/falkon-9999.ebuild | 10 +++++++---
 www-client/falkon/metadata.xml       |  3 ---
 2 files changed, 7 insertions(+), 6 deletions(-)

diff --git a/www-client/falkon/falkon-9999.ebuild b/www-client/falkon/falkon-9999.ebuild
index ddbeac9e7b..f59475d55d 100644
--- a/www-client/falkon/falkon-9999.ebuild
+++ b/www-client/falkon/falkon-9999.ebuild
@@ -13,7 +13,7 @@ HOMEPAGE="https://www.qupzilla.com/"
 LICENSE="GPL-3"
 SLOT="0"
 KEYWORDS=""
-IUSE="dbus gnome-keyring kwallet libressl +X"
+IUSE="dbus gnome-keyring kde libressl +X"
 
 COMMON_DEPEND="
 	$(add_qt_dep qtdeclarative 'widgets')
@@ -26,7 +26,10 @@ COMMON_DEPEND="
 	$(add_qt_dep qtwidgets)
 	dbus? ( $(add_qt_dep qtdbus) )
 	gnome-keyring? ( gnome-base/gnome-keyring )
-	kwallet? ( $(add_frameworks_dep kwallet) )
+	kde? (
+		$(add_frameworks_dep kio)
+		$(add_frameworks_dep kwallet)
+	)
 	libressl? ( dev-libs/libressl:= )
 	!libressl? ( dev-libs/openssl:0= )
 	X? (
@@ -48,7 +51,8 @@ src_configure() {
 	local mycmakeargs=(
 		-DDISABLE_DBUS=$(usex !dbus)
 		-DBUILD_KEYRING=$(usex gnome-keyring)
-		$(cmake-utils_use_find_package kwallet KF5Wallet)
+		$(cmake-utils_use_find_package kde KF5Wallet)
+		$(cmake-utils_use_find_package kde KF5KIO)
 		-DNO_X11=$(usex !X)
 	)
 	kde5_src_configure

diff --git a/www-client/falkon/metadata.xml b/www-client/falkon/metadata.xml
index 007c58ff2b..17237689dc 100644
--- a/www-client/falkon/metadata.xml
+++ b/www-client/falkon/metadata.xml
@@ -5,7 +5,4 @@
 		<email>qt@gentoo.org</email>
 		<name>Gentoo Qt Project</name>
 	</maintainer>
-	<use>
-		<flag name="kwallet">Enable encrypted storage of passwords with <pkg>kde-frameworks/kwallet</pkg></flag>
-	</use>
 </pkgmetadata>


^ permalink raw reply related	[flat|nested] 41+ messages in thread

* [gentoo-commits] proj/kde:master commit in: www-client/falkon/
@ 2018-04-03 15:24 Andreas Sturmlechner
  0 siblings, 0 replies; 41+ messages in thread
From: Andreas Sturmlechner @ 2018-04-03 15:24 UTC (permalink / raw
  To: gentoo-commits

commit:     fea5030a70b1a59b9f9399b5e143a26953223d58
Author:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Tue Apr  3 15:21:26 2018 +0000
Commit:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Tue Apr  3 15:23:01 2018 +0000
URL:        https://gitweb.gentoo.org/proj/kde.git/commit/?id=fea5030a

www-client/falkon: Fix maintainer

Package-Manager: Portage-2.3.28, Repoman-2.3.9

 www-client/falkon/metadata.xml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/www-client/falkon/metadata.xml b/www-client/falkon/metadata.xml
index 17237689dc..2fdbf33d96 100644
--- a/www-client/falkon/metadata.xml
+++ b/www-client/falkon/metadata.xml
@@ -2,7 +2,7 @@
 <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
 <pkgmetadata>
 	<maintainer type="project">
-		<email>qt@gentoo.org</email>
-		<name>Gentoo Qt Project</name>
+		<email>kde@gentoo.org</email>
+		<name>Gentoo KDE Project</name>
 	</maintainer>
 </pkgmetadata>


^ permalink raw reply related	[flat|nested] 41+ messages in thread

* [gentoo-commits] proj/kde:master commit in: www-client/falkon/
@ 2018-04-05 21:57 Andreas Sturmlechner
  0 siblings, 0 replies; 41+ messages in thread
From: Andreas Sturmlechner @ 2018-04-05 21:57 UTC (permalink / raw
  To: gentoo-commits

commit:     55ae2703ec18727bb03cc817ba7fa626694c29f2
Author:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Thu Apr  5 20:14:02 2018 +0000
Commit:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Thu Apr  5 20:14:05 2018 +0000
URL:        https://gitweb.gentoo.org/proj/kde.git/commit/?id=55ae2703

www-client/falkon: Set VIRTUALX_REQUIRED="test"

Package-Manager: Portage-2.3.28, Repoman-2.3.9

 www-client/falkon/falkon-9999.ebuild | 1 +
 1 file changed, 1 insertion(+)

diff --git a/www-client/falkon/falkon-9999.ebuild b/www-client/falkon/falkon-9999.ebuild
index ebfe0d3cb1..9b76a2c425 100644
--- a/www-client/falkon/falkon-9999.ebuild
+++ b/www-client/falkon/falkon-9999.ebuild
@@ -4,6 +4,7 @@
 EAPI=6
 
 KDE_TEST="true"
+VIRTUALX_REQUIRED="test"
 inherit kde5
 
 DESCRIPTION="Cross-platform web browser using QtWebEngine"


^ permalink raw reply related	[flat|nested] 41+ messages in thread

* [gentoo-commits] proj/kde:master commit in: www-client/falkon/
@ 2018-04-12 18:40 Andreas Sturmlechner
  0 siblings, 0 replies; 41+ messages in thread
From: Andreas Sturmlechner @ 2018-04-12 18:40 UTC (permalink / raw
  To: gentoo-commits

commit:     e3ae240a403c98cdc4f81cd1da618cdc0cfebff9
Author:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Thu Apr 12 18:38:30 2018 +0000
Commit:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Thu Apr 12 18:38:30 2018 +0000
URL:        https://gitweb.gentoo.org/proj/kde.git/commit/?id=e3ae240a

www-client/falkon: Release switch

Package-Manager: Portage-2.3.28, Repoman-2.3.9

 www-client/falkon/falkon-9999.ebuild | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/www-client/falkon/falkon-9999.ebuild b/www-client/falkon/falkon-9999.ebuild
index 9b76a2c425..fef4acff8a 100644
--- a/www-client/falkon/falkon-9999.ebuild
+++ b/www-client/falkon/falkon-9999.ebuild
@@ -7,12 +7,16 @@ KDE_TEST="true"
 VIRTUALX_REQUIRED="test"
 inherit kde5
 
+if [[ ${KDE_BUILD_TYPE} != live ]]; then
+	SRC_URI="mirror://kde/stable/${PN}/${PV%.0}/src/${P}.tar.xz"
+	KEYWORDS="~amd64 ~x86"
+fi
+
 DESCRIPTION="Cross-platform web browser using QtWebEngine"
 HOMEPAGE="https://www.qupzilla.com/"
 
 LICENSE="GPL-3"
 SLOT="0"
-KEYWORDS=""
 IUSE="dbus gnome-keyring kde libressl +X"
 
 COMMON_DEPEND="


^ permalink raw reply related	[flat|nested] 41+ messages in thread

* [gentoo-commits] proj/kde:master commit in: www-client/falkon/
@ 2018-04-12 18:40 Andreas Sturmlechner
  0 siblings, 0 replies; 41+ messages in thread
From: Andreas Sturmlechner @ 2018-04-12 18:40 UTC (permalink / raw
  To: gentoo-commits

commit:     78d43d3e1009287c3ee01dfe3e4268d94538e780
Author:     Francesco Turco <fturco <AT> fastmail <DOT> fm>
AuthorDate: Thu Apr 12 18:09:47 2018 +0000
Commit:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Thu Apr 12 18:40:21 2018 +0000
URL:        https://gitweb.gentoo.org/proj/kde.git/commit/?id=78d43d3e

www-client/falkon: update HOMEPAGE

Closes: https://github.com/gentoo/gentoo/pull/7958

 www-client/falkon/falkon-9999.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/www-client/falkon/falkon-9999.ebuild b/www-client/falkon/falkon-9999.ebuild
index fef4acff8a..34ecd9d1a2 100644
--- a/www-client/falkon/falkon-9999.ebuild
+++ b/www-client/falkon/falkon-9999.ebuild
@@ -13,7 +13,7 @@ if [[ ${KDE_BUILD_TYPE} != live ]]; then
 fi
 
 DESCRIPTION="Cross-platform web browser using QtWebEngine"
-HOMEPAGE="https://www.qupzilla.com/"
+HOMEPAGE="https://www.falkon.org/"
 
 LICENSE="GPL-3"
 SLOT="0"


^ permalink raw reply related	[flat|nested] 41+ messages in thread

* [gentoo-commits] proj/kde:master commit in: www-client/falkon/
@ 2018-05-09  7:43 Andreas Sturmlechner
  0 siblings, 0 replies; 41+ messages in thread
From: Andreas Sturmlechner @ 2018-05-09  7:43 UTC (permalink / raw
  To: gentoo-commits

commit:     64e9c65a54f540f3a9d2cea75362553da2095fa1
Author:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Wed May  9 07:37:41 2018 +0000
Commit:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Wed May  9 07:43:32 2018 +0000
URL:        https://gitweb.gentoo.org/proj/kde.git/commit/?id=64e9c65a

www-client/falkon: Add missing DEPENDs

Package-Manager: Portage-2.3.36, Repoman-2.3.9

 www-client/falkon/falkon-9999.ebuild | 1 +
 1 file changed, 1 insertion(+)

diff --git a/www-client/falkon/falkon-9999.ebuild b/www-client/falkon/falkon-9999.ebuild
index 34ecd9d1a2..0dad5d2db9 100644
--- a/www-client/falkon/falkon-9999.ebuild
+++ b/www-client/falkon/falkon-9999.ebuild
@@ -39,6 +39,7 @@ COMMON_DEPEND="
 	X? (
 		$(add_qt_dep qtx11extras)
 		x11-libs/libxcb:=
+		x11-libs/xcb-util
 	)
 "
 DEPEND="${COMMON_DEPEND}


^ permalink raw reply related	[flat|nested] 41+ messages in thread

* [gentoo-commits] proj/kde:master commit in: www-client/falkon/
@ 2018-05-09  7:47 Andreas Sturmlechner
  0 siblings, 0 replies; 41+ messages in thread
From: Andreas Sturmlechner @ 2018-05-09  7:47 UTC (permalink / raw
  To: gentoo-commits

commit:     f76b682a4bf613f810d78876dbe3515988876b5e
Author:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Wed May  9 07:37:41 2018 +0000
Commit:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Wed May  9 07:45:42 2018 +0000
URL:        https://gitweb.gentoo.org/proj/kde.git/commit/?id=f76b682a

www-client/falkon: Add missing DEPENDs

Package-Manager: Portage-2.3.36, Repoman-2.3.9

 www-client/falkon/falkon-9999.ebuild | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/www-client/falkon/falkon-9999.ebuild b/www-client/falkon/falkon-9999.ebuild
index 0dad5d2db9..3fee51dcca 100644
--- a/www-client/falkon/falkon-9999.ebuild
+++ b/www-client/falkon/falkon-9999.ebuild
@@ -31,6 +31,8 @@ COMMON_DEPEND="
 	dbus? ( $(add_qt_dep qtdbus) )
 	gnome-keyring? ( gnome-base/gnome-keyring )
 	kde? (
+		$(add_frameworks_dep kcoreaddons)
+		$(add_frameworks_dep kcrash)
 		$(add_frameworks_dep kio)
 		$(add_frameworks_dep kwallet)
 	)
@@ -47,6 +49,9 @@ DEPEND="${COMMON_DEPEND}
 	$(add_qt_dep qtconcurrent)
 	gnome-keyring? ( virtual/pkgconfig )
 "
+if [[ ${KDE_BUILD_TYPE} != live ]]; then
+	DEPEND+=" $(add_frameworks_dep ki18n)"
+fi
 RDEPEND="${COMMON_DEPEND}
 	!www-client/qupzilla
 	$(add_qt_dep qtsvg)


^ permalink raw reply related	[flat|nested] 41+ messages in thread

* [gentoo-commits] proj/kde:master commit in: www-client/falkon/
@ 2019-01-26 23:45 Andreas Sturmlechner
  0 siblings, 0 replies; 41+ messages in thread
From: Andreas Sturmlechner @ 2019-01-26 23:45 UTC (permalink / raw
  To: gentoo-commits

commit:     0791c1280a67241999355c95f20b27aea9b3c9d8
Author:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Sat Jan 26 20:43:52 2019 +0000
Commit:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Sat Jan 26 20:43:52 2019 +0000
URL:        https://gitweb.gentoo.org/proj/kde.git/commit/?id=0791c128

www-client/falkon: Add slot op on dev-qt/qtwebengine

Upstream commit ab43af9958a16cbead6a982248d68b52d1f4ee34

Package-Manager: Portage-2.3.58, Repoman-2.3.12
Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>

 www-client/falkon/falkon-9999.ebuild | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/www-client/falkon/falkon-9999.ebuild b/www-client/falkon/falkon-9999.ebuild
index 30b44d3959..c92b2e5f51 100644
--- a/www-client/falkon/falkon-9999.ebuild
+++ b/www-client/falkon/falkon-9999.ebuild
@@ -19,6 +19,7 @@ LICENSE="GPL-3"
 SLOT="0"
 IUSE="dbus gnome-keyring kde libressl +X"
 
+# drop qtwebengine subslot operator when QT_MINIMAL >= 5.12.0
 BDEPEND="gnome-keyring? ( virtual/pkgconfig )"
 COMMON_DEPEND="
 	$(add_qt_dep qtdeclarative 'widgets')
@@ -27,7 +28,7 @@ COMMON_DEPEND="
 	$(add_qt_dep qtprintsupport)
 	$(add_qt_dep qtsql 'sqlite')
 	$(add_qt_dep qtwebchannel)
-	$(add_qt_dep qtwebengine 'widgets')
+	$(add_qt_dep qtwebengine 'widgets' '' '5=')
 	$(add_qt_dep qtwidgets)
 	dbus? ( $(add_qt_dep qtdbus) )
 	gnome-keyring? ( gnome-base/gnome-keyring )


^ permalink raw reply related	[flat|nested] 41+ messages in thread

* [gentoo-commits] proj/kde:master commit in: www-client/falkon/
@ 2019-02-24 15:32 Andreas Sturmlechner
  0 siblings, 0 replies; 41+ messages in thread
From: Andreas Sturmlechner @ 2019-02-24 15:32 UTC (permalink / raw
  To: gentoo-commits

commit:     6361925c23ac7d41c8f28aa8f7c89c14253e22f3
Author:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Sun Feb 24 15:31:46 2019 +0000
Commit:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Sun Feb 24 15:32:31 2019 +0000
URL:        https://gitweb.gentoo.org/proj/kde.git/commit/?id=6361925c

www-client/falkon: Fix USE gnome DEPEND

Bug: https://bugs.gentoo.org/678608
Package-Manager: Portage-2.3.62, Repoman-2.3.12
Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>

 www-client/falkon/falkon-9999.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/www-client/falkon/falkon-9999.ebuild b/www-client/falkon/falkon-9999.ebuild
index c92b2e5f51..99bff646b9 100644
--- a/www-client/falkon/falkon-9999.ebuild
+++ b/www-client/falkon/falkon-9999.ebuild
@@ -31,7 +31,7 @@ COMMON_DEPEND="
 	$(add_qt_dep qtwebengine 'widgets' '' '5=')
 	$(add_qt_dep qtwidgets)
 	dbus? ( $(add_qt_dep qtdbus) )
-	gnome-keyring? ( gnome-base/gnome-keyring )
+	gnome-keyring? ( gnome-base/libgnome-keyring )
 	kde? (
 		$(add_frameworks_dep kcoreaddons)
 		$(add_frameworks_dep kcrash)


^ permalink raw reply related	[flat|nested] 41+ messages in thread

* [gentoo-commits] proj/kde:master commit in: www-client/falkon/
@ 2019-03-22 21:38 Andreas Sturmlechner
  0 siblings, 0 replies; 41+ messages in thread
From: Andreas Sturmlechner @ 2019-03-22 21:38 UTC (permalink / raw
  To: gentoo-commits

commit:     649198c67f7d8bc65fe14f8c44178b5519daebf6
Author:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Thu Mar 21 23:56:20 2019 +0000
Commit:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Thu Mar 21 23:56:33 2019 +0000
URL:        https://gitweb.gentoo.org/proj/kde.git/commit/?id=649198c6

www-client/falkon: Sync with Gentoo ebuild repo

Package-Manager: Portage-2.3.62, Repoman-2.3.12
Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>

 www-client/falkon/falkon-9999.ebuild | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/www-client/falkon/falkon-9999.ebuild b/www-client/falkon/falkon-9999.ebuild
index 99bff646b9..d125c17875 100644
--- a/www-client/falkon/falkon-9999.ebuild
+++ b/www-client/falkon/falkon-9999.ebuild
@@ -8,8 +8,8 @@ VIRTUALX_REQUIRED="test"
 inherit kde5
 
 if [[ ${KDE_BUILD_TYPE} != live ]]; then
-	SRC_URI="mirror://kde/stable/${PN}/${PV%.0}/src/${P}.tar.xz"
-	KEYWORDS="~amd64 ~x86"
+	SRC_URI="mirror://kde/stable/${PN}/${PV%.0}/${P}.tar.xz"
+	KEYWORDS="~amd64 ~arm64 ~x86"
 fi
 
 DESCRIPTION="Cross-platform web browser using QtWebEngine"
@@ -30,6 +30,7 @@ COMMON_DEPEND="
 	$(add_qt_dep qtwebchannel)
 	$(add_qt_dep qtwebengine 'widgets' '' '5=')
 	$(add_qt_dep qtwidgets)
+	virtual/libintl
 	dbus? ( $(add_qt_dep qtdbus) )
 	gnome-keyring? ( gnome-base/libgnome-keyring )
 	kde? (


^ permalink raw reply related	[flat|nested] 41+ messages in thread

* [gentoo-commits] proj/kde:master commit in: www-client/falkon/
@ 2019-04-27 18:27 Andreas Sturmlechner
  0 siblings, 0 replies; 41+ messages in thread
From: Andreas Sturmlechner @ 2019-04-27 18:27 UTC (permalink / raw
  To: gentoo-commits

commit:     25e85bf9b8c0758d763225c51658772f5cd178fd
Author:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Sat Apr 27 17:07:37 2019 +0000
Commit:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Sat Apr 27 17:12:33 2019 +0000
URL:        https://gitweb.gentoo.org/proj/kde.git/commit/?id=25e85bf9

www-client/falkon: Add new DEPEND

For downloading themes/extensions.

Upstream commit 5e6f92f7bc97f3cc1bd714e6a5cc925e86cf9d44

Reported-by: Arfrever Frehtes Taifersar Arahesis <Arfrever <AT> Apache.Org>
Package-Manager: Portage-2.3.65, Repoman-2.3.12
Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>

 www-client/falkon/falkon-9999.ebuild | 1 +
 1 file changed, 1 insertion(+)

diff --git a/www-client/falkon/falkon-9999.ebuild b/www-client/falkon/falkon-9999.ebuild
index f55465119a..a3f9099681 100644
--- a/www-client/falkon/falkon-9999.ebuild
+++ b/www-client/falkon/falkon-9999.ebuild
@@ -21,6 +21,7 @@ IUSE="dbus kde libressl +X"
 
 # drop qtwebengine subslot operator when QT_MINIMAL >= 5.12.0
 COMMON_DEPEND="
+	$(add_frameworks_dep karchive)
 	$(add_qt_dep qtdeclarative 'widgets')
 	$(add_qt_dep qtgui)
 	$(add_qt_dep qtnetwork 'ssl')


^ permalink raw reply related	[flat|nested] 41+ messages in thread

* [gentoo-commits] proj/kde:master commit in: www-client/falkon/
@ 2019-04-27 18:27 Andreas Sturmlechner
  0 siblings, 0 replies; 41+ messages in thread
From: Andreas Sturmlechner @ 2019-04-27 18:27 UTC (permalink / raw
  To: gentoo-commits

commit:     942add8d8657081a70dbb1754d38bdf684738421
Author:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Sat Apr 27 17:05:05 2019 +0000
Commit:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Sat Apr 27 17:05:23 2019 +0000
URL:        https://gitweb.gentoo.org/proj/kde.git/commit/?id=942add8d

www-client/falkon: Drop USE gnome-keyring

Well, that was short-lived:
"Modern distributions no longer have the deprecated library in repos."

Upstream commit b9fb89a31ca6966412a60a30f4080949839aa839

Reported-by: Arfrever Frehtes Taifersar Arahesis <Arfrever <AT> Apache.Org>
Package-Manager: Portage-2.3.65, Repoman-2.3.12
Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>

 www-client/falkon/falkon-9999.ebuild | 5 +----
 1 file changed, 1 insertion(+), 4 deletions(-)

diff --git a/www-client/falkon/falkon-9999.ebuild b/www-client/falkon/falkon-9999.ebuild
index d125c17875..f55465119a 100644
--- a/www-client/falkon/falkon-9999.ebuild
+++ b/www-client/falkon/falkon-9999.ebuild
@@ -17,10 +17,9 @@ HOMEPAGE="https://www.falkon.org/"
 
 LICENSE="GPL-3"
 SLOT="0"
-IUSE="dbus gnome-keyring kde libressl +X"
+IUSE="dbus kde libressl +X"
 
 # drop qtwebengine subslot operator when QT_MINIMAL >= 5.12.0
-BDEPEND="gnome-keyring? ( virtual/pkgconfig )"
 COMMON_DEPEND="
 	$(add_qt_dep qtdeclarative 'widgets')
 	$(add_qt_dep qtgui)
@@ -32,7 +31,6 @@ COMMON_DEPEND="
 	$(add_qt_dep qtwidgets)
 	virtual/libintl
 	dbus? ( $(add_qt_dep qtdbus) )
-	gnome-keyring? ( gnome-base/libgnome-keyring )
 	kde? (
 		$(add_frameworks_dep kcoreaddons)
 		$(add_frameworks_dep kcrash)
@@ -62,7 +60,6 @@ RDEPEND="${COMMON_DEPEND}
 src_configure() {
 	local mycmakeargs=(
 		-DDISABLE_DBUS=$(usex !dbus)
-		-DBUILD_KEYRING=$(usex gnome-keyring)
 		$(cmake-utils_use_find_package kde KF5Wallet)
 		$(cmake-utils_use_find_package kde KF5KIO)
 		-DNO_X11=$(usex !X)


^ permalink raw reply related	[flat|nested] 41+ messages in thread

* [gentoo-commits] proj/kde:master commit in: www-client/falkon/
@ 2019-04-27 18:27 Andreas Sturmlechner
  0 siblings, 0 replies; 41+ messages in thread
From: Andreas Sturmlechner @ 2019-04-27 18:27 UTC (permalink / raw
  To: gentoo-commits

commit:     f7120a72a84f9f182cc9bffb46526351f13cf7ac
Author:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Sat Apr 27 17:10:31 2019 +0000
Commit:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Sat Apr 27 17:12:50 2019 +0000
URL:        https://gitweb.gentoo.org/proj/kde.git/commit/?id=f7120a72

www-client/falkon: Add new DEPEND

For page sharing support.

Upstream commit 7bca744cabb2d4f8f825a90ce1b2bf266a8c7efb

Package-Manager: Portage-2.3.65, Repoman-2.3.12
Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>

 www-client/falkon/falkon-9999.ebuild | 1 +
 1 file changed, 1 insertion(+)

diff --git a/www-client/falkon/falkon-9999.ebuild b/www-client/falkon/falkon-9999.ebuild
index a3f9099681..d7f7fa64c1 100644
--- a/www-client/falkon/falkon-9999.ebuild
+++ b/www-client/falkon/falkon-9999.ebuild
@@ -37,6 +37,7 @@ COMMON_DEPEND="
 		$(add_frameworks_dep kcrash)
 		$(add_frameworks_dep kio)
 		$(add_frameworks_dep kwallet)
+		$(add_frameworks_dep purpose)
 	)
 	libressl? ( dev-libs/libressl:= )
 	!libressl? ( dev-libs/openssl:0= )


^ permalink raw reply related	[flat|nested] 41+ messages in thread

* [gentoo-commits] proj/kde:master commit in: www-client/falkon/
@ 2019-07-15 17:43 Andreas Sturmlechner
  0 siblings, 0 replies; 41+ messages in thread
From: Andreas Sturmlechner @ 2019-07-15 17:43 UTC (permalink / raw
  To: gentoo-commits

commit:     b1de1276ebdae7f50d0012a60d5e099c43e1b2c4
Author:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Mon Jul 15 16:57:46 2019 +0000
Commit:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Mon Jul 15 16:57:46 2019 +0000
URL:        https://gitweb.gentoo.org/proj/kde.git/commit/?id=b1de1276

www-client/falkon: Drop obsolete comment

Package-Manager: Portage-2.3.69, Repoman-2.3.16
Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>

 www-client/falkon/falkon-9999.ebuild | 1 -
 1 file changed, 1 deletion(-)

diff --git a/www-client/falkon/falkon-9999.ebuild b/www-client/falkon/falkon-9999.ebuild
index d7f7fa64c1..17895772d6 100644
--- a/www-client/falkon/falkon-9999.ebuild
+++ b/www-client/falkon/falkon-9999.ebuild
@@ -19,7 +19,6 @@ LICENSE="GPL-3"
 SLOT="0"
 IUSE="dbus kde libressl +X"
 
-# drop qtwebengine subslot operator when QT_MINIMAL >= 5.12.0
 COMMON_DEPEND="
 	$(add_frameworks_dep karchive)
 	$(add_qt_dep qtdeclarative 'widgets')


^ permalink raw reply related	[flat|nested] 41+ messages in thread

* [gentoo-commits] proj/kde:master commit in: www-client/falkon/
@ 2019-11-11  0:19 Andreas Sturmlechner
  0 siblings, 0 replies; 41+ messages in thread
From: Andreas Sturmlechner @ 2019-11-11  0:19 UTC (permalink / raw
  To: gentoo-commits

commit:     8a7dd6726545d948e44c705c23f0fef16bc262d2
Author:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Mon Nov 11 00:08:01 2019 +0000
Commit:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Mon Nov 11 00:08:01 2019 +0000
URL:        https://gitweb.gentoo.org/proj/kde.git/commit/?id=8a7dd672

www-client/falkon: Port to ecm.eclass and kde.org.eclass

Package-Manager: Portage-2.3.78, Repoman-2.3.18
Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>

 www-client/falkon/falkon-9999.ebuild | 48 +++++++++++++++++++-----------------
 1 file changed, 25 insertions(+), 23 deletions(-)

diff --git a/www-client/falkon/falkon-9999.ebuild b/www-client/falkon/falkon-9999.ebuild
index 17895772d6..ac245bef15 100644
--- a/www-client/falkon/falkon-9999.ebuild
+++ b/www-client/falkon/falkon-9999.ebuild
@@ -3,9 +3,11 @@
 
 EAPI=7
 
-KDE_TEST="true"
+ECM_TEST="true"
+KFMIN=5.60.0
+QTMIN=5.12.3
 VIRTUALX_REQUIRED="test"
-inherit kde5
+inherit ecm kde.org
 
 if [[ ${KDE_BUILD_TYPE} != live ]]; then
 	SRC_URI="mirror://kde/stable/${PN}/${PV%.0}/${P}.tar.xz"
@@ -20,42 +22,42 @@ SLOT="0"
 IUSE="dbus kde libressl +X"
 
 COMMON_DEPEND="
-	$(add_frameworks_dep karchive)
-	$(add_qt_dep qtdeclarative 'widgets')
-	$(add_qt_dep qtgui)
-	$(add_qt_dep qtnetwork 'ssl')
-	$(add_qt_dep qtprintsupport)
-	$(add_qt_dep qtsql 'sqlite')
-	$(add_qt_dep qtwebchannel)
-	$(add_qt_dep qtwebengine 'widgets' '' '5=')
-	$(add_qt_dep qtwidgets)
+	>=dev-qt/qtdeclarative-${QTMIN}:5[widgets]
+	>=dev-qt/qtgui-${QTMIN}:5
+	>=dev-qt/qtnetwork-${QTMIN}:5[ssl]
+	>=dev-qt/qtprintsupport-${QTMIN}:5
+	>=dev-qt/qtsql-${QTMIN}:5[sqlite]
+	>=dev-qt/qtwebchannel-${QTMIN}:5
+	>=dev-qt/qtwebengine-${QTMIN}:5=[widgets]
+	>=dev-qt/qtwidgets-${QTMIN}:5
+	>=kde-frameworks/karchive-${KFMIN}:5
 	virtual/libintl
-	dbus? ( $(add_qt_dep qtdbus) )
+	dbus? ( >=dev-qt/qtdbus-${QTMIN}:5 )
 	kde? (
-		$(add_frameworks_dep kcoreaddons)
-		$(add_frameworks_dep kcrash)
-		$(add_frameworks_dep kio)
-		$(add_frameworks_dep kwallet)
-		$(add_frameworks_dep purpose)
+		>=kde-frameworks/kcoreaddons-${KFMIN}:5
+		>=kde-frameworks/kcrash-${KFMIN}:5
+		>=kde-frameworks/kio-${KFMIN}:5
+		>=kde-frameworks/kwallet-${KFMIN}:5
+		>=kde-frameworks/purpose-${KFMIN}:5
 	)
 	libressl? ( dev-libs/libressl:= )
 	!libressl? ( dev-libs/openssl:0= )
 	X? (
-		$(add_qt_dep qtx11extras)
+		>=dev-qt/qtx11extras-${QTMIN}:5
 		x11-libs/libxcb:=
 		x11-libs/xcb-util
 	)
 "
 DEPEND="${COMMON_DEPEND}
-	$(add_qt_dep linguist-tools)
-	$(add_qt_dep qtconcurrent)
+	>=dev-qt/linguist-tools-${QTMIN}:5
+	>=dev-qt/qtconcurrent-${QTMIN}:5
 "
 if [[ ${KDE_BUILD_TYPE} != live ]]; then
-	DEPEND+=" $(add_frameworks_dep ki18n)"
+	DEPEND+=" >=kde-frameworks/ki18n-${KFMIN}:5"
 fi
 RDEPEND="${COMMON_DEPEND}
 	!www-client/qupzilla
-	$(add_qt_dep qtsvg)
+	>=dev-qt/qtsvg-${QTMIN}:5
 "
 
 src_configure() {
@@ -65,5 +67,5 @@ src_configure() {
 		$(cmake-utils_use_find_package kde KF5KIO)
 		-DNO_X11=$(usex !X)
 	)
-	kde5_src_configure
+	ecm_src_configure
 }


^ permalink raw reply related	[flat|nested] 41+ messages in thread

* [gentoo-commits] proj/kde:master commit in: www-client/falkon/
@ 2021-02-01 23:45 Andreas Sturmlechner
  0 siblings, 0 replies; 41+ messages in thread
From: Andreas Sturmlechner @ 2021-02-01 23:45 UTC (permalink / raw
  To: gentoo-commits

commit:     e848460cf0114125542ae07ad4a117b6907ee6e9
Author:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Mon Feb  1 23:43:44 2021 +0000
Commit:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Mon Feb  1 23:43:44 2021 +0000
URL:        https://gitweb.gentoo.org/proj/kde.git/commit/?id=e848460c

www-client/falkon: Drop obsolete blocker

Package-Manager: Portage-3.0.14, Repoman-3.0.2
Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>

 www-client/falkon/falkon-9999.ebuild | 1 -
 1 file changed, 1 deletion(-)

diff --git a/www-client/falkon/falkon-9999.ebuild b/www-client/falkon/falkon-9999.ebuild
index e5d55fe2de..8e0e2bc784 100644
--- a/www-client/falkon/falkon-9999.ebuild
+++ b/www-client/falkon/falkon-9999.ebuild
@@ -56,7 +56,6 @@ if [[ ${KDE_BUILD_TYPE} != live ]]; then
 	DEPEND+=" >=kde-frameworks/ki18n-${KFMIN}:5"
 fi
 RDEPEND="${COMMON_DEPEND}
-	!www-client/qupzilla
 	>=dev-qt/qtsvg-${QTMIN}:5
 "
 


^ permalink raw reply related	[flat|nested] 41+ messages in thread

* [gentoo-commits] proj/kde:master commit in: www-client/falkon/
@ 2021-02-25 10:59 Andreas Sturmlechner
  0 siblings, 0 replies; 41+ messages in thread
From: Andreas Sturmlechner @ 2021-02-25 10:59 UTC (permalink / raw
  To: gentoo-commits

commit:     09fda51e7da8f33a77bdd2112a3ec8c5942cfc41
Author:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Thu Feb 25 10:58:24 2021 +0000
Commit:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Thu Feb 25 10:58:55 2021 +0000
URL:        https://gitweb.gentoo.org/proj/kde.git/commit/?id=09fda51e

www-client/falkon: Drop IUSE=libressl

Package-Manager: Portage-3.0.15, Repoman-3.0.2
Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>

 www-client/falkon/falkon-9999.ebuild | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

diff --git a/www-client/falkon/falkon-9999.ebuild b/www-client/falkon/falkon-9999.ebuild
index 8e0e2bc784..ad605ba82e 100644
--- a/www-client/falkon/falkon-9999.ebuild
+++ b/www-client/falkon/falkon-9999.ebuild
@@ -19,9 +19,10 @@ HOMEPAGE="https://www.falkon.org/"
 
 LICENSE="GPL-3"
 SLOT="0"
-IUSE="dbus kde libressl +X"
+IUSE="dbus kde +X"
 
 COMMON_DEPEND="
+	dev-libs/openssl:0=
 	>=dev-qt/qtdeclarative-${QTMIN}:5[widgets]
 	>=dev-qt/qtgui-${QTMIN}:5
 	>=dev-qt/qtnetwork-${QTMIN}:5[ssl]
@@ -40,8 +41,6 @@ COMMON_DEPEND="
 		>=kde-frameworks/kwallet-${KFMIN}:5
 		>=kde-frameworks/purpose-${KFMIN}:5
 	)
-	libressl? ( dev-libs/libressl:= )
-	!libressl? ( dev-libs/openssl:0= )
 	X? (
 		>=dev-qt/qtx11extras-${QTMIN}:5
 		x11-libs/libxcb:=


^ permalink raw reply related	[flat|nested] 41+ messages in thread

* [gentoo-commits] proj/kde:master commit in: www-client/falkon/
@ 2022-02-02 19:46 Andreas Sturmlechner
  0 siblings, 0 replies; 41+ messages in thread
From: Andreas Sturmlechner @ 2022-02-02 19:46 UTC (permalink / raw
  To: gentoo-commits

commit:     2a1a2e44369fe312bc221948628ab2901f4ca9fe
Author:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Wed Feb  2 19:08:51 2022 +0000
Commit:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Wed Feb  2 19:09:50 2022 +0000
URL:        https://gitweb.gentoo.org/proj/kde.git/commit/?id=2a1a2e44

www-client/falkon: Add apps.kde.org link to HOMEPAGE

Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>

 www-client/falkon/falkon-9999.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/www-client/falkon/falkon-9999.ebuild b/www-client/falkon/falkon-9999.ebuild
index a44efc1966..5f9f42b041 100644
--- a/www-client/falkon/falkon-9999.ebuild
+++ b/www-client/falkon/falkon-9999.ebuild
@@ -10,7 +10,7 @@ VIRTUALX_REQUIRED="test"
 inherit ecm kde.org
 
 DESCRIPTION="Cross-platform web browser using QtWebEngine"
-HOMEPAGE="https://www.falkon.org/"
+HOMEPAGE="https://www.falkon.org/ https://apps.kde.org/falkon/"
 
 if [[ ${KDE_BUILD_TYPE} != live ]]; then
 	SRC_URI="mirror://kde/stable/${PN}/${PV%.0}/${P}.tar.xz"


^ permalink raw reply related	[flat|nested] 41+ messages in thread

* [gentoo-commits] proj/kde:master commit in: www-client/falkon/
@ 2022-02-02 19:46 Andreas Sturmlechner
  0 siblings, 0 replies; 41+ messages in thread
From: Andreas Sturmlechner @ 2022-02-02 19:46 UTC (permalink / raw
  To: gentoo-commits

commit:     6200ce22d60ac80f09beb10421eab96b902c2c66
Author:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Sat Feb  9 16:52:59 2019 +0000
Commit:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Wed Feb  2 19:09:09 2022 +0000
URL:        https://gitweb.gentoo.org/proj/kde.git/commit/?id=6200ce22

www-client/falkon: Tests don't work for everyone.

Bug: https://bugs.gentoo.org/653046
Package-Manager: Portage-2.3.59, Repoman-2.3.12
Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>

 www-client/falkon/falkon-9999.ebuild | 8 +++++---
 1 file changed, 5 insertions(+), 3 deletions(-)

diff --git a/www-client/falkon/falkon-9999.ebuild b/www-client/falkon/falkon-9999.ebuild
index d8cd148125..ed02016f94 100644
--- a/www-client/falkon/falkon-9999.ebuild
+++ b/www-client/falkon/falkon-9999.ebuild
@@ -9,18 +9,20 @@ QTMIN=5.15.2
 VIRTUALX_REQUIRED="test"
 inherit ecm kde.org
 
+DESCRIPTION="Cross-platform web browser using QtWebEngine"
+HOMEPAGE="https://www.falkon.org/"
+
 if [[ ${KDE_BUILD_TYPE} != live ]]; then
 	SRC_URI="mirror://kde/stable/${PN}/${PV%.0}/${P}.tar.xz"
 	KEYWORDS="~amd64 ~arm64 ~x86"
 fi
 
-DESCRIPTION="Cross-platform web browser using QtWebEngine"
-HOMEPAGE="https://www.falkon.org/"
-
 LICENSE="GPL-3"
 SLOT="0"
 IUSE="dbus kde +X"
 
+RESTRICT="test" # bug 653046
+
 COMMON_DEPEND="
 	dev-libs/openssl:0=
 	>=dev-qt/qtdeclarative-${QTMIN}:5[widgets]


^ permalink raw reply related	[flat|nested] 41+ messages in thread

* [gentoo-commits] proj/kde:master commit in: www-client/falkon/
@ 2022-02-02 19:46 Andreas Sturmlechner
  0 siblings, 0 replies; 41+ messages in thread
From: Andreas Sturmlechner @ 2022-02-02 19:46 UTC (permalink / raw
  To: gentoo-commits

commit:     92a927a2d85272a28dbae281bcf78a174e6e003d
Author:     Georgy Yakovlev <gyakovlev <AT> gentoo <DOT> org>
AuthorDate: Wed May 27 23:23:25 2020 +0000
Commit:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Wed Feb  2 19:09:44 2022 +0000
URL:        https://gitweb.gentoo.org/proj/kde.git/commit/?id=92a927a2

www-client/falkon: add ~ppc64 keyword

Package-Manager: Portage-2.3.100, Repoman-2.3.22
Signed-off-by: Georgy Yakovlev <gyakovlev <AT> gentoo.org>
Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>

 www-client/falkon/falkon-9999.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/www-client/falkon/falkon-9999.ebuild b/www-client/falkon/falkon-9999.ebuild
index ed02016f94..a44efc1966 100644
--- a/www-client/falkon/falkon-9999.ebuild
+++ b/www-client/falkon/falkon-9999.ebuild
@@ -14,7 +14,7 @@ HOMEPAGE="https://www.falkon.org/"
 
 if [[ ${KDE_BUILD_TYPE} != live ]]; then
 	SRC_URI="mirror://kde/stable/${PN}/${PV%.0}/${P}.tar.xz"
-	KEYWORDS="~amd64 ~arm64 ~x86"
+	KEYWORDS="~amd64 ~arm64 ~ppc64 ~x86"
 fi
 
 LICENSE="GPL-3"


^ permalink raw reply related	[flat|nested] 41+ messages in thread

* [gentoo-commits] proj/kde:master commit in: www-client/falkon/
@ 2022-02-04 14:11 Andreas Sturmlechner
  0 siblings, 0 replies; 41+ messages in thread
From: Andreas Sturmlechner @ 2022-02-04 14:11 UTC (permalink / raw
  To: gentoo-commits

commit:     d32281081a4be1697c7e5635f60b340dfab6dbe4
Author:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Fri Feb  4 13:46:46 2022 +0000
Commit:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Fri Feb  4 13:52:05 2022 +0000
URL:        https://gitweb.gentoo.org/proj/kde.git/commit/?id=d3228108

www-client/falkon: Add IUSE=python

- Move dev-qt/linguist-tools to BDEPEND where it belongs
- Set BUILD_KEYRING=OFF as was done in Gentoo ebuild repo
- Fix SRC_URI for latest release

Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>

 www-client/falkon/falkon-9999.ebuild | 32 ++++++++++++++++++++++++++------
 1 file changed, 26 insertions(+), 6 deletions(-)

diff --git a/www-client/falkon/falkon-9999.ebuild b/www-client/falkon/falkon-9999.ebuild
index 5f9f42b041..702af5b75a 100644
--- a/www-client/falkon/falkon-9999.ebuild
+++ b/www-client/falkon/falkon-9999.ebuild
@@ -4,23 +4,25 @@
 EAPI=8
 
 ECM_TEST="true"
-KFMIN=5.82.0
+KFMIN=5.88.0
 QTMIN=5.15.2
+PYTHON_COMPAT=( python3_{8..10} )
 VIRTUALX_REQUIRED="test"
-inherit ecm kde.org
+inherit ecm kde.org python-single-r1
 
 DESCRIPTION="Cross-platform web browser using QtWebEngine"
 HOMEPAGE="https://www.falkon.org/ https://apps.kde.org/falkon/"
 
 if [[ ${KDE_BUILD_TYPE} != live ]]; then
-	SRC_URI="mirror://kde/stable/${PN}/${PV%.0}/${P}.tar.xz"
-	KEYWORDS="~amd64 ~arm64 ~ppc64 ~x86"
+	SRC_URI="mirror://kde/stable/${PN}/${PV}/${P}.tar.xz"
+	KEYWORDS="~amd64 ~arm64 ~x86"
 fi
 
 LICENSE="GPL-3"
 SLOT="0"
-IUSE="dbus kde +X"
+IUSE="dbus kde python +X"
 
+REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
 RESTRICT="test" # bug 653046
 
 COMMON_DEPEND="
@@ -43,6 +45,13 @@ COMMON_DEPEND="
 		>=kde-frameworks/kwallet-${KFMIN}:5
 		>=kde-frameworks/purpose-${KFMIN}:5
 	)
+	python? (
+		${PYTHON_DEPS}
+		$(python_gen_cond_dep '
+			dev-python/pyside2[designer,gui,widgets,${PYTHON_USEDEP}]
+			dev-python/shiboken2[${PYTHON_USEDEP}]
+		')
+	)
 	X? (
 		>=dev-qt/qtx11extras-${QTMIN}:5
 		x11-libs/libxcb:=
@@ -50,7 +59,6 @@ COMMON_DEPEND="
 	)
 "
 DEPEND="${COMMON_DEPEND}
-	>=dev-qt/linguist-tools-${QTMIN}:5
 	>=dev-qt/qtconcurrent-${QTMIN}:5
 "
 if [[ ${KDE_BUILD_TYPE} != live ]]; then
@@ -59,12 +67,24 @@ fi
 RDEPEND="${COMMON_DEPEND}
 	>=dev-qt/qtsvg-${QTMIN}:5
 "
+BDEPEND="
+	>=dev-qt/linguist-tools-${QTMIN}:5
+"
+
+pkg_setup() {
+	python-single-r1_pkg_setup
+	ecm_pkg_setup
+}
 
 src_configure() {
 	local mycmakeargs=(
+		-DBUILD_KEYRING=OFF
 		-DDISABLE_DBUS=$(usex !dbus)
 		$(cmake_use_find_package kde KF5Wallet)
 		$(cmake_use_find_package kde KF5KIO)
+		$(cmake_use_find_package python PySide2)
+		$(cmake_use_find_package python Shiboken2)
+		$(cmake_use_find_package python Python3)
 		-DNO_X11=$(usex !X)
 	)
 	ecm_src_configure


^ permalink raw reply related	[flat|nested] 41+ messages in thread

* [gentoo-commits] proj/kde:master commit in: www-client/falkon/
@ 2022-02-06 10:49 Andreas Sturmlechner
  0 siblings, 0 replies; 41+ messages in thread
From: Andreas Sturmlechner @ 2022-02-06 10:49 UTC (permalink / raw
  To: gentoo-commits

commit:     b9831df0c4ce536729fb71a0298b7c2a41618b32
Author:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Sun Feb  6 10:46:40 2022 +0000
Commit:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Sun Feb  6 10:46:40 2022 +0000
URL:        https://gitweb.gentoo.org/proj/kde.git/commit/?id=b9831df0

www-client/falkon: Add missing dev-python/pyside[webengine] usedep

Bug: https://bugs.gentoo.org/832729
Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>

 www-client/falkon/falkon-9999.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/www-client/falkon/falkon-9999.ebuild b/www-client/falkon/falkon-9999.ebuild
index 702af5b75a..867ce92366 100644
--- a/www-client/falkon/falkon-9999.ebuild
+++ b/www-client/falkon/falkon-9999.ebuild
@@ -48,7 +48,7 @@ COMMON_DEPEND="
 	python? (
 		${PYTHON_DEPS}
 		$(python_gen_cond_dep '
-			dev-python/pyside2[designer,gui,widgets,${PYTHON_USEDEP}]
+			dev-python/pyside2[designer,gui,webengine,widgets,${PYTHON_USEDEP}]
 			dev-python/shiboken2[${PYTHON_USEDEP}]
 		')
 	)


^ permalink raw reply related	[flat|nested] 41+ messages in thread

* [gentoo-commits] proj/kde:master commit in: www-client/falkon/
@ 2022-08-15 21:14 Andreas Sturmlechner
  0 siblings, 0 replies; 41+ messages in thread
From: Andreas Sturmlechner @ 2022-08-15 21:14 UTC (permalink / raw
  To: gentoo-commits

commit:     a4bbbc908ac7f2e28fdd6af0909cf535af14de5e
Author:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Mon Aug 15 20:30:29 2022 +0000
Commit:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Mon Aug 15 20:34:41 2022 +0000
URL:        https://gitweb.gentoo.org/proj/kde.git/commit/?id=a4bbbc90

www-client/falkon: Enforce QTMIN on dev-python/{pyside2,shiboken2}

Bug: https://bugs.gentoo.org/840434
Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>

 www-client/falkon/falkon-22.07.90.ebuild      | 8 ++++----
 www-client/falkon/falkon-22.08.0.ebuild       | 8 ++++----
 www-client/falkon/falkon-22.08.49.9999.ebuild | 8 ++++----
 www-client/falkon/falkon-9999.ebuild          | 8 ++++----
 4 files changed, 16 insertions(+), 16 deletions(-)

diff --git a/www-client/falkon/falkon-22.07.90.ebuild b/www-client/falkon/falkon-22.07.90.ebuild
index cbb2b3b39a..164ba15818 100644
--- a/www-client/falkon/falkon-22.07.90.ebuild
+++ b/www-client/falkon/falkon-22.07.90.ebuild
@@ -43,10 +43,10 @@ COMMON_DEPEND="
 	)
 	python? (
 		${PYTHON_DEPS}
-		$(python_gen_cond_dep '
-			dev-python/pyside2[designer,gui,webengine,widgets,${PYTHON_USEDEP}]
-			dev-python/shiboken2[${PYTHON_USEDEP}]
-		')
+		$(python_gen_cond_dep "
+			>=dev-python/pyside2-${QTMIN}[designer,gui,webengine,widgets,\${PYTHON_USEDEP}] \
+			>=dev-python/shiboken2-${QTMIN}[\${PYTHON_USEDEP}]
+		")
 	)
 	X? (
 		>=dev-qt/qtx11extras-${QTMIN}:5

diff --git a/www-client/falkon/falkon-22.08.0.ebuild b/www-client/falkon/falkon-22.08.0.ebuild
index cbb2b3b39a..164ba15818 100644
--- a/www-client/falkon/falkon-22.08.0.ebuild
+++ b/www-client/falkon/falkon-22.08.0.ebuild
@@ -43,10 +43,10 @@ COMMON_DEPEND="
 	)
 	python? (
 		${PYTHON_DEPS}
-		$(python_gen_cond_dep '
-			dev-python/pyside2[designer,gui,webengine,widgets,${PYTHON_USEDEP}]
-			dev-python/shiboken2[${PYTHON_USEDEP}]
-		')
+		$(python_gen_cond_dep "
+			>=dev-python/pyside2-${QTMIN}[designer,gui,webengine,widgets,\${PYTHON_USEDEP}] \
+			>=dev-python/shiboken2-${QTMIN}[\${PYTHON_USEDEP}]
+		")
 	)
 	X? (
 		>=dev-qt/qtx11extras-${QTMIN}:5

diff --git a/www-client/falkon/falkon-22.08.49.9999.ebuild b/www-client/falkon/falkon-22.08.49.9999.ebuild
index 7dd37294c1..bd82599046 100644
--- a/www-client/falkon/falkon-22.08.49.9999.ebuild
+++ b/www-client/falkon/falkon-22.08.49.9999.ebuild
@@ -43,10 +43,10 @@ COMMON_DEPEND="
 	)
 	python? (
 		${PYTHON_DEPS}
-		$(python_gen_cond_dep '
-			dev-python/pyside2[designer,gui,webengine,widgets,${PYTHON_USEDEP}]
-			dev-python/shiboken2[${PYTHON_USEDEP}]
-		')
+		$(python_gen_cond_dep "
+			>=dev-python/pyside2-${QTMIN}[designer,gui,webengine,widgets,\${PYTHON_USEDEP}] \
+			>=dev-python/shiboken2-${QTMIN}[\${PYTHON_USEDEP}]
+		")
 	)
 	X? (
 		>=dev-qt/qtx11extras-${QTMIN}:5

diff --git a/www-client/falkon/falkon-9999.ebuild b/www-client/falkon/falkon-9999.ebuild
index 7dd37294c1..bd82599046 100644
--- a/www-client/falkon/falkon-9999.ebuild
+++ b/www-client/falkon/falkon-9999.ebuild
@@ -43,10 +43,10 @@ COMMON_DEPEND="
 	)
 	python? (
 		${PYTHON_DEPS}
-		$(python_gen_cond_dep '
-			dev-python/pyside2[designer,gui,webengine,widgets,${PYTHON_USEDEP}]
-			dev-python/shiboken2[${PYTHON_USEDEP}]
-		')
+		$(python_gen_cond_dep "
+			>=dev-python/pyside2-${QTMIN}[designer,gui,webengine,widgets,\${PYTHON_USEDEP}] \
+			>=dev-python/shiboken2-${QTMIN}[\${PYTHON_USEDEP}]
+		")
 	)
 	X? (
 		>=dev-qt/qtx11extras-${QTMIN}:5


^ permalink raw reply related	[flat|nested] 41+ messages in thread

* [gentoo-commits] proj/kde:master commit in: www-client/falkon/
@ 2023-12-17 21:51 Andreas Sturmlechner
  0 siblings, 0 replies; 41+ messages in thread
From: Andreas Sturmlechner @ 2023-12-17 21:51 UTC (permalink / raw
  To: gentoo-commits

commit:     ddb3279b80c5422f8ca62b7bb1f9d359ddc9d0c0
Author:     Eugene Shalygin <eugene.shalygin <AT> gmail <DOT> com>
AuthorDate: Sun Dec 17 12:41:58 2023 +0000
Commit:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Sun Dec 17 21:50:37 2023 +0000
URL:        https://gitweb.gentoo.org/proj/kde.git/commit/?id=ddb3279b

www-client/falkon: remove upstreamed patch

Upstream commit:
https://invent.kde.org/network/falkon/-/commit/53af06c4049939adb0c0527b3f0683576102fbd0

Closes: https://github.com/gentoo/kde/pull/955
Closes: https://bugs.gentoo.org/920187
Signed-off-by: Eugene Shalygin <eugene.shalygin <AT> gmail.com>
Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>

 www-client/falkon/falkon-9999.ebuild | 2 --
 1 file changed, 2 deletions(-)

diff --git a/www-client/falkon/falkon-9999.ebuild b/www-client/falkon/falkon-9999.ebuild
index 387032fc9a..ea13caf0ad 100644
--- a/www-client/falkon/falkon-9999.ebuild
+++ b/www-client/falkon/falkon-9999.ebuild
@@ -59,8 +59,6 @@ RDEPEND="${COMMON_DEPEND}
 "
 BDEPEND=">=dev-qt/qttools-${QTMIN}:6[linguist]"
 
-PATCHES=( "${FILESDIR}/${PN}-23.07.80-python3.patch" )
-
 pkg_setup() {
 	use python && python-single-r1_pkg_setup
 	ecm_pkg_setup


^ permalink raw reply related	[flat|nested] 41+ messages in thread

* [gentoo-commits] proj/kde:master commit in: www-client/falkon/
@ 2024-02-27 22:28 Sam James
  0 siblings, 0 replies; 41+ messages in thread
From: Sam James @ 2024-02-27 22:28 UTC (permalink / raw
  To: gentoo-commits

commit:     5d1573d5d3165eb2696aa4011582a2ec7c1ef203
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Tue Feb 27 22:28:45 2024 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Tue Feb 27 22:28:45 2024 +0000
URL:        https://gitweb.gentoo.org/proj/kde.git/commit/?id=5d1573d5

www-client/falkon: drop 24.01.95

Signed-off-by: Sam James <sam <AT> gentoo.org>

 www-client/falkon/falkon-24.01.95.ebuild | 82 --------------------------------
 1 file changed, 82 deletions(-)

diff --git a/www-client/falkon/falkon-24.01.95.ebuild b/www-client/falkon/falkon-24.01.95.ebuild
deleted file mode 100644
index 5b55d2e80c..0000000000
--- a/www-client/falkon/falkon-24.01.95.ebuild
+++ /dev/null
@@ -1,82 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-ECM_TEST="true"
-KFMIN=5.249.0
-QTMIN=6.6.2
-PYTHON_COMPAT=( python3_{10..12} )
-inherit ecm gear.kde.org python-single-r1
-
-DESCRIPTION="Cross-platform web browser using QtWebEngine"
-HOMEPAGE="https://www.falkon.org/ https://apps.kde.org/falkon/"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~amd64"
-IUSE="dbus kde python +X"
-
-REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
-RESTRICT="test" # bug 653046
-
-COMMON_DEPEND="
-	dev-libs/openssl:0=
-	>=dev-qt/qtbase-${QTMIN}:6[dbus?,gui,network,sql,sqlite,ssl,widgets]
-	>=dev-qt/qtdeclarative-${QTMIN}:6[widgets]
-	>=dev-qt/qtwebchannel-${QTMIN}:6
-	>=dev-qt/qtwebengine-${QTMIN}:6=[widgets]
-	>=kde-frameworks/karchive-${KFMIN}:6
-	virtual/libintl
-	kde? (
-		>=kde-frameworks/kcoreaddons-${KFMIN}:6
-		>=kde-frameworks/kcrash-${KFMIN}:6
-		>=kde-frameworks/kio-${KFMIN}:6
-		>=kde-frameworks/kjobwidgets-${KFMIN}:6
-		>=kde-frameworks/kwallet-${KFMIN}:6
-		>=kde-frameworks/purpose-${KFMIN}:6
-	)
-	python? (
-		${PYTHON_DEPS}
-		$(python_gen_cond_dep "
-			>=dev-python/pyside6-${QTMIN}[designer,gui,webengine,widgets,\${PYTHON_USEDEP}] \
-			>=dev-python/shiboken6-${QTMIN}[\${PYTHON_USEDEP}]
-		")
-	)
-	X? (
-		x11-libs/libxcb:=
-		x11-libs/xcb-util
-	)
-"
-DEPEND="${COMMON_DEPEND}
-	>=dev-qt/qtbase-${QTMIN}:6[concurrent]
-"
-if [[ ${KDE_BUILD_TYPE} != live ]]; then
-	DEPEND+=" >=kde-frameworks/ki18n-${KFMIN}:6"
-fi
-RDEPEND="${COMMON_DEPEND}
-	>=dev-qt/qtsvg-${QTMIN}:6
-"
-BDEPEND=">=dev-qt/qttools-${QTMIN}:6[linguist]"
-
-pkg_setup() {
-	use python && python-single-r1_pkg_setup
-	ecm_pkg_setup
-}
-
-src_configure() {
-	local mycmakeargs=(
-		-DBUILD_KEYRING=OFF
-		-DDISABLE_DBUS=$(usex !dbus)
-		$(cmake_use_find_package kde KF6Wallet)
-		$(cmake_use_find_package kde KF6KIO)
-		-DBUILD_PYTHON_SUPPORT=$(usex python)
-		-DNO_X11=$(usex !X)
-	)
-	use python && mycmakeargs+=(
-		-DPYTHON_CONFIG_SUFFIX="-${EPYTHON}" # shiboken_helpers.cmake quirk
-		-DPython3_INCLUDE_DIR=$(python_get_includedir)
-		-DPython3_LIBRARY=$(python_get_library_path)
-	)
-	ecm_src_configure
-}


^ permalink raw reply related	[flat|nested] 41+ messages in thread

* [gentoo-commits] proj/kde:master commit in: www-client/falkon/
@ 2024-04-06 20:43 Andreas Sturmlechner
  0 siblings, 0 replies; 41+ messages in thread
From: Andreas Sturmlechner @ 2024-04-06 20:43 UTC (permalink / raw
  To: gentoo-commits

commit:     504bf0af749246d350fd974d7767c2b163b489be
Author:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Sat Apr  6 20:41:40 2024 +0000
Commit:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Sat Apr  6 20:41:40 2024 +0000
URL:        https://gitweb.gentoo.org/proj/kde.git/commit/?id=504bf0af

www-client/falkon: Add missing dependency

Upstream commit 632cd4c4ba8e865b796a30a85d471be8fe52d64a

Bug: https://bugs.gentoo.org/928743
Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>

 www-client/falkon/falkon-24.02.49.9999.ebuild | 1 +
 www-client/falkon/falkon-9999.ebuild          | 1 +
 2 files changed, 2 insertions(+)

diff --git a/www-client/falkon/falkon-24.02.49.9999.ebuild b/www-client/falkon/falkon-24.02.49.9999.ebuild
index e4ee319947..1bcf52dfde 100644
--- a/www-client/falkon/falkon-24.02.49.9999.ebuild
+++ b/www-client/falkon/falkon-24.02.49.9999.ebuild
@@ -22,6 +22,7 @@ RESTRICT="test" # bug 653046
 
 COMMON_DEPEND="
 	dev-libs/openssl:0=
+	>=dev-qt/qt5compat-${QTMIN}:6
 	>=dev-qt/qtbase-${QTMIN}:6[dbus?,gui,network,sql,sqlite,ssl,widgets]
 	>=dev-qt/qtdeclarative-${QTMIN}:6[widgets]
 	>=dev-qt/qtwebchannel-${QTMIN}:6

diff --git a/www-client/falkon/falkon-9999.ebuild b/www-client/falkon/falkon-9999.ebuild
index e4ee319947..1bcf52dfde 100644
--- a/www-client/falkon/falkon-9999.ebuild
+++ b/www-client/falkon/falkon-9999.ebuild
@@ -22,6 +22,7 @@ RESTRICT="test" # bug 653046
 
 COMMON_DEPEND="
 	dev-libs/openssl:0=
+	>=dev-qt/qt5compat-${QTMIN}:6
 	>=dev-qt/qtbase-${QTMIN}:6[dbus?,gui,network,sql,sqlite,ssl,widgets]
 	>=dev-qt/qtdeclarative-${QTMIN}:6[widgets]
 	>=dev-qt/qtwebchannel-${QTMIN}:6


^ permalink raw reply related	[flat|nested] 41+ messages in thread

* [gentoo-commits] proj/kde:master commit in: www-client/falkon/
@ 2024-08-29 15:25 Andreas Sturmlechner
  0 siblings, 0 replies; 41+ messages in thread
From: Andreas Sturmlechner @ 2024-08-29 15:25 UTC (permalink / raw
  To: gentoo-commits

commit:     0d0e367f000f6177daf4564726c09ce75195dddf
Author:     Paul Zander <negril.nx+gentoo <AT> gmail <DOT> com>
AuthorDate: Wed Aug 28 20:50:47 2024 +0000
Commit:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Thu Aug 29 15:24:56 2024 +0000
URL:        https://gitweb.gentoo.org/proj/kde.git/commit/?id=0d0e367f

www-client/falkon: require positioning with Qt6WebEngineCore

Bug: https://bugs.gentoo.org/934478#c39
Signed-off-by: Paul Zander <negril.nx+gentoo <AT> gmail.com>
Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>

 www-client/falkon/falkon-24.08.49.9999.ebuild | 2 +-
 www-client/falkon/falkon-9999.ebuild          | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/www-client/falkon/falkon-24.08.49.9999.ebuild b/www-client/falkon/falkon-24.08.49.9999.ebuild
index bcd4f64a2a..b499ea8024 100644
--- a/www-client/falkon/falkon-24.08.49.9999.ebuild
+++ b/www-client/falkon/falkon-24.08.49.9999.ebuild
@@ -40,7 +40,7 @@ COMMON_DEPEND="
 	python? (
 		${PYTHON_DEPS}
 		$(python_gen_cond_dep "
-			>=dev-python/pyside6-${QTMIN}[designer,gui,webengine,widgets,\${PYTHON_USEDEP}] \
+			>=dev-python/pyside6-${QTMIN}[designer,gui,positioning,webengine,widgets,\${PYTHON_USEDEP}] \
 			>=dev-python/shiboken6-${QTMIN}[\${PYTHON_USEDEP}]
 		")
 	)

diff --git a/www-client/falkon/falkon-9999.ebuild b/www-client/falkon/falkon-9999.ebuild
index bcd4f64a2a..b499ea8024 100644
--- a/www-client/falkon/falkon-9999.ebuild
+++ b/www-client/falkon/falkon-9999.ebuild
@@ -40,7 +40,7 @@ COMMON_DEPEND="
 	python? (
 		${PYTHON_DEPS}
 		$(python_gen_cond_dep "
-			>=dev-python/pyside6-${QTMIN}[designer,gui,webengine,widgets,\${PYTHON_USEDEP}] \
+			>=dev-python/pyside6-${QTMIN}[designer,gui,positioning,webengine,widgets,\${PYTHON_USEDEP}] \
 			>=dev-python/shiboken6-${QTMIN}[\${PYTHON_USEDEP}]
 		")
 	)


^ permalink raw reply related	[flat|nested] 41+ messages in thread

end of thread, other threads:[~2024-08-29 15:25 UTC | newest]

Thread overview: 41+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-02-04 14:11 [gentoo-commits] proj/kde:master commit in: www-client/falkon/ Andreas Sturmlechner
  -- strict thread matches above, loose matches on Subject: below --
2024-08-29 15:25 Andreas Sturmlechner
2024-04-06 20:43 Andreas Sturmlechner
2024-02-27 22:28 Sam James
2023-12-17 21:51 Andreas Sturmlechner
2022-08-15 21:14 Andreas Sturmlechner
2022-02-06 10:49 Andreas Sturmlechner
2022-02-02 19:46 Andreas Sturmlechner
2022-02-02 19:46 Andreas Sturmlechner
2022-02-02 19:46 Andreas Sturmlechner
2021-02-25 10:59 Andreas Sturmlechner
2021-02-01 23:45 Andreas Sturmlechner
2019-11-11  0:19 Andreas Sturmlechner
2019-07-15 17:43 Andreas Sturmlechner
2019-04-27 18:27 Andreas Sturmlechner
2019-04-27 18:27 Andreas Sturmlechner
2019-04-27 18:27 Andreas Sturmlechner
2019-03-22 21:38 Andreas Sturmlechner
2019-02-24 15:32 Andreas Sturmlechner
2019-01-26 23:45 Andreas Sturmlechner
2018-05-09  7:47 Andreas Sturmlechner
2018-05-09  7:43 Andreas Sturmlechner
2018-04-12 18:40 Andreas Sturmlechner
2018-04-12 18:40 Andreas Sturmlechner
2018-04-05 21:57 Andreas Sturmlechner
2018-04-03 15:24 Andreas Sturmlechner
2018-03-17  0:27 Andreas Sturmlechner
2018-03-01 13:20 Andreas Sturmlechner
2018-01-25 19:17 Jimi Huotari
2018-01-25 19:17 Jimi Huotari
2018-01-24 16:45 Andreas Sturmlechner
2017-12-28 10:58 Andreas Sturmlechner
2017-10-23 11:06 Michael Palimaka
2017-10-20 17:50 Andreas Sturmlechner
2017-10-11 16:17 Johannes Huber
2017-10-11 16:14 Johannes Huber
2017-10-08 19:07 Andreas Sturmlechner
2017-10-08 18:09 Andreas Sturmlechner
2017-10-08  8:10 Johannes Huber
2017-10-04 16:47 Andreas Sturmlechner
2017-10-03 21:30 Andreas Sturmlechner

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox