diff options
author | Andreas Sturmlechner <asturm@gentoo.org> | 2020-10-25 11:39:57 +0100 |
---|---|---|
committer | Andreas Sturmlechner <asturm@gentoo.org> | 2020-10-25 11:47:49 +0100 |
commit | ed51fa4e5b126088c0694356eee08fca26a4e23d (patch) | |
tree | 19c85ea2dfe6b93671d087ee3c64c2807b824b9b /kde-frameworks/kpackage | |
parent | kde-apps/ksudoku: Fix IUSE=-opengl and punt bogus Qt5Opengl (diff) | |
download | gentoo-ed51fa4e5b126088c0694356eee08fca26a4e23d.tar.gz gentoo-ed51fa4e5b126088c0694356eee08fca26a4e23d.tar.bz2 gentoo-ed51fa4e5b126088c0694356eee08fca26a4e23d.zip |
kde-frameworks/kpackage: Add missing DEPEND
Closes: https://bugs.gentoo.org/751175
Package-Manager: Portage-3.0.8, Repoman-3.0.2
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'kde-frameworks/kpackage')
-rw-r--r-- | kde-frameworks/kpackage/kpackage-5.74.0-r1.ebuild | 39 | ||||
-rw-r--r-- | kde-frameworks/kpackage/kpackage-5.75.0-r1.ebuild | 39 |
2 files changed, 78 insertions, 0 deletions
diff --git a/kde-frameworks/kpackage/kpackage-5.74.0-r1.ebuild b/kde-frameworks/kpackage/kpackage-5.74.0-r1.ebuild new file mode 100644 index 000000000000..eb3331c493c4 --- /dev/null +++ b/kde-frameworks/kpackage/kpackage-5.74.0-r1.ebuild @@ -0,0 +1,39 @@ +# 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.15.1 +inherit ecm kde.org + +DESCRIPTION="Framework to install and load packages of non binary content" + +LICENSE="LGPL-2+" +KEYWORDS="amd64 ~arm arm64 ~ppc64 x86" +IUSE="man" + +BDEPEND=" + man? ( >=kde-frameworks/kdoctools-${PVCUT}:5 ) +" +DEPEND=" + >=dev-qt/qtdbus-${QTMIN}:5 + =kde-frameworks/karchive-${PVCUT}*:5 + =kde-frameworks/kcoreaddons-${PVCUT}*:5 + =kde-frameworks/ki18n-${PVCUT}*:5 +" +RDEPEND="${DEPEND}" + +src_configure() { + local mycmakeargs=( + $(cmake_use_find_package man KF5DocTools) + ) + + ecm_src_configure +} + +src_test() { + #bug 650214 + local myctestargs=( -E "(plasma-plasmoidpackagetest)" ) + ecm_src_test +} diff --git a/kde-frameworks/kpackage/kpackage-5.75.0-r1.ebuild b/kde-frameworks/kpackage/kpackage-5.75.0-r1.ebuild new file mode 100644 index 000000000000..ea6080139d80 --- /dev/null +++ b/kde-frameworks/kpackage/kpackage-5.75.0-r1.ebuild @@ -0,0 +1,39 @@ +# 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.15.1 +inherit ecm kde.org + +DESCRIPTION="Framework to install and load packages of non binary content" + +LICENSE="LGPL-2+" +KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86" +IUSE="man" + +BDEPEND=" + man? ( >=kde-frameworks/kdoctools-${PVCUT}:5 ) +" +DEPEND=" + >=dev-qt/qtdbus-${QTMIN}:5 + =kde-frameworks/karchive-${PVCUT}*:5 + =kde-frameworks/kcoreaddons-${PVCUT}*:5 + =kde-frameworks/ki18n-${PVCUT}*:5 +" +RDEPEND="${DEPEND}" + +src_configure() { + local mycmakeargs=( + $(cmake_use_find_package man KF5DocTools) + ) + + ecm_src_configure +} + +src_test() { + #bug 650214 + local myctestargs=( -E "(plasma-plasmoidpackagetest)" ) + ecm_src_test +} |