summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Sturmlechner <asturm@gentoo.org>2023-05-11 18:09:07 +0200
committerAndreas Sturmlechner <asturm@gentoo.org>2023-05-11 18:09:07 +0200
commit45360721be5a519e602160a121afc506954b2f07 (patch)
tree1a60c176a0ded6822c7d56db4484d7856b4e0128
parent5fac84c3ce021ab433a3ecb5d4026023b507d760 (diff)
downloadkde-45360721be5a519e602160a121afc506954b2f07.tar.gz
kde-45360721be5a519e602160a121afc506954b2f07.tar.bz2
kde-45360721be5a519e602160a121afc506954b2f07.zip
www-client/falkon: drop 23.04.1
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
-rw-r--r--www-client/falkon/Manifest1
-rw-r--r--www-client/falkon/falkon-23.04.1.ebuild92
2 files changed, 0 insertions, 93 deletions
diff --git a/www-client/falkon/Manifest b/www-client/falkon/Manifest
deleted file mode 100644
index 58f172c430c..00000000000
--- a/www-client/falkon/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST falkon-23.04.1.tar.xz 2553024 BLAKE2B 97917326bf4a2d492aaa79e325548be6b70dc44d4e78b835db6cc267e9fce522dc2079ecc7ff58deb3f1bf81bcedcce2358ffb4945efa10a7dabe0eca575ca14 SHA512 228302ccf7c74a247624de6b83bed15d5bd5294cbfa10c1a891ad378d7dc9d8094ddae46977b7dc0014df5309ea9273327ba58adef7fbf43989c340100400151
diff --git a/www-client/falkon/falkon-23.04.1.ebuild b/www-client/falkon/falkon-23.04.1.ebuild
deleted file mode 100644
index 142020e6a4d..00000000000
--- a/www-client/falkon/falkon-23.04.1.ebuild
+++ /dev/null
@@ -1,92 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-ECM_TEST="true"
-KFMIN=5.104.0
-QTMIN=5.15.5
-PYTHON_COMPAT=( python3_{9..11} )
-VIRTUALX_REQUIRED="test"
-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 ~arm64 ~ppc64 ~x86"
-IUSE="dbus kde python +X"
-
-REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
-RESTRICT="test" # bug 653046
-
-COMMON_DEPEND="
- dev-libs/openssl:0=
- >=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? ( >=dev-qt/qtdbus-${QTMIN}:5 )
- kde? (
- >=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
- )
- python? (
- ${PYTHON_DEPS}
- $(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
- x11-libs/libxcb:=
- x11-libs/xcb-util
- )
-"
-DEPEND="${COMMON_DEPEND}
- >=dev-qt/qtconcurrent-${QTMIN}:5
-"
-if [[ ${KDE_BUILD_TYPE} != live ]]; then
- DEPEND+=" >=kde-frameworks/ki18n-${KFMIN}:5"
-fi
-RDEPEND="${COMMON_DEPEND}
- >=dev-qt/qtsvg-${QTMIN}:5
-"
-BDEPEND=">=dev-qt/linguist-tools-${QTMIN}:5"
-
-PATCHES=( "${FILESDIR}/${PN}-22.04.3-python3.patch" )
-
-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 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)
- )
- 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
-}