* [bug#39182] [PATCH 00/26] First part od KDE PIM, incl. akonadi, kgpg, kleopatra
@ 2020-01-18 21:10 Hartmut Goebel
2020-01-18 21:11 ` [bug#39182] [PATCH 01/26] gnu: Add akonadi Hartmut Goebel
[not found] ` <handler.39182.B.15793818166673.ack@debbugs.gnu.org>
0 siblings, 2 replies; 28+ messages in thread
From: Hartmut Goebel @ 2020-01-18 21:10 UTC (permalink / raw)
To: 39182
This is the first part of KDE PIM packages. It incliudes akonadi, kgpg and
kleopatra.
Question: I prefixed the names of both "mailimorter" and "pimcommon" with a
"k", since otherwise the package names seemed to generic. What do you think
agout that?
Hartmut Goebel (26):
gnu: Add akonadi.
gnu: Add kmime.
gnu: Add kmbox.
gnu: Add kcalutils.
gnu: Add kpimtextedit.
gnu: Add kidentitymanagement.
gnu: Add kimap.
gnu: Add kldap.
gnu: Add ktnef.
gnu: Add kalarmcal.
gnu: Add akonadi-mime.
gnu: Add akonadi-notes.
gnu: Add akonadi-search.
gnu: Add akonadi-contacts.
gnu: Add ksmtp.
gnu: Add kontactinterface.
gnu: Add libkgapi.
gnu: Add kmailtransport.
gnu: Add akonadi-calendar.
gnu: Add libkleo.
gnu: Add kleopatra.
gnu: Add kgpg.
gnu: Add libkdepim.
gnu: Add kmailimporter.
gnu: Add kpimcommon.
gnu: Add kdepim-apps-libs.
gnu/local.mk | 4 +
gnu/packages/kde-pim.scm | 1184 +++++++++++++++++
...ake-installation-properly-relocatabl.patch | 49 +
gnu/packages/patches/akonadi-paths.patch | 49 +
gnu/packages/patches/akonadi-timestamps.patch | 14 +
5 files changed, 1300 insertions(+)
create mode 100644 gnu/packages/kde-pim.scm
create mode 100644 gnu/packages/patches/akonadi-Revert-Make-installation-properly-relocatabl.patch
create mode 100644 gnu/packages/patches/akonadi-paths.patch
create mode 100644 gnu/packages/patches/akonadi-timestamps.patch
--
2.21.1
^ permalink raw reply [flat|nested] 28+ messages in thread
* [bug#39182] [PATCH 01/26] gnu: Add akonadi.
2020-01-18 21:10 [bug#39182] [PATCH 00/26] First part od KDE PIM, incl. akonadi, kgpg, kleopatra Hartmut Goebel
@ 2020-01-18 21:11 ` Hartmut Goebel
2020-01-18 21:11 ` [bug#39182] [PATCH 02/26] gnu: Add kmime Hartmut Goebel
` (24 more replies)
[not found] ` <handler.39182.B.15793818166673.ack@debbugs.gnu.org>
1 sibling, 25 replies; 28+ messages in thread
From: Hartmut Goebel @ 2020-01-18 21:11 UTC (permalink / raw)
To: 39182
* gnu/packages/kde-pim.scm,
gnu/packages/patches/akonadi-paths.patch,
gnu/packages/patches/akonadi-Revert-Make-installation-properly-relocatabl.patch
gnu/packages/patches/akonadi-timestamps.patch: New files.
* gnu/local.mk (MODULES): Add kde-pim.scm. (dist_patch): Add the patches.
---
gnu/local.mk | 4 +
gnu/packages/kde-pim.scm | 112 ++++++++++++++++++
...ake-installation-properly-relocatabl.patch | 49 ++++++++
gnu/packages/patches/akonadi-paths.patch | 49 ++++++++
gnu/packages/patches/akonadi-timestamps.patch | 14 +++
5 files changed, 228 insertions(+)
create mode 100644 gnu/packages/kde-pim.scm
create mode 100644 gnu/packages/patches/akonadi-Revert-Make-installation-properly-relocatabl.patch
create mode 100644 gnu/packages/patches/akonadi-paths.patch
create mode 100644 gnu/packages/patches/akonadi-timestamps.patch
diff --git a/gnu/local.mk b/gnu/local.mk
index 286bcb67dd..41829c5c5a 100644
--- a/gnu/local.mk
+++ b/gnu/local.mk
@@ -285,6 +285,7 @@ GNU_SYSTEM_MODULES = \
%D%/packages/kde-frameworks.scm \
%D%/packages/kde-multimedia.scm \
%D%/packages/kde-plasma.scm \
+ %D%/packages/kde-pim.scm \
%D%/packages/kde-utils.scm \
%D%/packages/kerberos.scm \
%D%/packages/key-mon.scm \
@@ -705,6 +706,9 @@ dist_patch_DATA = \
%D%/packages/patches/aegisub-icu59-include-unistr.patch \
%D%/packages/patches/aegisub-boost68.patch \
%D%/packages/patches/agg-am_c_prototype.patch \
+ %D%/packages/patches/akonadi-paths.patch \
+ %D%/packages/patches/akonadi-Revert-Make-installation-properly-relocatabl.patch \
+ %D%/packages/patches/akonadi-timestamps.patch \
%D%/packages/patches/allegro-mesa-18.2.5-and-later.patch \
%D%/packages/patches/amule-crypto-6.patch \
%D%/packages/patches/antiword-CVE-2014-8123.patch \
diff --git a/gnu/packages/kde-pim.scm b/gnu/packages/kde-pim.scm
new file mode 100644
index 0000000000..3bf3e96a02
--- /dev/null
+++ b/gnu/packages/kde-pim.scm
@@ -0,0 +1,112 @@
+;;; GNU Guix --- Functional package management for GNU
+;;; Copyright © 2017, 2019, 2020 Hartmut Goebel <h.goebel@crazy-compilers.com>
+;;;
+;;; This file is part of GNU Guix.
+;;;
+;;; GNU Guix is free software; you can redistribute it and/or modify it
+;;; under the terms of the GNU General Public License as published by
+;;; the Free Software Foundation; either version 3 of the License, or (at
+;;; your option) any later version.
+;;;
+;;; GNU Guix is distributed in the hope that it will be useful, but
+;;; WITHOUT ANY WARRANTY; without even the implied warranty of
+;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+;;; GNU General Public License for more details.
+;;;
+;;; You should have received a copy of the GNU General Public License
+;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
+
+(define-module (gnu packages kde-pim)
+ #:use-module (guix build-system qt)
+ #:use-module (guix download)
+ #:use-module ((guix licenses) #:prefix license:)
+ #:use-module (guix packages)
+ #:use-module (guix utils)
+ #:use-module (gnu packages)
+ #:use-module (gnu packages boost)
+ #:use-module (gnu packages databases)
+ #:use-module (gnu packages documentation)
+ #:use-module (gnu packages gnome)
+ #:use-module (gnu packages kde-frameworks)
+ #:use-module (gnu packages qt)
+ #:use-module (gnu packages sqlite)
+ #:use-module (gnu packages xml))
+
+(define-public akonadi
+ (package
+ (name "akonadi")
+ (version "19.08.3")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append "mirror://kde/stable/applications/" version
+ "/src/akonadi-" version ".tar.xz"))
+ (sha256
+ (base32 "0v7f1049wjnqxhwxr1443wc2cfbdqmf15xcwjz3j1m0vgdva9pyg"))
+ (patches (search-patches
+ "akonadi-paths.patch"
+ "akonadi-timestamps.patch"
+ "akonadi-Revert-Make-installation-properly-relocatabl.patch"))))
+ (build-system qt-build-system)
+ (native-inputs
+ `(("extra-cmake-modules" ,extra-cmake-modules)
+ ("qttools" ,qttools)
+ ("shared-mime-info" ,shared-mime-info)))
+ (inputs
+ `(("boost" ,boost)
+ ("kconfig" ,kconfig)
+ ("kconfigwidgets" ,kconfigwidgets)
+ ("kcoreaddons" ,kcoreaddons)
+ ("kcrash" ,kcrash)
+ ("kdbusaddons" ,kdbusaddons)
+ ("kdesignerplugin" ,kdesignerplugin)
+ ("ki18n" ,ki18n)
+ ("kiconthemes" ,kiconthemes)
+ ("kio" ,kio)
+ ("kitemmodels" ,kitemmodels)
+ ("kitemviews" ,kitemviews)
+ ("kwidgetsaddons" ,kwidgetsaddons)
+ ("kwindowsystem" ,kwindowsystem)
+ ("kxmlgui" ,kxmlgui)
+ ("libxml2" ,libxml2)
+ ("libxslt" ,libxslt)
+ ;; Do NOT add mysql or postgresql to the inputs. Otherwise the binaries
+ ;; and wrapped files will refer to them, even if the user choices none
+ ;; of these. Executables are searched on $PATH then.
+ ("qtbase" ,qtbase)
+ ("sqlite" ,sqlite)))
+ (arguments
+ `(#:tests? #f ;; TODO 135/167 tests fail
+ #:configure-flags '("-DDATABASE_BACKEND=SQLITE") ; lightweight
+ #:modules ((ice-9 textual-ports)
+ ,@%qt-build-system-modules)
+ #:phases
+ (modify-phases (@ (guix build qt-build-system) %standard-phases)
+ (add-before 'configure 'add-definitions
+ (lambda _
+ (let ((out (assoc-ref %outputs "out"))
+ (mysql (assoc-ref %build-inputs "mysql"))
+ (pgsql (assoc-ref %build-inputs "postgresql")))
+ (with-output-to-file "CMakeLists.txt.new"
+ (lambda _
+ (display
+ (string-append
+ "add_compile_definitions(\n"
+ "NIX_OUT=\"" out "\"\n"
+ ;; pin binaries for mysql backend
+ ")\n\n"))
+ (display
+ (call-with-input-file "CMakeLists.txt"
+ get-string-all))))
+ (rename-file "CMakeLists.txt.new" "CMakeLists.txt"))
+ #t)))))
+ (home-page "https://kontact.kde.org/components/akonadi.html")
+ (synopsis "Extensible cross-desktop storage service for PIM")
+ (description "Akonadi is an extensible cross-desktop Personal Information
+Management (PIM) storage service. It provides a common framework for
+applications to store and access mail, calendars, addressbooks, and other PIM
+data.
+
+This package contains the Akonadi PIM storage server and associated
+programs.")
+ (license license:fdl1.2+)))
diff --git a/gnu/packages/patches/akonadi-Revert-Make-installation-properly-relocatabl.patch b/gnu/packages/patches/akonadi-Revert-Make-installation-properly-relocatabl.patch
new file mode 100644
index 0000000000..c3964c5c05
--- /dev/null
+++ b/gnu/packages/patches/akonadi-Revert-Make-installation-properly-relocatabl.patch
@@ -0,0 +1,49 @@
+From bc018b4bc816a3b51deb9739bedbf8a2268d0684 Mon Sep 17 00:00:00 2001
+From: gnidorah <gnidorah@users.noreply.github.com>
+Date: Fri, 22 Dec 2017 17:36:03 +0300
+Subject: [PATCH] Revert "Make Akonadi installation properly relocatable"
+
+This reverts commit b2bb55f13f2ac783f89cc414de8c39f62fa2096a.
+---
+ CMakeLists.txt | 3 ---
+ KF5AkonadiConfig.cmake.in | 6 +++---
+ 2 files changed, 3 insertions(+), 6 deletions(-)
+
+Index: akonadi-19.08.0/CMakeLists.txt
+===================================================================
+--- akonadi-19.08.0.orig/CMakeLists.txt
++++ akonadi-19.08.0/CMakeLists.txt
+@@ -306,9 +306,6 @@ configure_package_config_file(
+ "${CMAKE_CURRENT_SOURCE_DIR}/KF5AkonadiConfig.cmake.in"
+ "${CMAKE_CURRENT_BINARY_DIR}/KF5AkonadiConfig.cmake"
+ INSTALL_DESTINATION ${CMAKECONFIG_INSTALL_DIR}
+- PATH_VARS AKONADI_DBUS_INTERFACES_INSTALL_DIR
+- AKONADI_INCLUDE_DIR
+- KF5Akonadi_DATA_DIR
+ )
+
+ install(FILES
+Index: akonadi-19.08.0/KF5AkonadiConfig.cmake.in
+===================================================================
+--- akonadi-19.08.0.orig/KF5AkonadiConfig.cmake.in
++++ akonadi-19.08.0/KF5AkonadiConfig.cmake.in
+@@ -26,8 +26,8 @@ if(BUILD_TESTING)
+ find_dependency(Qt5Test "@QT_REQUIRED_VERSION@")
+ endif()
+
+-set_and_check(AKONADI_DBUS_INTERFACES_DIR "@PACKAGE_AKONADI_DBUS_INTERFACES_INSTALL_DIR@")
+-set_and_check(AKONADI_INCLUDE_DIR "@PACKAGE_AKONADI_INCLUDE_DIR@")
++set_and_check(AKONADI_DBUS_INTERFACES_DIR "@AKONADI_DBUS_INTERFACES_INSTALL_DIR@")
++set_and_check(AKONADI_INCLUDE_DIR "@AKONADI_INCLUDE_DIR@")
+
+ find_dependency(Boost "@Boost_MINIMUM_VERSION@")
+
+@@ -35,7 +35,7 @@ include(${CMAKE_CURRENT_LIST_DIR}/KF5Ako
+ include(${CMAKE_CURRENT_LIST_DIR}/KF5AkonadiMacros.cmake)
+
+ # The directory where akonadi-xml.xsd and kcfg2dbus.xsl are installed
+-set(KF5Akonadi_DATA_DIR "@PACKAGE_KF5Akonadi_DATA_DIR@")
++set(KF5Akonadi_DATA_DIR "@KF5Akonadi_DATA_DIR@")
+
+ ####################################################################################
+ # CMAKE_AUTOMOC
diff --git a/gnu/packages/patches/akonadi-paths.patch b/gnu/packages/patches/akonadi-paths.patch
new file mode 100644
index 0000000000..da250ee9e8
--- /dev/null
+++ b/gnu/packages/patches/akonadi-paths.patch
@@ -0,0 +1,49 @@
+This is based on the respectve patch from NixPkgs, but with the parts pinning
+mysql and postgresql executables removed. The our package definition on why.
+
+
+Index: akonadi-19.08.0/src/akonadicontrol/agentmanager.cpp
+===================================================================
+--- akonadi-19.08.0.orig/src/akonadicontrol/agentmanager.cpp
++++ akonadi-19.08.0/src/akonadicontrol/agentmanager.cpp
+@@ -78,12 +78,12 @@ AgentManager::AgentManager(bool verbose,
+ mStorageController = new Akonadi::ProcessControl;
+ mStorageController->setShutdownTimeout(15 * 1000); // the server needs more time for shutdown if we are using an internal mysqld
+ connect(mStorageController, &Akonadi::ProcessControl::unableToStart, this, &AgentManager::serverFailure);
+- mStorageController->start(QStringLiteral("akonadiserver"), serviceArgs, Akonadi::ProcessControl::RestartOnCrash);
++ mStorageController->start(QLatin1String(NIX_OUT "/bin/akonadiserver"), serviceArgs, Akonadi::ProcessControl::RestartOnCrash);
+
+ if (mAgentServerEnabled) {
+ mAgentServer = new Akonadi::ProcessControl;
+ connect(mAgentServer, &Akonadi::ProcessControl::unableToStart, this, &AgentManager::agentServerFailure);
+- mAgentServer->start(QStringLiteral("akonadi_agent_server"), serviceArgs, Akonadi::ProcessControl::RestartOnCrash);
++ mAgentServer->start(QLatin1String(NIX_OUT "/bin/akonadi_agent_server"), serviceArgs, Akonadi::ProcessControl::RestartOnCrash);
+ }
+ }
+
+Index: akonadi-19.08.0/src/akonadicontrol/agentprocessinstance.cpp
+===================================================================
+--- akonadi-19.08.0.orig/src/akonadicontrol/agentprocessinstance.cpp
++++ akonadi-19.08.0/src/akonadicontrol/agentprocessinstance.cpp
+@@ -62,7 +62,7 @@ bool AgentProcessInstance::start(const A
+ } else {
+ Q_ASSERT(agentInfo.launchMethod == AgentType::Launcher);
+ const QStringList arguments = QStringList() << executable << identifier();
+- const QString agentLauncherExec = Akonadi::StandardDirs::findExecutable(QStringLiteral("akonadi_agent_launcher"));
++ const QString agentLauncherExec = QLatin1String(NIX_OUT "/bin/akonadi_agent_launcher");
+ mController->start(agentLauncherExec, arguments);
+ }
+ return true;
+Index: akonadi-19.08.0/src/server/storage/dbconfigmysql.cpp
+===================================================================
+--- akonadi-19.08.0.orig/src/server/storage/dbconfigmysql.cpp
++++ akonadi-19.08.0/src/server/storage/dbconfigmysql.cpp
+@@ -209,7 +193,7 @@ bool DbConfigMysql::startInternalServer(
+ #endif
+
+ // generate config file
+- const QString globalConfig = StandardDirs::locateResourceFile("config", QStringLiteral("mysql-global.conf"));
++ const QString globalConfig = QLatin1String(NIX_OUT "/etc/xdg/akonadi/mysql-global.conf");
+ const QString localConfig = StandardDirs::locateResourceFile("config", QStringLiteral("mysql-local.conf"));
+ const QString actualConfig = StandardDirs::saveDir("data") + QLatin1String("/mysql.conf");
+ if (globalConfig.isEmpty()) {
diff --git a/gnu/packages/patches/akonadi-timestamps.patch b/gnu/packages/patches/akonadi-timestamps.patch
new file mode 100644
index 0000000000..e299a6991f
--- /dev/null
+++ b/gnu/packages/patches/akonadi-timestamps.patch
@@ -0,0 +1,14 @@
+Index: akonadi-19.08.0/src/server/storage/dbconfigmysql.cpp
+===================================================================
+--- akonadi-19.08.0.orig/src/server/storage/dbconfigmysql.cpp
++++ akonadi-19.08.0/src/server/storage/dbconfigmysql.cpp
+@@ -235,8 +235,7 @@ bool DbConfigMysql::startInternalServer(
+ bool confUpdate = false;
+ QFile actualFile(actualConfig);
+ // update conf only if either global (or local) is newer than actual
+- if ((QFileInfo(globalConfig).lastModified() > QFileInfo(actualFile).lastModified()) ||
+- (QFileInfo(localConfig).lastModified() > QFileInfo(actualFile).lastModified())) {
++ if (true) {
+ QFile globalFile(globalConfig);
+ QFile localFile(localConfig);
+ if (globalFile.open(QFile::ReadOnly) && actualFile.open(QFile::WriteOnly)) {
--
2.21.1
^ permalink raw reply related [flat|nested] 28+ messages in thread
* [bug#39182] [PATCH 02/26] gnu: Add kmime.
2020-01-18 21:11 ` [bug#39182] [PATCH 01/26] gnu: Add akonadi Hartmut Goebel
@ 2020-01-18 21:11 ` Hartmut Goebel
2020-01-18 21:11 ` [bug#39182] [PATCH 03/26] gnu: Add kmbox Hartmut Goebel
` (23 subsequent siblings)
24 siblings, 0 replies; 28+ messages in thread
From: Hartmut Goebel @ 2020-01-18 21:11 UTC (permalink / raw)
To: 39182
* gnu/packages/kde-pim.scm (kmime): New variable.
---
gnu/packages/kde-pim.scm | 34 ++++++++++++++++++++++++++++++++++
1 file changed, 34 insertions(+)
diff --git a/gnu/packages/kde-pim.scm b/gnu/packages/kde-pim.scm
index 3bf3e96a02..393ffaba7e 100644
--- a/gnu/packages/kde-pim.scm
+++ b/gnu/packages/kde-pim.scm
@@ -110,3 +110,37 @@ data.
This package contains the Akonadi PIM storage server and associated
programs.")
(license license:fdl1.2+)))
+
+(define-public kmime
+ (package
+ (name "kmime")
+ (version "19.08.3")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append "mirror://kde/stable/applications/" version
+ "/src/kmime-" version ".tar.xz"))
+ (sha256
+ (base32 "1pc00pwwrngsyr7ppvqwfgvcgy2wiqdbqxhv9xidn4dw9way2ng6"))))
+ (build-system qt-build-system)
+ (native-inputs
+ `(("extra-cmake-modules" ,extra-cmake-modules)))
+ (inputs
+ `(("kcodecs" ,kcodecs)
+ ("ki18n" ,ki18n)
+ ("qtbase" ,qtbase)))
+ (arguments
+ `(#:phases
+ (modify-phases %standard-phases
+ (add-after 'unpack 'fix-test-case
+ (lambda _
+ ;; This is curious: autotests/CMakeLists.txt sets LC_TIME=C, but
+ ;; the Qt locale returns different. See kmime commit 3a9651d26a.
+ (substitute* "autotests/dateformattertest.cpp"
+ (("(Today|Yesterday) 12:34:56" line day)
+ (string-append day " 12:34 PM")))
+ #t)))))
+ (home-page "https://api.kde.org/stable/kdepimlibs-apidocs/")
+ (synopsis "Library for handling MIME data")
+ (description "A library for MIME handling.")
+ (license license:lgpl2.0+)))
--
2.21.1
^ permalink raw reply related [flat|nested] 28+ messages in thread
* [bug#39182] [PATCH 03/26] gnu: Add kmbox.
2020-01-18 21:11 ` [bug#39182] [PATCH 01/26] gnu: Add akonadi Hartmut Goebel
2020-01-18 21:11 ` [bug#39182] [PATCH 02/26] gnu: Add kmime Hartmut Goebel
@ 2020-01-18 21:11 ` Hartmut Goebel
2020-01-18 21:11 ` [bug#39182] [PATCH 04/26] gnu: Add kcalutils Hartmut Goebel
` (22 subsequent siblings)
24 siblings, 0 replies; 28+ messages in thread
From: Hartmut Goebel @ 2020-01-18 21:11 UTC (permalink / raw)
To: 39182
* gnu/packages/kde-pim.scm (kmbox): New variable.
---
gnu/packages/kde-pim.scm | 23 +++++++++++++++++++++++
1 file changed, 23 insertions(+)
diff --git a/gnu/packages/kde-pim.scm b/gnu/packages/kde-pim.scm
index 393ffaba7e..be05abe386 100644
--- a/gnu/packages/kde-pim.scm
+++ b/gnu/packages/kde-pim.scm
@@ -111,6 +111,29 @@ This package contains the Akonadi PIM storage server and associated
programs.")
(license license:fdl1.2+)))
+(define-public kmbox
+ (package
+ (name "kmbox")
+ (version "19.08.3")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append "mirror://kde/stable/applications/" version
+ "/src/kmbox-" version ".tar.xz"))
+ (sha256
+ (base32 "13b5v1nx46k5ais3cms7yxrfi8p6xbljpkpg3f7v1asb6kshv7g2"))))
+ (build-system qt-build-system)
+ (native-inputs
+ `(("extra-cmake-modules" ,extra-cmake-modules)))
+ (inputs
+ `(("kcodecs" ,kcodecs)
+ ("kmime" ,kmime)
+ ("qtbase" ,qtbase)))
+ (home-page "https://api.kde.org/stable/kdepimlibs-apidocs/")
+ (synopsis "Library for handling mbox mailboxes")
+ (description "A library for accessing mail storages in MBox format.")
+ (license license:lgpl2.0+ )))
+
(define-public kmime
(package
(name "kmime")
--
2.21.1
^ permalink raw reply related [flat|nested] 28+ messages in thread
* [bug#39182] [PATCH 04/26] gnu: Add kcalutils.
2020-01-18 21:11 ` [bug#39182] [PATCH 01/26] gnu: Add akonadi Hartmut Goebel
2020-01-18 21:11 ` [bug#39182] [PATCH 02/26] gnu: Add kmime Hartmut Goebel
2020-01-18 21:11 ` [bug#39182] [PATCH 03/26] gnu: Add kmbox Hartmut Goebel
@ 2020-01-18 21:11 ` Hartmut Goebel
2020-01-18 21:11 ` [bug#39182] [PATCH 05/26] gnu: Add kpimtextedit Hartmut Goebel
` (21 subsequent siblings)
24 siblings, 0 replies; 28+ messages in thread
From: Hartmut Goebel @ 2020-01-18 21:11 UTC (permalink / raw)
To: 39182
* gnu/packages/kde-pim.scm (kcalutils): New variable.
---
gnu/packages/kde-pim.scm | 46 ++++++++++++++++++++++++++++++++++++++++
1 file changed, 46 insertions(+)
diff --git a/gnu/packages/kde-pim.scm b/gnu/packages/kde-pim.scm
index be05abe386..c38daaf221 100644
--- a/gnu/packages/kde-pim.scm
+++ b/gnu/packages/kde-pim.scm
@@ -111,6 +111,52 @@ This package contains the Akonadi PIM storage server and associated
programs.")
(license license:fdl1.2+)))
+(define-public kcalutils
+ (package
+ (name "kcalutils")
+ (version "19.08.3")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append "mirror://kde/stable/applications/" version
+ "/src/kcalutils-" version ".tar.xz"))
+ (sha256
+ (base32 "1nlkik4qiciyh1slgpis3n5h9pks2ygdba9yq4s16nnmip4l45w2"))))
+ (build-system qt-build-system)
+ (native-inputs
+ `(("extra-cmake-modules" ,extra-cmake-modules)
+ ("libxml2" ,libxml2))) ;; xmllint required for tests
+ (inputs
+ `(("grantlee" ,grantlee)
+ ("kcalendarcore" ,kcalendarcore)
+ ("kcodecs" ,kcodecs)
+ ("kconfig" ,kconfig)
+ ("kconfigwidgets" ,kconfigwidgets)
+ ("kcoreaddons" ,kcoreaddons)
+ ("ki18n" ,ki18n)
+ ("kiconthemes" ,kiconthemes)
+ ("kidentitymanagement" ,kidentitymanagement)
+ ("kpimtextedit" ,kpimtextedit)
+ ("ktextwidgets" ,ktextwidgets)
+ ("kwidgetsaddons" ,kwidgetsaddons)
+ ("oxygen-icons" ,oxygen-icons) ; default icon set, required for tests
+ ("qtbase" ,qtbase)))
+ (arguments
+ `(#:tests? #f ;; TODO: seem to pull in some wrong theme
+ #:phases
+ (modify-phases %standard-phases
+ (add-before 'check 'check-setup
+ (lambda _
+ ;; make Qt render "offscreen", required for tests
+ (setenv "QT_QPA_PLATFORM" "offscreen")
+ #t)))))
+ (home-page "https://api.kde.org/stable/kdepimlibs-apidocs/")
+ (synopsis "Library with utility functions for the handling of calendar
+data")
+ (description "This library provides a utility and user interface
+functions for accessing calendar data using the kcalcore API.")
+ (license license:lgpl2.0+)))
+
(define-public kmbox
(package
(name "kmbox")
--
2.21.1
^ permalink raw reply related [flat|nested] 28+ messages in thread
* [bug#39182] [PATCH 05/26] gnu: Add kpimtextedit.
2020-01-18 21:11 ` [bug#39182] [PATCH 01/26] gnu: Add akonadi Hartmut Goebel
` (2 preceding siblings ...)
2020-01-18 21:11 ` [bug#39182] [PATCH 04/26] gnu: Add kcalutils Hartmut Goebel
@ 2020-01-18 21:11 ` Hartmut Goebel
2020-01-18 21:11 ` [bug#39182] [PATCH 06/26] gnu: Add kidentitymanagement Hartmut Goebel
` (20 subsequent siblings)
24 siblings, 0 replies; 28+ messages in thread
From: Hartmut Goebel @ 2020-01-18 21:11 UTC (permalink / raw)
To: 39182
* gnu/packages/kde-pim.scm (kpimtextedit): New variable.
---
gnu/packages/kde-pim.scm | 47 ++++++++++++++++++++++++++++++++++++++++
1 file changed, 47 insertions(+)
diff --git a/gnu/packages/kde-pim.scm b/gnu/packages/kde-pim.scm
index c38daaf221..a71b59243b 100644
--- a/gnu/packages/kde-pim.scm
+++ b/gnu/packages/kde-pim.scm
@@ -213,3 +213,50 @@ functions for accessing calendar data using the kcalcore API.")
(synopsis "Library for handling MIME data")
(description "A library for MIME handling.")
(license license:lgpl2.0+)))
+
+(define-public kpimtextedit
+ (package
+ (name "kpimtextedit")
+ (version "19.08.3")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append "mirror://kde/stable/applications/" version
+ "/src/kpimtextedit-" version ".tar.xz"))
+ (sha256
+ (base32 "1as48j5qfpj9pqjck1615nlpk4a850m7xxcyl41gx8biww027zvm"))))
+ (build-system qt-build-system)
+ (native-inputs
+ `(("extra-cmake-modules" ,extra-cmake-modules)
+ ("qttools" ,qttools)))
+ (inputs
+ `(("grantlee" ,grantlee)
+ ("kcodecs" ,kcodecs)
+ ("kconfigwidgets" ,kconfigwidgets)
+ ("kcoreaddons" ,kcoreaddons)
+ ("kdesignerplugin" ,kdesignerplugin)
+ ("kemoticons" ,kemoticons)
+ ("ki18n" ,ki18n)
+ ("kiconthemes" ,kiconthemes)
+ ("kio" ,kio)
+ ("ksyntaxhighlighting" ,ksyntaxhighlighting)
+ ("ktextwidgets" ,ktextwidgets)
+ ("kwidgetsaddons" ,kwidgetsaddons)
+ ("kxmlgui" ,kxmlgui)
+ ("qtbase" ,qtbase)
+ ("qtspeech", qtspeech)
+ ("sonnet" ,sonnet)))
+ (arguments
+ `(#:tests? #f ;; TODO - test suite hangs
+ #:phases
+ (modify-phases %standard-phases
+ (add-before 'check 'check-setup
+ (lambda _
+ ;; make Qt render "offscreen", required for tests
+ (setenv "QT_QPA_PLATFORM" "offscreen")
+ #t)))))
+ (home-page "https://api.kde.org/stable/kdepimlibs-apidocs/")
+ (synopsis "Library providing a textedit with PIM-specific features")
+ (description "A library for PIM-specific text editing utilities.")
+ (license ;; GPL for programs, LGPL for libraries, FDL for documentation
+ (list license:gpl2+ license:lgpl2.0+ license:fdl1.2+))))
--
2.21.1
^ permalink raw reply related [flat|nested] 28+ messages in thread
* [bug#39182] [PATCH 06/26] gnu: Add kidentitymanagement.
2020-01-18 21:11 ` [bug#39182] [PATCH 01/26] gnu: Add akonadi Hartmut Goebel
` (3 preceding siblings ...)
2020-01-18 21:11 ` [bug#39182] [PATCH 05/26] gnu: Add kpimtextedit Hartmut Goebel
@ 2020-01-18 21:11 ` Hartmut Goebel
2020-01-18 21:11 ` [bug#39182] [PATCH 07/26] gnu: Add kimap Hartmut Goebel
` (19 subsequent siblings)
24 siblings, 0 replies; 28+ messages in thread
From: Hartmut Goebel @ 2020-01-18 21:11 UTC (permalink / raw)
To: 39182
* gnu/packages/kde-pim.scm (kidentitymanagement): New variable.
---
gnu/packages/kde-pim.scm | 41 ++++++++++++++++++++++++++++++++++++++++
1 file changed, 41 insertions(+)
diff --git a/gnu/packages/kde-pim.scm b/gnu/packages/kde-pim.scm
index a71b59243b..1333914c34 100644
--- a/gnu/packages/kde-pim.scm
+++ b/gnu/packages/kde-pim.scm
@@ -157,6 +157,47 @@ data")
functions for accessing calendar data using the kcalcore API.")
(license license:lgpl2.0+)))
+(define-public kidentitymanagement
+ (package
+ (name "kidentitymanagement")
+ (version "19.08.3")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append "mirror://kde/stable/applications/" version
+ "/src/kidentitymanagement-" version ".tar.xz"))
+ (sha256
+ (base32 "0dqz49sp5hq44590rrxav8688aqlzsww4q4n55ksfy13nk9i5mbf"))))
+ (build-system qt-build-system)
+ (native-inputs
+ `(("extra-cmake-modules" ,extra-cmake-modules)))
+ (inputs
+ `(("kcodecs" ,kcodecs)
+ ("kcompletion" ,kcompletion)
+ ("kconfig" ,kconfig)
+ ("kcoreaddons" ,kcoreaddons)
+ ("kemoticons" ,kemoticons)
+ ("kiconthemes" ,kiconthemes)
+ ("kio" ,kio)
+ ("kpimtextedit" ,kpimtextedit)
+ ("ktextwidgets" ,ktextwidgets)
+ ("kxmlgui" ,kxmlgui)
+ ("qtbase" ,qtbase)))
+ (arguments
+ `(#:phases
+ (modify-phases %standard-phases
+ (add-before 'check 'check-setup
+ (lambda _
+ ;; make Qt render "offscreen", required for tests
+ (setenv "QT_QPA_PLATFORM" "offscreen")
+ (setenv "HOME" "/tmp/dummy-home")
+ #t)))))
+ (home-page "https://kontact.kde.org/")
+ (synopsis "Library for shared identities between mail applications")
+ (description "Library for shared identities between mail applications.")
+ (license ;; GPL for programs, LGPL for libraries, FDL for documentation
+ (list license:gpl2+ license:lgpl2.0+ license:fdl1.2+))))
+
(define-public kmbox
(package
(name "kmbox")
--
2.21.1
^ permalink raw reply related [flat|nested] 28+ messages in thread
* [bug#39182] [PATCH 07/26] gnu: Add kimap.
2020-01-18 21:11 ` [bug#39182] [PATCH 01/26] gnu: Add akonadi Hartmut Goebel
` (4 preceding siblings ...)
2020-01-18 21:11 ` [bug#39182] [PATCH 06/26] gnu: Add kidentitymanagement Hartmut Goebel
@ 2020-01-18 21:11 ` Hartmut Goebel
2020-01-18 21:11 ` [bug#39182] [PATCH 08/26] gnu: Add kldap Hartmut Goebel
` (18 subsequent siblings)
24 siblings, 0 replies; 28+ messages in thread
From: Hartmut Goebel @ 2020-01-18 21:11 UTC (permalink / raw)
To: 39182
* gnu/packages/kde-pim.scm (kimap): New variable.
---
gnu/packages/kde-pim.scm | 32 ++++++++++++++++++++++++++++++++
1 file changed, 32 insertions(+)
diff --git a/gnu/packages/kde-pim.scm b/gnu/packages/kde-pim.scm
index 1333914c34..139cce3224 100644
--- a/gnu/packages/kde-pim.scm
+++ b/gnu/packages/kde-pim.scm
@@ -24,6 +24,7 @@
#:use-module (guix utils)
#:use-module (gnu packages)
#:use-module (gnu packages boost)
+ #:use-module (gnu packages cyrus-sasl)
#:use-module (gnu packages databases)
#:use-module (gnu packages documentation)
#:use-module (gnu packages gnome)
@@ -198,6 +199,37 @@ functions for accessing calendar data using the kcalcore API.")
(license ;; GPL for programs, LGPL for libraries, FDL for documentation
(list license:gpl2+ license:lgpl2.0+ license:fdl1.2+))))
+(define-public kimap
+ (package
+ (name "kimap")
+ (version "19.08.3")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append "mirror://kde/stable/applications/" version
+ "/src/kimap-" version ".tar.xz"))
+ (sha256
+ (base32 "0l8hb2z82jzbwr12lw5fismwk1a3ca4dk966p1fxg4bibck8vjj6"))))
+ (build-system qt-build-system)
+ (native-inputs
+ `(("extra-cmake-modules" ,extra-cmake-modules)))
+ (inputs
+ `(("cyrus-sasl" ,cyrus-sasl)
+ ("kcoreaddons" ,kcoreaddons)
+ ("ki18n" ,ki18n)
+ ("kio" ,kio)
+ ("kmime" ,kmime)
+ ("qtbase" ,qtbase)))
+ (home-page "https://api.kde.org/stable/kdepimlibs-apidocs/")
+ (synopsis "Library for handling IMAP")
+ (description "This library provides a job-based API for interacting with
+an IMAP4rev1 server. It manages connections, encryption and parameter quoting
+and encoding, but otherwise provides quite a low-level interface to the
+protocol. This library does not implement an IMAP client; it merely makes it
+easier to do so.")
+ (license ;; GPL for programs, LGPL for libraries
+ (list license:gpl2+ license:lgpl2.0+))))
+
(define-public kmbox
(package
(name "kmbox")
--
2.21.1
^ permalink raw reply related [flat|nested] 28+ messages in thread
* [bug#39182] [PATCH 08/26] gnu: Add kldap.
2020-01-18 21:11 ` [bug#39182] [PATCH 01/26] gnu: Add akonadi Hartmut Goebel
` (5 preceding siblings ...)
2020-01-18 21:11 ` [bug#39182] [PATCH 07/26] gnu: Add kimap Hartmut Goebel
@ 2020-01-18 21:11 ` Hartmut Goebel
2020-01-18 21:11 ` [bug#39182] [PATCH 09/26] gnu: Add ktnef Hartmut Goebel
` (17 subsequent siblings)
24 siblings, 0 replies; 28+ messages in thread
From: Hartmut Goebel @ 2020-01-18 21:11 UTC (permalink / raw)
To: 39182
* gnu/packages/kde-pim.scm (kldap): New variable.
---
gnu/packages/kde-pim.scm | 29 +++++++++++++++++++++++++++++
1 file changed, 29 insertions(+)
diff --git a/gnu/packages/kde-pim.scm b/gnu/packages/kde-pim.scm
index 139cce3224..8019ccdc84 100644
--- a/gnu/packages/kde-pim.scm
+++ b/gnu/packages/kde-pim.scm
@@ -29,6 +29,7 @@
#:use-module (gnu packages documentation)
#:use-module (gnu packages gnome)
#:use-module (gnu packages kde-frameworks)
+ #:use-module (gnu packages openldap)
#:use-module (gnu packages qt)
#:use-module (gnu packages sqlite)
#:use-module (gnu packages xml))
@@ -230,6 +231,34 @@ easier to do so.")
(license ;; GPL for programs, LGPL for libraries
(list license:gpl2+ license:lgpl2.0+))))
+(define-public kldap
+ (package
+ (name "kldap")
+ (version "19.08.3")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append "mirror://kde/stable/applications/" version
+ "/src/kldap-" version ".tar.xz"))
+ (sha256
+ (base32 "1blbnj8av6h168g14gyphyd9sz87af773b1qglmbkv5pzbzaanxn"))))
+ (build-system qt-build-system)
+ (native-inputs
+ `(("extra-cmake-modules" ,extra-cmake-modules)
+ ("kdoctools" ,kdoctools)))
+ (inputs
+ `(("ki18n" ,ki18n)
+ ("kio" ,kio)
+ ("kwidgetsaddons" ,kwidgetsaddons)
+ ("qtbase" ,qtbase)))
+ (propagated-inputs
+ `(("cyrus-sasl" ,cyrus-sasl)
+ ("openldap" ,openldap)))
+ (home-page "https://api.kde.org/stable/kdepimlibs-apidocs/")
+ (synopsis "Library for accessing LDAP")
+ (description "This library provides an API for LDAP.")
+ (license license:lgpl2.0+)))
+
(define-public kmbox
(package
(name "kmbox")
--
2.21.1
^ permalink raw reply related [flat|nested] 28+ messages in thread
* [bug#39182] [PATCH 09/26] gnu: Add ktnef.
2020-01-18 21:11 ` [bug#39182] [PATCH 01/26] gnu: Add akonadi Hartmut Goebel
` (6 preceding siblings ...)
2020-01-18 21:11 ` [bug#39182] [PATCH 08/26] gnu: Add kldap Hartmut Goebel
@ 2020-01-18 21:11 ` Hartmut Goebel
2020-01-18 21:11 ` [bug#39182] [PATCH 10/26] gnu: Add kalarmcal Hartmut Goebel
` (16 subsequent siblings)
24 siblings, 0 replies; 28+ messages in thread
From: Hartmut Goebel @ 2020-01-18 21:11 UTC (permalink / raw)
To: 39182
* gnu/packages/kde-pim.scm (ktnef): New variable.
---
gnu/packages/kde-pim.scm | 28 ++++++++++++++++++++++++++++
1 file changed, 28 insertions(+)
diff --git a/gnu/packages/kde-pim.scm b/gnu/packages/kde-pim.scm
index 8019ccdc84..3f4f7a075b 100644
--- a/gnu/packages/kde-pim.scm
+++ b/gnu/packages/kde-pim.scm
@@ -362,3 +362,31 @@ easier to do so.")
(description "A library for PIM-specific text editing utilities.")
(license ;; GPL for programs, LGPL for libraries, FDL for documentation
(list license:gpl2+ license:lgpl2.0+ license:fdl1.2+))))
+
+(define-public ktnef
+ (package
+ (name "ktnef")
+ (version "19.08.3")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append "mirror://kde/stable/applications/" version
+ "/src/ktnef-" version ".tar.xz"))
+ (sha256
+ (base32 "0kgfhh46130hg1xq8km5gjzxa3b620j1zdrg54qivxa782smgbl6"))))
+ (build-system qt-build-system)
+ (native-inputs
+ `(("extra-cmake-modules" ,extra-cmake-modules)))
+ (inputs
+ `(("kcalendarcore" ,kcalendarcore)
+ ("kcalutils" ,kcalutils)
+ ("kcodecs" ,kcodecs)
+ ("kconfig" ,kconfig)
+ ("kcontacts" ,kcontacts)
+ ("kcoreaddons" ,kcoreaddons)
+ ("ki18n" ,ki18n)
+ ("qtbase" ,qtbase)))
+ (home-page "https://api.kde.org/stable/kdepimlibs-apidocs/ktnef/html/")
+ (synopsis "Viewer for mail attachments using TNEF format")
+ (description "Viewer for mail attachments using TNEF format")
+ (license license:lgpl2.0+)))
--
2.21.1
^ permalink raw reply related [flat|nested] 28+ messages in thread
* [bug#39182] [PATCH 10/26] gnu: Add kalarmcal.
2020-01-18 21:11 ` [bug#39182] [PATCH 01/26] gnu: Add akonadi Hartmut Goebel
` (7 preceding siblings ...)
2020-01-18 21:11 ` [bug#39182] [PATCH 09/26] gnu: Add ktnef Hartmut Goebel
@ 2020-01-18 21:11 ` Hartmut Goebel
2020-01-18 21:11 ` [bug#39182] [PATCH 11/26] gnu: Add akonadi-mime Hartmut Goebel
` (15 subsequent siblings)
24 siblings, 0 replies; 28+ messages in thread
From: Hartmut Goebel @ 2020-01-18 21:11 UTC (permalink / raw)
To: 39182
* gnu/packages/kde-pim.scm (kalarmcal): New variable.
---
gnu/packages/kde-pim.scm | 40 ++++++++++++++++++++++++++++++++++++++++
1 file changed, 40 insertions(+)
diff --git a/gnu/packages/kde-pim.scm b/gnu/packages/kde-pim.scm
index 3f4f7a075b..95ecc6e477 100644
--- a/gnu/packages/kde-pim.scm
+++ b/gnu/packages/kde-pim.scm
@@ -113,6 +113,46 @@ This package contains the Akonadi PIM storage server and associated
programs.")
(license license:fdl1.2+)))
+(define-public kalarmcal
+ (package
+ (name "kalarmcal")
+ (version "19.08.3")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append "mirror://kde/stable/applications/" version
+ "/src/kalarmcal-" version ".tar.xz"))
+ (sha256
+ (base32 "0w9qsx2gqwny2v4fsj4awn814s9b7yrxvqrawlick3r2kp4x1sgn"))))
+ (build-system qt-build-system)
+ (native-inputs
+ `(("extra-cmake-modules" ,extra-cmake-modules)))
+ (inputs
+ `(("akonadi", akonadi)
+ ("boost" ,boost)
+ ("kcalendarcore" ,kcalendarcore)
+ ("kcalutils" ,kcalutils)
+ ("kcompletion" ,kcompletion)
+ ("kconfig" ,kconfig)
+ ("kconfigwidgets" ,kconfigwidgets)
+ ("kcoreaddons" ,kcoreaddons)
+ ("kdbusaddons" ,kdbusaddons)
+ ("kholidays" ,kholidays)
+ ("ki18n" ,ki18n)
+ ("kidentitymanagement" ,kidentitymanagement)
+ ("kio" ,kio)
+ ("kitemmodels" ,kitemmodels)
+ ("kpimtextedit" ,kpimtextedit)
+ ("ktextwidgets" ,ktextwidgets)
+ ("kxmlgui" ,kxmlgui)
+ ("qtbase" ,qtbase)))
+ (arguments
+ `(#:tests? #f)) ;; TODO: TZ setup
+ (home-page "https://api.kde.org/stable/kdepimlibs-apidocs/")
+ (synopsis "Library for handling kalarm calendar data")
+ (description "This library provides an API for KAlarm alarms.")
+ (license license:lgpl2.0+)))
+
(define-public kcalutils
(package
(name "kcalutils")
--
2.21.1
^ permalink raw reply related [flat|nested] 28+ messages in thread
* [bug#39182] [PATCH 11/26] gnu: Add akonadi-mime.
2020-01-18 21:11 ` [bug#39182] [PATCH 01/26] gnu: Add akonadi Hartmut Goebel
` (8 preceding siblings ...)
2020-01-18 21:11 ` [bug#39182] [PATCH 10/26] gnu: Add kalarmcal Hartmut Goebel
@ 2020-01-18 21:11 ` Hartmut Goebel
2020-01-18 21:11 ` [bug#39182] [PATCH 12/26] gnu: Add akonadi-notes Hartmut Goebel
` (14 subsequent siblings)
24 siblings, 0 replies; 28+ messages in thread
From: Hartmut Goebel @ 2020-01-18 21:11 UTC (permalink / raw)
To: 39182
* gnu/packages/kde-pim.scm (akonadi-mime): New variable.
---
gnu/packages/kde-pim.scm | 53 ++++++++++++++++++++++++++++++++++++++++
1 file changed, 53 insertions(+)
diff --git a/gnu/packages/kde-pim.scm b/gnu/packages/kde-pim.scm
index 95ecc6e477..b37b3ca66a 100644
--- a/gnu/packages/kde-pim.scm
+++ b/gnu/packages/kde-pim.scm
@@ -113,6 +113,59 @@ This package contains the Akonadi PIM storage server and associated
programs.")
(license license:fdl1.2+)))
+(define-public akonadi-mime
+ (package
+ (name "akonadi-mime")
+ (version "19.08.3")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append "mirror://kde/stable/applications/" version
+ "/src/akonadi-mime-" version ".tar.xz"))
+ (sha256
+ (base32 "03q3dnhzcgmgcqvijnwi4ikg0m1zad2l679bqnp051v27fvs4yg7"))))
+ (build-system qt-build-system)
+ (native-inputs
+ `(("extra-cmake-modules" ,extra-cmake-modules)
+ ("libxslt" ,libxslt) ;; xslt for generating interface descriptions
+ ("shared-mime-info" ,shared-mime-info)))
+ (inputs
+ `(("akonadi" ,akonadi)
+ ("boost", boost)
+ ("kcodecs" ,kcodecs)
+ ("kconfig" ,kconfig)
+ ("kconfigwidgets" ,kconfigwidgets)
+ ("kdbusaddons" ,kdbusaddons)
+ ("ki18n" ,ki18n)
+ ("kio" ,kio)
+ ("kitemmodels" ,kitemmodels)
+ ("kmime" ,kmime)
+ ("kwidgetsaddons" ,kwidgetsaddons)
+ ("kxmlgui" ,kxmlgui)
+ ("qtbase" ,qtbase)))
+ (home-page "https://api.kde.org/stable/kdepimlibs-apidocs/akonadi/html/")
+ (arguments
+ `(#:phases
+ (modify-phases %standard-phases
+ (add-after 'unpack 'copy-desktop-file-early
+ (lambda _
+ (let ((plugins-dir "/tmp/.local/share/akonadi/plugins/serializer"))
+ (mkdir-p plugins-dir)
+ (copy-file "serializers/akonadi_serializer_mail.desktop"
+ (string-append plugins-dir "/akonadi_serializer_mail.desktop")))
+ #t))
+ (add-before 'check 'check-setup
+ (lambda _
+ (setenv "HOME" "/tmp")
+ #t)))))
+ (synopsis "Akonadi MIME handling library")
+ (description "Akonadi Mime is a library that effectively bridges the
+type-agnostic API of the Akonadi client libraries and the domain-specific
+KMime library. It provides jobs, models and other helpers to make working
+with emails through Akonadi easier.")
+ (license ;; GPL for programs, LGPL for libraries
+ (list license:gpl2+ license:lgpl2.0+))))
+
(define-public kalarmcal
(package
(name "kalarmcal")
--
2.21.1
^ permalink raw reply related [flat|nested] 28+ messages in thread
* [bug#39182] [PATCH 12/26] gnu: Add akonadi-notes.
2020-01-18 21:11 ` [bug#39182] [PATCH 01/26] gnu: Add akonadi Hartmut Goebel
` (9 preceding siblings ...)
2020-01-18 21:11 ` [bug#39182] [PATCH 11/26] gnu: Add akonadi-mime Hartmut Goebel
@ 2020-01-18 21:11 ` Hartmut Goebel
2020-01-18 21:11 ` [bug#39182] [PATCH 13/26] gnu: Add akonadi-search Hartmut Goebel
` (13 subsequent siblings)
24 siblings, 0 replies; 28+ messages in thread
From: Hartmut Goebel @ 2020-01-18 21:11 UTC (permalink / raw)
To: 39182
* gnu/packages/kde-pim.scm (akonadi-notes): New variable.
---
gnu/packages/kde-pim.scm | 29 +++++++++++++++++++++++++++++
1 file changed, 29 insertions(+)
diff --git a/gnu/packages/kde-pim.scm b/gnu/packages/kde-pim.scm
index b37b3ca66a..8843f8c8c3 100644
--- a/gnu/packages/kde-pim.scm
+++ b/gnu/packages/kde-pim.scm
@@ -166,6 +166,35 @@ with emails through Akonadi easier.")
(license ;; GPL for programs, LGPL for libraries
(list license:gpl2+ license:lgpl2.0+))))
+(define-public akonadi-notes
+ (package
+ (name "akonadi-notes")
+ (version "19.08.3")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append "mirror://kde/stable/applications/" version
+ "/src/akonadi-notes-" version ".tar.xz"))
+ (sha256
+ (base32 "0r8vh11bfjzhspb5kp2d0kcgwqd2m5qpxpamiajzjq910f51sw3w"))))
+ (build-system qt-build-system)
+ (native-inputs
+ `(("extra-cmake-modules" ,extra-cmake-modules)))
+ (inputs
+ `(("akonadi" ,akonadi)
+ ("kcodecs" ,kcodecs)
+ ("ki18n" ,ki18n)
+ ("kmime" ,kmime)
+ ("qtbase" ,qtbase)))
+ (home-page "https://api.kde.org/stable/kdepimlibs-apidocs/akonadi/html/")
+ (synopsis "Akonadi notes access library")
+ (description "Akonadi Notes is a library that effectively bridges the
+type-agnostic API of the Akonadi client libraries and the domain-specific
+KMime library. It provides a helper class for note attachments and for
+wrapping notes into KMime::Message objects.")
+ (license ;; GPL for programs, LGPL for libraries
+ (list license:gpl2+ license:lgpl2.0+))))
+
(define-public kalarmcal
(package
(name "kalarmcal")
--
2.21.1
^ permalink raw reply related [flat|nested] 28+ messages in thread
* [bug#39182] [PATCH 13/26] gnu: Add akonadi-search.
2020-01-18 21:11 ` [bug#39182] [PATCH 01/26] gnu: Add akonadi Hartmut Goebel
` (10 preceding siblings ...)
2020-01-18 21:11 ` [bug#39182] [PATCH 12/26] gnu: Add akonadi-notes Hartmut Goebel
@ 2020-01-18 21:11 ` Hartmut Goebel
2020-01-18 21:11 ` [bug#39182] [PATCH 14/26] gnu: Add akonadi-contacts Hartmut Goebel
` (12 subsequent siblings)
24 siblings, 0 replies; 28+ messages in thread
From: Hartmut Goebel @ 2020-01-18 21:11 UTC (permalink / raw)
To: 39182
* gnu/packages/kde-pim.scm (akonadi-search): New variable.
---
gnu/packages/kde-pim.scm | 48 ++++++++++++++++++++++++++++++++++++++++
1 file changed, 48 insertions(+)
diff --git a/gnu/packages/kde-pim.scm b/gnu/packages/kde-pim.scm
index 8843f8c8c3..b998e32c69 100644
--- a/gnu/packages/kde-pim.scm
+++ b/gnu/packages/kde-pim.scm
@@ -31,6 +31,7 @@
#:use-module (gnu packages kde-frameworks)
#:use-module (gnu packages openldap)
#:use-module (gnu packages qt)
+ #:use-module (gnu packages search)
#:use-module (gnu packages sqlite)
#:use-module (gnu packages xml))
@@ -195,6 +196,53 @@ wrapping notes into KMime::Message objects.")
(license ;; GPL for programs, LGPL for libraries
(list license:gpl2+ license:lgpl2.0+))))
+(define-public akonadi-search
+ (package
+ (name "akonadi-search")
+ (version "19.08.3")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append "mirror://kde/stable/applications/" version
+ "/src/akonadi-search-" version ".tar.xz"))
+ (sha256
+ (base32 "16qzs2cs4nxwrpwcdgwry95qn6wmg8s1p4w3qajx1ahkgwmsh11s"))))
+ (build-system qt-build-system)
+ (native-inputs
+ `(("extra-cmake-modules" ,extra-cmake-modules)))
+ (inputs
+ `(("akonadi" ,akonadi)
+ ("akonadi-mime" ,akonadi-mime)
+ ("boost" ,boost)
+ ("kcalendarcore" ,kcalendarcore)
+ ("kcmutils" ,kcmutils)
+ ("kcontacts" ,kcontacts)
+ ("kcrash" ,kcrash)
+ ("kdbusaddons" ,kdbusaddons)
+ ("ki18n" ,ki18n)
+ ("kio" ,kio)
+ ("kitemmodels" ,kitemmodels)
+ ("kmime" ,kmime)
+ ("krunner" ,krunner)
+ ("kwindowsystem" ,kwindowsystem)
+ ("qtbase" ,qtbase)
+ ("xapian" ,xapian)))
+ (arguments
+ `(#:tests? #f ;; TODO: need dbos
+ #:phases
+ (modify-phases %standard-phases
+ (add-before 'check 'check-setup
+ (lambda _
+ ;; make Qt render "offscreen", required for tests
+ (setenv "QT_QPA_PLATFORM" "offscreen")
+ #t)))))
+ (home-page "https://api.kde.org/stable/kdepimlibs-apidocs/akonadi/html/")
+ (synopsis "Akonadi search library")
+ (description "Xapian-based indexing and query infrastructure for
+Akonadi.")
+ (license ;; GPL for programs, LGPL for libraries
+ (list license:gpl2+ license:lgpl2.0+))))
+
(define-public kalarmcal
(package
(name "kalarmcal")
--
2.21.1
^ permalink raw reply related [flat|nested] 28+ messages in thread
* [bug#39182] [PATCH 14/26] gnu: Add akonadi-contacts.
2020-01-18 21:11 ` [bug#39182] [PATCH 01/26] gnu: Add akonadi Hartmut Goebel
` (11 preceding siblings ...)
2020-01-18 21:11 ` [bug#39182] [PATCH 13/26] gnu: Add akonadi-search Hartmut Goebel
@ 2020-01-18 21:11 ` Hartmut Goebel
2020-01-18 21:11 ` [bug#39182] [PATCH 15/26] gnu: Add ksmtp Hartmut Goebel
` (11 subsequent siblings)
24 siblings, 0 replies; 28+ messages in thread
From: Hartmut Goebel @ 2020-01-18 21:11 UTC (permalink / raw)
To: 39182
* gnu/packages/kde-pim.scm (akonadi-contacts): New variable.
---
gnu/packages/kde-pim.scm | 59 ++++++++++++++++++++++++++++++++++++++++
1 file changed, 59 insertions(+)
diff --git a/gnu/packages/kde-pim.scm b/gnu/packages/kde-pim.scm
index b998e32c69..79a9064567 100644
--- a/gnu/packages/kde-pim.scm
+++ b/gnu/packages/kde-pim.scm
@@ -114,6 +114,65 @@ This package contains the Akonadi PIM storage server and associated
programs.")
(license license:fdl1.2+)))
+(define-public akonadi-contacts
+ (package
+ (name "akonadi-contacts")
+ (version "19.08.3")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append "mirror://kde/stable/applications/" version
+ "/src/akonadi-contacts-" version ".tar.xz"))
+ (sha256
+ (base32 "1pw1s8c6dlcb103cw46p1ikvas3y8cwiwnfdny2jd3hr3rig4px9"))))
+ (build-system qt-build-system)
+ (native-inputs
+ `(("extra-cmake-modules" ,extra-cmake-modules)))
+ (inputs
+ `(("akonadi" ,akonadi)
+ ("boost" ,boost)
+ ("kauth" ,kauth)
+ ("kcodecs" ,kcodecs)
+ ("kcompletion" ,kcompletion)
+ ("kconfigwidgets" ,kconfigwidgets)
+ ("kcontacts" ,kcontacts)
+ ("kcoreaddons" ,kcoreaddons)
+ ("kdbusaddons" ,kdbusaddons)
+ ("ki18n" ,ki18n)
+ ("kiconthemes" ,kiconthemes)
+ ("kitemmodels" ,kitemmodels)
+ ("kitemviews" ,kitemviews)
+ ("kjobwidgets" ,kjobwidgets)
+ ("kmime" ,kmime)
+ ("kservice" ,kservice)
+ ("ktextwidgets" ,ktextwidgets)
+ ("kwidgetsaddons" ,kwidgetsaddons)
+ ("kxmlgui" ,kxmlgui)
+ ("prison" ,prison)
+ ("kio" ,kio)
+ ("qtbase" ,qtbase)
+ ("solid" ,solid)
+ ("sonnet" ,sonnet)))
+ (arguments
+ `(#:phases
+ (modify-phases %standard-phases
+ (add-before 'check 'check-setup
+ (lambda _
+ ;; make Qt render "offscreen", required for tests
+ (setenv "QT_QPA_PLATFORM" "offscreen")
+ #t)))))
+ (home-page "https://api.kde.org/stable/kdepimlibs-apidocs/akonadi/html/")
+ (synopsis "Akonadi contacts access library")
+ (description "Akonadi Contacts is a library that effectively bridges the
+type-agnostic API of the Akonadi client libraries and the domain-specific
+KContacts library. It provides jobs, models and other helpers to make working
+with contacts and addressbooks through Akonadi easier.
+
+The library provides a complex dialog for editing contacts and several models
+to list and filter contacts.")
+ (license ;; GPL for programs, LGPL for libraries
+ (list license:gpl2+ license:lgpl2.0+))))
+
(define-public akonadi-mime
(package
(name "akonadi-mime")
--
2.21.1
^ permalink raw reply related [flat|nested] 28+ messages in thread
* [bug#39182] [PATCH 15/26] gnu: Add ksmtp.
2020-01-18 21:11 ` [bug#39182] [PATCH 01/26] gnu: Add akonadi Hartmut Goebel
` (12 preceding siblings ...)
2020-01-18 21:11 ` [bug#39182] [PATCH 14/26] gnu: Add akonadi-contacts Hartmut Goebel
@ 2020-01-18 21:11 ` Hartmut Goebel
2020-01-18 21:11 ` [bug#39182] [PATCH 16/26] gnu: Add kontactinterface Hartmut Goebel
` (10 subsequent siblings)
24 siblings, 0 replies; 28+ messages in thread
From: Hartmut Goebel @ 2020-01-18 21:11 UTC (permalink / raw)
To: 39182
* gnu/packages/kde-pim.scm (ksmtp): New variable.
---
gnu/packages/kde-pim.scm | 40 ++++++++++++++++++++++++++++++++++++++++
1 file changed, 40 insertions(+)
diff --git a/gnu/packages/kde-pim.scm b/gnu/packages/kde-pim.scm
index 79a9064567..2d6b445e1d 100644
--- a/gnu/packages/kde-pim.scm
+++ b/gnu/packages/kde-pim.scm
@@ -592,6 +592,46 @@ easier to do so.")
(license ;; GPL for programs, LGPL for libraries, FDL for documentation
(list license:gpl2+ license:lgpl2.0+ license:fdl1.2+))))
+(define-public ksmtp
+ (package
+ (name "ksmtp")
+ (version "19.08.3")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append "mirror://kde/stable/applications/" version
+ "/src/ksmtp-" version ".tar.xz"))
+ (sha256
+ (base32 "1pd8mma3xbq83jkn76gqinn6xh9imaji0jrg3qzysf5rvjl8kcqn"))))
+ (build-system qt-build-system)
+ (native-inputs
+ `(("extra-cmake-modules" ,extra-cmake-modules)))
+ (inputs
+ `(("cyrus-sasl" ,cyrus-sasl)
+ ("kcodecs" ,kcodecs)
+ ("kconfig" ,kconfig)
+ ("kcoreaddons" ,kcoreaddons)
+ ("ki18n" ,ki18n)
+ ("kio" ,kio)
+ ("qtbase" ,qtbase)))
+ (arguments
+ `(#:tests? #f ;; TODO: does not find sasl mechs
+ #:phases
+ (modify-phases %standard-phases
+ (add-after 'unpack 'Use-KDE_INSTALL_TARGETS_DEFAULT_ARGS-when-installing
+ (lambda _
+ (substitute* "src/CMakeLists.txt"
+ (("^(install\\(.* )\\$\\{KF5_INSTALL_TARGETS_DEFAULT_ARGS\\}\\)"
+ _ prefix)
+ (string-append prefix "${KDE_INSTALL_TARGETS_DEFAULT_ARGS})")))
+ #t)))))
+ (home-page "https://cgit.kde.org/ksmtp.git")
+ (synopsis "Library for sending email through an SMTP server")
+ (description "This library provides an API for handling SMTP
+services. SMTP (Simple Mail Transfer Protocol) is the most prevalent Internet
+standard protocols for e-mail transmission.")
+ (license license:lgpl2.0+)))
+
(define-public ktnef
(package
(name "ktnef")
--
2.21.1
^ permalink raw reply related [flat|nested] 28+ messages in thread
* [bug#39182] [PATCH 16/26] gnu: Add kontactinterface.
2020-01-18 21:11 ` [bug#39182] [PATCH 01/26] gnu: Add akonadi Hartmut Goebel
` (13 preceding siblings ...)
2020-01-18 21:11 ` [bug#39182] [PATCH 15/26] gnu: Add ksmtp Hartmut Goebel
@ 2020-01-18 21:11 ` Hartmut Goebel
2020-01-18 21:11 ` [bug#39182] [PATCH 17/26] gnu: Add libkgapi Hartmut Goebel
` (9 subsequent siblings)
24 siblings, 0 replies; 28+ messages in thread
From: Hartmut Goebel @ 2020-01-18 21:11 UTC (permalink / raw)
To: 39182
* gnu/packages/kde-pim.scm (kontactinterface): New variable.
---
gnu/packages/kde-pim.scm | 27 +++++++++++++++++++++++++++
1 file changed, 27 insertions(+)
diff --git a/gnu/packages/kde-pim.scm b/gnu/packages/kde-pim.scm
index 2d6b445e1d..caf60c1deb 100644
--- a/gnu/packages/kde-pim.scm
+++ b/gnu/packages/kde-pim.scm
@@ -545,6 +545,33 @@ easier to do so.")
(description "A library for MIME handling.")
(license license:lgpl2.0+)))
+(define-public kontactinterface
+ (package
+ (name "kontactinterface")
+ (version "19.08.3")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append "mirror://kde/stable/applications/" version
+ "/src/kontactinterface-" version ".tar.xz"))
+ (sha256
+ (base32 "1p0iw9i8cxh3jn7094wvxhlpc2sw52q8csfdgch1lf3dwhkpp0k7"))))
+ (build-system qt-build-system)
+ (native-inputs
+ `(("extra-cmake-modules" ,extra-cmake-modules)))
+ (inputs
+ `(("kcoreaddons" ,kcoreaddons)
+ ("ki18n" ,ki18n)
+ ("kiconthemes" ,kiconthemes)
+ ("kparts" ,kparts)
+ ("kwindowsystem" ,kwindowsystem)
+ ("kxmlgui" ,kxmlgui)
+ ("qtbase" ,qtbase)))
+ (home-page "https://api.kde.org/stable/kdepimlibs-apidocs/")
+ (synopsis "Kontact interface library")
+ (description "Kontact Interface library.")
+ (license license:lgpl2.0+)))
+
(define-public kpimtextedit
(package
(name "kpimtextedit")
--
2.21.1
^ permalink raw reply related [flat|nested] 28+ messages in thread
* [bug#39182] [PATCH 17/26] gnu: Add libkgapi.
2020-01-18 21:11 ` [bug#39182] [PATCH 01/26] gnu: Add akonadi Hartmut Goebel
` (14 preceding siblings ...)
2020-01-18 21:11 ` [bug#39182] [PATCH 16/26] gnu: Add kontactinterface Hartmut Goebel
@ 2020-01-18 21:11 ` Hartmut Goebel
2020-01-18 21:11 ` [bug#39182] [PATCH 18/26] gnu: Add kmailtransport Hartmut Goebel
` (8 subsequent siblings)
24 siblings, 0 replies; 28+ messages in thread
From: Hartmut Goebel @ 2020-01-18 21:11 UTC (permalink / raw)
To: 39182
* gnu/packages/kde-pim.scm (libkgapi): New variable.
---
gnu/packages/kde-pim.scm | 36 ++++++++++++++++++++++++++++++++++++
1 file changed, 36 insertions(+)
diff --git a/gnu/packages/kde-pim.scm b/gnu/packages/kde-pim.scm
index caf60c1deb..451ba90f74 100644
--- a/gnu/packages/kde-pim.scm
+++ b/gnu/packages/kde-pim.scm
@@ -686,3 +686,39 @@ standard protocols for e-mail transmission.")
(synopsis "Viewer for mail attachments using TNEF format")
(description "Viewer for mail attachments using TNEF format")
(license license:lgpl2.0+)))
+
+(define-public libkgapi
+ (package
+ (name "libkgapi")
+ (version "19.08.3")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append "mirror://kde/stable/applications/" version
+ "/src/libkgapi-" version ".tar.xz"))
+ (sha256
+ (base32 "0z76b745n4hhjndrhv1w5acibia8x1frh78jx7bvxa72d8wphn08"))))
+ (build-system qt-build-system)
+ (native-inputs
+ `(("extra-cmake-modules" ,extra-cmake-modules)
+ ("qttools" ,qttools)))
+ (inputs
+ `(("cyrus-sasl" ,cyrus-sasl)
+ ("ki18n" ,ki18n)
+ ("kcontacts" ,kcontacts)
+ ("kcalendarcore" ,kcalendarcore)
+ ("kio" ,kio)
+ ("kwallet" ,kwallet)
+ ("kwindowsystem" ,kwindowsystem)
+ ("qtbase" ,qtbase)
+ ("qtdeclarative" ,qtdeclarative)
+ ("qtwebchannel" ,qtwebchannel)
+ ("qtwebengine" ,qtwebengine)))
+ (arguments
+ `(#:tests? #f)) ;; TODO 6/48 tests fail
+ (home-page "https://cgit.kde.org/libkgapi.git")
+ (synopsis "Library for accessing various Google services via their public
+API")
+ (description "@code{LibKGAPI} is a C++ library that implements APIs for
+various Google services.")
+ (license license:lgpl2.0+)))
--
2.21.1
^ permalink raw reply related [flat|nested] 28+ messages in thread
* [bug#39182] [PATCH 18/26] gnu: Add kmailtransport.
2020-01-18 21:11 ` [bug#39182] [PATCH 01/26] gnu: Add akonadi Hartmut Goebel
` (15 preceding siblings ...)
2020-01-18 21:11 ` [bug#39182] [PATCH 17/26] gnu: Add libkgapi Hartmut Goebel
@ 2020-01-18 21:11 ` Hartmut Goebel
2020-01-18 21:11 ` [bug#39182] [PATCH 19/26] gnu: Add akonadi-calendar Hartmut Goebel
` (7 subsequent siblings)
24 siblings, 0 replies; 28+ messages in thread
From: Hartmut Goebel @ 2020-01-18 21:11 UTC (permalink / raw)
To: 39182
* gnu/packages/kde-pim.scm (kmailtransport): New variable.
---
gnu/packages/kde-pim.scm | 49 ++++++++++++++++++++++++++++++++++++++++
1 file changed, 49 insertions(+)
diff --git a/gnu/packages/kde-pim.scm b/gnu/packages/kde-pim.scm
index 451ba90f74..fd15440c46 100644
--- a/gnu/packages/kde-pim.scm
+++ b/gnu/packages/kde-pim.scm
@@ -488,6 +488,55 @@ easier to do so.")
(description "This library provides an API for LDAP.")
(license license:lgpl2.0+)))
+(define-public kmailtransport
+ (package
+ (name "kmailtransport")
+ (version "19.08.3")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append "mirror://kde/stable/applications/" version
+ "/src/kmailtransport-" version ".tar.xz"))
+ (sha256
+ (base32 "04jdnqxbp4382vjxh06rrvsigbrygqfkw0fvbbjnjymp585mgkr4"))))
+ (build-system qt-build-system)
+ (native-inputs
+ `(("extra-cmake-modules" ,extra-cmake-modules)
+ ("kdoctools" ,kdoctools)))
+ (inputs
+ `(("akonadi" ,akonadi)
+ ("akonadi-mime" ,akonadi-mime)
+ ("boost" ,boost)
+ ("cyrus-sasl" ,cyrus-sasl)
+ ("kcalendarcore" ,kcalendarcore)
+ ("kcmutils" ,kcmutils)
+ ("kcontacts" ,kcontacts)
+ ("kdbusaddons" ,kdbusaddons)
+ ("kconfigwidgets" ,kconfigwidgets)
+ ("ki18n" ,ki18n)
+ ("kitemmodels", kitemmodels)
+ ("kio" ,kio)
+ ("kmime" ,kmime)
+ ("ksmtp" ,ksmtp)
+ ("ktextwidgets" ,ktextwidgets)
+ ("kwallet" ,kwallet)
+ ("libkgapi" ,libkgapi)
+ ("qtbase" ,qtbase)))
+ (arguments
+ `(#:tests? #f ;; TODO - 3/3 tests fail, require drkonqi
+ #:phases
+ (modify-phases %standard-phases
+ (add-before 'check 'check-setup
+ (lambda _
+ ;; make Qt render "offscreen", required for tests
+ (setenv "QT_QPA_PLATFORM" "offscreen")
+ #t)))))
+ (home-page "https://api.kde.org/stable/kdepimlibs-apidocs/")
+ (synopsis "Mail transport service library")
+ (description " This library provides an API and support code for managing
+mail transport.")
+ (license license:lgpl2.0+)))
+
(define-public kmbox
(package
(name "kmbox")
--
2.21.1
^ permalink raw reply related [flat|nested] 28+ messages in thread
* [bug#39182] [PATCH 19/26] gnu: Add akonadi-calendar.
2020-01-18 21:11 ` [bug#39182] [PATCH 01/26] gnu: Add akonadi Hartmut Goebel
` (16 preceding siblings ...)
2020-01-18 21:11 ` [bug#39182] [PATCH 18/26] gnu: Add kmailtransport Hartmut Goebel
@ 2020-01-18 21:11 ` Hartmut Goebel
2020-01-18 21:11 ` [bug#39182] [PATCH 20/26] gnu: Add libkleo Hartmut Goebel
` (6 subsequent siblings)
24 siblings, 0 replies; 28+ messages in thread
From: Hartmut Goebel @ 2020-01-18 21:11 UTC (permalink / raw)
To: 39182
* gnu/packages/kde-pim.scm (akonadi-calendar): New variable.
---
gnu/packages/kde-pim.scm | 51 ++++++++++++++++++++++++++++++++++++++++
1 file changed, 51 insertions(+)
diff --git a/gnu/packages/kde-pim.scm b/gnu/packages/kde-pim.scm
index fd15440c46..fceac66265 100644
--- a/gnu/packages/kde-pim.scm
+++ b/gnu/packages/kde-pim.scm
@@ -114,6 +114,57 @@ This package contains the Akonadi PIM storage server and associated
programs.")
(license license:fdl1.2+)))
+(define-public akonadi-calendar
+ (package
+ (name "akonadi-calendar")
+ (version "19.08.3")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append "mirror://kde/stable/applications/" version
+ "/src/akonadi-calendar-" version ".tar.xz"))
+ (sha256
+ (base32 "1550h08i8rjnbd9yrnhd9v3v68ingrag2bdxrbid62qvam0n5ihy"))))
+ (build-system qt-build-system)
+ (native-inputs
+ `(("extra-cmake-modules" ,extra-cmake-modules)))
+ (inputs
+ `(("akonadi" ,akonadi)
+ ("akonadi-contacts" ,akonadi-contacts)
+ ("akonadi-mime" ,akonadi-mime)
+ ("boost" ,boost)
+ ("kcalendarcore" ,kcalendarcore)
+ ("kcalutils" ,kcalutils)
+ ("kcodecs" ,kcodecs)
+ ("kcontacts" ,kcontacts)
+ ("kdbusaddons" ,kdbusaddons)
+ ("ki18n" ,ki18n)
+ ("kiconthemes" ,kiconthemes)
+ ("kidentitymanagement" ,kidentitymanagement)
+ ("kio" ,kio)
+ ("kitemmodels" ,kitemmodels)
+ ("kmailtransport" ,kmailtransport)
+ ("kmime" ,kmime)
+ ("kpimtextedit" ,kpimtextedit)
+ ("ksmtp" ,ksmtp)
+ ("ktextwidgets" ,ktextwidgets)
+ ("kwallet" ,kwallet)
+ ("qtbase" ,qtbase)))
+ (arguments
+ `(#:tests? #f ;; TODO: 1/1 test fails
+ #:phases
+ (modify-phases %standard-phases
+ (add-before 'check 'check-setup
+ (lambda _
+ ;; make Qt render "offscreen", required for tests
+ (setenv "QT_QPA_PLATFORM" "offscreen")
+ #t)))))
+ (home-page "https://api.kde.org/stable/kdepimlibs-apidocs/akonadi/html/")
+ (synopsis "Library providing calendar helpers for Akonadi items")
+ (description "This library manages calendar specific actions for
+collection and item views.")
+ (license license:lgpl2.0+)))
+
(define-public akonadi-contacts
(package
(name "akonadi-contacts")
--
2.21.1
^ permalink raw reply related [flat|nested] 28+ messages in thread
* [bug#39182] [PATCH 20/26] gnu: Add libkleo.
2020-01-18 21:11 ` [bug#39182] [PATCH 01/26] gnu: Add akonadi Hartmut Goebel
` (17 preceding siblings ...)
2020-01-18 21:11 ` [bug#39182] [PATCH 19/26] gnu: Add akonadi-calendar Hartmut Goebel
@ 2020-01-18 21:11 ` Hartmut Goebel
2020-01-18 21:11 ` [bug#39182] [PATCH 21/26] gnu: Add kleopatra Hartmut Goebel
` (5 subsequent siblings)
24 siblings, 0 replies; 28+ messages in thread
From: Hartmut Goebel @ 2020-01-18 21:11 UTC (permalink / raw)
To: 39182
* gnu/packages/kde-pim.scm (libkleo): New variable.
---
gnu/packages/kde-pim.scm | 39 +++++++++++++++++++++++++++++++++++++++
1 file changed, 39 insertions(+)
diff --git a/gnu/packages/kde-pim.scm b/gnu/packages/kde-pim.scm
index fceac66265..527764def4 100644
--- a/gnu/packages/kde-pim.scm
+++ b/gnu/packages/kde-pim.scm
@@ -28,6 +28,7 @@
#:use-module (gnu packages databases)
#:use-module (gnu packages documentation)
#:use-module (gnu packages gnome)
+ #:use-module (gnu packages gnupg)
#:use-module (gnu packages kde-frameworks)
#:use-module (gnu packages openldap)
#:use-module (gnu packages qt)
@@ -822,3 +823,41 @@ API")
(description "@code{LibKGAPI} is a C++ library that implements APIs for
various Google services.")
(license license:lgpl2.0+)))
+
+(define-public libkleo
+ (package
+ (name "libkleo")
+ (version "19.08.3")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append "mirror://kde/stable/applications/" version
+ "/src/libkleo-" version ".tar.xz"))
+ (sha256
+ (base32 "0vjp07j102mi20c4q2fdvkjc0skb9q7msxp64n76wy3cciv346jz"))))
+ (build-system qt-build-system)
+ (native-inputs
+ `(("extra-cmake-modules" ,extra-cmake-modules)
+ ("kdoctools" ,kdoctools)
+ ("qttools" ,qttools)))
+ (inputs
+ `(("boost" ,boost)
+ ("gpgme" ,gpgme)
+ ("kcodecs" ,kcodecs)
+ ("kcompletion" ,kcompletion)
+ ("kconfig" ,kconfig)
+ ("kcoreaddons" ,kcoreaddons)
+ ("kcrash" ,kcrash)
+ ("ki18n" ,ki18n)
+ ("kitemmodels" ,kitemmodels)
+ ("kwidgetsaddons" ,kwidgetsaddons)
+ ("kwindowsystem" ,kwindowsystem)
+ ("kpimtextedit" ,kpimtextedit)
+ ("qgpgme" ,qgpgme)
+ ("qtbase" ,qtbase)))
+ (home-page "https://cgit.kde.org/libkleo.git/")
+ (synopsis "KDE PIM cryptographic library")
+ (description "@code{libkleo} is a library for Kleopatra and other parts of
+KDE using certificate-based crypto.")
+ (license ;; GPL for programs, LGPL for libraries
+ (list license:gpl2+ license:lgpl2.0+))))
--
2.21.1
^ permalink raw reply related [flat|nested] 28+ messages in thread
* [bug#39182] [PATCH 21/26] gnu: Add kleopatra.
2020-01-18 21:11 ` [bug#39182] [PATCH 01/26] gnu: Add akonadi Hartmut Goebel
` (18 preceding siblings ...)
2020-01-18 21:11 ` [bug#39182] [PATCH 20/26] gnu: Add libkleo Hartmut Goebel
@ 2020-01-18 21:11 ` Hartmut Goebel
2020-01-18 21:11 ` [bug#39182] [PATCH 22/26] gnu: Add kgpg Hartmut Goebel
` (4 subsequent siblings)
24 siblings, 0 replies; 28+ messages in thread
From: Hartmut Goebel @ 2020-01-18 21:11 UTC (permalink / raw)
To: 39182
* gnu/packages/kde-utils.scm (kleopatra): New variable.
---
gnu/packages/kde-pim.scm | 57 ++++++++++++++++++++++++++++++++++++++++
1 file changed, 57 insertions(+)
diff --git a/gnu/packages/kde-pim.scm b/gnu/packages/kde-pim.scm
index 527764def4..f0694cd94a 100644
--- a/gnu/packages/kde-pim.scm
+++ b/gnu/packages/kde-pim.scm
@@ -27,6 +27,7 @@
#:use-module (gnu packages cyrus-sasl)
#:use-module (gnu packages databases)
#:use-module (gnu packages documentation)
+ #:use-module (gnu packages glib)
#:use-module (gnu packages gnome)
#:use-module (gnu packages gnupg)
#:use-module (gnu packages kde-frameworks)
@@ -540,6 +541,62 @@ easier to do so.")
(description "This library provides an API for LDAP.")
(license license:lgpl2.0+)))
+(define-public kleopatra
+ (package
+ (name "kleopatra")
+ (version "19.08.3")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append "mirror://kde/stable/applications/" version
+ "/src/kleopatra-" version ".tar.xz"))
+ (sha256
+ (base32 "1bqwxdl91s2nai871vvhkmcc3simbnvr2i5m6dnl327bplzqgfa4"))))
+ (build-system qt-build-system)
+ (native-inputs
+ `(("dbus" ,dbus)
+ ("extra-cmake-modules" ,extra-cmake-modules)
+ ("gnupg" ,gnupg) ;; TODO: Remove after gpgme uses fixed path
+ ("kdoctools" ,kdoctools)))
+ (inputs
+ `(("boost" ,boost)
+ ("gpgme" ,gpgme)
+ ("kcmutils" ,kcmutils)
+ ("kcodecs" ,kcodecs)
+ ("kconfig" ,kconfig)
+ ("kconfigwidgets" ,kconfigwidgets)
+ ("kcoreaddons" ,kcoreaddons)
+ ("kcrash" ,kcrash)
+ ("kdbusaddons" ,kdbusaddons)
+ ("ki18n" ,ki18n)
+ ("kiconthemes" ,kiconthemes)
+ ("kitemmodels" ,kitemmodels)
+ ("kmime" ,kmime)
+ ("knotifications" ,knotifications)
+ ("ktextwidgets" ,ktextwidgets)
+ ("kwidgetsaddons" ,kwidgetsaddons)
+ ("kwindowsystem" ,kwindowsystem)
+ ("kxmlgui" ,kxmlgui)
+ ("libassuan" ,libassuan)
+ ("libkleo" ,libkleo)
+ ("oxygen-icons" ,oxygen-icons) ;; default icon set
+ ("qgpgme" ,qgpgme)
+ ("qtbase" ,qtbase)))
+ (arguments
+ `(#:phases
+ (modify-phases %standard-phases
+ (replace 'check
+ (lambda _
+ (setenv "QT_QPA_PLATFORM" "offscreen")
+ (invoke "dbus-launch" "ctest" "."))))))
+ (home-page "https://kde.org/applications/utilities/org.kde.kleopatra")
+ (synopsis "Certificate Manager and Unified Crypto GUI")
+ (description "Kleopatra is a certificate manager and a universal crypto
+GUI. It supports managing X.509 and OpenPGP certificates in the GpgSM keybox
+and retrieving certificates from LDAP servers.")
+ (license ;; GPL for programs, FDL for documentation
+ (list license:gpl2+ license:fdl1.2+))))
+
(define-public kmailtransport
(package
(name "kmailtransport")
--
2.21.1
^ permalink raw reply related [flat|nested] 28+ messages in thread
* [bug#39182] [PATCH 22/26] gnu: Add kgpg.
2020-01-18 21:11 ` [bug#39182] [PATCH 01/26] gnu: Add akonadi Hartmut Goebel
` (19 preceding siblings ...)
2020-01-18 21:11 ` [bug#39182] [PATCH 21/26] gnu: Add kleopatra Hartmut Goebel
@ 2020-01-18 21:11 ` Hartmut Goebel
2020-01-18 21:11 ` [bug#39182] [PATCH 23/26] gnu: Add libkdepim Hartmut Goebel
` (3 subsequent siblings)
24 siblings, 0 replies; 28+ messages in thread
From: Hartmut Goebel @ 2020-01-18 21:11 UTC (permalink / raw)
To: 39182
* gnu/packages/kde-utils.scm (kgpg): New variable.
---
gnu/packages/kde-pim.scm | 48 ++++++++++++++++++++++++++++++++++++++++
1 file changed, 48 insertions(+)
diff --git a/gnu/packages/kde-pim.scm b/gnu/packages/kde-pim.scm
index f0694cd94a..6dd32f3511 100644
--- a/gnu/packages/kde-pim.scm
+++ b/gnu/packages/kde-pim.scm
@@ -441,6 +441,54 @@ data")
functions for accessing calendar data using the kcalcore API.")
(license license:lgpl2.0+)))
+(define-public kgpg
+ (package
+ (name "kgpg")
+ (version "19.08.3")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append "mirror://kde/stable/applications/" version
+ "/src/kgpg-" version ".tar.xz"))
+ (sha256
+ (base32 "1dis7zv51a4lhx5l3wlwnhym8f79h8sibhhk97fkn8d7szdrmfw5"))))
+ (build-system qt-build-system)
+ (native-inputs
+ `(("extra-cmake-modules" ,extra-cmake-modules)
+ ("gnupg" ,gnupg) ;; TODO: Remove after gpgme uses fixed path
+ ("kdoctools" ,kdoctools)))
+ (inputs
+ `(("akonadi" ,akonadi)
+ ("akonadi-contacts" ,akonadi-contacts)
+ ("boost" ,boost)
+ ("gpgme" ,gpgme)
+ ("karchive" ,karchive)
+ ("kcodecs" ,kcodecs)
+ ("kcontacts" ,kcontacts)
+ ("kcoreaddons" ,kcoreaddons)
+ ("kcrash" ,kcrash)
+ ("kdbusaddons" ,kdbusaddons)
+ ("ki18n" ,ki18n)
+ ("kiconthemes" ,kiconthemes)
+ ("kio" ,kio)
+ ("kitemmodels" ,kitemmodels)
+ ("kjobwidgets" ,kjobwidgets)
+ ("knotifications" ,knotifications)
+ ("kservice" ,kservice)
+ ("ktextwidgets" ,ktextwidgets)
+ ("kwidgetsaddons" ,kwidgetsaddons)
+ ("kwindowsystem" ,kwindowsystem)
+ ("kxmlgui" ,kxmlgui)
+ ("oxygen-icons" ,oxygen-icons) ;; default icon set
+ ("qtbase" ,qtbase)))
+ (home-page "https://kde.org/applications/utilities/org.kde.kgpg")
+ (synopsis "Graphical front end for GNU Privacy Guard")
+ (description "Kgpg manages cryptographic keys for the GNU Privacy Guard,
+and can encrypt, decrypt, sign, and verify files. It features a simple editor
+for applying cryptography to short pieces of text, and can also quickly apply
+cryptography to the contents of the clipboard.")
+ (license license:gpl2+)))
+
(define-public kidentitymanagement
(package
(name "kidentitymanagement")
--
2.21.1
^ permalink raw reply related [flat|nested] 28+ messages in thread
* [bug#39182] [PATCH 23/26] gnu: Add libkdepim.
2020-01-18 21:11 ` [bug#39182] [PATCH 01/26] gnu: Add akonadi Hartmut Goebel
` (20 preceding siblings ...)
2020-01-18 21:11 ` [bug#39182] [PATCH 22/26] gnu: Add kgpg Hartmut Goebel
@ 2020-01-18 21:11 ` Hartmut Goebel
2020-01-18 21:11 ` [bug#39182] [PATCH 24/26] gnu: Add kmailimporter Hartmut Goebel
` (2 subsequent siblings)
24 siblings, 0 replies; 28+ messages in thread
From: Hartmut Goebel @ 2020-01-18 21:11 UTC (permalink / raw)
To: 39182
* gnu/packages/kde-pim.scm (libkdepim): New variable.
---
gnu/packages/kde-pim.scm | 56 ++++++++++++++++++++++++++++++++++++++++
1 file changed, 56 insertions(+)
diff --git a/gnu/packages/kde-pim.scm b/gnu/packages/kde-pim.scm
index 6dd32f3511..cf56aa0c7a 100644
--- a/gnu/packages/kde-pim.scm
+++ b/gnu/packages/kde-pim.scm
@@ -893,6 +893,62 @@ standard protocols for e-mail transmission.")
(description "Viewer for mail attachments using TNEF format")
(license license:lgpl2.0+)))
+(define-public libkdepim
+ (package
+ (name "libkdepim")
+ (version "19.08.3")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append "mirror://kde/stable/applications/" version
+ "/src/libkdepim-" version ".tar.xz"))
+ (sha256
+ (base32 "0ndh97w1bfii4snx9yc0qazqk5jhx22s810kj656967xd1w4bj9n"))))
+ (build-system qt-build-system)
+ (native-inputs
+ `(("extra-cmake-modules" ,extra-cmake-modules)
+ ("qttools" ,qttools)))
+ (inputs
+ `(("akonadi" ,akonadi)
+ ("akonadi-contacts" ,akonadi-contacts)
+ ("akonadi-mime" ,akonadi-mime)
+ ("akonadi-search" ,akonadi-search)
+ ("boost" ,boost)
+ ("kcmutils" ,kcmutils)
+ ("kcodecs" ,kcodecs)
+ ("kcalendarcore" ,kcalendarcore)
+ ("kcompletion" ,kcompletion)
+ ("kconfig" ,kconfig)
+ ("kconfigwidgets" ,kconfigwidgets)
+ ("kcontacts" ,kcontacts)
+ ("kcoreaddons" ,kcoreaddons)
+ ("kdbusaddons" ,kdbusaddons)
+ ("kdesignerplugin" ,kdesignerplugin)
+ ("ki18n" ,ki18n)
+ ("kiconthemes" ,kiconthemes)
+ ("kio" ,kio)
+ ("kitemmodels" ,kitemmodels)
+ ("kitemviews" ,kitemviews)
+ ("kjobwidgets" ,kjobwidgets)
+ ("kldap" ,kldap)
+ ("kmime" ,kmime)
+ ("kwallet" ,kwallet)
+ ("kwidgetsaddons" ,kwidgetsaddons)
+ ("qtbase" ,qtbase)))
+ (arguments
+ `(#:phases
+ (modify-phases %standard-phases
+ (add-before 'check 'check-setup
+ (lambda _
+ ;; make Qt render "offscreen", required for tests
+ (setenv "QT_QPA_PLATFORM" "offscreen")
+ #t)))))
+ (home-page "https://cgit.kde.org/libkdepim.git")
+ (synopsis "Libraries for common kdepim apps")
+ (description "Libraries for common kdepim apps.")
+ (license ;; GPL for programs, LGPL for libraries
+ (list license:gpl2+ license:lgpl2.0+))))
+
(define-public libkgapi
(package
(name "libkgapi")
--
2.21.1
^ permalink raw reply related [flat|nested] 28+ messages in thread
* [bug#39182] [PATCH 24/26] gnu: Add kmailimporter.
2020-01-18 21:11 ` [bug#39182] [PATCH 01/26] gnu: Add akonadi Hartmut Goebel
` (21 preceding siblings ...)
2020-01-18 21:11 ` [bug#39182] [PATCH 23/26] gnu: Add libkdepim Hartmut Goebel
@ 2020-01-18 21:11 ` Hartmut Goebel
2020-01-18 21:11 ` [bug#39182] [PATCH 25/26] gnu: Add kpimcommon Hartmut Goebel
2020-01-18 21:11 ` [bug#39182] [PATCH 26/26] gnu: Add kdepim-apps-libs Hartmut Goebel
24 siblings, 0 replies; 28+ messages in thread
From: Hartmut Goebel @ 2020-01-18 21:11 UTC (permalink / raw)
To: 39182
* gnu/packages/kde-pim.scm (kmailimporter): New variable.
---
gnu/packages/kde-pim.scm | 45 ++++++++++++++++++++++++++++++++++++++++
1 file changed, 45 insertions(+)
diff --git a/gnu/packages/kde-pim.scm b/gnu/packages/kde-pim.scm
index cf56aa0c7a..3ebfe7b9e6 100644
--- a/gnu/packages/kde-pim.scm
+++ b/gnu/packages/kde-pim.scm
@@ -1022,3 +1022,48 @@ various Google services.")
KDE using certificate-based crypto.")
(license ;; GPL for programs, LGPL for libraries
(list license:gpl2+ license:lgpl2.0+))))
+
+(define-public kmailimporter
+ (package
+ (name "kmailimporter")
+ (version "19.08.3")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append "mirror://kde/stable/applications/" version
+ "/src/mailimporter-" version ".tar.xz"))
+ (sha256
+ (base32 "0vmrgjz47f96crrbv0bhaz0abh2am4whhb294rfz02mvjghbzpzv"))))
+ (build-system qt-build-system)
+ (native-inputs
+ `(("extra-cmake-modules" ,extra-cmake-modules)))
+ (inputs
+ `(("akonadi" ,akonadi)
+ ("akonadi-mime" ,akonadi-mime)
+ ("boost" ,boost)
+ ("karchive" ,karchive)
+ ("kcompletion" ,kcompletion)
+ ("kconfig" ,kconfig)
+ ("kconfigwidgets" ,kconfigwidgets)
+ ("kcoreaddons" ,kcoreaddons)
+ ("kdbusaddons" ,kdbusaddons)
+ ("ki18n" ,ki18n)
+ ("kio" ,kio)
+ ("kitemmodels" ,kitemmodels)
+ ("kmime" ,kmime)
+ ("kxmlgui" ,kxmlgui)
+ ("libkdepim" ,libkdepim)
+ ("qtbase" ,qtbase)))
+ (arguments
+ `(#:phases
+ (modify-phases %standard-phases
+ (add-before 'check 'check-setup
+ (lambda _
+ ;; make Qt render "offscreen", required for tests
+ (setenv "QT_QPA_PLATFORM" "offscreen")
+ #t)))))
+ (home-page "https://cgit.kde.org/mailimporter.git")
+ (synopsis "KDE mail importer library")
+ (description "KDE mail importer library.")
+ (license ;; GPL for programs, LGPL for libraries
+ (list license:gpl2+ license:lgpl2.0+))))
--
2.21.1
^ permalink raw reply related [flat|nested] 28+ messages in thread
* [bug#39182] [PATCH 25/26] gnu: Add kpimcommon.
2020-01-18 21:11 ` [bug#39182] [PATCH 01/26] gnu: Add akonadi Hartmut Goebel
` (22 preceding siblings ...)
2020-01-18 21:11 ` [bug#39182] [PATCH 24/26] gnu: Add kmailimporter Hartmut Goebel
@ 2020-01-18 21:11 ` Hartmut Goebel
2020-01-18 21:11 ` [bug#39182] [PATCH 26/26] gnu: Add kdepim-apps-libs Hartmut Goebel
24 siblings, 0 replies; 28+ messages in thread
From: Hartmut Goebel @ 2020-01-18 21:11 UTC (permalink / raw)
To: 39182
* gnu/packages/kde-pim.scm (kpimcommon): New variable.
---
gnu/packages/kde-pim.scm | 61 ++++++++++++++++++++++++++++++++++++++++
1 file changed, 61 insertions(+)
diff --git a/gnu/packages/kde-pim.scm b/gnu/packages/kde-pim.scm
index 3ebfe7b9e6..5481387f58 100644
--- a/gnu/packages/kde-pim.scm
+++ b/gnu/packages/kde-pim.scm
@@ -1067,3 +1067,64 @@ KDE using certificate-based crypto.")
(description "KDE mail importer library.")
(license ;; GPL for programs, LGPL for libraries
(list license:gpl2+ license:lgpl2.0+))))
+
+(define-public kpimcommon
+ (package
+ (name "kpimcommon")
+ (version "19.08.3")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append "mirror://kde/stable/applications/" version
+ "/src/pimcommon-" version ".tar.xz"))
+ (sha256
+ (base32 "1jl40ymq46yjn9va78hklgg91ikrfahf3w4jl5ziiqbivcl7r9kn"))))
+ (build-system qt-build-system)
+ (native-inputs
+ `(("extra-cmake-modules" ,extra-cmake-modules)
+ ("qttools" ,qttools)))
+ (inputs
+ `(("karchive" ,karchive)
+ ("akonadi" ,akonadi)
+ ("akonadi-contacts" ,akonadi-contacts)
+ ("akonadi-mime" ,akonadi-mime)
+ ("boost" ,boost)
+ ("grantlee" ,grantlee)
+ ;; TODO: ("kaccounts" ,kaccounts)
+ ("kcodecs" ,kcodecs)
+ ("kcompletion" ,kcompletion)
+ ("kconfig" ,kconfig)
+ ("kconfigwidgets" ,kconfigwidgets)
+ ("kcontacts" ,kcontacts)
+ ("kcoreaddons" ,kcoreaddons)
+ ("kdbusaddons" ,kdbusaddons)
+ ("kdesignerplugin" ,kdesignerplugin)
+ ("ki18n" ,ki18n)
+ ("kiconthemes" ,kiconthemes)
+ ("kimap" ,kimap)
+ ("kio" ,kio)
+ ("kirigami" ,kirigami) ;; run-time dependency
+ ("kitemmodels" ,kitemmodels)
+ ("kitemviews" ,kitemviews)
+ ("kjobwidgets" ,kjobwidgets)
+ ("kmime" ,kmime)
+ ("knewstuff" ,knewstuff)
+ ("kpimtextedit" ,kpimtextedit)
+ ("kservice" ,kservice)
+ ("ktextwidgets" ,ktextwidgets)
+ ("kwallet" ,kwallet)
+ ("kwidgetsaddons" ,kwidgetsaddons)
+ ("kwindowsystem" ,kwindowsystem)
+ ("kxmlgui" ,kxmlgui)
+ ("libkdepim" ,libkdepim)
+ ("libxslt" ,libxslt)
+ ("purpose" ,purpose)
+ ("qtbase" ,qtbase)
+ ("qtwebengine" ,qtwebengine)))
+ (arguments
+ `(#:tests? #f)) ;; TODO tests hang
+ (home-page "https://cgit.kde.org/pimcommon.git")
+ (synopsis "Common library for KDE PIM")
+ (description "Common library for KDE PIM.")
+ (license ;; GPL for programs, LGPL for libraries
+ (list license:gpl2+ license:lgpl2.0+))))
--
2.21.1
^ permalink raw reply related [flat|nested] 28+ messages in thread
* [bug#39182] [PATCH 26/26] gnu: Add kdepim-apps-libs.
2020-01-18 21:11 ` [bug#39182] [PATCH 01/26] gnu: Add akonadi Hartmut Goebel
` (23 preceding siblings ...)
2020-01-18 21:11 ` [bug#39182] [PATCH 25/26] gnu: Add kpimcommon Hartmut Goebel
@ 2020-01-18 21:11 ` Hartmut Goebel
24 siblings, 0 replies; 28+ messages in thread
From: Hartmut Goebel @ 2020-01-18 21:11 UTC (permalink / raw)
To: 39182
* gnu/packages/kde-pim.scm (kdepim-apps-libs): New variable.
---
gnu/packages/kde-pim.scm | 54 ++++++++++++++++++++++++++++++++++++++++
1 file changed, 54 insertions(+)
diff --git a/gnu/packages/kde-pim.scm b/gnu/packages/kde-pim.scm
index 5481387f58..398c73c3ec 100644
--- a/gnu/packages/kde-pim.scm
+++ b/gnu/packages/kde-pim.scm
@@ -30,6 +30,7 @@
#:use-module (gnu packages glib)
#:use-module (gnu packages gnome)
#:use-module (gnu packages gnupg)
+ #:use-module (gnu packages kde)
#:use-module (gnu packages kde-frameworks)
#:use-module (gnu packages openldap)
#:use-module (gnu packages qt)
@@ -441,6 +442,59 @@ data")
functions for accessing calendar data using the kcalcore API.")
(license license:lgpl2.0+)))
+(define-public kdepim-apps-libs
+ (package
+ (name "kdepim-apps-libs")
+ (version "19.08.3")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append "mirror://kde/stable/applications/" version
+ "/src/kdepim-apps-libs-" version ".tar.xz"))
+ (sha256
+ (base32 "10xbzvp9cm5fpy4nxp38qm4vf0bycpq94bm4z2j4lw7ll1aq8irw"))))
+ (build-system qt-build-system)
+ (native-inputs
+ `(("extra-cmake-modules" ,extra-cmake-modules)))
+ (inputs
+ `(("akonadi" ,akonadi)
+ ("akonadi-contacts" ,akonadi-contacts)
+ ("boost" ,boost)
+ ("gpgme" ,gpgme)
+ ("grantlee" ,grantlee)
+ ("grantleetheme" ,grantleetheme)
+ ("kconfig" ,kconfig)
+ ("kconfigwidgets" ,kconfigwidgets)
+ ("kcontacts" ,kcontacts)
+ ("kcoreaddons" ,kcoreaddons)
+ ("kdbusaddons" ,kdbusaddons)
+ ("ki18n" ,ki18n)
+ ("kiconthemes" ,kiconthemes)
+ ("kimap" ,kimap)
+ ("kio" ,kio)
+ ("kitemmodels" ,kitemmodels)
+ ("kmime" ,kmime)
+ ("kpimcommon" ,kpimcommon)
+ ("kservice" ,kservice)
+ ("kwidgetsaddons" ,kwidgetsaddons)
+ ("libkleo" ,libkleo)
+ ("prison" ,prison)
+ ("qgpgme" ,qgpgme)
+ ("qtbase" ,qtbase)))
+ (arguments
+ `(#:phases
+ (modify-phases %standard-phases
+ (add-before 'check 'check-setup
+ (lambda _
+ ;; make Qt render "offscreen", required for tests
+ (setenv "QT_QPA_PLATFORM" "offscreen")
+ #t)))))
+ (home-page "https://cgit.kde.org/kdepim-apps-libs.git")
+ (synopsis "KDE PIM mail related libraries and data files")
+ (description "KDE PIM mail related libraries and data files.")
+ (license ;; GPL for programs, LGPL for libraries
+ (list license:gpl2+ license:lgpl2.0+))))
+
(define-public kgpg
(package
(name "kgpg")
--
2.21.1
^ permalink raw reply related [flat|nested] 28+ messages in thread
* bug#39182: Acknowledgement ([PATCH 00/26] First part od KDE PIM, incl. akonadi, kgpg, kleopatra)
[not found] ` <handler.39182.B.15793818166673.ack@debbugs.gnu.org>
@ 2020-02-03 13:46 ` Hartmut Goebel
0 siblings, 0 replies; 28+ messages in thread
From: Hartmut Goebel @ 2020-02-03 13:46 UTC (permalink / raw)
To: 39182-close
Since this is now based on the qt-build-system with the new phase
'check-setup, I pushed it to staging as
2dd5b1e8b3ba5df830d6406b278e95319e104423
^ permalink raw reply [flat|nested] 28+ messages in thread
end of thread, other threads:[~2020-02-03 13:47 UTC | newest]
Thread overview: 28+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-01-18 21:10 [bug#39182] [PATCH 00/26] First part od KDE PIM, incl. akonadi, kgpg, kleopatra Hartmut Goebel
2020-01-18 21:11 ` [bug#39182] [PATCH 01/26] gnu: Add akonadi Hartmut Goebel
2020-01-18 21:11 ` [bug#39182] [PATCH 02/26] gnu: Add kmime Hartmut Goebel
2020-01-18 21:11 ` [bug#39182] [PATCH 03/26] gnu: Add kmbox Hartmut Goebel
2020-01-18 21:11 ` [bug#39182] [PATCH 04/26] gnu: Add kcalutils Hartmut Goebel
2020-01-18 21:11 ` [bug#39182] [PATCH 05/26] gnu: Add kpimtextedit Hartmut Goebel
2020-01-18 21:11 ` [bug#39182] [PATCH 06/26] gnu: Add kidentitymanagement Hartmut Goebel
2020-01-18 21:11 ` [bug#39182] [PATCH 07/26] gnu: Add kimap Hartmut Goebel
2020-01-18 21:11 ` [bug#39182] [PATCH 08/26] gnu: Add kldap Hartmut Goebel
2020-01-18 21:11 ` [bug#39182] [PATCH 09/26] gnu: Add ktnef Hartmut Goebel
2020-01-18 21:11 ` [bug#39182] [PATCH 10/26] gnu: Add kalarmcal Hartmut Goebel
2020-01-18 21:11 ` [bug#39182] [PATCH 11/26] gnu: Add akonadi-mime Hartmut Goebel
2020-01-18 21:11 ` [bug#39182] [PATCH 12/26] gnu: Add akonadi-notes Hartmut Goebel
2020-01-18 21:11 ` [bug#39182] [PATCH 13/26] gnu: Add akonadi-search Hartmut Goebel
2020-01-18 21:11 ` [bug#39182] [PATCH 14/26] gnu: Add akonadi-contacts Hartmut Goebel
2020-01-18 21:11 ` [bug#39182] [PATCH 15/26] gnu: Add ksmtp Hartmut Goebel
2020-01-18 21:11 ` [bug#39182] [PATCH 16/26] gnu: Add kontactinterface Hartmut Goebel
2020-01-18 21:11 ` [bug#39182] [PATCH 17/26] gnu: Add libkgapi Hartmut Goebel
2020-01-18 21:11 ` [bug#39182] [PATCH 18/26] gnu: Add kmailtransport Hartmut Goebel
2020-01-18 21:11 ` [bug#39182] [PATCH 19/26] gnu: Add akonadi-calendar Hartmut Goebel
2020-01-18 21:11 ` [bug#39182] [PATCH 20/26] gnu: Add libkleo Hartmut Goebel
2020-01-18 21:11 ` [bug#39182] [PATCH 21/26] gnu: Add kleopatra Hartmut Goebel
2020-01-18 21:11 ` [bug#39182] [PATCH 22/26] gnu: Add kgpg Hartmut Goebel
2020-01-18 21:11 ` [bug#39182] [PATCH 23/26] gnu: Add libkdepim Hartmut Goebel
2020-01-18 21:11 ` [bug#39182] [PATCH 24/26] gnu: Add kmailimporter Hartmut Goebel
2020-01-18 21:11 ` [bug#39182] [PATCH 25/26] gnu: Add kpimcommon Hartmut Goebel
2020-01-18 21:11 ` [bug#39182] [PATCH 26/26] gnu: Add kdepim-apps-libs Hartmut Goebel
[not found] ` <handler.39182.B.15793818166673.ack@debbugs.gnu.org>
2020-02-03 13:46 ` bug#39182: Acknowledgement ([PATCH 00/26] First part od KDE PIM, incl. akonadi, kgpg, kleopatra) Hartmut Goebel
Code repositories for project(s) associated with this public inbox
https://git.savannah.gnu.org/cgit/guix.git
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).