aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSam James <sam@gentoo.org>2024-02-27 22:28:45 +0000
committerSam James <sam@gentoo.org>2024-02-27 22:28:45 +0000
commit5d1573d5d3165eb2696aa4011582a2ec7c1ef203 (patch)
treef4be736daa20ee56663334316021628ff76f22d1 /www-client
parentsys-libs/kpmcore: drop 24.01.95 (diff)
downloadkde-5d1573d5d3165eb2696aa4011582a2ec7c1ef203.tar.gz
kde-5d1573d5d3165eb2696aa4011582a2ec7c1ef203.tar.bz2
kde-5d1573d5d3165eb2696aa4011582a2ec7c1ef203.zip
www-client/falkon: drop 24.01.95
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'www-client')
-rw-r--r--www-client/falkon/Manifest1
-rw-r--r--www-client/falkon/falkon-24.01.95.ebuild82
2 files changed, 0 insertions, 83 deletions
diff --git a/www-client/falkon/Manifest b/www-client/falkon/Manifest
index ecff0163dd..d86e419b2e 100644
--- a/www-client/falkon/Manifest
+++ b/www-client/falkon/Manifest
@@ -1,2 +1 @@
-DIST falkon-24.01.95.tar.xz 2582856 BLAKE2B 418d1765b0c835490dda3c550b868d8d67dbd2637a955f609640658f729a25f8b3f13fda4a4e4b32892ba55c91b6e03a4dd078a56645df2ac0a988037ba17e44 SHA512 5965f8b2e713b418800cbd050acbdc1806ab8ad284c585b85d5609118a98e3612582fe72e55b88d9596d19c6df974fa588adff04b006138d214c979677e02fd5
DIST falkon-24.02.0.tar.xz 2596284 BLAKE2B 9fda0e85dd40aa59eb618bd5a0cd61beaa99643a79bb920c9beefd435e7f1df2a2266c6ea758ae8c409844d5ea94744140b2f1747953845922a071285027e743 SHA512 68979980ce363a3a2089b6ff939dd8c83a7089701281156a2cda1931ac9e416350954e9e058c1f3e48e45a909e6f0838196be91a3fc9ed0d3ec7a73f7449981d
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
-}