summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Sturmlechner <asturm@gentoo.org>2025-12-05 13:25:58 +0100
committerAndreas Sturmlechner <asturm@gentoo.org>2025-12-05 13:59:49 +0100
commita401613efb7d844ad65ce704f33210ed7a51e323 (patch)
tree8a3c5f352e18c0c7f81ccd004324921d0f42953a
parent346cbd90d46fa1d8b78715c8e259cb54c872a1a5 (diff)
downloadkde-a401613efb7d844ad65ce704f33210ed7a51e323.tar.gz
kde-a401613efb7d844ad65ce704f33210ed7a51e323.tar.bz2
kde-a401613efb7d844ad65ce704f33210ed7a51e323.zip
kde-apps/pimcommon: 25.12.0 version bump
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
-rw-r--r--kde-apps/pimcommon/Manifest1
-rw-r--r--kde-apps/pimcommon/pimcommon-25.12.0.ebuild64
2 files changed, 65 insertions, 0 deletions
diff --git a/kde-apps/pimcommon/Manifest b/kde-apps/pimcommon/Manifest
new file mode 100644
index 00000000000..5989e51bb50
--- /dev/null
+++ b/kde-apps/pimcommon/Manifest
@@ -0,0 +1 @@
+DIST pimcommon-25.12.0.tar.xz 379408 BLAKE2B 2e347df49f96ab668a95d2b63e94b886840a47bd569a3cc5cb135db47d7863a1d00fb6313a5bba6307db71e1fc4521cdee760503ea6c8c51ebd5125a7d44b536 SHA512 f9968e2454cb012006e90dec4694cea91f56905838c74d3815ee32a318c09814d36c91b15d500341b1cd96adadd3352839c03d06c5248442fb42da34f1b5dc2d
diff --git a/kde-apps/pimcommon/pimcommon-25.12.0.ebuild b/kde-apps/pimcommon/pimcommon-25.12.0.ebuild
new file mode 100644
index 00000000000..65029028ab6
--- /dev/null
+++ b/kde-apps/pimcommon/pimcommon-25.12.0.ebuild
@@ -0,0 +1,64 @@
+# Copyright 1999-2025 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+ECM_DESIGNERPLUGIN="true"
+ECM_QTHELP="true"
+ECM_TEST="forceoptional"
+PVCUT=$(ver_cut 1-3)
+KFMIN=6.19.0
+QTMIN=6.9.1
+inherit ecm gear.kde.org
+
+DESCRIPTION="Common PIM libraries"
+
+LICENSE="GPL-2+ LGPL-2.1+"
+SLOT="6/$(ver_cut 1-2)"
+KEYWORDS="~amd64 ~arm64"
+IUSE="activities"
+
+RDEPEND="
+ >=dev-libs/ktextaddons-1.8.0:6
+ >=dev-qt/qtbase-${QTMIN}:6[dbus,gui,network,widgets,xml]
+ >=kde-apps/akonadi-${PVCUT}:6=
+ >=kde-apps/akonadi-contacts-${PVCUT}:6=
+ >=kde-apps/akonadi-search-${PVCUT}:6=
+ >=kde-apps/kimap-${PVCUT}:6=
+ >=kde-apps/kldap-${PVCUT}:6=
+ >=kde-apps/libkdepim-${PVCUT}:6=
+ >=kde-frameworks/karchive-${KFMIN}:6
+ >=kde-frameworks/kcmutils-${KFMIN}:6
+ >=kde-frameworks/kcodecs-${KFMIN}:6
+ >=kde-frameworks/kconfig-${KFMIN}:6
+ >=kde-frameworks/kcontacts-${KFMIN}:6
+ >=kde-frameworks/kcoreaddons-${KFMIN}:6
+ >=kde-frameworks/ki18n-${KFMIN}:6
+ >=kde-frameworks/kio-${KFMIN}:6
+ >=kde-frameworks/kitemmodels-${KFMIN}:6
+ >=kde-frameworks/kjobwidgets-${KFMIN}:6
+ >=kde-frameworks/knewstuff-${KFMIN}:6
+ >=kde-frameworks/kservice-${KFMIN}:6
+ >=kde-frameworks/kwidgetsaddons-${KFMIN}:6
+ >=kde-frameworks/kxmlgui-${KFMIN}:6
+ >=kde-frameworks/purpose-${KFMIN}:6
+ activities? ( kde-plasma/plasma-activities:6= )
+"
+DEPEND="${RDEPEND}"
+
+src_configure() {
+ local mycmakeargs=(
+ -DOPTION_USE_PLASMA_ACTIVITIES=$(usex activities)
+ )
+
+ ecm_src_configure
+}
+
+src_test() {
+ # bugs 641730, 661330
+ local myctestargs=(
+ -E "(autocorrectiontest|pimcommon-translator-translatorwidgettest)"
+ )
+
+ ecm_src_test
+}