diff options
author | Andreas Sturmlechner <asturm@gentoo.org> | 2024-01-31 20:52:10 +0100 |
---|---|---|
committer | Andreas Sturmlechner <asturm@gentoo.org> | 2024-02-01 22:17:24 +0100 |
commit | ebd09473e0c40bb4ee0c20a75a17d39af75deccc (patch) | |
tree | 56a8094e94b55bfc2111efbae788c2c15c7b87e8 /kde-plasma/ksshaskpass | |
parent | kde-plasma/kscreenlocker: 5.93.0 version bump (diff) | |
download | gentoo-ebd09473e0c40bb4ee0c20a75a17d39af75deccc.tar.gz gentoo-ebd09473e0c40bb4ee0c20a75a17d39af75deccc.tar.bz2 gentoo-ebd09473e0c40bb4ee0c20a75a17d39af75deccc.zip |
kde-plasma/ksshaskpass: 5.93.0 version bump
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'kde-plasma/ksshaskpass')
-rw-r--r-- | kde-plasma/ksshaskpass/Manifest | 1 | ||||
-rw-r--r-- | kde-plasma/ksshaskpass/ksshaskpass-5.93.0.ebuild | 49 |
2 files changed, 50 insertions, 0 deletions
diff --git a/kde-plasma/ksshaskpass/Manifest b/kde-plasma/ksshaskpass/Manifest index aac30c3df667..06981b53ce9b 100644 --- a/kde-plasma/ksshaskpass/Manifest +++ b/kde-plasma/ksshaskpass/Manifest @@ -1,2 +1,3 @@ DIST ksshaskpass-5.27.10.tar.xz 28044 BLAKE2B ba716a154ec0946d5e6b2dc340ce7c3dc8f84fdae52956661a4cd8aa142a977fd26bf99ea060f3834819b887ede03dca5d7d4112509384b3c1437709510e8076 SHA512 4e868547493904c79d37a9170e8d3fbce9e47ea762ae8c59507faab9517478b44cbb48cd2fa6c8bd9f9e41f74e57a859e127db258be2b7a643c6b68fecec4a31 DIST ksshaskpass-5.92.0.tar.xz 28884 BLAKE2B 5f129643a45947af70839ba01d5d43c38a3cd8ccf497d55d2e3d97f52984a790d4224d67afe62aa448bc1fe43bd9da64af2269e67232299b27420a7a0bca808a SHA512 c5627c61be098d143dcaf182560362f480fb3a121980ed716cc62930b221e56a64c5b16532ef42a0b329da5cc3bcc59c480ca4e4968033a62a48d71f2ae53d62 +DIST ksshaskpass-5.93.0.tar.xz 28848 BLAKE2B 2708899565ff70f3a32bc0a65697e68f37b8004437c0e395940770f1f1df5161c33176f4cf0c10c4f6d5d60612d16253e62801272d74f024c47c34dfcc95c662 SHA512 c2202708e8624fc456610486b6c51d9ad7f9671d1ab73ae9869ffe3ef05e8b583830ead6d1e10c8a6c975522ee12eaaf5310a3d8310975bab779f29c2abf2d6f diff --git a/kde-plasma/ksshaskpass/ksshaskpass-5.93.0.ebuild b/kde-plasma/ksshaskpass/ksshaskpass-5.93.0.ebuild new file mode 100644 index 000000000000..d5e12356664d --- /dev/null +++ b/kde-plasma/ksshaskpass/ksshaskpass-5.93.0.ebuild @@ -0,0 +1,49 @@ +# Copyright 1999-2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +KFMIN=5.249.0 +QTMIN=6.6.0 +inherit ecm plasma.kde.org + +DESCRIPTION="Implementation of ssh-askpass with KDE Wallet integration" +HOMEPAGE+=" https://invent.kde.org/plasma/ksshaskpass" + +LICENSE="GPL-2" # TODO: CHECK +SLOT="6" +KEYWORDS="~amd64" +IUSE="" + +DEPEND=" + >=dev-qt/qtbase-${QTMIN}:6[widgets] + >=kde-frameworks/kcoreaddons-${KFMIN}:6 + >=kde-frameworks/ki18n-${KFMIN}:6 + >=kde-frameworks/kwallet-${KFMIN}:6 + >=kde-frameworks/kwidgetsaddons-${KFMIN}:6 +" +RDEPEND="${DEPEND}" + +src_install() { + ecm_src_install + + insinto /etc/xdg/plasma-workspace/env/ + doins "${FILESDIR}/05-ksshaskpass.sh" +} + +pkg_postinst() { + ecm_pkg_postinst + + elog "In order to have ssh-agent start with Plasma 6," + elog "edit /etc/xdg/plasma-workspace/env/10-agent-startup.sh" + elog "and uncomment the lines enabling ssh-agent." + elog + elog "If you do so, do not forget to uncomment the respective" + elog "lines in /etc/xdg/plasma-workspace/shutdown/10-agent-shutdown.sh" + elog "to properly kill the agent when the session ends." + elog + elog "${PN} has been installed as your default askpass application" + elog "for Plasma 6 sessions." + elog "If that's not desired, select the one you want to use in" + elog "/etc/xdg/plasma-workspace/env/05-ksshaskpass.sh" +} |