forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
kde-frameworks/kwallet: 5.74.0 version bump
Signed-off-by: Andreas Sturmlechner <[email protected]>
- Loading branch information
Showing
2 changed files
with
55 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
DIST kwallet-5.70.0.tar.xz 295432 BLAKE2B 1732d0358ec8d27c4ba72f24ccb96bc6eb22b5914b63520a7daad41865dec236b524b9cbf4fa76579cdb8ecdfc35226fe10712f5707b9f6862a47085e2bb9a4e SHA512 44693f4661352a4aee17beae5b5b325261057768a876a1cf721041d977c5edbbd3b5edca76dd5c7f9d1a67355e3255fd29c9697cf1f3e9179f11c536c04386fb | ||
DIST kwallet-5.73.0.tar.xz 297972 BLAKE2B 166be6fcaa31ecdc65db3746ce9fb77d0d2a6e9e153840ad457cd420bea772cf0ce6808050e387b85db50c22bd3549edc0d01b6008cdd4a12d598e6d53bb895c SHA512 fc0f162e95242a45c9642d4e8caca356fc6fb9aca0776d0dffe5f1809635be0109f369cbc660a34d3cfc376b79c022c73858d8ad8d5970e299d00c18d84b973e | ||
DIST kwallet-5.74.0.tar.xz 299812 BLAKE2B 8c38fc467440b241ce8a0c509ef75e3196303d6001bc74a2b347a3f6dcba6e80fc6d49068002a5317921d46fb60f0f033c79b99a5c583933ed39789e334fd770 SHA512 e18de73657c4b51c3150de88e2d764f710932527dc6e9fbfc8778e853b66e0776619fc5d8918cbf8fb6384f92d7b74836797c374d45a50223aa7d543cf743fa2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
# Copyright 1999-2020 Gentoo Authors | ||
# Distributed under the terms of the GNU General Public License v2 | ||
|
||
EAPI=7 | ||
|
||
PVCUT=$(ver_cut 1-2) | ||
QTMIN=5.14.2 | ||
inherit ecm kde.org optfeature | ||
|
||
DESCRIPTION="Framework providing desktop-wide storage for passwords" | ||
|
||
LICENSE="LGPL-2+" | ||
KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86" | ||
IUSE="gpg +man" | ||
|
||
BDEPEND=" | ||
man? ( >=kde-frameworks/kdoctools-${PVCUT}:5 ) | ||
" | ||
DEPEND=" | ||
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}" | ||
|
||
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 | ||
elog "Optional dependencies:" | ||
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 | ||
} |