summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--kde-plasma/plasma-vault/Manifest1
-rw-r--r--kde-plasma/plasma-vault/plasma-vault-6.5.0.ebuild76
2 files changed, 77 insertions, 0 deletions
diff --git a/kde-plasma/plasma-vault/Manifest b/kde-plasma/plasma-vault/Manifest
index 076dcc35bd0..7cf13226e91 100644
--- a/kde-plasma/plasma-vault/Manifest
+++ b/kde-plasma/plasma-vault/Manifest
@@ -1 +1,2 @@
DIST plasma-vault-6.4.91.tar.xz 201656 BLAKE2B 4337142838dfc55da6eb57a72096773c0a323d304cb8670f5521e8c74ec6610603feb757bd2f1cbd978655c78927fed79cbd8cf9faed7fb9a309f15474df223e SHA512 344c6f9b01aa40e2bc506a84c47140030c2c52dadd8d19240a69f2b7de0a6a258b8e0e7899fdd9c298c97fe806ea1687bd9e647bbce87497810a7bc1b9b5b9a0
+DIST plasma-vault-6.5.0.tar.xz 201636 BLAKE2B 41e6c41470b02326513d212faf096aeb05f1a5bfc93c68a771daf0afa888ff8f409795f07128757490963dc3f0156d521f10a86bcfe5f4bde378d51540a77ae9 SHA512 e7b2f49e07a99ebe083c31af1f566131eab1920bd858daf2a9a1c5ffb138b886d458e3245405925db673aa66d11632aead78666c7960679fede00ab275540afb
diff --git a/kde-plasma/plasma-vault/plasma-vault-6.5.0.ebuild b/kde-plasma/plasma-vault/plasma-vault-6.5.0.ebuild
new file mode 100644
index 00000000000..c983d5f7263
--- /dev/null
+++ b/kde-plasma/plasma-vault/plasma-vault-6.5.0.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"
+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
+}