summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--kde-plasma/plasma-vault/Manifest1
-rw-r--r--kde-plasma/plasma-vault/plasma-vault-6.4.91.ebuild76
2 files changed, 77 insertions, 0 deletions
diff --git a/kde-plasma/plasma-vault/Manifest b/kde-plasma/plasma-vault/Manifest
index d8e7b6ee246..5c8d601a2ba 100644
--- a/kde-plasma/plasma-vault/Manifest
+++ b/kde-plasma/plasma-vault/Manifest
@@ -1 +1,2 @@
DIST plasma-vault-6.4.90.tar.xz 201656 BLAKE2B a4e51eb030d9a23dca033a086ae9894bcabc1ce1bbbe8a0c8cc7191bcae85340ea1bb697b9abcbb3110e16fc5aa8125bea56994117091d1d0c76b7cef6a4cb50 SHA512 449a888b005575aa5a702ba6583e0983132f65603e7cd9b3b7bd88b720c059ba39c5d8eaf3785c1981cc094e4bc5275703a2583b14fdc5559162da7d6d39126e
+DIST plasma-vault-6.4.91.tar.xz 201656 BLAKE2B 4337142838dfc55da6eb57a72096773c0a323d304cb8670f5521e8c74ec6610603feb757bd2f1cbd978655c78927fed79cbd8cf9faed7fb9a309f15474df223e SHA512 344c6f9b01aa40e2bc506a84c47140030c2c52dadd8d19240a69f2b7de0a6a258b8e0e7899fdd9c298c97fe806ea1687bd9e647bbce87497810a7bc1b9b5b9a0
diff --git a/kde-plasma/plasma-vault/plasma-vault-6.4.91.ebuild b/kde-plasma/plasma-vault/plasma-vault-6.4.91.ebuild
new file mode 100644
index 00000000000..c91eacd1fcc
--- /dev/null
+++ b/kde-plasma/plasma-vault/plasma-vault-6.4.91.ebuild
@@ -0,0 +1,76 @@
+# Copyright 1999-2025 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+KFMIN=6.18.0
+QTMIN=6.9.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/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-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
+}