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.
dev-libs/kirigami: 2.2.0 version bump
Package-Manager: Portage-2.3.5, Repoman-2.3.1
- Loading branch information
Showing
2 changed files
with
45 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 kirigami-1.1.0.tar.xz 262152 SHA256 6677af0c486a4c9cfefe74a0951e85dad53435010031bf2b7fcdf9c5df6b3edd SHA512 83d1c0600fed7838b25ddfa3d20e1abef594c8e5fa202314ef1c22b6548573db36058f02620236cd9bba9f65f45f8821fa37558689b49776f9fe3119c89b0b63 WHIRLPOOL b1d4cc22a0759f561c16bb61bf2a47494e92cc766401862b97866156dfe1cda452e1db01a62805fe902320fc106708794b7f545abfbd2ff5c0d8909acd024bc1 | ||
DIST kirigami2-2.1.0.tar.xz 274808 SHA256 e744ff974ef100d23feda68f3fdb465aa56bf8da6992ab7e3f3fed2f4180e934 SHA512 1adb31e55f1c8088bd91a0ea27d944376c946ee6f83ff178fd7ad90f5df8982ef7aa2664d761ffcb1dac2e451a174f45e3c7a2a44e9e6d75248a422ca2f206f9 WHIRLPOOL e52d1c85e93d9de02f077666cbf3e935b62478f864e7828974606458ce301d482243a0edd4ab6e4deaaaf1160f1bd45fe9ed84f35ef234028866b897a340e9d8 | ||
DIST kirigami2-2.2.0.tar.xz 275832 SHA256 b8e0b5088c39740dd002d5bf8046ea219cb63f7d9e19083202f7ba05cc3a4c05 SHA512 b8cf0353135b36e7a1c07c44ad60d12ead0ff97f750093b874654f84999daa03f9783b94cebc5e07a80c65576c83fcd3b5728f5bea4587256fe0f22b98487fe0 WHIRLPOOL 1895b31dca415b47f8e95d0e69c4d5d860279a0eadeb0094524929a2550e098a5b8658664de95b33d023acb5adbbea15287cfecd2e7547f6c4eeb78976bf1de3 |
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,44 @@ | ||
# Copyright 1999-2017 Gentoo Foundation | ||
# Distributed under the terms of the GNU General Public License v2 | ||
|
||
EAPI=6 | ||
|
||
KDE_TEST="forceoptional" | ||
QT_MINIMAL="5.7.1" | ||
inherit kde5 | ||
|
||
if [[ ${KDE_BUILD_TYPE} = release ]]; then | ||
MY_PN="${PN}2" | ||
SRC_BRANCH=stable | ||
[[ ${PV} = *.[8-9]?.* ]] && SRC_BRANCH=unstable | ||
SRC_URI="mirror://kde/${SRC_BRANCH}/${PN}/${MY_PN}-${PV}.tar.xz" | ||
KEYWORDS="~amd64 ~arm ~x86" | ||
S="${WORKDIR}/${MY_PN}-${PV}" | ||
fi | ||
|
||
DESCRIPTION="Lightweight user interface framework for mobile and convergent applications" | ||
HOMEPAGE="https://techbase.kde.org/Kirigami" | ||
LICENSE="LGPL-2+" | ||
SLOT="2" | ||
IUSE="examples plasma" | ||
|
||
RDEPEND=" | ||
$(add_qt_dep qtdeclarative) | ||
$(add_qt_dep qtgraphicaleffects) | ||
$(add_qt_dep qtgui) | ||
$(add_qt_dep qtquickcontrols2) | ||
$(add_qt_dep qtsvg) | ||
plasma? ( $(add_frameworks_dep plasma) ) | ||
" | ||
DEPEND="${RDEPEND} | ||
$(add_qt_dep linguist-tools) | ||
" | ||
|
||
src_configure() { | ||
local mycmakeargs=( | ||
-DBUILD_EXAMPLES=$(usex examples) | ||
-DPLASMA_ENABLED=$(usex plasma) | ||
) | ||
|
||
kde5_src_configure | ||
} |