commit:     0d7219d45e170abcdf444f79bd7300c216586c6b
Author:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Tue Sep  9 14:55:06 2025 +0000
Commit:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Tue Sep  9 15:09:02 2025 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0d7219d4

kde-plasma/plasma-vault: drop 6.4.4

Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>

 kde-plasma/plasma-vault/Manifest                  |  1 -
 kde-plasma/plasma-vault/plasma-vault-6.4.4.ebuild | 78 -----------------------
 2 files changed, 79 deletions(-)

diff --git a/kde-plasma/plasma-vault/Manifest b/kde-plasma/plasma-vault/Manifest
index 0f350a8504db..899dc3fd676d 100644
--- a/kde-plasma/plasma-vault/Manifest
+++ b/kde-plasma/plasma-vault/Manifest
@@ -1,3 +1,2 @@
 DIST plasma-vault-6.3.6.tar.xz 203520 BLAKE2B 
85a8dae41c456376e43ff882adc13fc0a0d3a786c741944213a5abac84486272a27542238adb5b57703a4b3cf916eac6cb81c6edf80661d296ea3454c2f9531f
 SHA512 
ee01305927aeef94174deb5e6810516a8ef609c07018b0327a0677cdb1340f834544ad249b2fb3d7354af893b6a2e1e4074f9637713b84d177d1a5d5e3973d90
-DIST plasma-vault-6.4.4.tar.xz 202252 BLAKE2B 
893792a44b941bef50967f0f59880966be119fb6f28af121d5461d6b535bb97c208807266a83fcecb88cd141301ef29c9db7640fe2d424f6b52da7c2b92492b3
 SHA512 
09e3dfcf1e6de6322f36fcc539109bc9281aba9182501b7bdfcab9c5cd6cfa11c68a611cc6a993e5f74de370aec39a208979ed501bf4a5d912865c752db2f134
 DIST plasma-vault-6.4.5.tar.xz 203044 BLAKE2B 
dbd4909334d343b60711bd680da7cf25df27b8bf5ab1725daa09ae027a26a21811e4f5bf15eeac1ca7b2bb36c602aea4ba937d453d9a0869e24ee6fd7e0fed15
 SHA512 
74012dba894e1cdb25937ff07cfec42f18ef825b80f05c6022812d37849ce6ae0d6ca4c0a01c7f1c6e459ad3c9b86a2582b0f26a340a95edb173e6b60d238ab4

diff --git a/kde-plasma/plasma-vault/plasma-vault-6.4.4.ebuild 
b/kde-plasma/plasma-vault/plasma-vault-6.4.4.ebuild
deleted file mode 100644
index c8c055532d45..000000000000
--- a/kde-plasma/plasma-vault/plasma-vault-6.4.4.ebuild
+++ /dev/null
@@ -1,78 +0,0 @@
-# Copyright 1999-2025 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-KFMIN=6.14.0
-QTMIN=6.8.1
-inherit ecm flag-o-matic plasma.kde.org xdg
-
-DESCRIPTION="Plasma applet and services for creating encrypted vaults"
-HOMEPAGE+=" https://cukic.co/2017/02/03/vaults-encryption-in-plasma/";
-
-LICENSE="LGPL-3"
-SLOT="6"
-KEYWORDS="~amd64 ~arm64 ~loong ~ppc64 ~riscv ~x86"
-IUSE="networkmanager"
-
-DEPEND="
-       >=dev-qt/qtbase-${QTMIN}:6[dbus,gui,widgets]
-       >=dev-qt/qtdeclarative-${QTMIN}:6
-       >=kde-frameworks/kcodecs-${KFMIN}:6
-       >=kde-frameworks/kconfig-${KFMIN}:6
-       >=kde-frameworks/kconfigwidgets-${KFMIN}:6
-       >=kde-frameworks/kcoreaddons-${KFMIN}:6
-       >=kde-frameworks/kdbusaddons-${KFMIN}:6
-       >=kde-frameworks/ki18n-${KFMIN}:6
-       >=kde-frameworks/kio-${KFMIN}:6
-       >=kde-frameworks/kitemmodels-${KFMIN}:6
-       >=kde-frameworks/kservice-${KFMIN}:6
-       >=kde-frameworks/kwidgetsaddons-${KFMIN}:6
-       >=kde-plasma/libksysguard-${KDE_CATV}:6
-       >=kde-plasma/libplasma-${KDE_CATV}:6
-       >=kde-plasma/plasma-activities-${KDE_CATV}:6
-       networkmanager? ( >=kde-frameworks/networkmanager-qt-${KFMIN}:6 )
-"
-RDEPEND="${DEPEND}
-       || (
-               >=app-crypt/gocryptfs-1.8
-               >=sys-fs/cryfs-0.9.9
-               >=sys-fs/encfs-1.9.2
-       )
-"
-
-src_configure() {
-       # ODR violations (bug #909446, kde#471836)
-       filter-lto
-
-       local mycmakeargs=(
-               $(cmake_use_find_package networkmanager KF6NetworkManagerQt)
-       )
-
-       ecm_src_configure
-}
-
-pkg_postinst() {
-       xdg_pkg_postinst
-
-       local has_deprecated_backend
-       dropping_backend() {
-               if has_version ${2}; then
-                       elog "${CATEGORY}/${PN} will drop support for ${1} in 
the future."
-                       elog "Migrate away from any ${2} vaults before that 
happens."
-                       elog
-                       has_deprecated_backend=1
-               fi
-       }
-
-       dropping_backend CryFS sys-fs/cryfs
-       dropping_backend EncFS sys-fs/encfs
-
-       if [[ has_deprecated_backend ]]; then
-               elog "The only supported backend going forward will be 
app-crypt/gocryptfs."
-               elog
-               elog "See also:"
-               elog 
"https://invent.kde.org/plasma/plasma-vault/-/merge_requests/57";
-               elog 
"https://invent.kde.org/plasma/plasma-vault/-/merge_requests/62";
-       fi
-}

Reply via email to