diff options
author | Andreas Sturmlechner <asturm@gentoo.org> | 2022-12-10 11:37:59 +0100 |
---|---|---|
committer | Andreas Sturmlechner <asturm@gentoo.org> | 2022-12-10 11:41:26 +0100 |
commit | b935d25cbb7e23e199c2ab980854ef6123d7e3c5 (patch) | |
tree | b090d794261460c7d6b673e39c9800d4761690fc /kde-frameworks/kwallet | |
parent | kde-frameworks/ktextwidgets: 5.101.0 version bump (diff) | |
download | gentoo-b935d25cbb7e23e199c2ab980854ef6123d7e3c5.tar.gz gentoo-b935d25cbb7e23e199c2ab980854ef6123d7e3c5.tar.bz2 gentoo-b935d25cbb7e23e199c2ab980854ef6123d7e3c5.zip |
kde-frameworks/kwallet: 5.101.0 version bump
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'kde-frameworks/kwallet')
-rw-r--r-- | kde-frameworks/kwallet/Manifest | 1 | ||||
-rw-r--r-- | kde-frameworks/kwallet/kwallet-5.101.0.ebuild | 52 |
2 files changed, 53 insertions, 0 deletions
diff --git a/kde-frameworks/kwallet/Manifest b/kde-frameworks/kwallet/Manifest index e1ec134f889a..88f1d391716c 100644 --- a/kde-frameworks/kwallet/Manifest +++ b/kde-frameworks/kwallet/Manifest @@ -1,2 +1,3 @@ DIST kwallet-5.100.0.tar.xz 347328 BLAKE2B d59aad8572390ab81a371488b739797c9e34ff7933f2d788b7527127707d2c1da75a6ceb84ebc22a589df8be929daa515bf9e621714280c8834962be8736298a SHA512 01f5bdbcf2f8909d0dfc044f159847f736d479d720a5f5cd6f69b578b0225d2855a7461eb6e2ec7bc26cf4c7904165db75ba360f6b0ad0e163439fc767dfddeb +DIST kwallet-5.101.0.tar.xz 347684 BLAKE2B 5226c69a7949c1bb53fde646ec5d2e135e7352b69dd608ea3ab9543f359fc70990196345a10926124d0a95690f70b2123529d61070628c138964546bbbff0784 SHA512 1d587b192a9debead88449249bfd410a2c85ce6d090ef5afe65b3f95e17c4e45de6cfb6de9c787a93cffb7951d9f27086d3315aeff7c343fa2729bca0138d1d9 DIST kwallet-5.99.0.tar.xz 333436 BLAKE2B 915fb97743be3f0dd8068e1a507bf51f490814b15153599fcd530805df69bfc69ae7de11ce2b31b27ef8eb6bfe6d719b2c7ce1159eec1e932b8fd1655d10a7bb SHA512 21310271f8acd92d05c985ae90bb5f25482c251245a396557719500de8a3562e0487dec26110b4956837ccf99cb83461b6d1d57cf5925b914dafd04cdef33e24 diff --git a/kde-frameworks/kwallet/kwallet-5.101.0.ebuild b/kde-frameworks/kwallet/kwallet-5.101.0.ebuild new file mode 100644 index 000000000000..b6b491753814 --- /dev/null +++ b/kde-frameworks/kwallet/kwallet-5.101.0.ebuild @@ -0,0 +1,52 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +PVCUT=$(ver_cut 1-2) +QTMIN=5.15.5 +inherit ecm frameworks.kde.org optfeature + +DESCRIPTION="Framework providing desktop-wide storage for passwords" + +LICENSE="LGPL-2+" +KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc64 ~riscv ~x86" +IUSE="gpg +man" + +DEPEND=" + >=app-crypt/qca-2.3.1:2[qt5(+)] + dev-libs/libgcrypt:0= + >=dev-qt/qtdbus-${QTMIN}:5 + >=dev-qt/qtgui-${QTMIN}:5 + >=dev-qt/qtwidgets-${QTMIN}:5 + =kde-frameworks/kconfig-${PVCUT}*:5 + =kde-frameworks/kconfigwidgets-${PVCUT}*:5 + =kde-frameworks/kcoreaddons-${PVCUT}*:5 + =kde-frameworks/kdbusaddons-${PVCUT}*:5 + =kde-frameworks/ki18n-${PVCUT}*:5 + =kde-frameworks/knotifications-${PVCUT}*:5 + =kde-frameworks/kservice-${PVCUT}*:5 + =kde-frameworks/kwidgetsaddons-${PVCUT}*:5 + =kde-frameworks/kwindowsystem-${PVCUT}*:5 + gpg? ( >=app-crypt/gpgme-1.7.1:=[cxx,qt5] ) +" +RDEPEND="${DEPEND}" +BDEPEND="man? ( >=kde-frameworks/kdoctools-${PVCUT}:5 )" + +src_configure() { + local mycmakeargs=( + $(cmake_use_find_package gpg Gpgmepp) + $(cmake_use_find_package man KF5DocTools) + ) + + ecm_src_configure +} + +pkg_postinst() { + if [[ -z "${REPLACING_VERSIONS}" ]]; then + optfeature "Auto-unlocking after account login" kde-plasma/kwallet-pam + optfeature "KWallet management" kde-apps/kwalletmanager:5 + elog "For more information, read https://wiki.gentoo.org/wiki/KDE#KWallet" + fi + ecm_pkg_postinst +} |