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/kcoreaddons: 5.30.1 version bump for critical bugfix
Upstream commit 2a9b56e9340760822b1dfece73bc045c64033ef1 Package-Manager: portage-2.3.0
- Loading branch information
Showing
2 changed files
with
32 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,3 +1,4 @@ | ||
DIST kcoreaddons-5.26.0.tar.xz 330764 SHA256 1fab3ca827cf74f0fdadd30d8b9b3fe53d4ba2d1afe7f23a90f3ff55f3c77982 SHA512 79b586a52e8a2ed5c804d25a2d97bd0ac5d4f8f60cd06496611fbef255d95ffe1a5a8c44d349e6bab7bee233481346b349f0ce5cf11942c43fffe32a54de7cc0 WHIRLPOOL 9e19dcc3335e956a8be2286a4ad3fbb2ffd74c3d6d8a1565f7ba5ac38eeb6e9f499ecf0612faebc4d7853d201936309c9e877fbcc3024d4e44ae14989b153e58 | ||
DIST kcoreaddons-5.29.0.tar.xz 2735576 SHA256 e28b39fada9b19b03c7c79fc7ac337c1b943b33dbb40967a5cc7ba9f314cb3f6 SHA512 93c2da7dec8deb92cb63706748d273d157b622a1c105ca315ef9c86c850f265bc9316678fb3af122ce6c8fb737f39c727f5d1c61d41f6b420e554e4a796a04b3 WHIRLPOOL 1db2aa2e5f8d220f0ff08dce4743cf99ff5a914ee1b7aa716aab796590d5e87da8eff513f5502b8edfdf5ccec85d72b9f8ed0e9e6e4ccaba775bd8a5d89eb063 | ||
DIST kcoreaddons-5.30.0.tar.xz 333196 SHA256 f62bcef0aa391362e8797eb03135ad9d9b9fd5f3741298241ffb59eb182da040 SHA512 269af83d806a5e6ae3962dceadfb96ed23292b700f875f95f67df8ab1a409f13abd699ebc347077e8b4e909f5a3042f93a033a1d2a410064ea4d3e7dd6896889 WHIRLPOOL 7de3684a41f9fe9b8be5acf815e2b8d8755fc0d821f4dbecac189e249b8e8fae4be639ecf9d09a7a8cbde6cc058c7453c4fb5067e8b20ac3ca39572c7f15ace5 | ||
DIST kcoreaddons-5.30.1.tar.xz 333496 SHA256 cdd29840c23ab3403eadff578a54e33a2c17b357b59e2ef8a8509ed436c33e70 SHA512 fa4e1a3fa523d3659cef06eab7c22903a838e782f7ef883ff4c78094640dbc2d5c0b61dcd35c2a4a7bd98b806ffef8457abce338cda92e567afb4729758bf564 WHIRLPOOL 8d421f46f4243da29415d5b6243a6b8867e1f89c9a8bdcd3b0f4a0fa88223464126f81285db7507e9abdaae85a394f4a1318e6c31e7e315025867ea486bacd01 |
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,31 @@ | ||
# Copyright 1999-2017 Gentoo Foundation | ||
# Distributed under the terms of the GNU General Public License v2 | ||
# $Id$ | ||
|
||
EAPI=6 | ||
|
||
inherit kde5 | ||
|
||
DESCRIPTION="Framework for solving common problems such as caching, randomisation, and more" | ||
LICENSE="LGPL-2+" | ||
KEYWORDS="~amd64 ~arm ~x86" | ||
IUSE="fam nls" | ||
|
||
RDEPEND=" | ||
$(add_qt_dep qtcore 'icu') | ||
fam? ( virtual/fam ) | ||
!<kde-frameworks/kservice-5.2.0:5 | ||
" | ||
DEPEND="${RDEPEND} | ||
x11-misc/shared-mime-info | ||
nls? ( $(add_qt_dep linguist-tools) ) | ||
" | ||
|
||
src_configure() { | ||
local mycmakeargs=( | ||
-D_KDE4_DEFAULT_HOME_POSTFIX=4 | ||
$(cmake-utils_use_find_package fam FAM) | ||
) | ||
|
||
kde5_src_configure | ||
} |