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/kpackage: 6.3.0 version bump
Signed-off-by: Andreas Sturmlechner <[email protected]>
- Loading branch information
Showing
2 changed files
with
39 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 kpackage-5.116.0.tar.xz 188864 BLAKE2B 2ef92134ed59788ea512595bb93ac8996c3df9971c49f8db2ae2dbfe1a17ad35c6076d8838c5f4d3e0cd0eb4aed088c661f8764fdcd44556ddff11faa6e98b4d SHA512 15129fecdf53db1a0fa32fb4ebfc82f7b3d7edd9591032267d80b61458e652813f3d18f406a473ca75c202fb7e401815ee290c3c30d3c54920562bdf00a53632 | ||
DIST kpackage-6.2.0.tar.xz 179744 BLAKE2B 493f44d28df93b1bd634c28216743f8f57c1073f3caec4047121409e80fa20f1b9e9a20a6d6a85b822c72198fe32b5d1e85855b2786884eadc24d3aa210a88d2 SHA512 6bc5c18118c61fed489787dee8950fb8ad25d28ad0b38917897edecf3cf01f5eca6dcc2e6e87dcc71fd201fc48a2141d145ccde5275cbf0ad38bb58fab7b1d75 | ||
DIST kpackage-6.3.0.tar.xz 179764 BLAKE2B 18ed7c2063ed93d46e2738989e950083db762b55f644afcca04ec983059ce974620b1684ff6c918cfac59c21e6112f840e3083209f4813c48753df8602b65a21 SHA512 e8cecfafdf0471c4732b3a85d4522df060b683c6ac3bb1355413583af385c6288fdb7ba0e9855943dc0e3e49c3794aca740f5cb9af9dd7dbc6e0362253dc0369 |
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,38 @@ | ||
# Copyright 1999-2024 Gentoo Authors | ||
# Distributed under the terms of the GNU General Public License v2 | ||
|
||
EAPI=8 | ||
|
||
PVCUT=$(ver_cut 1-2) | ||
QTMIN=6.6.2 | ||
inherit ecm frameworks.kde.org | ||
|
||
DESCRIPTION="Framework to install and load packages of non binary content" | ||
|
||
LICENSE="LGPL-2+" | ||
KEYWORDS="~amd64" | ||
IUSE="man" | ||
|
||
DEPEND=" | ||
>=dev-qt/qtbase-${QTMIN}:6[dbus] | ||
=kde-frameworks/karchive-${PVCUT}*:6 | ||
=kde-frameworks/kcoreaddons-${PVCUT}*:6 | ||
=kde-frameworks/ki18n-${PVCUT}*:6 | ||
" | ||
RDEPEND="${DEPEND}" | ||
BDEPEND="man? ( >=kde-frameworks/kdoctools-${PVCUT}:6 )" | ||
|
||
CMAKE_SKIP_TESTS=( | ||
# bug 650214 | ||
plasma-plasmoidpackagetest | ||
# requires network access | ||
testpackage-appstream | ||
) | ||
|
||
src_configure() { | ||
local mycmakeargs=( | ||
$(cmake_use_find_package man KF6DocTools) | ||
) | ||
|
||
ecm_src_configure | ||
} |