summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--kde-frameworks/kpackage/Manifest1
-rw-r--r--kde-frameworks/kpackage/kpackage-5.101.0.ebuild40
2 files changed, 41 insertions, 0 deletions
diff --git a/kde-frameworks/kpackage/Manifest b/kde-frameworks/kpackage/Manifest
new file mode 100644
index 00000000000..3d214044fce
--- /dev/null
+++ b/kde-frameworks/kpackage/Manifest
@@ -0,0 +1 @@
+DIST kpackage-5.101.0.tar.xz 186976 BLAKE2B f6688351366c56fe42c6bcaf199c9cf3e1035b15b1c008c941298a4a1100acf4fa5a82ca4e61f95e565ab538485c9e97cc1b7bf2efd9f3978e568b0ab9eb6c35 SHA512 b0c0c7cada5901b58e128b2c3694be918588c31225e076d1d9b80cf0164f6ae9fc90f4f9ebc6294d35ac29b1a2562061a384070356c20696449b1deece1fe429
diff --git a/kde-frameworks/kpackage/kpackage-5.101.0.ebuild b/kde-frameworks/kpackage/kpackage-5.101.0.ebuild
new file mode 100644
index 00000000000..3b80fbeb599
--- /dev/null
+++ b/kde-frameworks/kpackage/kpackage-5.101.0.ebuild
@@ -0,0 +1,40 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PVCUT=$(ver_cut 1-2)
+QTMIN=5.15.5
+inherit ecm frameworks.kde.org
+
+DESCRIPTION="Framework to install and load packages of non binary content"
+
+LICENSE="LGPL-2+"
+KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc64 ~riscv ~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() {
+ # plasma-plasmoidpackagetest bug 650214
+ # testpackage-appstream requires network access
+ local myctestargs=( -E "(plasma-plasmoidpackagetest|testpackage-appstream)" )
+ ecm_src_test
+}