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-plasma/breeze: 5.22.3 version bump
Signed-off-by: Andreas Sturmlechner <[email protected]>
- Loading branch information
Showing
2 changed files
with
52 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 breeze-5.21.5.tar.xz 26286020 BLAKE2B 437666f0b509fa9d63f5ad04702831dc0ec4eedf763594c831d335b5b69a6b04052af6adc2c550b903c94a084b353d700d88cec47af537778afa31f7150e38b6 SHA512 5e449624543e2bd437bd4311e7ff091ffae33c4da34da2b9968f9551970b66350d337e6aee974f9e2cd82eff877a4ab5c6f52ec52d4f2724fe93b747f021e9eb | ||
DIST breeze-5.22.2.tar.xz 34546036 BLAKE2B 916df68cc80060092f4ef98c1a4bdc0b18d3429746ee84c4677496741d67408c5823e9f0be76cc5365b5f35b652806bc11728265fa9f566549ac5f32b3ec3093 SHA512 cbf06955406ec2a0da214d85ca54747a98609c764268487cdb90adb6fc8f3cb9ebc3eb71e959a40218785c4e557cf9b70b8ad164e0d6b96e1ff23960da60f850 | ||
DIST breeze-5.22.3.tar.xz 34545872 BLAKE2B c01573c011e95c5509d0ccb0a6d5a5c075cdac5a3b99e6be04d1292a8d9cffb83321b02fb08ff9c774e9dc145b5225f15ec01a92717c58f4595e332eb7a48872 SHA512 f5922ded36ed22d0f06cae4923d4860a3d1bcb4e0795fe845faf0fa553176e94d4210e597f78c4d3f442e4a5b57822c6abe195c5f0150fdc992b50a7210a5290 |
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,51 @@ | ||
# Copyright 1999-2021 Gentoo Authors | ||
# Distributed under the terms of the GNU General Public License v2 | ||
|
||
EAPI=7 | ||
|
||
KFMIN=5.82.0 | ||
PVCUT=$(ver_cut 1-3) | ||
QTMIN=5.15.2 | ||
inherit ecm kde.org | ||
|
||
DESCRIPTION="Breeze visual style for the Plasma desktop" | ||
HOMEPAGE="https://invent.kde.org/plasma/breeze" | ||
|
||
LICENSE="GPL-2" # TODO: CHECK | ||
SLOT="5" | ||
KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86" | ||
IUSE="X" | ||
|
||
RDEPEND=" | ||
>=dev-qt/qtdbus-${QTMIN}:5 | ||
>=dev-qt/qtdeclarative-${QTMIN}:5 | ||
>=dev-qt/qtgui-${QTMIN}:5 | ||
>=dev-qt/qtwidgets-${QTMIN}:5 | ||
>=dev-qt/qtx11extras-${QTMIN}:5 | ||
>=kde-frameworks/frameworkintegration-${KFMIN}:5 | ||
>=kde-frameworks/kcmutils-${KFMIN}:5 | ||
>=kde-frameworks/kconfig-${KFMIN}:5 | ||
>=kde-frameworks/kconfigwidgets-${KFMIN}:5 | ||
>=kde-frameworks/kcoreaddons-${KFMIN}:5 | ||
>=kde-frameworks/kguiaddons-${KFMIN}:5 | ||
>=kde-frameworks/ki18n-${KFMIN}:5 | ||
>=kde-frameworks/kiconthemes-${KFMIN}:5 | ||
>=kde-frameworks/kwidgetsaddons-${KFMIN}:5 | ||
>=kde-frameworks/kwindowsystem-${KFMIN}:5 | ||
>=kde-plasma/kdecoration-${PVCUT}:5 | ||
X? ( x11-libs/libxcb ) | ||
" | ||
DEPEND="${RDEPEND} | ||
>=kde-frameworks/kpackage-${KFMIN}:5 | ||
" | ||
PDEPEND=" | ||
>=kde-frameworks/breeze-icons-${KFMIN}:5 | ||
>=kde-plasma/kde-cli-tools-${PVCUT}:5 | ||
" | ||
|
||
src_configure() { | ||
local mycmakeargs=( | ||
$(cmake_use_find_package X XCB) | ||
) | ||
ecm_src_configure | ||
} |