2019-12-05 18:05:29 +00:00
|
|
|
;;; GNU Guix --- Functional package management for GNU
|
|
|
|
;;; Copyright © 2017, 2019, 2020 Hartmut Goebel <h.goebel@crazy-compilers.com>
|
2020-06-06 13:47:39 +00:00
|
|
|
;;; Copyright © 2020 Marius Bakke <marius@gnu.org>
|
2022-03-28 21:19:43 +00:00
|
|
|
;;; Copyright © 2021, 2022 Efraim Flashner <efraim@flashner.co.il>
|
2021-10-14 07:25:20 +00:00
|
|
|
;;; Copyright © 2022 Brendan Tildesley <mail@brendan.scot>
|
gnu: KDE PIM: Update home-pages.
* gnu/packages/kde-pim.scm (akonadi, kaddressbook, kcalutils, kgpg, kimap,
kldap, kleopatra, kmail, kmailtransport, kmbox, kmime, knotes,
kontactinterface, korganizer, kpimtextedit, ktnef): [home-page]: Update the
link.
Signed-off-by: Marius Bakke <marius@gnu.org>
2022-07-26 06:48:48 +00:00
|
|
|
;;; Copyright © 2022 Petr Hodina <phodina@protonmail.com>
|
2019-12-05 18:05:29 +00:00
|
|
|
;;;
|
|
|
|
;;; 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)
|
2022-08-09 22:39:14 +00:00
|
|
|
#:use-module (guix gexp)
|
2019-12-05 18:05:29 +00:00
|
|
|
#:use-module (guix download)
|
2022-09-24 15:11:04 +00:00
|
|
|
#:use-module (guix gexp)
|
2019-12-05 18:05:29 +00:00
|
|
|
#:use-module ((guix licenses) #:prefix license:)
|
|
|
|
#:use-module (guix packages)
|
|
|
|
#:use-module (guix utils)
|
|
|
|
#:use-module (gnu packages)
|
2023-07-30 04:56:14 +00:00
|
|
|
#:use-module (gnu packages aidc)
|
2023-07-30 02:32:00 +00:00
|
|
|
#:use-module (gnu packages base)
|
2019-12-05 18:05:29 +00:00
|
|
|
#:use-module (gnu packages boost)
|
2022-08-09 22:39:14 +00:00
|
|
|
#:use-module (gnu packages compression)
|
2019-12-05 21:52:57 +00:00
|
|
|
#:use-module (gnu packages cyrus-sasl)
|
2019-12-05 18:05:29 +00:00
|
|
|
#:use-module (gnu packages databases)
|
|
|
|
#:use-module (gnu packages documentation)
|
2020-01-18 20:09:03 +00:00
|
|
|
#:use-module (gnu packages glib)
|
2019-12-05 18:05:29 +00:00
|
|
|
#:use-module (gnu packages gnome)
|
2019-12-09 16:44:04 +00:00
|
|
|
#:use-module (gnu packages gnupg)
|
2020-01-18 20:14:12 +00:00
|
|
|
#:use-module (gnu packages kde)
|
2019-12-05 18:05:29 +00:00
|
|
|
#:use-module (gnu packages kde-frameworks)
|
2019-12-05 21:53:44 +00:00
|
|
|
#:use-module (gnu packages openldap)
|
2022-08-09 22:39:14 +00:00
|
|
|
#:use-module (gnu packages pdf)
|
2022-09-23 14:20:01 +00:00
|
|
|
#:use-module (gnu packages pkg-config)
|
2019-12-05 18:05:29 +00:00
|
|
|
#:use-module (gnu packages qt)
|
2019-12-05 22:24:12 +00:00
|
|
|
#:use-module (gnu packages search)
|
2019-12-05 18:05:29 +00:00
|
|
|
#:use-module (gnu packages sqlite)
|
2022-08-09 22:39:14 +00:00
|
|
|
#:use-module (gnu packages tls)
|
2019-12-05 18:05:29 +00:00
|
|
|
#:use-module (gnu packages xml))
|
|
|
|
|
|
|
|
(define-public akonadi
|
|
|
|
(package
|
|
|
|
(name "akonadi")
|
2023-07-30 02:31:59 +00:00
|
|
|
(version "23.04.3")
|
2022-09-24 15:11:04 +00:00
|
|
|
(source (origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append "mirror://kde/stable/release-service/"
|
|
|
|
version "/src/akonadi-" version ".tar.xz"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
2023-07-30 02:31:59 +00:00
|
|
|
"0jpp91d5rlblq6r981wxizmsv512kc43lfk8y29bdky6j4idflrb"))
|
2022-09-24 15:11:04 +00:00
|
|
|
(patches (search-patches "akonadi-paths.patch"
|
|
|
|
"akonadi-timestamps.patch"
|
|
|
|
"akonadi-not-relocatable.patch"))))
|
2019-12-05 18:05:29 +00:00
|
|
|
(build-system qt-build-system)
|
|
|
|
(native-inputs
|
2022-09-24 15:11:04 +00:00
|
|
|
(list dbus
|
|
|
|
extra-cmake-modules
|
|
|
|
qttools-5
|
|
|
|
shared-mime-info
|
|
|
|
pkg-config))
|
2019-12-05 18:05:29 +00:00
|
|
|
(inputs
|
2021-12-13 16:18:24 +00:00
|
|
|
(list boost
|
2022-09-24 15:11:04 +00:00
|
|
|
libaccounts-qt
|
2021-12-13 16:18:24 +00:00
|
|
|
kconfig
|
|
|
|
kconfigwidgets
|
|
|
|
kcoreaddons
|
|
|
|
kcrash
|
|
|
|
ki18n
|
|
|
|
kiconthemes
|
|
|
|
kio
|
|
|
|
kitemmodels
|
|
|
|
kitemviews
|
|
|
|
kwidgetsaddons
|
|
|
|
kwindowsystem
|
|
|
|
kxmlgui
|
|
|
|
libxml2
|
|
|
|
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.
|
2022-09-24 15:11:04 +00:00
|
|
|
signond
|
|
|
|
qtbase-5))
|
|
|
|
(propagated-inputs (list sqlite kaccounts-integration))
|
2019-12-05 18:05:29 +00:00
|
|
|
(arguments
|
2022-09-24 15:11:04 +00:00
|
|
|
(list #:tests? #f
|
|
|
|
#: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)
|
|
|
|
(replace 'check
|
|
|
|
(lambda* (#:key tests? #:allow-other-keys)
|
|
|
|
(when tests?
|
|
|
|
(setenv "PATH"
|
|
|
|
(string-append (getcwd) "/bin" ":"
|
|
|
|
(getenv "PATH")))
|
|
|
|
(invoke "dbus-launch" "ctest" "-E"
|
|
|
|
"(AkonadiServer-dbconfigtest|mimetypecheckertest|entitytreemodeltest|akonadi-sqlite-testenvironmenttest|akonadi-sqlite-autoincrementtest|akonadi-sqlite-attributefactorytest|akonadi-sqlite-collectionpathresolvertest|akonadi-sqlite-collectionattributetest|akonadi-sqlite-itemfetchtest|akonadi-sqlite-itemappendtest|akonadi-sqlite-itemstoretest|akonadi-sqlite-itemdeletetest|akonadi-sqlite-entitycachetest|akonadi-sqlite-monitortest|akonadi-sqlite-changerecordertest|akonadi-sqlite-resourcetest|akonadi-sqlite-subscriptiontest|akonadi-sqlite-transactiontest|akonadi-sqlite-itemcopytest|akonadi-sqlite-itemmovetest|akonadi-sqlite-invalidatecachejobtest|akonadi-sqlite-collectioncreatetest|akonadi-sqlite-collectioncopytest|akonadi-sqlite-collectionmovetest|akonadi-sqlite-collectionsynctest|akonadi-sqlite-itemsynctest)"))))
|
|
|
|
(add-before 'configure 'add-definitions
|
|
|
|
(lambda* (#:key outputs inputs #:allow-other-keys)
|
|
|
|
(with-output-to-file "CMakeLists.txt.new"
|
|
|
|
(lambda _
|
|
|
|
(display (string-append
|
|
|
|
"add_compile_definitions(\n"
|
|
|
|
"NIX_OUT=\""
|
|
|
|
#$output "\"\n" ")\n\n"))
|
|
|
|
(display (call-with-input-file "CMakeLists.txt"
|
|
|
|
get-string-all))))
|
|
|
|
(rename-file "CMakeLists.txt.new" "CMakeLists.txt"))))))
|
gnu: KDE PIM: Update home-pages.
* gnu/packages/kde-pim.scm (akonadi, kaddressbook, kcalutils, kgpg, kimap,
kldap, kleopatra, kmail, kmailtransport, kmbox, kmime, knotes,
kontactinterface, korganizer, kpimtextedit, ktnef): [home-page]: Update the
link.
Signed-off-by: Marius Bakke <marius@gnu.org>
2022-07-26 06:48:48 +00:00
|
|
|
(home-page "https://kontact.kde.org/components/akonadi/")
|
2019-12-05 18:05:29 +00:00
|
|
|
(synopsis "Extensible cross-desktop storage service for PIM")
|
2022-09-24 15:11:04 +00:00
|
|
|
(description
|
|
|
|
"Akonadi is an extensible cross-desktop Personal Information
|
2019-12-05 18:05:29 +00:00
|
|
|
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+)))
|
2019-12-05 18:49:11 +00:00
|
|
|
|
2019-12-05 22:35:26 +00:00
|
|
|
(define-public akonadi-calendar
|
|
|
|
(package
|
|
|
|
(name "akonadi-calendar")
|
2023-07-30 02:31:59 +00:00
|
|
|
(version "23.04.3")
|
2019-12-05 22:35:26 +00:00
|
|
|
(source
|
|
|
|
(origin
|
|
|
|
(method url-fetch)
|
gnu: KDE: Update to 20.04.1.
* gnu/packages/patches/akonadi-paths.patch: Adjust for upstream changes.
* gnu/packages/patches/kdepim-runtime-Fix-missing-link-libraries.patch: Delete file.
* gnu/local.mk (dist_patch_DATA): Adjust accordingly.
* gnu/packages/kde-internet.scm (kget, kopete, krdc, libgravatar): Update to
20.04.1.
[source](uri): Adjust for new upstream location.
* gnu/packages/kde-multimedia.scm (audiocd-kio, dragon, ffmpegthumbs, juk,
k3b, kamoso, kmix, kwave, libkcddb, libkcompactdisc): Likewise.
* gnu/packages/kde-systemtools.scm (dolphin, dolphin-plugins, khelpcenter,
konsole, krfb, ksystemlog): Update to 20.04.1.
[source](uri): Adjust for new upstream location.
* gnu/packages/kde-utils.scm (kate, kmag, kmousetool, kmouth, sweeper): Update
to 20.04.1.
[source](uri): Adjust for new upstream location.
* gnu/packages/kde.scm (baloo-widgets, libkomparediff2, kqtquickcharts,
grantleetheme, kcachegrind, libkdegames, zeroconf-ioslave): Update to 20.04.1.
[source](uri): Adjust for new upstream location.
(grantleetheme)[inputs]: Add KGUIADDONS.
* gnu/packages/kde-pim.scm (akonadi, akonadi-calendar, akonadi-contacts,
akonadi-mime, akonadi-notes, akonadi-search, kincidenceeditor, kaddressbook,
kalarmcal, kblog, kcalendarsupport, kcalutils, kdav, kdepim-apps-libs,
kdepim-runtime, keventviews, kgpg, kidentitymanagement, kimap, kldap,
kleopatra, kmail, kmailcommon, kmailimporter, kmailtransport, kmbox,
kmessagelib, kmime, knotes, kontactinterface, korganizer, kpimcommon,
kpimtextedit, ksmtp, ktnef, libkdepim, libkgapi, libkleo, libksieve): Update
to 20.04.1.
[source](uri): Adjust to current.
(akonadi)[inputs]: Remove KDBUSADDONS and KDESIGNERPLUGIN.
(akonadi-calendar)[inputs]: Remove KDBUSADDONS.
(kdepim-runtime)[source](patches): Remove.
[arguments]: Add phase 'extend-CPLUS_INCLUDE_PATH'.
[inputs]: Remove KDBUSADDONS and KICONTHEMES.
(kmessagelib)[arguments]: Add phase 'extend-CPLUS_INCLUDE_PATH.
[inputs]: Add QCA.
(kdepim-apps-libs)[inputs]: Remove KDBUSADDONS and KICONTHEMES.
(knotes)[inputs]: Remove KDBUSADDONS.
(kpimcommon)[inputs]: Remove KDBUSADDONS and KCOMPLETION.
(libksieve)[arguments]: Disable one more test.
(korganizer)[arguments]: Disable one test.
2020-06-06 14:06:58 +00:00
|
|
|
(uri (string-append "mirror://kde/stable/release-service/" version
|
2019-12-05 22:35:26 +00:00
|
|
|
"/src/akonadi-calendar-" version ".tar.xz"))
|
|
|
|
(sha256
|
2023-07-30 02:31:59 +00:00
|
|
|
(base32 "166xm57jcy7d2dv2pfy4lllzic4giin31szxz7xq3a7ixsd6g7cs"))))
|
2019-12-05 22:35:26 +00:00
|
|
|
(build-system qt-build-system)
|
|
|
|
(native-inputs
|
2021-12-13 16:18:24 +00:00
|
|
|
(list extra-cmake-modules))
|
2019-12-05 22:35:26 +00:00
|
|
|
(inputs
|
2021-12-13 16:18:24 +00:00
|
|
|
(list akonadi
|
|
|
|
akonadi-contacts
|
|
|
|
akonadi-mime
|
|
|
|
boost
|
gnu: KDE PIM: Update all packages to 21.12.3.
* gnu/packages/kde-pim.scm (KDE PIM): Update to 21.12.3.
(akonadi, akonadi-calendar, akonadi-contacts, akonadi-mime,
akonadi-notes, akonadi-search, kaddressbook, kalarmcal,
kcalendarsupport, kcalutils, kdepim-runtime, keventviews, kgpg,
kidentitymanagement, kimap, kincidenceeditor, kldap, kleopatra, kmail,
kmailcommon, kmailimporter, kmailtransport, kmbox, kmessagelib, kmime,
knotes, kontactinterface, korganizer, kpeoplevcard, kpimcommon,
kpimtextedit, ksmtp, ktnef, libgravatar, libkdepim, libkgapi, libkleo,
libksieve): Update to 21.12.3.
(kblog): Update to 20.04.3.
* gnu/packages/patches/akonadi-not-relocatable.patch
* gnu/packages/patches/akonadi-paths.patch
* gnu/packages/patches/akonadi-timestamps.patch
Fix patches to apply to latest code.
(akonadi-calendar): [inputs]: Add new dependencies.
(akonadi-contacts): [inputs]: Add new dependencies.
(akonadi-search): [arguments]: Disable failing tests.
(kcalendarsupport): [inputs]: Add new dependency, remove obsolete kdepim-apps-lib.
(libksieve): [arguments]: Enable test that works now.
* gnu/packages/patches/libksieve-Fix-missing-link-libraries.patch: Fix patch.
(kaddressbook): [inputs]: Remove obsolete kdepim-apps-libs.
Move kdocstools to native-inputs.
(kmessagelib): [inputs]: Remove obsolete kdepim-appslibs, add kguiaddons.
[arguments]: Fix findind header file.
(kmailimporter): [inputs]: Add new dependencies.
(kmailtransport): [inputs]: Add qtkeychain.
(knotes): [inputs]: Move kdocstools to native-inputs.
(kincidenceeditor): [inputs]: Add new dependencies. Remove obsolete kdepim-apps-libs
[arguments]: Disable failing test.
(kldap): [inputs]: Add qtkeychain.
(kgpg)[arguments]: Disable failing tests.
(libkleo): [propagated-inputs]: Propagate gpgme, qgpgme.
[arguments]: Disable failing tests.
(kdepim-runtime): [inputs]: Add new dependencies grantlee, grantleetheme, kcmutils, kldap,
libkdepim, qtkeychain
[arguments]: Enable all the tests that pass.
We need to use the old hack instead of search-input-directory to
workaround a mysterious include error.
(kdepim-apps-lib): Remove obsolete package.
(kmail): [origin]: Remove patch. Don't think it is needed anymore.
[inputs]: Add new dependencies, delete obsolete kdepim-apps-libs and
duplicate kmime.
[arguments]: Disable failing tests.
* gnu/packages/patches/kmail-Fix-missing-link-libraries.patch: Delete file.
* gnu/local.mk: Remove reference to patch.
(kmailcommon): [inputs]: Add new dependencies.
Signed-off-by: Marius Bakke <marius@gnu.org>
2022-02-02 09:08:23 +00:00
|
|
|
grantlee
|
|
|
|
grantleetheme
|
2021-12-13 16:18:24 +00:00
|
|
|
kcalendarcore
|
|
|
|
kcalutils
|
|
|
|
kcodecs
|
|
|
|
kcontacts
|
gnu: KDE PIM: Update all packages to 22.04.3.
* gnu/packages/kde-pim.scm (KDE PIM): Update to 22.04.3.
(akonadi, akonadi-calendar, akonadi-contacts, akonadi-mime,
akonadi-notes, akonadi-search, kaddressbook, kalarmcal,
kcalendarsupport, kcalutils, kdepim-runtime, keventviews, kgpg
kidentitymanagement, kimap, kincidenceeditor, kldap, kleopatra
kmailcommon, kmailimporter, kmailtransport, kmbox, kmessagelib
knotes, kontactinterface, korganizer, kpeoplevcard, kpimcommon
kpimtextedit, ksmtp, ktnef, libgravatar, libkdepim, libkgapi,
libksieve): Update to 22.04.3.
(akonadi-calendar): [inputs]: Add kdbusaddons and knotifications.
(kincidenceeditor): [arguments]: Disable failing tests.
(kdepim-runtime): [inputs]: Remove kalarmcal.
(kmailimporter): [inputs]: Add kpimtextedit and ktextwidgets.
(kmessagelib): [inputs]: Add knotifications.
(kpimcommon): [inputs]: Add kpimtextedit.
(libksieve): [inputs]: Add grantlee.
Signed-off-by: Marius Bakke <marius@gnu.org>
2022-08-01 12:29:50 +00:00
|
|
|
kdbusaddons
|
2021-12-13 16:18:24 +00:00
|
|
|
ki18n
|
|
|
|
kiconthemes
|
|
|
|
kidentitymanagement
|
|
|
|
kio
|
|
|
|
kitemmodels
|
|
|
|
kmailtransport
|
|
|
|
kmime
|
gnu: KDE PIM: Update all packages to 22.04.3.
* gnu/packages/kde-pim.scm (KDE PIM): Update to 22.04.3.
(akonadi, akonadi-calendar, akonadi-contacts, akonadi-mime,
akonadi-notes, akonadi-search, kaddressbook, kalarmcal,
kcalendarsupport, kcalutils, kdepim-runtime, keventviews, kgpg
kidentitymanagement, kimap, kincidenceeditor, kldap, kleopatra
kmailcommon, kmailimporter, kmailtransport, kmbox, kmessagelib
knotes, kontactinterface, korganizer, kpeoplevcard, kpimcommon
kpimtextedit, ksmtp, ktnef, libgravatar, libkdepim, libkgapi,
libksieve): Update to 22.04.3.
(akonadi-calendar): [inputs]: Add kdbusaddons and knotifications.
(kincidenceeditor): [arguments]: Disable failing tests.
(kdepim-runtime): [inputs]: Remove kalarmcal.
(kmailimporter): [inputs]: Add kpimtextedit and ktextwidgets.
(kmessagelib): [inputs]: Add knotifications.
(kpimcommon): [inputs]: Add kpimtextedit.
(libksieve): [inputs]: Add grantlee.
Signed-off-by: Marius Bakke <marius@gnu.org>
2022-08-01 12:29:50 +00:00
|
|
|
knotifications
|
2021-12-13 16:18:24 +00:00
|
|
|
kpimtextedit
|
|
|
|
ksmtp
|
|
|
|
ktextwidgets
|
|
|
|
kwallet
|
|
|
|
qtbase-5))
|
2019-12-05 22:35:26 +00:00
|
|
|
(arguments
|
|
|
|
`(#:tests? #f)) ;; TODO: 1/1 test fails
|
2020-08-19 13:08:46 +00:00
|
|
|
(home-page "https://api.kde.org/kdepim/akonadi/html/index.html")
|
2019-12-05 22:35:26 +00:00
|
|
|
(synopsis "Library providing calendar helpers for Akonadi items")
|
|
|
|
(description "This library manages calendar specific actions for
|
|
|
|
collection and item views.")
|
|
|
|
(license license:lgpl2.0+)))
|
|
|
|
|
2019-12-05 22:29:43 +00:00
|
|
|
(define-public akonadi-contacts
|
|
|
|
(package
|
|
|
|
(name "akonadi-contacts")
|
2023-07-30 02:31:59 +00:00
|
|
|
(version "23.04.3")
|
2019-12-05 22:29:43 +00:00
|
|
|
(source
|
|
|
|
(origin
|
|
|
|
(method url-fetch)
|
gnu: KDE: Update to 20.04.1.
* gnu/packages/patches/akonadi-paths.patch: Adjust for upstream changes.
* gnu/packages/patches/kdepim-runtime-Fix-missing-link-libraries.patch: Delete file.
* gnu/local.mk (dist_patch_DATA): Adjust accordingly.
* gnu/packages/kde-internet.scm (kget, kopete, krdc, libgravatar): Update to
20.04.1.
[source](uri): Adjust for new upstream location.
* gnu/packages/kde-multimedia.scm (audiocd-kio, dragon, ffmpegthumbs, juk,
k3b, kamoso, kmix, kwave, libkcddb, libkcompactdisc): Likewise.
* gnu/packages/kde-systemtools.scm (dolphin, dolphin-plugins, khelpcenter,
konsole, krfb, ksystemlog): Update to 20.04.1.
[source](uri): Adjust for new upstream location.
* gnu/packages/kde-utils.scm (kate, kmag, kmousetool, kmouth, sweeper): Update
to 20.04.1.
[source](uri): Adjust for new upstream location.
* gnu/packages/kde.scm (baloo-widgets, libkomparediff2, kqtquickcharts,
grantleetheme, kcachegrind, libkdegames, zeroconf-ioslave): Update to 20.04.1.
[source](uri): Adjust for new upstream location.
(grantleetheme)[inputs]: Add KGUIADDONS.
* gnu/packages/kde-pim.scm (akonadi, akonadi-calendar, akonadi-contacts,
akonadi-mime, akonadi-notes, akonadi-search, kincidenceeditor, kaddressbook,
kalarmcal, kblog, kcalendarsupport, kcalutils, kdav, kdepim-apps-libs,
kdepim-runtime, keventviews, kgpg, kidentitymanagement, kimap, kldap,
kleopatra, kmail, kmailcommon, kmailimporter, kmailtransport, kmbox,
kmessagelib, kmime, knotes, kontactinterface, korganizer, kpimcommon,
kpimtextedit, ksmtp, ktnef, libkdepim, libkgapi, libkleo, libksieve): Update
to 20.04.1.
[source](uri): Adjust to current.
(akonadi)[inputs]: Remove KDBUSADDONS and KDESIGNERPLUGIN.
(akonadi-calendar)[inputs]: Remove KDBUSADDONS.
(kdepim-runtime)[source](patches): Remove.
[arguments]: Add phase 'extend-CPLUS_INCLUDE_PATH'.
[inputs]: Remove KDBUSADDONS and KICONTHEMES.
(kmessagelib)[arguments]: Add phase 'extend-CPLUS_INCLUDE_PATH.
[inputs]: Add QCA.
(kdepim-apps-libs)[inputs]: Remove KDBUSADDONS and KICONTHEMES.
(knotes)[inputs]: Remove KDBUSADDONS.
(kpimcommon)[inputs]: Remove KDBUSADDONS and KCOMPLETION.
(libksieve)[arguments]: Disable one more test.
(korganizer)[arguments]: Disable one test.
2020-06-06 14:06:58 +00:00
|
|
|
(uri (string-append "mirror://kde/stable/release-service/" version
|
2019-12-05 22:29:43 +00:00
|
|
|
"/src/akonadi-contacts-" version ".tar.xz"))
|
|
|
|
(sha256
|
2023-07-30 02:31:59 +00:00
|
|
|
(base32 "10vlzj56ps1pysf7g6i14v8wp2wkxh53055r2v4iq4cpq3mzayc6"))))
|
2019-12-05 22:29:43 +00:00
|
|
|
(build-system qt-build-system)
|
|
|
|
(native-inputs
|
2021-12-13 16:18:24 +00:00
|
|
|
(list extra-cmake-modules))
|
2019-12-05 22:29:43 +00:00
|
|
|
(inputs
|
2021-12-13 16:18:24 +00:00
|
|
|
(list akonadi
|
|
|
|
boost
|
gnu: KDE PIM: Update all packages to 21.12.3.
* gnu/packages/kde-pim.scm (KDE PIM): Update to 21.12.3.
(akonadi, akonadi-calendar, akonadi-contacts, akonadi-mime,
akonadi-notes, akonadi-search, kaddressbook, kalarmcal,
kcalendarsupport, kcalutils, kdepim-runtime, keventviews, kgpg,
kidentitymanagement, kimap, kincidenceeditor, kldap, kleopatra, kmail,
kmailcommon, kmailimporter, kmailtransport, kmbox, kmessagelib, kmime,
knotes, kontactinterface, korganizer, kpeoplevcard, kpimcommon,
kpimtextedit, ksmtp, ktnef, libgravatar, libkdepim, libkgapi, libkleo,
libksieve): Update to 21.12.3.
(kblog): Update to 20.04.3.
* gnu/packages/patches/akonadi-not-relocatable.patch
* gnu/packages/patches/akonadi-paths.patch
* gnu/packages/patches/akonadi-timestamps.patch
Fix patches to apply to latest code.
(akonadi-calendar): [inputs]: Add new dependencies.
(akonadi-contacts): [inputs]: Add new dependencies.
(akonadi-search): [arguments]: Disable failing tests.
(kcalendarsupport): [inputs]: Add new dependency, remove obsolete kdepim-apps-lib.
(libksieve): [arguments]: Enable test that works now.
* gnu/packages/patches/libksieve-Fix-missing-link-libraries.patch: Fix patch.
(kaddressbook): [inputs]: Remove obsolete kdepim-apps-libs.
Move kdocstools to native-inputs.
(kmessagelib): [inputs]: Remove obsolete kdepim-appslibs, add kguiaddons.
[arguments]: Fix findind header file.
(kmailimporter): [inputs]: Add new dependencies.
(kmailtransport): [inputs]: Add qtkeychain.
(knotes): [inputs]: Move kdocstools to native-inputs.
(kincidenceeditor): [inputs]: Add new dependencies. Remove obsolete kdepim-apps-libs
[arguments]: Disable failing test.
(kldap): [inputs]: Add qtkeychain.
(kgpg)[arguments]: Disable failing tests.
(libkleo): [propagated-inputs]: Propagate gpgme, qgpgme.
[arguments]: Disable failing tests.
(kdepim-runtime): [inputs]: Add new dependencies grantlee, grantleetheme, kcmutils, kldap,
libkdepim, qtkeychain
[arguments]: Enable all the tests that pass.
We need to use the old hack instead of search-input-directory to
workaround a mysterious include error.
(kdepim-apps-lib): Remove obsolete package.
(kmail): [origin]: Remove patch. Don't think it is needed anymore.
[inputs]: Add new dependencies, delete obsolete kdepim-apps-libs and
duplicate kmime.
[arguments]: Disable failing tests.
* gnu/packages/patches/kmail-Fix-missing-link-libraries.patch: Delete file.
* gnu/local.mk: Remove reference to patch.
(kmailcommon): [inputs]: Add new dependencies.
Signed-off-by: Marius Bakke <marius@gnu.org>
2022-02-02 09:08:23 +00:00
|
|
|
grantlee
|
|
|
|
grantleetheme
|
2021-12-13 16:18:24 +00:00
|
|
|
kauth
|
gnu: KDE PIM: Update all packages to 21.12.3.
* gnu/packages/kde-pim.scm (KDE PIM): Update to 21.12.3.
(akonadi, akonadi-calendar, akonadi-contacts, akonadi-mime,
akonadi-notes, akonadi-search, kaddressbook, kalarmcal,
kcalendarsupport, kcalutils, kdepim-runtime, keventviews, kgpg,
kidentitymanagement, kimap, kincidenceeditor, kldap, kleopatra, kmail,
kmailcommon, kmailimporter, kmailtransport, kmbox, kmessagelib, kmime,
knotes, kontactinterface, korganizer, kpeoplevcard, kpimcommon,
kpimtextedit, ksmtp, ktnef, libgravatar, libkdepim, libkgapi, libkleo,
libksieve): Update to 21.12.3.
(kblog): Update to 20.04.3.
* gnu/packages/patches/akonadi-not-relocatable.patch
* gnu/packages/patches/akonadi-paths.patch
* gnu/packages/patches/akonadi-timestamps.patch
Fix patches to apply to latest code.
(akonadi-calendar): [inputs]: Add new dependencies.
(akonadi-contacts): [inputs]: Add new dependencies.
(akonadi-search): [arguments]: Disable failing tests.
(kcalendarsupport): [inputs]: Add new dependency, remove obsolete kdepim-apps-lib.
(libksieve): [arguments]: Enable test that works now.
* gnu/packages/patches/libksieve-Fix-missing-link-libraries.patch: Fix patch.
(kaddressbook): [inputs]: Remove obsolete kdepim-apps-libs.
Move kdocstools to native-inputs.
(kmessagelib): [inputs]: Remove obsolete kdepim-appslibs, add kguiaddons.
[arguments]: Fix findind header file.
(kmailimporter): [inputs]: Add new dependencies.
(kmailtransport): [inputs]: Add qtkeychain.
(knotes): [inputs]: Move kdocstools to native-inputs.
(kincidenceeditor): [inputs]: Add new dependencies. Remove obsolete kdepim-apps-libs
[arguments]: Disable failing test.
(kldap): [inputs]: Add qtkeychain.
(kgpg)[arguments]: Disable failing tests.
(libkleo): [propagated-inputs]: Propagate gpgme, qgpgme.
[arguments]: Disable failing tests.
(kdepim-runtime): [inputs]: Add new dependencies grantlee, grantleetheme, kcmutils, kldap,
libkdepim, qtkeychain
[arguments]: Enable all the tests that pass.
We need to use the old hack instead of search-input-directory to
workaround a mysterious include error.
(kdepim-apps-lib): Remove obsolete package.
(kmail): [origin]: Remove patch. Don't think it is needed anymore.
[inputs]: Add new dependencies, delete obsolete kdepim-apps-libs and
duplicate kmime.
[arguments]: Disable failing tests.
* gnu/packages/patches/kmail-Fix-missing-link-libraries.patch: Delete file.
* gnu/local.mk: Remove reference to patch.
(kmailcommon): [inputs]: Add new dependencies.
Signed-off-by: Marius Bakke <marius@gnu.org>
2022-02-02 09:08:23 +00:00
|
|
|
kcmutils
|
2021-12-13 16:18:24 +00:00
|
|
|
kcodecs
|
|
|
|
kcompletion
|
|
|
|
kconfigwidgets
|
|
|
|
kcontacts
|
|
|
|
kcoreaddons
|
|
|
|
kdbusaddons
|
|
|
|
ki18n
|
|
|
|
kiconthemes
|
|
|
|
kitemmodels
|
|
|
|
kitemviews
|
|
|
|
kjobwidgets
|
|
|
|
kmime
|
|
|
|
kservice
|
|
|
|
ktextwidgets
|
|
|
|
kwidgetsaddons
|
|
|
|
kxmlgui
|
gnu: KDE PIM: Update all packages to 21.12.3.
* gnu/packages/kde-pim.scm (KDE PIM): Update to 21.12.3.
(akonadi, akonadi-calendar, akonadi-contacts, akonadi-mime,
akonadi-notes, akonadi-search, kaddressbook, kalarmcal,
kcalendarsupport, kcalutils, kdepim-runtime, keventviews, kgpg,
kidentitymanagement, kimap, kincidenceeditor, kldap, kleopatra, kmail,
kmailcommon, kmailimporter, kmailtransport, kmbox, kmessagelib, kmime,
knotes, kontactinterface, korganizer, kpeoplevcard, kpimcommon,
kpimtextedit, ksmtp, ktnef, libgravatar, libkdepim, libkgapi, libkleo,
libksieve): Update to 21.12.3.
(kblog): Update to 20.04.3.
* gnu/packages/patches/akonadi-not-relocatable.patch
* gnu/packages/patches/akonadi-paths.patch
* gnu/packages/patches/akonadi-timestamps.patch
Fix patches to apply to latest code.
(akonadi-calendar): [inputs]: Add new dependencies.
(akonadi-contacts): [inputs]: Add new dependencies.
(akonadi-search): [arguments]: Disable failing tests.
(kcalendarsupport): [inputs]: Add new dependency, remove obsolete kdepim-apps-lib.
(libksieve): [arguments]: Enable test that works now.
* gnu/packages/patches/libksieve-Fix-missing-link-libraries.patch: Fix patch.
(kaddressbook): [inputs]: Remove obsolete kdepim-apps-libs.
Move kdocstools to native-inputs.
(kmessagelib): [inputs]: Remove obsolete kdepim-appslibs, add kguiaddons.
[arguments]: Fix findind header file.
(kmailimporter): [inputs]: Add new dependencies.
(kmailtransport): [inputs]: Add qtkeychain.
(knotes): [inputs]: Move kdocstools to native-inputs.
(kincidenceeditor): [inputs]: Add new dependencies. Remove obsolete kdepim-apps-libs
[arguments]: Disable failing test.
(kldap): [inputs]: Add qtkeychain.
(kgpg)[arguments]: Disable failing tests.
(libkleo): [propagated-inputs]: Propagate gpgme, qgpgme.
[arguments]: Disable failing tests.
(kdepim-runtime): [inputs]: Add new dependencies grantlee, grantleetheme, kcmutils, kldap,
libkdepim, qtkeychain
[arguments]: Enable all the tests that pass.
We need to use the old hack instead of search-input-directory to
workaround a mysterious include error.
(kdepim-apps-lib): Remove obsolete package.
(kmail): [origin]: Remove patch. Don't think it is needed anymore.
[inputs]: Add new dependencies, delete obsolete kdepim-apps-libs and
duplicate kmime.
[arguments]: Disable failing tests.
* gnu/packages/patches/kmail-Fix-missing-link-libraries.patch: Delete file.
* gnu/local.mk: Remove reference to patch.
(kmailcommon): [inputs]: Add new dependencies.
Signed-off-by: Marius Bakke <marius@gnu.org>
2022-02-02 09:08:23 +00:00
|
|
|
libkleo
|
2021-12-13 16:18:24 +00:00
|
|
|
prison
|
|
|
|
kio
|
|
|
|
qtbase-5
|
|
|
|
solid
|
|
|
|
sonnet))
|
2020-08-19 13:08:46 +00:00
|
|
|
(home-page "https://api.kde.org/kdepim/akonadi/html/index.html")
|
2019-12-05 22:29:43 +00:00
|
|
|
(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+))))
|
|
|
|
|
2019-12-05 22:00:25 +00:00
|
|
|
(define-public akonadi-mime
|
|
|
|
(package
|
|
|
|
(name "akonadi-mime")
|
2023-07-30 02:31:59 +00:00
|
|
|
(version "23.04.3")
|
2019-12-05 22:00:25 +00:00
|
|
|
(source
|
|
|
|
(origin
|
|
|
|
(method url-fetch)
|
gnu: KDE: Update to 20.04.1.
* gnu/packages/patches/akonadi-paths.patch: Adjust for upstream changes.
* gnu/packages/patches/kdepim-runtime-Fix-missing-link-libraries.patch: Delete file.
* gnu/local.mk (dist_patch_DATA): Adjust accordingly.
* gnu/packages/kde-internet.scm (kget, kopete, krdc, libgravatar): Update to
20.04.1.
[source](uri): Adjust for new upstream location.
* gnu/packages/kde-multimedia.scm (audiocd-kio, dragon, ffmpegthumbs, juk,
k3b, kamoso, kmix, kwave, libkcddb, libkcompactdisc): Likewise.
* gnu/packages/kde-systemtools.scm (dolphin, dolphin-plugins, khelpcenter,
konsole, krfb, ksystemlog): Update to 20.04.1.
[source](uri): Adjust for new upstream location.
* gnu/packages/kde-utils.scm (kate, kmag, kmousetool, kmouth, sweeper): Update
to 20.04.1.
[source](uri): Adjust for new upstream location.
* gnu/packages/kde.scm (baloo-widgets, libkomparediff2, kqtquickcharts,
grantleetheme, kcachegrind, libkdegames, zeroconf-ioslave): Update to 20.04.1.
[source](uri): Adjust for new upstream location.
(grantleetheme)[inputs]: Add KGUIADDONS.
* gnu/packages/kde-pim.scm (akonadi, akonadi-calendar, akonadi-contacts,
akonadi-mime, akonadi-notes, akonadi-search, kincidenceeditor, kaddressbook,
kalarmcal, kblog, kcalendarsupport, kcalutils, kdav, kdepim-apps-libs,
kdepim-runtime, keventviews, kgpg, kidentitymanagement, kimap, kldap,
kleopatra, kmail, kmailcommon, kmailimporter, kmailtransport, kmbox,
kmessagelib, kmime, knotes, kontactinterface, korganizer, kpimcommon,
kpimtextedit, ksmtp, ktnef, libkdepim, libkgapi, libkleo, libksieve): Update
to 20.04.1.
[source](uri): Adjust to current.
(akonadi)[inputs]: Remove KDBUSADDONS and KDESIGNERPLUGIN.
(akonadi-calendar)[inputs]: Remove KDBUSADDONS.
(kdepim-runtime)[source](patches): Remove.
[arguments]: Add phase 'extend-CPLUS_INCLUDE_PATH'.
[inputs]: Remove KDBUSADDONS and KICONTHEMES.
(kmessagelib)[arguments]: Add phase 'extend-CPLUS_INCLUDE_PATH.
[inputs]: Add QCA.
(kdepim-apps-libs)[inputs]: Remove KDBUSADDONS and KICONTHEMES.
(knotes)[inputs]: Remove KDBUSADDONS.
(kpimcommon)[inputs]: Remove KDBUSADDONS and KCOMPLETION.
(libksieve)[arguments]: Disable one more test.
(korganizer)[arguments]: Disable one test.
2020-06-06 14:06:58 +00:00
|
|
|
(uri (string-append "mirror://kde/stable/release-service/" version
|
2019-12-05 22:00:25 +00:00
|
|
|
"/src/akonadi-mime-" version ".tar.xz"))
|
|
|
|
(sha256
|
2023-07-30 02:31:59 +00:00
|
|
|
(base32 "1r33v2q49s7l90id4jqg0lar9p1j5k0cbnzsaqdksavzpzkcklh5"))))
|
2019-12-05 22:00:25 +00:00
|
|
|
(build-system qt-build-system)
|
|
|
|
(native-inputs
|
2021-12-13 16:18:24 +00:00
|
|
|
(list extra-cmake-modules libxslt ;; xslt for generating interface descriptions
|
|
|
|
shared-mime-info))
|
2019-12-05 22:00:25 +00:00
|
|
|
(inputs
|
2021-12-13 16:18:24 +00:00
|
|
|
(list akonadi
|
|
|
|
boost
|
|
|
|
kcodecs
|
|
|
|
kconfig
|
|
|
|
kconfigwidgets
|
|
|
|
kdbusaddons
|
|
|
|
ki18n
|
|
|
|
kio
|
|
|
|
kitemmodels
|
|
|
|
kmime
|
|
|
|
kwidgetsaddons
|
|
|
|
kxmlgui
|
|
|
|
qtbase-5))
|
2020-08-19 13:08:46 +00:00
|
|
|
(home-page "https://api.kde.org/kdepim/akonadi/html/index.html")
|
2019-12-05 22:00:25 +00:00
|
|
|
(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"
|
gnu: KDE-PIM: Remove trailing booleans.
* gnu/packages/kde-pim.scm (akonadi, akonadi-mime, akonadi-search,
kincidenceeditor, kdepim-runtime, kidentitymanagement, kleopatra, kmail,
kmime, korganizer, kpeoplevcard, ksmtp, libkleo,
libksieve)[arguments]: Remove trailing booleans.
Signed-off-by: Marius Bakke <marius@gnu.org>
2022-07-21 06:33:36 +00:00
|
|
|
(string-append plugins-dir "/akonadi_serializer_mail.desktop")))))
|
2019-12-05 22:00:25 +00:00
|
|
|
(add-before 'check 'check-setup
|
|
|
|
(lambda _
|
gnu: KDE-PIM: Remove trailing booleans.
* gnu/packages/kde-pim.scm (akonadi, akonadi-mime, akonadi-search,
kincidenceeditor, kdepim-runtime, kidentitymanagement, kleopatra, kmail,
kmime, korganizer, kpeoplevcard, ksmtp, libkleo,
libksieve)[arguments]: Remove trailing booleans.
Signed-off-by: Marius Bakke <marius@gnu.org>
2022-07-21 06:33:36 +00:00
|
|
|
(setenv "HOME" "/tmp"))))))
|
2019-12-05 22:00:25 +00:00
|
|
|
(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+))))
|
|
|
|
|
2019-12-05 22:16:13 +00:00
|
|
|
(define-public akonadi-notes
|
|
|
|
(package
|
|
|
|
(name "akonadi-notes")
|
2023-07-30 02:31:59 +00:00
|
|
|
(version "23.04.3")
|
2019-12-05 22:16:13 +00:00
|
|
|
(source
|
|
|
|
(origin
|
|
|
|
(method url-fetch)
|
gnu: KDE: Update to 20.04.1.
* gnu/packages/patches/akonadi-paths.patch: Adjust for upstream changes.
* gnu/packages/patches/kdepim-runtime-Fix-missing-link-libraries.patch: Delete file.
* gnu/local.mk (dist_patch_DATA): Adjust accordingly.
* gnu/packages/kde-internet.scm (kget, kopete, krdc, libgravatar): Update to
20.04.1.
[source](uri): Adjust for new upstream location.
* gnu/packages/kde-multimedia.scm (audiocd-kio, dragon, ffmpegthumbs, juk,
k3b, kamoso, kmix, kwave, libkcddb, libkcompactdisc): Likewise.
* gnu/packages/kde-systemtools.scm (dolphin, dolphin-plugins, khelpcenter,
konsole, krfb, ksystemlog): Update to 20.04.1.
[source](uri): Adjust for new upstream location.
* gnu/packages/kde-utils.scm (kate, kmag, kmousetool, kmouth, sweeper): Update
to 20.04.1.
[source](uri): Adjust for new upstream location.
* gnu/packages/kde.scm (baloo-widgets, libkomparediff2, kqtquickcharts,
grantleetheme, kcachegrind, libkdegames, zeroconf-ioslave): Update to 20.04.1.
[source](uri): Adjust for new upstream location.
(grantleetheme)[inputs]: Add KGUIADDONS.
* gnu/packages/kde-pim.scm (akonadi, akonadi-calendar, akonadi-contacts,
akonadi-mime, akonadi-notes, akonadi-search, kincidenceeditor, kaddressbook,
kalarmcal, kblog, kcalendarsupport, kcalutils, kdav, kdepim-apps-libs,
kdepim-runtime, keventviews, kgpg, kidentitymanagement, kimap, kldap,
kleopatra, kmail, kmailcommon, kmailimporter, kmailtransport, kmbox,
kmessagelib, kmime, knotes, kontactinterface, korganizer, kpimcommon,
kpimtextedit, ksmtp, ktnef, libkdepim, libkgapi, libkleo, libksieve): Update
to 20.04.1.
[source](uri): Adjust to current.
(akonadi)[inputs]: Remove KDBUSADDONS and KDESIGNERPLUGIN.
(akonadi-calendar)[inputs]: Remove KDBUSADDONS.
(kdepim-runtime)[source](patches): Remove.
[arguments]: Add phase 'extend-CPLUS_INCLUDE_PATH'.
[inputs]: Remove KDBUSADDONS and KICONTHEMES.
(kmessagelib)[arguments]: Add phase 'extend-CPLUS_INCLUDE_PATH.
[inputs]: Add QCA.
(kdepim-apps-libs)[inputs]: Remove KDBUSADDONS and KICONTHEMES.
(knotes)[inputs]: Remove KDBUSADDONS.
(kpimcommon)[inputs]: Remove KDBUSADDONS and KCOMPLETION.
(libksieve)[arguments]: Disable one more test.
(korganizer)[arguments]: Disable one test.
2020-06-06 14:06:58 +00:00
|
|
|
(uri (string-append "mirror://kde/stable/release-service/" version
|
2019-12-05 22:16:13 +00:00
|
|
|
"/src/akonadi-notes-" version ".tar.xz"))
|
|
|
|
(sha256
|
2023-07-30 02:31:59 +00:00
|
|
|
(base32 "0s5a414cdcz37srys2w3c2z5c63ha9ivsqj0srnfwwv0pxix266v"))))
|
2019-12-05 22:16:13 +00:00
|
|
|
(build-system qt-build-system)
|
|
|
|
(native-inputs
|
2021-12-13 16:18:24 +00:00
|
|
|
(list extra-cmake-modules))
|
2019-12-05 22:16:13 +00:00
|
|
|
(inputs
|
2021-12-13 16:18:24 +00:00
|
|
|
(list akonadi kcodecs ki18n kmime qtbase-5))
|
2020-08-19 13:08:46 +00:00
|
|
|
(home-page "https://api.kde.org/kdepim/akonadi/html/index.html")
|
2019-12-05 22:16:13 +00:00
|
|
|
(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+))))
|
|
|
|
|
2019-12-05 22:24:12 +00:00
|
|
|
(define-public akonadi-search
|
|
|
|
(package
|
|
|
|
(name "akonadi-search")
|
2023-07-30 02:31:59 +00:00
|
|
|
(version "23.04.3")
|
2019-12-05 22:24:12 +00:00
|
|
|
(source
|
|
|
|
(origin
|
|
|
|
(method url-fetch)
|
gnu: KDE: Update to 20.04.1.
* gnu/packages/patches/akonadi-paths.patch: Adjust for upstream changes.
* gnu/packages/patches/kdepim-runtime-Fix-missing-link-libraries.patch: Delete file.
* gnu/local.mk (dist_patch_DATA): Adjust accordingly.
* gnu/packages/kde-internet.scm (kget, kopete, krdc, libgravatar): Update to
20.04.1.
[source](uri): Adjust for new upstream location.
* gnu/packages/kde-multimedia.scm (audiocd-kio, dragon, ffmpegthumbs, juk,
k3b, kamoso, kmix, kwave, libkcddb, libkcompactdisc): Likewise.
* gnu/packages/kde-systemtools.scm (dolphin, dolphin-plugins, khelpcenter,
konsole, krfb, ksystemlog): Update to 20.04.1.
[source](uri): Adjust for new upstream location.
* gnu/packages/kde-utils.scm (kate, kmag, kmousetool, kmouth, sweeper): Update
to 20.04.1.
[source](uri): Adjust for new upstream location.
* gnu/packages/kde.scm (baloo-widgets, libkomparediff2, kqtquickcharts,
grantleetheme, kcachegrind, libkdegames, zeroconf-ioslave): Update to 20.04.1.
[source](uri): Adjust for new upstream location.
(grantleetheme)[inputs]: Add KGUIADDONS.
* gnu/packages/kde-pim.scm (akonadi, akonadi-calendar, akonadi-contacts,
akonadi-mime, akonadi-notes, akonadi-search, kincidenceeditor, kaddressbook,
kalarmcal, kblog, kcalendarsupport, kcalutils, kdav, kdepim-apps-libs,
kdepim-runtime, keventviews, kgpg, kidentitymanagement, kimap, kldap,
kleopatra, kmail, kmailcommon, kmailimporter, kmailtransport, kmbox,
kmessagelib, kmime, knotes, kontactinterface, korganizer, kpimcommon,
kpimtextedit, ksmtp, ktnef, libkdepim, libkgapi, libkleo, libksieve): Update
to 20.04.1.
[source](uri): Adjust to current.
(akonadi)[inputs]: Remove KDBUSADDONS and KDESIGNERPLUGIN.
(akonadi-calendar)[inputs]: Remove KDBUSADDONS.
(kdepim-runtime)[source](patches): Remove.
[arguments]: Add phase 'extend-CPLUS_INCLUDE_PATH'.
[inputs]: Remove KDBUSADDONS and KICONTHEMES.
(kmessagelib)[arguments]: Add phase 'extend-CPLUS_INCLUDE_PATH.
[inputs]: Add QCA.
(kdepim-apps-libs)[inputs]: Remove KDBUSADDONS and KICONTHEMES.
(knotes)[inputs]: Remove KDBUSADDONS.
(kpimcommon)[inputs]: Remove KDBUSADDONS and KCOMPLETION.
(libksieve)[arguments]: Disable one more test.
(korganizer)[arguments]: Disable one test.
2020-06-06 14:06:58 +00:00
|
|
|
(uri (string-append "mirror://kde/stable/release-service/" version
|
2019-12-05 22:24:12 +00:00
|
|
|
"/src/akonadi-search-" version ".tar.xz"))
|
|
|
|
(sha256
|
2023-07-30 02:31:59 +00:00
|
|
|
(base32 "1hpclfcb7almvajscm2az36bw9rrhkp3ywb9h0j9h8ims2gm60m7"))))
|
2019-12-05 22:24:12 +00:00
|
|
|
(build-system qt-build-system)
|
|
|
|
(native-inputs
|
2021-12-13 16:18:24 +00:00
|
|
|
(list extra-cmake-modules
|
|
|
|
;; For tests.
|
|
|
|
dbus))
|
2019-12-05 22:24:12 +00:00
|
|
|
(inputs
|
2021-12-13 16:18:24 +00:00
|
|
|
(list akonadi
|
|
|
|
akonadi-mime
|
|
|
|
boost
|
|
|
|
kcalendarcore
|
|
|
|
kcmutils
|
|
|
|
kcontacts
|
|
|
|
kcrash
|
|
|
|
kdbusaddons
|
|
|
|
ki18n
|
|
|
|
kio
|
|
|
|
kitemmodels
|
|
|
|
kmime
|
|
|
|
krunner
|
|
|
|
kwindowsystem
|
|
|
|
qtbase-5
|
|
|
|
xapian))
|
2019-12-05 22:24:12 +00:00
|
|
|
(arguments
|
2020-06-06 13:47:39 +00:00
|
|
|
`(#:phases (modify-phases %standard-phases
|
|
|
|
(add-after 'unpack 'disable-failing-test
|
|
|
|
(lambda _
|
|
|
|
;; FIXME: This test fails because it fails to establish
|
|
|
|
;; a socket connection, seemingly due to failure during
|
gnu: KDE: Update to 20.04.1.
* gnu/packages/patches/akonadi-paths.patch: Adjust for upstream changes.
* gnu/packages/patches/kdepim-runtime-Fix-missing-link-libraries.patch: Delete file.
* gnu/local.mk (dist_patch_DATA): Adjust accordingly.
* gnu/packages/kde-internet.scm (kget, kopete, krdc, libgravatar): Update to
20.04.1.
[source](uri): Adjust for new upstream location.
* gnu/packages/kde-multimedia.scm (audiocd-kio, dragon, ffmpegthumbs, juk,
k3b, kamoso, kmix, kwave, libkcddb, libkcompactdisc): Likewise.
* gnu/packages/kde-systemtools.scm (dolphin, dolphin-plugins, khelpcenter,
konsole, krfb, ksystemlog): Update to 20.04.1.
[source](uri): Adjust for new upstream location.
* gnu/packages/kde-utils.scm (kate, kmag, kmousetool, kmouth, sweeper): Update
to 20.04.1.
[source](uri): Adjust for new upstream location.
* gnu/packages/kde.scm (baloo-widgets, libkomparediff2, kqtquickcharts,
grantleetheme, kcachegrind, libkdegames, zeroconf-ioslave): Update to 20.04.1.
[source](uri): Adjust for new upstream location.
(grantleetheme)[inputs]: Add KGUIADDONS.
* gnu/packages/kde-pim.scm (akonadi, akonadi-calendar, akonadi-contacts,
akonadi-mime, akonadi-notes, akonadi-search, kincidenceeditor, kaddressbook,
kalarmcal, kblog, kcalendarsupport, kcalutils, kdav, kdepim-apps-libs,
kdepim-runtime, keventviews, kgpg, kidentitymanagement, kimap, kldap,
kleopatra, kmail, kmailcommon, kmailimporter, kmailtransport, kmbox,
kmessagelib, kmime, knotes, kontactinterface, korganizer, kpimcommon,
kpimtextedit, ksmtp, ktnef, libkdepim, libkgapi, libkleo, libksieve): Update
to 20.04.1.
[source](uri): Adjust to current.
(akonadi)[inputs]: Remove KDBUSADDONS and KDESIGNERPLUGIN.
(akonadi-calendar)[inputs]: Remove KDBUSADDONS.
(kdepim-runtime)[source](patches): Remove.
[arguments]: Add phase 'extend-CPLUS_INCLUDE_PATH'.
[inputs]: Remove KDBUSADDONS and KICONTHEMES.
(kmessagelib)[arguments]: Add phase 'extend-CPLUS_INCLUDE_PATH.
[inputs]: Add QCA.
(kdepim-apps-libs)[inputs]: Remove KDBUSADDONS and KICONTHEMES.
(knotes)[inputs]: Remove KDBUSADDONS.
(kpimcommon)[inputs]: Remove KDBUSADDONS and KCOMPLETION.
(libksieve)[arguments]: Disable one more test.
(korganizer)[arguments]: Disable one test.
2020-06-06 14:06:58 +00:00
|
|
|
;; DBus communication. See also 'korganizer'.
|
2020-06-06 13:47:39 +00:00
|
|
|
(substitute* "agent/autotests/CMakeLists.txt"
|
|
|
|
((".*schedulertest\\.cpp.*")
|
gnu: KDE-PIM: Remove trailing booleans.
* gnu/packages/kde-pim.scm (akonadi, akonadi-mime, akonadi-search,
kincidenceeditor, kdepim-runtime, kidentitymanagement, kleopatra, kmail,
kmime, korganizer, kpeoplevcard, ksmtp, libkleo,
libksieve)[arguments]: Remove trailing booleans.
Signed-off-by: Marius Bakke <marius@gnu.org>
2022-07-21 06:33:36 +00:00
|
|
|
""))))
|
2020-06-06 13:47:39 +00:00
|
|
|
(replace 'check
|
2021-09-13 08:04:50 +00:00
|
|
|
(lambda* (#:key tests? #:allow-other-keys)
|
|
|
|
(when tests?
|
gnu: KDE PIM: Update all packages to 21.12.3.
* gnu/packages/kde-pim.scm (KDE PIM): Update to 21.12.3.
(akonadi, akonadi-calendar, akonadi-contacts, akonadi-mime,
akonadi-notes, akonadi-search, kaddressbook, kalarmcal,
kcalendarsupport, kcalutils, kdepim-runtime, keventviews, kgpg,
kidentitymanagement, kimap, kincidenceeditor, kldap, kleopatra, kmail,
kmailcommon, kmailimporter, kmailtransport, kmbox, kmessagelib, kmime,
knotes, kontactinterface, korganizer, kpeoplevcard, kpimcommon,
kpimtextedit, ksmtp, ktnef, libgravatar, libkdepim, libkgapi, libkleo,
libksieve): Update to 21.12.3.
(kblog): Update to 20.04.3.
* gnu/packages/patches/akonadi-not-relocatable.patch
* gnu/packages/patches/akonadi-paths.patch
* gnu/packages/patches/akonadi-timestamps.patch
Fix patches to apply to latest code.
(akonadi-calendar): [inputs]: Add new dependencies.
(akonadi-contacts): [inputs]: Add new dependencies.
(akonadi-search): [arguments]: Disable failing tests.
(kcalendarsupport): [inputs]: Add new dependency, remove obsolete kdepim-apps-lib.
(libksieve): [arguments]: Enable test that works now.
* gnu/packages/patches/libksieve-Fix-missing-link-libraries.patch: Fix patch.
(kaddressbook): [inputs]: Remove obsolete kdepim-apps-libs.
Move kdocstools to native-inputs.
(kmessagelib): [inputs]: Remove obsolete kdepim-appslibs, add kguiaddons.
[arguments]: Fix findind header file.
(kmailimporter): [inputs]: Add new dependencies.
(kmailtransport): [inputs]: Add qtkeychain.
(knotes): [inputs]: Move kdocstools to native-inputs.
(kincidenceeditor): [inputs]: Add new dependencies. Remove obsolete kdepim-apps-libs
[arguments]: Disable failing test.
(kldap): [inputs]: Add qtkeychain.
(kgpg)[arguments]: Disable failing tests.
(libkleo): [propagated-inputs]: Propagate gpgme, qgpgme.
[arguments]: Disable failing tests.
(kdepim-runtime): [inputs]: Add new dependencies grantlee, grantleetheme, kcmutils, kldap,
libkdepim, qtkeychain
[arguments]: Enable all the tests that pass.
We need to use the old hack instead of search-input-directory to
workaround a mysterious include error.
(kdepim-apps-lib): Remove obsolete package.
(kmail): [origin]: Remove patch. Don't think it is needed anymore.
[inputs]: Add new dependencies, delete obsolete kdepim-apps-libs and
duplicate kmime.
[arguments]: Disable failing tests.
* gnu/packages/patches/kmail-Fix-missing-link-libraries.patch: Delete file.
* gnu/local.mk: Remove reference to patch.
(kmailcommon): [inputs]: Add new dependencies.
Signed-off-by: Marius Bakke <marius@gnu.org>
2022-02-02 09:08:23 +00:00
|
|
|
(invoke "dbus-launch" "ctest" "-E"
|
|
|
|
"akonadi-sqlite-collectionindexingjobtest")))))))
|
2020-08-19 13:08:46 +00:00
|
|
|
(home-page "https://api.kde.org/kdepim/akonadi/html/index.html")
|
2019-12-05 22:24:12 +00:00
|
|
|
(synopsis "Akonadi search library")
|
gnu: Reword and extend descriptions for some KDE packages.
* gnu/packages/kde-multimedia.scm (libkcompatdisc)[description]: Extend.
* gnu/packages/kde-pim.scm (akonadi-search, kalarmcal, kdemailimporter,
kdepim-apps-libs, kidentitymanagement, kldap, kmailtransport, kmbox, kmime,
kontactinterface, kpimtextedit)[description]: Reword and extend.
(ktnef, kpimcommon, libkdepim)[synopsis, description]: Reword and extend.
(kmailtransport)[synopsis]: Fix space.
* gnu/packages/kde-systemtools.scm (khelpcenter)[description]: Extend.
2020-03-01 16:13:49 +00:00
|
|
|
(description "This package provides a library used to search in the
|
|
|
|
Akonadi PIM data server. It uses Xapian for indexing and querying.")
|
2019-12-05 22:24:12 +00:00
|
|
|
(license ;; GPL for programs, LGPL for libraries
|
|
|
|
(list license:gpl2+ license:lgpl2.0+))))
|
|
|
|
|
2022-10-03 15:47:08 +00:00
|
|
|
(define-public itinerary
|
|
|
|
(package
|
|
|
|
(name "itinerary")
|
2023-07-30 02:32:00 +00:00
|
|
|
(version "23.04.3")
|
2022-10-03 15:47:08 +00:00
|
|
|
(source (origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append "mirror://kde/stable/release-service/"
|
|
|
|
version "/src/" name "-" version ".tar.xz"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
2023-07-30 02:32:00 +00:00
|
|
|
"132x68wc4pallxgkvridfsimfq5m2g47fj9lcgz1kq4gdsidzf6i"))))
|
2022-10-03 15:47:08 +00:00
|
|
|
(build-system qt-build-system)
|
|
|
|
(arguments
|
|
|
|
`(#:tests? #f)) ;Fails 20/27
|
|
|
|
(native-inputs (list extra-cmake-modules))
|
|
|
|
(inputs (list karchive
|
|
|
|
kdbusaddons
|
|
|
|
ki18n
|
|
|
|
kio
|
|
|
|
kirigami
|
2023-07-30 02:32:00 +00:00
|
|
|
kirigami-addons
|
2022-10-03 15:47:08 +00:00
|
|
|
kitinerary
|
|
|
|
kitemmodels
|
|
|
|
kcoreaddons
|
|
|
|
kcontacts
|
|
|
|
kholidays
|
|
|
|
kmime
|
|
|
|
knotifications
|
|
|
|
kpublictransport
|
|
|
|
kcalendarcore
|
|
|
|
khealthcertificate
|
|
|
|
kosmindoormap
|
|
|
|
kopeninghours
|
|
|
|
kpkpass
|
|
|
|
kunitconversion
|
|
|
|
kwindowsystem
|
|
|
|
prison
|
|
|
|
qtdeclarative-5
|
|
|
|
qtgraphicaleffects
|
|
|
|
qtlocation
|
|
|
|
qtmultimedia-5
|
|
|
|
qtquickcontrols2-5
|
|
|
|
qqc2-desktop-style
|
|
|
|
shared-mime-info
|
|
|
|
solid
|
|
|
|
sonnet
|
|
|
|
zlib))
|
|
|
|
(home-page "https://invent.kde.org/pim/itinerary")
|
|
|
|
(synopsis "Itinerary and boarding pass management")
|
|
|
|
(description
|
|
|
|
"This package provides a tool for managing itinerary and boarding pass
|
|
|
|
information.")
|
|
|
|
(license ;GPL for programs, LGPL for libraries
|
|
|
|
(list license:gpl2+ license:lgpl2.0+))))
|
|
|
|
|
2020-01-20 00:28:55 +00:00
|
|
|
(define-public kincidenceeditor
|
|
|
|
(package
|
|
|
|
(name "kincidenceeditor")
|
2023-07-30 02:32:00 +00:00
|
|
|
(version "23.04.3")
|
2020-01-20 00:28:55 +00:00
|
|
|
(source
|
|
|
|
(origin
|
|
|
|
(method url-fetch)
|
gnu: KDE: Update to 20.04.1.
* gnu/packages/patches/akonadi-paths.patch: Adjust for upstream changes.
* gnu/packages/patches/kdepim-runtime-Fix-missing-link-libraries.patch: Delete file.
* gnu/local.mk (dist_patch_DATA): Adjust accordingly.
* gnu/packages/kde-internet.scm (kget, kopete, krdc, libgravatar): Update to
20.04.1.
[source](uri): Adjust for new upstream location.
* gnu/packages/kde-multimedia.scm (audiocd-kio, dragon, ffmpegthumbs, juk,
k3b, kamoso, kmix, kwave, libkcddb, libkcompactdisc): Likewise.
* gnu/packages/kde-systemtools.scm (dolphin, dolphin-plugins, khelpcenter,
konsole, krfb, ksystemlog): Update to 20.04.1.
[source](uri): Adjust for new upstream location.
* gnu/packages/kde-utils.scm (kate, kmag, kmousetool, kmouth, sweeper): Update
to 20.04.1.
[source](uri): Adjust for new upstream location.
* gnu/packages/kde.scm (baloo-widgets, libkomparediff2, kqtquickcharts,
grantleetheme, kcachegrind, libkdegames, zeroconf-ioslave): Update to 20.04.1.
[source](uri): Adjust for new upstream location.
(grantleetheme)[inputs]: Add KGUIADDONS.
* gnu/packages/kde-pim.scm (akonadi, akonadi-calendar, akonadi-contacts,
akonadi-mime, akonadi-notes, akonadi-search, kincidenceeditor, kaddressbook,
kalarmcal, kblog, kcalendarsupport, kcalutils, kdav, kdepim-apps-libs,
kdepim-runtime, keventviews, kgpg, kidentitymanagement, kimap, kldap,
kleopatra, kmail, kmailcommon, kmailimporter, kmailtransport, kmbox,
kmessagelib, kmime, knotes, kontactinterface, korganizer, kpimcommon,
kpimtextedit, ksmtp, ktnef, libkdepim, libkgapi, libkleo, libksieve): Update
to 20.04.1.
[source](uri): Adjust to current.
(akonadi)[inputs]: Remove KDBUSADDONS and KDESIGNERPLUGIN.
(akonadi-calendar)[inputs]: Remove KDBUSADDONS.
(kdepim-runtime)[source](patches): Remove.
[arguments]: Add phase 'extend-CPLUS_INCLUDE_PATH'.
[inputs]: Remove KDBUSADDONS and KICONTHEMES.
(kmessagelib)[arguments]: Add phase 'extend-CPLUS_INCLUDE_PATH.
[inputs]: Add QCA.
(kdepim-apps-libs)[inputs]: Remove KDBUSADDONS and KICONTHEMES.
(knotes)[inputs]: Remove KDBUSADDONS.
(kpimcommon)[inputs]: Remove KDBUSADDONS and KCOMPLETION.
(libksieve)[arguments]: Disable one more test.
(korganizer)[arguments]: Disable one test.
2020-06-06 14:06:58 +00:00
|
|
|
(uri (string-append "mirror://kde/stable/release-service/" version
|
2020-01-20 00:28:55 +00:00
|
|
|
"/src/incidenceeditor-" version ".tar.xz"))
|
|
|
|
(sha256
|
2023-07-30 02:32:00 +00:00
|
|
|
(base32 "1pqfl7gqz7ibpns2gpwqpvzhsba7xj4ilhi4ax1vn3m086iyh3a0"))))
|
2020-01-20 00:28:55 +00:00
|
|
|
(properties `((upstream-name . "incidenceeditor")))
|
|
|
|
(build-system qt-build-system)
|
|
|
|
(native-inputs
|
gnu: KDE PIM: Update all packages to 21.12.3.
* gnu/packages/kde-pim.scm (KDE PIM): Update to 21.12.3.
(akonadi, akonadi-calendar, akonadi-contacts, akonadi-mime,
akonadi-notes, akonadi-search, kaddressbook, kalarmcal,
kcalendarsupport, kcalutils, kdepim-runtime, keventviews, kgpg,
kidentitymanagement, kimap, kincidenceeditor, kldap, kleopatra, kmail,
kmailcommon, kmailimporter, kmailtransport, kmbox, kmessagelib, kmime,
knotes, kontactinterface, korganizer, kpeoplevcard, kpimcommon,
kpimtextedit, ksmtp, ktnef, libgravatar, libkdepim, libkgapi, libkleo,
libksieve): Update to 21.12.3.
(kblog): Update to 20.04.3.
* gnu/packages/patches/akonadi-not-relocatable.patch
* gnu/packages/patches/akonadi-paths.patch
* gnu/packages/patches/akonadi-timestamps.patch
Fix patches to apply to latest code.
(akonadi-calendar): [inputs]: Add new dependencies.
(akonadi-contacts): [inputs]: Add new dependencies.
(akonadi-search): [arguments]: Disable failing tests.
(kcalendarsupport): [inputs]: Add new dependency, remove obsolete kdepim-apps-lib.
(libksieve): [arguments]: Enable test that works now.
* gnu/packages/patches/libksieve-Fix-missing-link-libraries.patch: Fix patch.
(kaddressbook): [inputs]: Remove obsolete kdepim-apps-libs.
Move kdocstools to native-inputs.
(kmessagelib): [inputs]: Remove obsolete kdepim-appslibs, add kguiaddons.
[arguments]: Fix findind header file.
(kmailimporter): [inputs]: Add new dependencies.
(kmailtransport): [inputs]: Add qtkeychain.
(knotes): [inputs]: Move kdocstools to native-inputs.
(kincidenceeditor): [inputs]: Add new dependencies. Remove obsolete kdepim-apps-libs
[arguments]: Disable failing test.
(kldap): [inputs]: Add qtkeychain.
(kgpg)[arguments]: Disable failing tests.
(libkleo): [propagated-inputs]: Propagate gpgme, qgpgme.
[arguments]: Disable failing tests.
(kdepim-runtime): [inputs]: Add new dependencies grantlee, grantleetheme, kcmutils, kldap,
libkdepim, qtkeychain
[arguments]: Enable all the tests that pass.
We need to use the old hack instead of search-input-directory to
workaround a mysterious include error.
(kdepim-apps-lib): Remove obsolete package.
(kmail): [origin]: Remove patch. Don't think it is needed anymore.
[inputs]: Add new dependencies, delete obsolete kdepim-apps-libs and
duplicate kmime.
[arguments]: Disable failing tests.
* gnu/packages/patches/kmail-Fix-missing-link-libraries.patch: Delete file.
* gnu/local.mk: Remove reference to patch.
(kmailcommon): [inputs]: Add new dependencies.
Signed-off-by: Marius Bakke <marius@gnu.org>
2022-02-02 09:08:23 +00:00
|
|
|
(list extra-cmake-modules dbus))
|
2020-01-20 00:28:55 +00:00
|
|
|
(inputs
|
2021-12-13 21:15:07 +00:00
|
|
|
(list akonadi
|
|
|
|
akonadi-calendar
|
|
|
|
akonadi-contacts
|
|
|
|
akonadi-mime
|
|
|
|
boost
|
gnu: KDE PIM: Update all packages to 21.12.3.
* gnu/packages/kde-pim.scm (KDE PIM): Update to 21.12.3.
(akonadi, akonadi-calendar, akonadi-contacts, akonadi-mime,
akonadi-notes, akonadi-search, kaddressbook, kalarmcal,
kcalendarsupport, kcalutils, kdepim-runtime, keventviews, kgpg,
kidentitymanagement, kimap, kincidenceeditor, kldap, kleopatra, kmail,
kmailcommon, kmailimporter, kmailtransport, kmbox, kmessagelib, kmime,
knotes, kontactinterface, korganizer, kpeoplevcard, kpimcommon,
kpimtextedit, ksmtp, ktnef, libgravatar, libkdepim, libkgapi, libkleo,
libksieve): Update to 21.12.3.
(kblog): Update to 20.04.3.
* gnu/packages/patches/akonadi-not-relocatable.patch
* gnu/packages/patches/akonadi-paths.patch
* gnu/packages/patches/akonadi-timestamps.patch
Fix patches to apply to latest code.
(akonadi-calendar): [inputs]: Add new dependencies.
(akonadi-contacts): [inputs]: Add new dependencies.
(akonadi-search): [arguments]: Disable failing tests.
(kcalendarsupport): [inputs]: Add new dependency, remove obsolete kdepim-apps-lib.
(libksieve): [arguments]: Enable test that works now.
* gnu/packages/patches/libksieve-Fix-missing-link-libraries.patch: Fix patch.
(kaddressbook): [inputs]: Remove obsolete kdepim-apps-libs.
Move kdocstools to native-inputs.
(kmessagelib): [inputs]: Remove obsolete kdepim-appslibs, add kguiaddons.
[arguments]: Fix findind header file.
(kmailimporter): [inputs]: Add new dependencies.
(kmailtransport): [inputs]: Add qtkeychain.
(knotes): [inputs]: Move kdocstools to native-inputs.
(kincidenceeditor): [inputs]: Add new dependencies. Remove obsolete kdepim-apps-libs
[arguments]: Disable failing test.
(kldap): [inputs]: Add qtkeychain.
(kgpg)[arguments]: Disable failing tests.
(libkleo): [propagated-inputs]: Propagate gpgme, qgpgme.
[arguments]: Disable failing tests.
(kdepim-runtime): [inputs]: Add new dependencies grantlee, grantleetheme, kcmutils, kldap,
libkdepim, qtkeychain
[arguments]: Enable all the tests that pass.
We need to use the old hack instead of search-input-directory to
workaround a mysterious include error.
(kdepim-apps-lib): Remove obsolete package.
(kmail): [origin]: Remove patch. Don't think it is needed anymore.
[inputs]: Add new dependencies, delete obsolete kdepim-apps-libs and
duplicate kmime.
[arguments]: Disable failing tests.
* gnu/packages/patches/kmail-Fix-missing-link-libraries.patch: Delete file.
* gnu/local.mk: Remove reference to patch.
(kmailcommon): [inputs]: Add new dependencies.
Signed-off-by: Marius Bakke <marius@gnu.org>
2022-02-02 09:08:23 +00:00
|
|
|
grantlee
|
|
|
|
grantleetheme
|
2021-12-13 21:15:07 +00:00
|
|
|
kcalendarcore
|
|
|
|
kcalendarsupport
|
|
|
|
kcalutils
|
|
|
|
kcodecs
|
|
|
|
kcontacts
|
|
|
|
kdbusaddons
|
|
|
|
kdiagram
|
|
|
|
keventviews
|
|
|
|
ki18n
|
|
|
|
kiconthemes
|
|
|
|
kidentitymanagement
|
gnu: KDE PIM: Update all packages to 21.12.3.
* gnu/packages/kde-pim.scm (KDE PIM): Update to 21.12.3.
(akonadi, akonadi-calendar, akonadi-contacts, akonadi-mime,
akonadi-notes, akonadi-search, kaddressbook, kalarmcal,
kcalendarsupport, kcalutils, kdepim-runtime, keventviews, kgpg,
kidentitymanagement, kimap, kincidenceeditor, kldap, kleopatra, kmail,
kmailcommon, kmailimporter, kmailtransport, kmbox, kmessagelib, kmime,
knotes, kontactinterface, korganizer, kpeoplevcard, kpimcommon,
kpimtextedit, ksmtp, ktnef, libgravatar, libkdepim, libkgapi, libkleo,
libksieve): Update to 21.12.3.
(kblog): Update to 20.04.3.
* gnu/packages/patches/akonadi-not-relocatable.patch
* gnu/packages/patches/akonadi-paths.patch
* gnu/packages/patches/akonadi-timestamps.patch
Fix patches to apply to latest code.
(akonadi-calendar): [inputs]: Add new dependencies.
(akonadi-contacts): [inputs]: Add new dependencies.
(akonadi-search): [arguments]: Disable failing tests.
(kcalendarsupport): [inputs]: Add new dependency, remove obsolete kdepim-apps-lib.
(libksieve): [arguments]: Enable test that works now.
* gnu/packages/patches/libksieve-Fix-missing-link-libraries.patch: Fix patch.
(kaddressbook): [inputs]: Remove obsolete kdepim-apps-libs.
Move kdocstools to native-inputs.
(kmessagelib): [inputs]: Remove obsolete kdepim-appslibs, add kguiaddons.
[arguments]: Fix findind header file.
(kmailimporter): [inputs]: Add new dependencies.
(kmailtransport): [inputs]: Add qtkeychain.
(knotes): [inputs]: Move kdocstools to native-inputs.
(kincidenceeditor): [inputs]: Add new dependencies. Remove obsolete kdepim-apps-libs
[arguments]: Disable failing test.
(kldap): [inputs]: Add qtkeychain.
(kgpg)[arguments]: Disable failing tests.
(libkleo): [propagated-inputs]: Propagate gpgme, qgpgme.
[arguments]: Disable failing tests.
(kdepim-runtime): [inputs]: Add new dependencies grantlee, grantleetheme, kcmutils, kldap,
libkdepim, qtkeychain
[arguments]: Enable all the tests that pass.
We need to use the old hack instead of search-input-directory to
workaround a mysterious include error.
(kdepim-apps-lib): Remove obsolete package.
(kmail): [origin]: Remove patch. Don't think it is needed anymore.
[inputs]: Add new dependencies, delete obsolete kdepim-apps-libs and
duplicate kmime.
[arguments]: Disable failing tests.
* gnu/packages/patches/kmail-Fix-missing-link-libraries.patch: Delete file.
* gnu/local.mk: Remove reference to patch.
(kmailcommon): [inputs]: Add new dependencies.
Signed-off-by: Marius Bakke <marius@gnu.org>
2022-02-02 09:08:23 +00:00
|
|
|
kimap
|
2021-12-13 21:15:07 +00:00
|
|
|
kio
|
|
|
|
kitemmodels
|
|
|
|
kldap
|
|
|
|
kmailtransport
|
|
|
|
kmime
|
gnu: KDE PIM: Update all packages to 21.12.3.
* gnu/packages/kde-pim.scm (KDE PIM): Update to 21.12.3.
(akonadi, akonadi-calendar, akonadi-contacts, akonadi-mime,
akonadi-notes, akonadi-search, kaddressbook, kalarmcal,
kcalendarsupport, kcalutils, kdepim-runtime, keventviews, kgpg,
kidentitymanagement, kimap, kincidenceeditor, kldap, kleopatra, kmail,
kmailcommon, kmailimporter, kmailtransport, kmbox, kmessagelib, kmime,
knotes, kontactinterface, korganizer, kpeoplevcard, kpimcommon,
kpimtextedit, ksmtp, ktnef, libgravatar, libkdepim, libkgapi, libkleo,
libksieve): Update to 21.12.3.
(kblog): Update to 20.04.3.
* gnu/packages/patches/akonadi-not-relocatable.patch
* gnu/packages/patches/akonadi-paths.patch
* gnu/packages/patches/akonadi-timestamps.patch
Fix patches to apply to latest code.
(akonadi-calendar): [inputs]: Add new dependencies.
(akonadi-contacts): [inputs]: Add new dependencies.
(akonadi-search): [arguments]: Disable failing tests.
(kcalendarsupport): [inputs]: Add new dependency, remove obsolete kdepim-apps-lib.
(libksieve): [arguments]: Enable test that works now.
* gnu/packages/patches/libksieve-Fix-missing-link-libraries.patch: Fix patch.
(kaddressbook): [inputs]: Remove obsolete kdepim-apps-libs.
Move kdocstools to native-inputs.
(kmessagelib): [inputs]: Remove obsolete kdepim-appslibs, add kguiaddons.
[arguments]: Fix findind header file.
(kmailimporter): [inputs]: Add new dependencies.
(kmailtransport): [inputs]: Add qtkeychain.
(knotes): [inputs]: Move kdocstools to native-inputs.
(kincidenceeditor): [inputs]: Add new dependencies. Remove obsolete kdepim-apps-libs
[arguments]: Disable failing test.
(kldap): [inputs]: Add qtkeychain.
(kgpg)[arguments]: Disable failing tests.
(libkleo): [propagated-inputs]: Propagate gpgme, qgpgme.
[arguments]: Disable failing tests.
(kdepim-runtime): [inputs]: Add new dependencies grantlee, grantleetheme, kcmutils, kldap,
libkdepim, qtkeychain
[arguments]: Enable all the tests that pass.
We need to use the old hack instead of search-input-directory to
workaround a mysterious include error.
(kdepim-apps-lib): Remove obsolete package.
(kmail): [origin]: Remove patch. Don't think it is needed anymore.
[inputs]: Add new dependencies, delete obsolete kdepim-apps-libs and
duplicate kmime.
[arguments]: Disable failing tests.
* gnu/packages/patches/kmail-Fix-missing-link-libraries.patch: Delete file.
* gnu/local.mk: Remove reference to patch.
(kmailcommon): [inputs]: Add new dependencies.
Signed-off-by: Marius Bakke <marius@gnu.org>
2022-02-02 09:08:23 +00:00
|
|
|
kpimcommon
|
2021-12-13 21:15:07 +00:00
|
|
|
kpimtextedit
|
2023-08-08 11:51:30 +00:00
|
|
|
ktextaddons
|
2021-12-13 21:15:07 +00:00
|
|
|
ktextwidgets
|
|
|
|
kwallet
|
|
|
|
libkdepim
|
|
|
|
qtbase-5))
|
gnu: KDE PIM: Update all packages to 21.12.3.
* gnu/packages/kde-pim.scm (KDE PIM): Update to 21.12.3.
(akonadi, akonadi-calendar, akonadi-contacts, akonadi-mime,
akonadi-notes, akonadi-search, kaddressbook, kalarmcal,
kcalendarsupport, kcalutils, kdepim-runtime, keventviews, kgpg,
kidentitymanagement, kimap, kincidenceeditor, kldap, kleopatra, kmail,
kmailcommon, kmailimporter, kmailtransport, kmbox, kmessagelib, kmime,
knotes, kontactinterface, korganizer, kpeoplevcard, kpimcommon,
kpimtextedit, ksmtp, ktnef, libgravatar, libkdepim, libkgapi, libkleo,
libksieve): Update to 21.12.3.
(kblog): Update to 20.04.3.
* gnu/packages/patches/akonadi-not-relocatable.patch
* gnu/packages/patches/akonadi-paths.patch
* gnu/packages/patches/akonadi-timestamps.patch
Fix patches to apply to latest code.
(akonadi-calendar): [inputs]: Add new dependencies.
(akonadi-contacts): [inputs]: Add new dependencies.
(akonadi-search): [arguments]: Disable failing tests.
(kcalendarsupport): [inputs]: Add new dependency, remove obsolete kdepim-apps-lib.
(libksieve): [arguments]: Enable test that works now.
* gnu/packages/patches/libksieve-Fix-missing-link-libraries.patch: Fix patch.
(kaddressbook): [inputs]: Remove obsolete kdepim-apps-libs.
Move kdocstools to native-inputs.
(kmessagelib): [inputs]: Remove obsolete kdepim-appslibs, add kguiaddons.
[arguments]: Fix findind header file.
(kmailimporter): [inputs]: Add new dependencies.
(kmailtransport): [inputs]: Add qtkeychain.
(knotes): [inputs]: Move kdocstools to native-inputs.
(kincidenceeditor): [inputs]: Add new dependencies. Remove obsolete kdepim-apps-libs
[arguments]: Disable failing test.
(kldap): [inputs]: Add qtkeychain.
(kgpg)[arguments]: Disable failing tests.
(libkleo): [propagated-inputs]: Propagate gpgme, qgpgme.
[arguments]: Disable failing tests.
(kdepim-runtime): [inputs]: Add new dependencies grantlee, grantleetheme, kcmutils, kldap,
libkdepim, qtkeychain
[arguments]: Enable all the tests that pass.
We need to use the old hack instead of search-input-directory to
workaround a mysterious include error.
(kdepim-apps-lib): Remove obsolete package.
(kmail): [origin]: Remove patch. Don't think it is needed anymore.
[inputs]: Add new dependencies, delete obsolete kdepim-apps-libs and
duplicate kmime.
[arguments]: Disable failing tests.
* gnu/packages/patches/kmail-Fix-missing-link-libraries.patch: Delete file.
* gnu/local.mk: Remove reference to patch.
(kmailcommon): [inputs]: Add new dependencies.
Signed-off-by: Marius Bakke <marius@gnu.org>
2022-02-02 09:08:23 +00:00
|
|
|
(arguments
|
|
|
|
`(#:phases
|
|
|
|
(modify-phases %standard-phases
|
|
|
|
(replace 'check
|
|
|
|
(lambda* (#:key tests? #:allow-other-keys)
|
|
|
|
(when tests?
|
gnu: KDE PIM: Update all packages to 22.04.3.
* gnu/packages/kde-pim.scm (KDE PIM): Update to 22.04.3.
(akonadi, akonadi-calendar, akonadi-contacts, akonadi-mime,
akonadi-notes, akonadi-search, kaddressbook, kalarmcal,
kcalendarsupport, kcalutils, kdepim-runtime, keventviews, kgpg
kidentitymanagement, kimap, kincidenceeditor, kldap, kleopatra
kmailcommon, kmailimporter, kmailtransport, kmbox, kmessagelib
knotes, kontactinterface, korganizer, kpeoplevcard, kpimcommon
kpimtextedit, ksmtp, ktnef, libgravatar, libkdepim, libkgapi,
libksieve): Update to 22.04.3.
(akonadi-calendar): [inputs]: Add kdbusaddons and knotifications.
(kincidenceeditor): [arguments]: Disable failing tests.
(kdepim-runtime): [inputs]: Remove kalarmcal.
(kmailimporter): [inputs]: Add kpimtextedit and ktextwidgets.
(kmessagelib): [inputs]: Add knotifications.
(kpimcommon): [inputs]: Add kpimtextedit.
(libksieve): [inputs]: Add grantlee.
Signed-off-by: Marius Bakke <marius@gnu.org>
2022-08-01 12:29:50 +00:00
|
|
|
(invoke "dbus-launch" "ctest" ;; FIXME: tests fails.
|
|
|
|
"-E"
|
|
|
|
"(akonadi-sqlite-incidencedatetimetest|ktimezonecomboboxtest|testindividualmaildialog)")))))))
|
gnu: KDE: Fix old cgit home-pages.
Fix all home-pages pointing to git-repos a cgit.kde.org, which is
gone, to now use the correct repo at invent.kde.org.
* gnu/packages/kde.scm (grantleetheme, kdiagram): Update home-page.
* gnu/packages/kde-frameworks.scm (kholidays): Likewise.
* gnu/packages/kde-internet.scm (libgravatar, libktorrent): Likewise.
* gnu/packages/kde-multimedia.scm (libkcddb, libkcompactdisc): Likewise.
* gnu/packages/kde-pim.scm (kblog, kdav, kdepim-apps-libs,
kdepim-runtime, keventviews, kincidenceeditor, kmailcommon,
kmailimporter, kmessagelib, kpimcommon, ksmtp, libkdepim, libkgapi,
libkleo, libksieve): Likewise.
* gnu/packages/kde-plasma.scm (kdecoration, kscreenlocker): Likewise.
2020-12-12 17:22:37 +00:00
|
|
|
(home-page "https://invent.kde.org/pim/incidenceeditor")
|
2020-01-20 00:28:55 +00:00
|
|
|
(synopsis "KDE PIM library for editing incidences")
|
|
|
|
(description "This library provides an incidence editor for KDE PIM.")
|
|
|
|
(license ;; GPL for programs, LGPL for libraries
|
|
|
|
(list license:gpl2+ license:lgpl2.0+))))
|
|
|
|
|
2020-01-19 22:58:11 +00:00
|
|
|
(define-public kaddressbook
|
|
|
|
(package
|
|
|
|
(name "kaddressbook")
|
2023-07-30 02:32:00 +00:00
|
|
|
(version "23.04.3")
|
2020-01-19 22:58:11 +00:00
|
|
|
(source
|
|
|
|
(origin
|
|
|
|
(method url-fetch)
|
gnu: KDE: Update to 20.04.1.
* gnu/packages/patches/akonadi-paths.patch: Adjust for upstream changes.
* gnu/packages/patches/kdepim-runtime-Fix-missing-link-libraries.patch: Delete file.
* gnu/local.mk (dist_patch_DATA): Adjust accordingly.
* gnu/packages/kde-internet.scm (kget, kopete, krdc, libgravatar): Update to
20.04.1.
[source](uri): Adjust for new upstream location.
* gnu/packages/kde-multimedia.scm (audiocd-kio, dragon, ffmpegthumbs, juk,
k3b, kamoso, kmix, kwave, libkcddb, libkcompactdisc): Likewise.
* gnu/packages/kde-systemtools.scm (dolphin, dolphin-plugins, khelpcenter,
konsole, krfb, ksystemlog): Update to 20.04.1.
[source](uri): Adjust for new upstream location.
* gnu/packages/kde-utils.scm (kate, kmag, kmousetool, kmouth, sweeper): Update
to 20.04.1.
[source](uri): Adjust for new upstream location.
* gnu/packages/kde.scm (baloo-widgets, libkomparediff2, kqtquickcharts,
grantleetheme, kcachegrind, libkdegames, zeroconf-ioslave): Update to 20.04.1.
[source](uri): Adjust for new upstream location.
(grantleetheme)[inputs]: Add KGUIADDONS.
* gnu/packages/kde-pim.scm (akonadi, akonadi-calendar, akonadi-contacts,
akonadi-mime, akonadi-notes, akonadi-search, kincidenceeditor, kaddressbook,
kalarmcal, kblog, kcalendarsupport, kcalutils, kdav, kdepim-apps-libs,
kdepim-runtime, keventviews, kgpg, kidentitymanagement, kimap, kldap,
kleopatra, kmail, kmailcommon, kmailimporter, kmailtransport, kmbox,
kmessagelib, kmime, knotes, kontactinterface, korganizer, kpimcommon,
kpimtextedit, ksmtp, ktnef, libkdepim, libkgapi, libkleo, libksieve): Update
to 20.04.1.
[source](uri): Adjust to current.
(akonadi)[inputs]: Remove KDBUSADDONS and KDESIGNERPLUGIN.
(akonadi-calendar)[inputs]: Remove KDBUSADDONS.
(kdepim-runtime)[source](patches): Remove.
[arguments]: Add phase 'extend-CPLUS_INCLUDE_PATH'.
[inputs]: Remove KDBUSADDONS and KICONTHEMES.
(kmessagelib)[arguments]: Add phase 'extend-CPLUS_INCLUDE_PATH.
[inputs]: Add QCA.
(kdepim-apps-libs)[inputs]: Remove KDBUSADDONS and KICONTHEMES.
(knotes)[inputs]: Remove KDBUSADDONS.
(kpimcommon)[inputs]: Remove KDBUSADDONS and KCOMPLETION.
(libksieve)[arguments]: Disable one more test.
(korganizer)[arguments]: Disable one test.
2020-06-06 14:06:58 +00:00
|
|
|
(uri (string-append "mirror://kde/stable/release-service/" version
|
2020-01-19 22:58:11 +00:00
|
|
|
"/src/kaddressbook-" version ".tar.xz"))
|
|
|
|
(sha256
|
2023-07-30 02:32:00 +00:00
|
|
|
(base32 "0zjbri91dh9vnwi6jqkbmyq667yzn8g4kw5v47qn8id2629zj6jq"))))
|
2020-01-19 22:58:11 +00:00
|
|
|
(build-system qt-build-system)
|
|
|
|
(native-inputs
|
gnu: KDE PIM: Update all packages to 21.12.3.
* gnu/packages/kde-pim.scm (KDE PIM): Update to 21.12.3.
(akonadi, akonadi-calendar, akonadi-contacts, akonadi-mime,
akonadi-notes, akonadi-search, kaddressbook, kalarmcal,
kcalendarsupport, kcalutils, kdepim-runtime, keventviews, kgpg,
kidentitymanagement, kimap, kincidenceeditor, kldap, kleopatra, kmail,
kmailcommon, kmailimporter, kmailtransport, kmbox, kmessagelib, kmime,
knotes, kontactinterface, korganizer, kpeoplevcard, kpimcommon,
kpimtextedit, ksmtp, ktnef, libgravatar, libkdepim, libkgapi, libkleo,
libksieve): Update to 21.12.3.
(kblog): Update to 20.04.3.
* gnu/packages/patches/akonadi-not-relocatable.patch
* gnu/packages/patches/akonadi-paths.patch
* gnu/packages/patches/akonadi-timestamps.patch
Fix patches to apply to latest code.
(akonadi-calendar): [inputs]: Add new dependencies.
(akonadi-contacts): [inputs]: Add new dependencies.
(akonadi-search): [arguments]: Disable failing tests.
(kcalendarsupport): [inputs]: Add new dependency, remove obsolete kdepim-apps-lib.
(libksieve): [arguments]: Enable test that works now.
* gnu/packages/patches/libksieve-Fix-missing-link-libraries.patch: Fix patch.
(kaddressbook): [inputs]: Remove obsolete kdepim-apps-libs.
Move kdocstools to native-inputs.
(kmessagelib): [inputs]: Remove obsolete kdepim-appslibs, add kguiaddons.
[arguments]: Fix findind header file.
(kmailimporter): [inputs]: Add new dependencies.
(kmailtransport): [inputs]: Add qtkeychain.
(knotes): [inputs]: Move kdocstools to native-inputs.
(kincidenceeditor): [inputs]: Add new dependencies. Remove obsolete kdepim-apps-libs
[arguments]: Disable failing test.
(kldap): [inputs]: Add qtkeychain.
(kgpg)[arguments]: Disable failing tests.
(libkleo): [propagated-inputs]: Propagate gpgme, qgpgme.
[arguments]: Disable failing tests.
(kdepim-runtime): [inputs]: Add new dependencies grantlee, grantleetheme, kcmutils, kldap,
libkdepim, qtkeychain
[arguments]: Enable all the tests that pass.
We need to use the old hack instead of search-input-directory to
workaround a mysterious include error.
(kdepim-apps-lib): Remove obsolete package.
(kmail): [origin]: Remove patch. Don't think it is needed anymore.
[inputs]: Add new dependencies, delete obsolete kdepim-apps-libs and
duplicate kmime.
[arguments]: Disable failing tests.
* gnu/packages/patches/kmail-Fix-missing-link-libraries.patch: Delete file.
* gnu/local.mk: Remove reference to patch.
(kmailcommon): [inputs]: Add new dependencies.
Signed-off-by: Marius Bakke <marius@gnu.org>
2022-02-02 09:08:23 +00:00
|
|
|
(list extra-cmake-modules kdoctools))
|
2020-01-19 22:58:11 +00:00
|
|
|
(inputs
|
2021-12-13 16:18:24 +00:00
|
|
|
(list akonadi
|
|
|
|
akonadi-contacts
|
|
|
|
akonadi-mime
|
|
|
|
akonadi-search
|
|
|
|
boost
|
|
|
|
gpgme
|
|
|
|
grantlee
|
|
|
|
grantleetheme
|
|
|
|
kcalendarcore
|
|
|
|
kcmutils
|
|
|
|
kcompletion
|
|
|
|
kcontacts
|
|
|
|
kcrash
|
|
|
|
kdbusaddons
|
|
|
|
ki18n
|
|
|
|
kiconthemes
|
|
|
|
kimap
|
|
|
|
kio
|
|
|
|
kitemmodels
|
|
|
|
kmime
|
|
|
|
kontactinterface
|
|
|
|
kparts
|
|
|
|
kpimcommon
|
|
|
|
kpimtextedit
|
2023-08-08 11:51:30 +00:00
|
|
|
ktextaddons
|
2021-12-13 16:18:24 +00:00
|
|
|
ktextwidgets
|
|
|
|
kxmlgui
|
|
|
|
libkdepim
|
|
|
|
libkleo
|
2022-02-15 11:21:15 +00:00
|
|
|
breeze-icons ; default icon set, required for tests
|
2021-12-13 16:18:24 +00:00
|
|
|
prison
|
|
|
|
qgpgme
|
|
|
|
qtbase-5))
|
gnu: KDE PIM: Update home-pages.
* gnu/packages/kde-pim.scm (akonadi, kaddressbook, kcalutils, kgpg, kimap,
kldap, kleopatra, kmail, kmailtransport, kmbox, kmime, knotes,
kontactinterface, korganizer, kpimtextedit, ktnef): [home-page]: Update the
link.
Signed-off-by: Marius Bakke <marius@gnu.org>
2022-07-26 06:48:48 +00:00
|
|
|
(home-page "https://kontact.kde.org/components/kaddressbook/")
|
2020-01-19 22:58:11 +00:00
|
|
|
(synopsis "Address Book application to manage your contacts")
|
|
|
|
(description "KAddressBook stores all the personal details of your family,
|
|
|
|
friends and other contacts. It supports large variety of services, including
|
|
|
|
NextCloud, Kolab, Google Contacts, Microsoft Exchange (EWS) or any standard
|
|
|
|
CalDAV server.")
|
|
|
|
(license (list license:gpl2+ license:lgpl2.0+ license:fdl1.2+))))
|
|
|
|
|
2020-01-19 16:13:30 +00:00
|
|
|
(define-public kblog
|
|
|
|
(package
|
|
|
|
(name "kblog")
|
gnu: KDE PIM: Update all packages to 21.12.3.
* gnu/packages/kde-pim.scm (KDE PIM): Update to 21.12.3.
(akonadi, akonadi-calendar, akonadi-contacts, akonadi-mime,
akonadi-notes, akonadi-search, kaddressbook, kalarmcal,
kcalendarsupport, kcalutils, kdepim-runtime, keventviews, kgpg,
kidentitymanagement, kimap, kincidenceeditor, kldap, kleopatra, kmail,
kmailcommon, kmailimporter, kmailtransport, kmbox, kmessagelib, kmime,
knotes, kontactinterface, korganizer, kpeoplevcard, kpimcommon,
kpimtextedit, ksmtp, ktnef, libgravatar, libkdepim, libkgapi, libkleo,
libksieve): Update to 21.12.3.
(kblog): Update to 20.04.3.
* gnu/packages/patches/akonadi-not-relocatable.patch
* gnu/packages/patches/akonadi-paths.patch
* gnu/packages/patches/akonadi-timestamps.patch
Fix patches to apply to latest code.
(akonadi-calendar): [inputs]: Add new dependencies.
(akonadi-contacts): [inputs]: Add new dependencies.
(akonadi-search): [arguments]: Disable failing tests.
(kcalendarsupport): [inputs]: Add new dependency, remove obsolete kdepim-apps-lib.
(libksieve): [arguments]: Enable test that works now.
* gnu/packages/patches/libksieve-Fix-missing-link-libraries.patch: Fix patch.
(kaddressbook): [inputs]: Remove obsolete kdepim-apps-libs.
Move kdocstools to native-inputs.
(kmessagelib): [inputs]: Remove obsolete kdepim-appslibs, add kguiaddons.
[arguments]: Fix findind header file.
(kmailimporter): [inputs]: Add new dependencies.
(kmailtransport): [inputs]: Add qtkeychain.
(knotes): [inputs]: Move kdocstools to native-inputs.
(kincidenceeditor): [inputs]: Add new dependencies. Remove obsolete kdepim-apps-libs
[arguments]: Disable failing test.
(kldap): [inputs]: Add qtkeychain.
(kgpg)[arguments]: Disable failing tests.
(libkleo): [propagated-inputs]: Propagate gpgme, qgpgme.
[arguments]: Disable failing tests.
(kdepim-runtime): [inputs]: Add new dependencies grantlee, grantleetheme, kcmutils, kldap,
libkdepim, qtkeychain
[arguments]: Enable all the tests that pass.
We need to use the old hack instead of search-input-directory to
workaround a mysterious include error.
(kdepim-apps-lib): Remove obsolete package.
(kmail): [origin]: Remove patch. Don't think it is needed anymore.
[inputs]: Add new dependencies, delete obsolete kdepim-apps-libs and
duplicate kmime.
[arguments]: Disable failing tests.
* gnu/packages/patches/kmail-Fix-missing-link-libraries.patch: Delete file.
* gnu/local.mk: Remove reference to patch.
(kmailcommon): [inputs]: Add new dependencies.
Signed-off-by: Marius Bakke <marius@gnu.org>
2022-02-02 09:08:23 +00:00
|
|
|
(version "20.04.3")
|
2020-01-19 16:13:30 +00:00
|
|
|
(source
|
|
|
|
(origin
|
|
|
|
(method url-fetch)
|
gnu: KDE: Update to 20.04.1.
* gnu/packages/patches/akonadi-paths.patch: Adjust for upstream changes.
* gnu/packages/patches/kdepim-runtime-Fix-missing-link-libraries.patch: Delete file.
* gnu/local.mk (dist_patch_DATA): Adjust accordingly.
* gnu/packages/kde-internet.scm (kget, kopete, krdc, libgravatar): Update to
20.04.1.
[source](uri): Adjust for new upstream location.
* gnu/packages/kde-multimedia.scm (audiocd-kio, dragon, ffmpegthumbs, juk,
k3b, kamoso, kmix, kwave, libkcddb, libkcompactdisc): Likewise.
* gnu/packages/kde-systemtools.scm (dolphin, dolphin-plugins, khelpcenter,
konsole, krfb, ksystemlog): Update to 20.04.1.
[source](uri): Adjust for new upstream location.
* gnu/packages/kde-utils.scm (kate, kmag, kmousetool, kmouth, sweeper): Update
to 20.04.1.
[source](uri): Adjust for new upstream location.
* gnu/packages/kde.scm (baloo-widgets, libkomparediff2, kqtquickcharts,
grantleetheme, kcachegrind, libkdegames, zeroconf-ioslave): Update to 20.04.1.
[source](uri): Adjust for new upstream location.
(grantleetheme)[inputs]: Add KGUIADDONS.
* gnu/packages/kde-pim.scm (akonadi, akonadi-calendar, akonadi-contacts,
akonadi-mime, akonadi-notes, akonadi-search, kincidenceeditor, kaddressbook,
kalarmcal, kblog, kcalendarsupport, kcalutils, kdav, kdepim-apps-libs,
kdepim-runtime, keventviews, kgpg, kidentitymanagement, kimap, kldap,
kleopatra, kmail, kmailcommon, kmailimporter, kmailtransport, kmbox,
kmessagelib, kmime, knotes, kontactinterface, korganizer, kpimcommon,
kpimtextedit, ksmtp, ktnef, libkdepim, libkgapi, libkleo, libksieve): Update
to 20.04.1.
[source](uri): Adjust to current.
(akonadi)[inputs]: Remove KDBUSADDONS and KDESIGNERPLUGIN.
(akonadi-calendar)[inputs]: Remove KDBUSADDONS.
(kdepim-runtime)[source](patches): Remove.
[arguments]: Add phase 'extend-CPLUS_INCLUDE_PATH'.
[inputs]: Remove KDBUSADDONS and KICONTHEMES.
(kmessagelib)[arguments]: Add phase 'extend-CPLUS_INCLUDE_PATH.
[inputs]: Add QCA.
(kdepim-apps-libs)[inputs]: Remove KDBUSADDONS and KICONTHEMES.
(knotes)[inputs]: Remove KDBUSADDONS.
(kpimcommon)[inputs]: Remove KDBUSADDONS and KCOMPLETION.
(libksieve)[arguments]: Disable one more test.
(korganizer)[arguments]: Disable one test.
2020-06-06 14:06:58 +00:00
|
|
|
(uri (string-append "mirror://kde/stable/release-service/" version
|
2020-01-19 16:13:30 +00:00
|
|
|
"/src/kblog-" version ".tar.xz"))
|
|
|
|
(sha256
|
gnu: KDE PIM: Update all packages to 21.12.3.
* gnu/packages/kde-pim.scm (KDE PIM): Update to 21.12.3.
(akonadi, akonadi-calendar, akonadi-contacts, akonadi-mime,
akonadi-notes, akonadi-search, kaddressbook, kalarmcal,
kcalendarsupport, kcalutils, kdepim-runtime, keventviews, kgpg,
kidentitymanagement, kimap, kincidenceeditor, kldap, kleopatra, kmail,
kmailcommon, kmailimporter, kmailtransport, kmbox, kmessagelib, kmime,
knotes, kontactinterface, korganizer, kpeoplevcard, kpimcommon,
kpimtextedit, ksmtp, ktnef, libgravatar, libkdepim, libkgapi, libkleo,
libksieve): Update to 21.12.3.
(kblog): Update to 20.04.3.
* gnu/packages/patches/akonadi-not-relocatable.patch
* gnu/packages/patches/akonadi-paths.patch
* gnu/packages/patches/akonadi-timestamps.patch
Fix patches to apply to latest code.
(akonadi-calendar): [inputs]: Add new dependencies.
(akonadi-contacts): [inputs]: Add new dependencies.
(akonadi-search): [arguments]: Disable failing tests.
(kcalendarsupport): [inputs]: Add new dependency, remove obsolete kdepim-apps-lib.
(libksieve): [arguments]: Enable test that works now.
* gnu/packages/patches/libksieve-Fix-missing-link-libraries.patch: Fix patch.
(kaddressbook): [inputs]: Remove obsolete kdepim-apps-libs.
Move kdocstools to native-inputs.
(kmessagelib): [inputs]: Remove obsolete kdepim-appslibs, add kguiaddons.
[arguments]: Fix findind header file.
(kmailimporter): [inputs]: Add new dependencies.
(kmailtransport): [inputs]: Add qtkeychain.
(knotes): [inputs]: Move kdocstools to native-inputs.
(kincidenceeditor): [inputs]: Add new dependencies. Remove obsolete kdepim-apps-libs
[arguments]: Disable failing test.
(kldap): [inputs]: Add qtkeychain.
(kgpg)[arguments]: Disable failing tests.
(libkleo): [propagated-inputs]: Propagate gpgme, qgpgme.
[arguments]: Disable failing tests.
(kdepim-runtime): [inputs]: Add new dependencies grantlee, grantleetheme, kcmutils, kldap,
libkdepim, qtkeychain
[arguments]: Enable all the tests that pass.
We need to use the old hack instead of search-input-directory to
workaround a mysterious include error.
(kdepim-apps-lib): Remove obsolete package.
(kmail): [origin]: Remove patch. Don't think it is needed anymore.
[inputs]: Add new dependencies, delete obsolete kdepim-apps-libs and
duplicate kmime.
[arguments]: Disable failing tests.
* gnu/packages/patches/kmail-Fix-missing-link-libraries.patch: Delete file.
* gnu/local.mk: Remove reference to patch.
(kmailcommon): [inputs]: Add new dependencies.
Signed-off-by: Marius Bakke <marius@gnu.org>
2022-02-02 09:08:23 +00:00
|
|
|
(base32 "1d5r9ivc1xmhkrz780xga87p84h7dnxjl981qap16gy37sxahcjr"))))
|
2020-01-19 16:13:30 +00:00
|
|
|
(build-system qt-build-system)
|
|
|
|
(native-inputs
|
2021-12-13 16:18:24 +00:00
|
|
|
(list extra-cmake-modules))
|
2020-01-19 16:13:30 +00:00
|
|
|
(inputs
|
2021-12-13 16:18:24 +00:00
|
|
|
(list kcalendarcore
|
|
|
|
kcoreaddons
|
|
|
|
ki18n
|
|
|
|
kio
|
|
|
|
kxmlrpcclient
|
|
|
|
qtbase-5
|
|
|
|
syndication))
|
2020-01-19 16:13:30 +00:00
|
|
|
;; Note: Some tests take up to 90 sec.
|
gnu: KDE: Fix old cgit home-pages.
Fix all home-pages pointing to git-repos a cgit.kde.org, which is
gone, to now use the correct repo at invent.kde.org.
* gnu/packages/kde.scm (grantleetheme, kdiagram): Update home-page.
* gnu/packages/kde-frameworks.scm (kholidays): Likewise.
* gnu/packages/kde-internet.scm (libgravatar, libktorrent): Likewise.
* gnu/packages/kde-multimedia.scm (libkcddb, libkcompactdisc): Likewise.
* gnu/packages/kde-pim.scm (kblog, kdav, kdepim-apps-libs,
kdepim-runtime, keventviews, kincidenceeditor, kmailcommon,
kmailimporter, kmessagelib, kpimcommon, ksmtp, libkdepim, libkgapi,
libkleo, libksieve): Likewise.
* gnu/packages/kde-plasma.scm (kdecoration, kscreenlocker): Likewise.
2020-12-12 17:22:37 +00:00
|
|
|
(home-page "https://invent.kde.org/pim/kblog")
|
2020-01-19 16:13:30 +00:00
|
|
|
(synopsis "Client-side support library for web application remote blogging
|
|
|
|
APIs")
|
|
|
|
(description "KBlog is a library for calling functions on Blogger 1.0,
|
|
|
|
MetaWeblog, MovableType and GData compatible blogs. It calls the APIs using
|
|
|
|
KXmlRpcClient and Syndication. It supports asynchronous sending and fetching
|
|
|
|
of posts and, if supported on the server, multimedia files. Almost every
|
|
|
|
modern blogging web application that provides an XML data interface supports
|
|
|
|
one of the APIs mentioned above.")
|
|
|
|
(license license:lgpl2.0+)))
|
|
|
|
|
2022-09-23 14:15:32 +00:00
|
|
|
(define-public kaccounts-integration
|
|
|
|
(package
|
|
|
|
(name "kaccounts-integration")
|
2023-07-30 02:32:00 +00:00
|
|
|
(version "23.04.3")
|
2022-09-23 14:15:32 +00:00
|
|
|
(source (origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append "mirror://kde/stable/release-service/"
|
|
|
|
version "/src/" name "-" version ".tar.xz"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
2023-07-30 02:32:00 +00:00
|
|
|
"1mn64xw5r2magy5y0qmg5r907jz1y8jar0qqkc6s1zjjr3s3knac"))))
|
2022-09-23 14:15:32 +00:00
|
|
|
(build-system qt-build-system)
|
|
|
|
(native-inputs (list extra-cmake-modules))
|
|
|
|
(inputs (list kcmutils
|
|
|
|
ki18n
|
|
|
|
kcoreaddons
|
|
|
|
kdbusaddons
|
|
|
|
kdeclarative
|
|
|
|
kwallet
|
|
|
|
kio
|
|
|
|
libaccounts-qt
|
2023-07-30 02:32:00 +00:00
|
|
|
qcoro-qt5
|
2022-09-23 14:15:32 +00:00
|
|
|
signond))
|
|
|
|
(home-page "https://invent.kde.org/network/kaccounts-integration")
|
|
|
|
(synopsis "Online account management system")
|
|
|
|
(description "The Kaccounts Integration library provides online account
|
|
|
|
management system and its Plasma integration components.")
|
|
|
|
(license license:lgpl2.0+)))
|
|
|
|
|
2023-08-16 13:00:13 +00:00
|
|
|
(define-public kaccounts-providers
|
|
|
|
(package
|
|
|
|
(name "kaccounts-providers")
|
|
|
|
(version "23.04.3")
|
|
|
|
(source (origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append "mirror://kde/stable/release-service/"
|
|
|
|
version "/src/" name "-" version ".tar.xz"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
|
|
|
"1lrmj6r09ypnpl2s586i4rd3fk3760qlxyrhh91k43wkb8i6m8f0"))))
|
|
|
|
(build-system qt-build-system)
|
|
|
|
(native-inputs (list extra-cmake-modules intltool))
|
|
|
|
(inputs (list kaccounts-integration
|
|
|
|
kcoreaddons
|
|
|
|
kdeclarative
|
|
|
|
ki18n
|
|
|
|
kio
|
|
|
|
libaccounts-qt
|
|
|
|
qtwebengine-5
|
|
|
|
signond))
|
|
|
|
(home-page "https://invent.kde.org/network/kaccounts-providers")
|
|
|
|
(synopsis "Online account providers for the KAccounts system")
|
|
|
|
(description "This package provides online account providers for the
|
|
|
|
KAccounts system.")
|
|
|
|
(license license:lgpl2.0+)))
|
|
|
|
|
2022-09-20 13:36:21 +00:00
|
|
|
(define-public kalendar
|
|
|
|
(package
|
|
|
|
(name "kalendar")
|
2023-07-30 02:32:00 +00:00
|
|
|
(version "23.04.3")
|
2022-09-20 13:36:21 +00:00
|
|
|
(source (origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append "mirror://kde/stable/release-service/"
|
|
|
|
version "/src/" name "-" version
|
|
|
|
".tar.xz"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
2023-07-30 02:32:00 +00:00
|
|
|
"1w56glv8m1rlk86v78h69d21ydxb6i61g1dk6mcizjr5rvi4liy0"))))
|
2022-09-20 13:36:21 +00:00
|
|
|
(build-system qt-build-system)
|
|
|
|
(arguments
|
|
|
|
(list #:tests? #f ;All 2 tests fail
|
|
|
|
#:phases
|
|
|
|
#~(modify-phases %standard-phases
|
|
|
|
(add-after 'install 'wrap-script
|
|
|
|
(lambda* (#:key inputs outputs #:allow-other-keys)
|
|
|
|
(wrap-program (string-append #$output
|
|
|
|
"/bin/kalendar")
|
|
|
|
`("PATH" ":" prefix
|
|
|
|
(,(string-append #$(this-package-input "akonadi")
|
|
|
|
"/bin"))))))
|
|
|
|
(delete 'check)
|
|
|
|
(add-after 'wrap-script 'check-again
|
|
|
|
(lambda* (#:key tests? #:allow-other-keys)
|
|
|
|
(when tests?
|
|
|
|
(invoke "dbus-launch" "ctest")))))))
|
|
|
|
(native-inputs (list dbus extra-cmake-modules))
|
|
|
|
(inputs (list akonadi
|
|
|
|
akonadi-contacts
|
|
|
|
breeze-icons
|
gnu: kalendar: Add missing inputs.
* gnu/packages/kde-pim.scm (kalendar)[inputs]: Add gpgme, kirigami-addons,
kimap, kmailcommon, kmessagelib, kpimcommon, ktextaddons, akonadi-mime,
libkdepim, libkleo, qtwebengine-5.
2023-08-08 12:11:42 +00:00
|
|
|
gpgme
|
2022-09-20 13:36:21 +00:00
|
|
|
grantlee
|
|
|
|
grantleetheme
|
|
|
|
kio
|
|
|
|
kirigami
|
gnu: kalendar: Add missing inputs.
* gnu/packages/kde-pim.scm (kalendar)[inputs]: Add gpgme, kirigami-addons,
kimap, kmailcommon, kmessagelib, kpimcommon, ktextaddons, akonadi-mime,
libkdepim, libkleo, qtwebengine-5.
2023-08-08 12:11:42 +00:00
|
|
|
kirigami-addons
|
2022-09-20 13:36:21 +00:00
|
|
|
kdbusaddons
|
|
|
|
ki18n
|
gnu: kalendar: Add missing inputs.
* gnu/packages/kde-pim.scm (kalendar)[inputs]: Add gpgme, kirigami-addons,
kimap, kmailcommon, kmessagelib, kpimcommon, ktextaddons, akonadi-mime,
libkdepim, libkleo, qtwebengine-5.
2023-08-08 12:11:42 +00:00
|
|
|
kimap
|
2022-09-20 13:36:21 +00:00
|
|
|
kcalendarcore
|
|
|
|
kcalendarsupport
|
|
|
|
kconfigwidgets
|
|
|
|
kwindowsystem
|
|
|
|
kcoreaddons
|
|
|
|
kcontacts
|
|
|
|
kitemmodels
|
gnu: kalendar: Add missing inputs.
* gnu/packages/kde-pim.scm (kalendar)[inputs]: Add gpgme, kirigami-addons,
kimap, kmailcommon, kmessagelib, kpimcommon, ktextaddons, akonadi-mime,
libkdepim, libkleo, qtwebengine-5.
2023-08-08 12:11:42 +00:00
|
|
|
kmailcommon
|
|
|
|
kmessagelib
|
2022-09-20 13:36:21 +00:00
|
|
|
kmime
|
|
|
|
kidentitymanagement
|
gnu: kalendar: Add missing inputs.
* gnu/packages/kde-pim.scm (kalendar)[inputs]: Add gpgme, kirigami-addons,
kimap, kmailcommon, kmessagelib, kpimcommon, ktextaddons, akonadi-mime,
libkdepim, libkleo, qtwebengine-5.
2023-08-08 12:11:42 +00:00
|
|
|
kpimcommon
|
2022-09-20 13:36:21 +00:00
|
|
|
kpimtextedit
|
gnu: kalendar: Add missing inputs.
* gnu/packages/kde-pim.scm (kalendar)[inputs]: Add gpgme, kirigami-addons,
kimap, kmailcommon, kmessagelib, kpimcommon, ktextaddons, akonadi-mime,
libkdepim, libkleo, qtwebengine-5.
2023-08-08 12:11:42 +00:00
|
|
|
ktextaddons
|
2022-09-20 13:36:21 +00:00
|
|
|
ktextwidgets
|
|
|
|
akonadi-calendar
|
gnu: kalendar: Add missing inputs.
* gnu/packages/kde-pim.scm (kalendar)[inputs]: Add gpgme, kirigami-addons,
kimap, kmailcommon, kmessagelib, kpimcommon, ktextaddons, akonadi-mime,
libkdepim, libkleo, qtwebengine-5.
2023-08-08 12:11:42 +00:00
|
|
|
akonadi-mime
|
2022-09-20 13:36:21 +00:00
|
|
|
keventviews
|
|
|
|
kcalutils
|
|
|
|
kxmlgui
|
|
|
|
kiconthemes
|
gnu: kalendar: Add missing inputs.
* gnu/packages/kde-pim.scm (kalendar)[inputs]: Add gpgme, kirigami-addons,
kimap, kmailcommon, kmessagelib, kpimcommon, ktextaddons, akonadi-mime,
libkdepim, libkleo, qtwebengine-5.
2023-08-08 12:11:42 +00:00
|
|
|
libkdepim
|
|
|
|
libkleo
|
2022-09-20 13:36:21 +00:00
|
|
|
qtbase-5
|
|
|
|
qtdeclarative-5
|
|
|
|
qtquickcontrols2-5
|
|
|
|
qtsvg-5
|
|
|
|
qtquickcontrols-5
|
|
|
|
qtgraphicaleffects
|
|
|
|
qtlocation
|
gnu: kalendar: Add missing inputs.
* gnu/packages/kde-pim.scm (kalendar)[inputs]: Add gpgme, kirigami-addons,
kimap, kmailcommon, kmessagelib, kpimcommon, ktextaddons, akonadi-mime,
libkdepim, libkleo, qtwebengine-5.
2023-08-08 12:11:42 +00:00
|
|
|
qqc2-desktop-style
|
|
|
|
qtwebengine-5))
|
2022-09-20 13:36:21 +00:00
|
|
|
(home-page "https://apps.kde.org/kalendar/")
|
|
|
|
(synopsis "Calendar application")
|
|
|
|
(description
|
|
|
|
"Kalendar is a calendar application using Akonadi to sync with
|
|
|
|
external services.")
|
|
|
|
(license license:gpl3+)))
|
|
|
|
|
2020-02-02 14:34:14 +00:00
|
|
|
(define-public kcalendarsupport
|
|
|
|
(package
|
|
|
|
(name "kcalendarsupport")
|
2023-07-30 02:32:00 +00:00
|
|
|
(version "23.04.3")
|
2020-02-02 14:34:14 +00:00
|
|
|
(source
|
|
|
|
(origin
|
|
|
|
(method url-fetch)
|
gnu: KDE: Update to 20.04.1.
* gnu/packages/patches/akonadi-paths.patch: Adjust for upstream changes.
* gnu/packages/patches/kdepim-runtime-Fix-missing-link-libraries.patch: Delete file.
* gnu/local.mk (dist_patch_DATA): Adjust accordingly.
* gnu/packages/kde-internet.scm (kget, kopete, krdc, libgravatar): Update to
20.04.1.
[source](uri): Adjust for new upstream location.
* gnu/packages/kde-multimedia.scm (audiocd-kio, dragon, ffmpegthumbs, juk,
k3b, kamoso, kmix, kwave, libkcddb, libkcompactdisc): Likewise.
* gnu/packages/kde-systemtools.scm (dolphin, dolphin-plugins, khelpcenter,
konsole, krfb, ksystemlog): Update to 20.04.1.
[source](uri): Adjust for new upstream location.
* gnu/packages/kde-utils.scm (kate, kmag, kmousetool, kmouth, sweeper): Update
to 20.04.1.
[source](uri): Adjust for new upstream location.
* gnu/packages/kde.scm (baloo-widgets, libkomparediff2, kqtquickcharts,
grantleetheme, kcachegrind, libkdegames, zeroconf-ioslave): Update to 20.04.1.
[source](uri): Adjust for new upstream location.
(grantleetheme)[inputs]: Add KGUIADDONS.
* gnu/packages/kde-pim.scm (akonadi, akonadi-calendar, akonadi-contacts,
akonadi-mime, akonadi-notes, akonadi-search, kincidenceeditor, kaddressbook,
kalarmcal, kblog, kcalendarsupport, kcalutils, kdav, kdepim-apps-libs,
kdepim-runtime, keventviews, kgpg, kidentitymanagement, kimap, kldap,
kleopatra, kmail, kmailcommon, kmailimporter, kmailtransport, kmbox,
kmessagelib, kmime, knotes, kontactinterface, korganizer, kpimcommon,
kpimtextedit, ksmtp, ktnef, libkdepim, libkgapi, libkleo, libksieve): Update
to 20.04.1.
[source](uri): Adjust to current.
(akonadi)[inputs]: Remove KDBUSADDONS and KDESIGNERPLUGIN.
(akonadi-calendar)[inputs]: Remove KDBUSADDONS.
(kdepim-runtime)[source](patches): Remove.
[arguments]: Add phase 'extend-CPLUS_INCLUDE_PATH'.
[inputs]: Remove KDBUSADDONS and KICONTHEMES.
(kmessagelib)[arguments]: Add phase 'extend-CPLUS_INCLUDE_PATH.
[inputs]: Add QCA.
(kdepim-apps-libs)[inputs]: Remove KDBUSADDONS and KICONTHEMES.
(knotes)[inputs]: Remove KDBUSADDONS.
(kpimcommon)[inputs]: Remove KDBUSADDONS and KCOMPLETION.
(libksieve)[arguments]: Disable one more test.
(korganizer)[arguments]: Disable one test.
2020-06-06 14:06:58 +00:00
|
|
|
(uri (string-append "mirror://kde/stable/release-service/" version
|
2020-02-02 14:34:14 +00:00
|
|
|
"/src/calendarsupport-" version ".tar.xz"))
|
|
|
|
(sha256
|
2023-07-30 02:32:00 +00:00
|
|
|
(base32 "1zk6kv5nhcd7a5llzh31890xpqdg522ahjdgbwsm7pcp62y0nbsj"))))
|
2020-02-02 14:34:14 +00:00
|
|
|
(properties `((upstream-name . "calendarsupport")))
|
|
|
|
(build-system qt-build-system)
|
|
|
|
(native-inputs
|
2022-07-19 20:52:05 +00:00
|
|
|
(list extra-cmake-modules qttools-5))
|
2020-02-02 14:34:14 +00:00
|
|
|
(inputs
|
2021-12-13 16:18:24 +00:00
|
|
|
(list akonadi
|
|
|
|
akonadi-calendar
|
|
|
|
akonadi-mime
|
gnu: KDE PIM: Update all packages to 21.12.3.
* gnu/packages/kde-pim.scm (KDE PIM): Update to 21.12.3.
(akonadi, akonadi-calendar, akonadi-contacts, akonadi-mime,
akonadi-notes, akonadi-search, kaddressbook, kalarmcal,
kcalendarsupport, kcalutils, kdepim-runtime, keventviews, kgpg,
kidentitymanagement, kimap, kincidenceeditor, kldap, kleopatra, kmail,
kmailcommon, kmailimporter, kmailtransport, kmbox, kmessagelib, kmime,
knotes, kontactinterface, korganizer, kpeoplevcard, kpimcommon,
kpimtextedit, ksmtp, ktnef, libgravatar, libkdepim, libkgapi, libkleo,
libksieve): Update to 21.12.3.
(kblog): Update to 20.04.3.
* gnu/packages/patches/akonadi-not-relocatable.patch
* gnu/packages/patches/akonadi-paths.patch
* gnu/packages/patches/akonadi-timestamps.patch
Fix patches to apply to latest code.
(akonadi-calendar): [inputs]: Add new dependencies.
(akonadi-contacts): [inputs]: Add new dependencies.
(akonadi-search): [arguments]: Disable failing tests.
(kcalendarsupport): [inputs]: Add new dependency, remove obsolete kdepim-apps-lib.
(libksieve): [arguments]: Enable test that works now.
* gnu/packages/patches/libksieve-Fix-missing-link-libraries.patch: Fix patch.
(kaddressbook): [inputs]: Remove obsolete kdepim-apps-libs.
Move kdocstools to native-inputs.
(kmessagelib): [inputs]: Remove obsolete kdepim-appslibs, add kguiaddons.
[arguments]: Fix findind header file.
(kmailimporter): [inputs]: Add new dependencies.
(kmailtransport): [inputs]: Add qtkeychain.
(knotes): [inputs]: Move kdocstools to native-inputs.
(kincidenceeditor): [inputs]: Add new dependencies. Remove obsolete kdepim-apps-libs
[arguments]: Disable failing test.
(kldap): [inputs]: Add qtkeychain.
(kgpg)[arguments]: Disable failing tests.
(libkleo): [propagated-inputs]: Propagate gpgme, qgpgme.
[arguments]: Disable failing tests.
(kdepim-runtime): [inputs]: Add new dependencies grantlee, grantleetheme, kcmutils, kldap,
libkdepim, qtkeychain
[arguments]: Enable all the tests that pass.
We need to use the old hack instead of search-input-directory to
workaround a mysterious include error.
(kdepim-apps-lib): Remove obsolete package.
(kmail): [origin]: Remove patch. Don't think it is needed anymore.
[inputs]: Add new dependencies, delete obsolete kdepim-apps-libs and
duplicate kmime.
[arguments]: Disable failing tests.
* gnu/packages/patches/kmail-Fix-missing-link-libraries.patch: Delete file.
* gnu/local.mk: Remove reference to patch.
(kmailcommon): [inputs]: Add new dependencies.
Signed-off-by: Marius Bakke <marius@gnu.org>
2022-02-02 09:08:23 +00:00
|
|
|
akonadi-notes
|
2021-12-13 16:18:24 +00:00
|
|
|
boost
|
|
|
|
kcalendarcore
|
|
|
|
kcalutils
|
|
|
|
kcompletion
|
|
|
|
kdbusaddons
|
|
|
|
kguiaddons
|
|
|
|
kholidays
|
|
|
|
ki18n
|
|
|
|
kiconthemes
|
|
|
|
kidentitymanagement
|
|
|
|
kio
|
|
|
|
kitemmodels
|
|
|
|
kmime
|
|
|
|
kpimcommon
|
|
|
|
kpimtextedit
|
|
|
|
ktextwidgets
|
|
|
|
kxmlgui
|
|
|
|
qtbase-5))
|
gnu: KDE PIM: Update home-pages.
* gnu/packages/kde-pim.scm (akonadi, kaddressbook, kcalutils, kgpg, kimap,
kldap, kleopatra, kmail, kmailtransport, kmbox, kmime, knotes,
kontactinterface, korganizer, kpimtextedit, ktnef): [home-page]: Update the
link.
Signed-off-by: Marius Bakke <marius@gnu.org>
2022-07-26 06:48:48 +00:00
|
|
|
(home-page "https://api.kde.org/kdepim/calendarsupport/html/index.html")
|
2020-02-02 14:34:14 +00:00
|
|
|
(synopsis "Calendar Support library for KDE PIM")
|
|
|
|
(description "The Calendar Support library provides helper utilities for
|
|
|
|
calendaring applications.")
|
|
|
|
(license ;; GPL for programs, LGPL for libraries
|
|
|
|
(list license:gpl2+ license:lgpl2.0+))))
|
|
|
|
|
2019-12-05 19:06:46 +00:00
|
|
|
(define-public kcalutils
|
|
|
|
(package
|
|
|
|
(name "kcalutils")
|
2023-07-30 02:32:00 +00:00
|
|
|
(version "23.04.3")
|
2019-12-05 19:06:46 +00:00
|
|
|
(source
|
|
|
|
(origin
|
|
|
|
(method url-fetch)
|
gnu: KDE: Update to 20.04.1.
* gnu/packages/patches/akonadi-paths.patch: Adjust for upstream changes.
* gnu/packages/patches/kdepim-runtime-Fix-missing-link-libraries.patch: Delete file.
* gnu/local.mk (dist_patch_DATA): Adjust accordingly.
* gnu/packages/kde-internet.scm (kget, kopete, krdc, libgravatar): Update to
20.04.1.
[source](uri): Adjust for new upstream location.
* gnu/packages/kde-multimedia.scm (audiocd-kio, dragon, ffmpegthumbs, juk,
k3b, kamoso, kmix, kwave, libkcddb, libkcompactdisc): Likewise.
* gnu/packages/kde-systemtools.scm (dolphin, dolphin-plugins, khelpcenter,
konsole, krfb, ksystemlog): Update to 20.04.1.
[source](uri): Adjust for new upstream location.
* gnu/packages/kde-utils.scm (kate, kmag, kmousetool, kmouth, sweeper): Update
to 20.04.1.
[source](uri): Adjust for new upstream location.
* gnu/packages/kde.scm (baloo-widgets, libkomparediff2, kqtquickcharts,
grantleetheme, kcachegrind, libkdegames, zeroconf-ioslave): Update to 20.04.1.
[source](uri): Adjust for new upstream location.
(grantleetheme)[inputs]: Add KGUIADDONS.
* gnu/packages/kde-pim.scm (akonadi, akonadi-calendar, akonadi-contacts,
akonadi-mime, akonadi-notes, akonadi-search, kincidenceeditor, kaddressbook,
kalarmcal, kblog, kcalendarsupport, kcalutils, kdav, kdepim-apps-libs,
kdepim-runtime, keventviews, kgpg, kidentitymanagement, kimap, kldap,
kleopatra, kmail, kmailcommon, kmailimporter, kmailtransport, kmbox,
kmessagelib, kmime, knotes, kontactinterface, korganizer, kpimcommon,
kpimtextedit, ksmtp, ktnef, libkdepim, libkgapi, libkleo, libksieve): Update
to 20.04.1.
[source](uri): Adjust to current.
(akonadi)[inputs]: Remove KDBUSADDONS and KDESIGNERPLUGIN.
(akonadi-calendar)[inputs]: Remove KDBUSADDONS.
(kdepim-runtime)[source](patches): Remove.
[arguments]: Add phase 'extend-CPLUS_INCLUDE_PATH'.
[inputs]: Remove KDBUSADDONS and KICONTHEMES.
(kmessagelib)[arguments]: Add phase 'extend-CPLUS_INCLUDE_PATH.
[inputs]: Add QCA.
(kdepim-apps-libs)[inputs]: Remove KDBUSADDONS and KICONTHEMES.
(knotes)[inputs]: Remove KDBUSADDONS.
(kpimcommon)[inputs]: Remove KDBUSADDONS and KCOMPLETION.
(libksieve)[arguments]: Disable one more test.
(korganizer)[arguments]: Disable one test.
2020-06-06 14:06:58 +00:00
|
|
|
(uri (string-append "mirror://kde/stable/release-service/" version
|
2019-12-05 19:06:46 +00:00
|
|
|
"/src/kcalutils-" version ".tar.xz"))
|
|
|
|
(sha256
|
2023-07-30 02:32:00 +00:00
|
|
|
(base32 "1j7f5ai25zcxggw3dvky624asxim5bkd6a35rcdzkjhj1qwk3vll"))))
|
2019-12-05 19:06:46 +00:00
|
|
|
(build-system qt-build-system)
|
|
|
|
(native-inputs
|
2021-12-13 16:18:24 +00:00
|
|
|
(list extra-cmake-modules libxml2)) ;; xmllint required for tests
|
2019-12-05 19:06:46 +00:00
|
|
|
(inputs
|
2021-12-13 16:18:24 +00:00
|
|
|
(list grantlee
|
|
|
|
kcalendarcore
|
|
|
|
kcodecs
|
|
|
|
kconfig
|
|
|
|
kconfigwidgets
|
|
|
|
kcoreaddons
|
|
|
|
ki18n
|
|
|
|
kiconthemes
|
|
|
|
kidentitymanagement
|
|
|
|
kpimtextedit
|
|
|
|
ktextwidgets
|
|
|
|
kwidgetsaddons
|
2022-02-15 11:21:15 +00:00
|
|
|
breeze-icons ; default icon set, required for tests
|
2021-12-13 16:18:24 +00:00
|
|
|
qtbase-5))
|
2019-12-05 19:06:46 +00:00
|
|
|
(arguments
|
|
|
|
`(#:tests? #f)) ;; TODO: seem to pull in some wrong theme
|
gnu: KDE PIM: Update home-pages.
* gnu/packages/kde-pim.scm (akonadi, kaddressbook, kcalutils, kgpg, kimap,
kldap, kleopatra, kmail, kmailtransport, kmbox, kmime, knotes,
kontactinterface, korganizer, kpimtextedit, ktnef): [home-page]: Update the
link.
Signed-off-by: Marius Bakke <marius@gnu.org>
2022-07-26 06:48:48 +00:00
|
|
|
(home-page "https://api.kde.org/kdepim/kcalutils/html/index.html")
|
2019-12-05 19:06:46 +00:00
|
|
|
(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+)))
|
|
|
|
|
2020-01-19 16:39:09 +00:00
|
|
|
(define-public kdepim-runtime
|
|
|
|
(package
|
|
|
|
(name "kdepim-runtime")
|
2023-07-30 02:32:00 +00:00
|
|
|
(version "23.04.3")
|
2020-01-19 16:39:09 +00:00
|
|
|
(source
|
|
|
|
(origin
|
|
|
|
(method url-fetch)
|
gnu: KDE: Update to 20.04.1.
* gnu/packages/patches/akonadi-paths.patch: Adjust for upstream changes.
* gnu/packages/patches/kdepim-runtime-Fix-missing-link-libraries.patch: Delete file.
* gnu/local.mk (dist_patch_DATA): Adjust accordingly.
* gnu/packages/kde-internet.scm (kget, kopete, krdc, libgravatar): Update to
20.04.1.
[source](uri): Adjust for new upstream location.
* gnu/packages/kde-multimedia.scm (audiocd-kio, dragon, ffmpegthumbs, juk,
k3b, kamoso, kmix, kwave, libkcddb, libkcompactdisc): Likewise.
* gnu/packages/kde-systemtools.scm (dolphin, dolphin-plugins, khelpcenter,
konsole, krfb, ksystemlog): Update to 20.04.1.
[source](uri): Adjust for new upstream location.
* gnu/packages/kde-utils.scm (kate, kmag, kmousetool, kmouth, sweeper): Update
to 20.04.1.
[source](uri): Adjust for new upstream location.
* gnu/packages/kde.scm (baloo-widgets, libkomparediff2, kqtquickcharts,
grantleetheme, kcachegrind, libkdegames, zeroconf-ioslave): Update to 20.04.1.
[source](uri): Adjust for new upstream location.
(grantleetheme)[inputs]: Add KGUIADDONS.
* gnu/packages/kde-pim.scm (akonadi, akonadi-calendar, akonadi-contacts,
akonadi-mime, akonadi-notes, akonadi-search, kincidenceeditor, kaddressbook,
kalarmcal, kblog, kcalendarsupport, kcalutils, kdav, kdepim-apps-libs,
kdepim-runtime, keventviews, kgpg, kidentitymanagement, kimap, kldap,
kleopatra, kmail, kmailcommon, kmailimporter, kmailtransport, kmbox,
kmessagelib, kmime, knotes, kontactinterface, korganizer, kpimcommon,
kpimtextedit, ksmtp, ktnef, libkdepim, libkgapi, libkleo, libksieve): Update
to 20.04.1.
[source](uri): Adjust to current.
(akonadi)[inputs]: Remove KDBUSADDONS and KDESIGNERPLUGIN.
(akonadi-calendar)[inputs]: Remove KDBUSADDONS.
(kdepim-runtime)[source](patches): Remove.
[arguments]: Add phase 'extend-CPLUS_INCLUDE_PATH'.
[inputs]: Remove KDBUSADDONS and KICONTHEMES.
(kmessagelib)[arguments]: Add phase 'extend-CPLUS_INCLUDE_PATH.
[inputs]: Add QCA.
(kdepim-apps-libs)[inputs]: Remove KDBUSADDONS and KICONTHEMES.
(knotes)[inputs]: Remove KDBUSADDONS.
(kpimcommon)[inputs]: Remove KDBUSADDONS and KCOMPLETION.
(libksieve)[arguments]: Disable one more test.
(korganizer)[arguments]: Disable one test.
2020-06-06 14:06:58 +00:00
|
|
|
(uri (string-append "mirror://kde/stable/release-service/" version
|
2020-01-19 16:39:09 +00:00
|
|
|
"/src/kdepim-runtime-" version ".tar.xz"))
|
|
|
|
(sha256
|
2023-07-30 02:32:00 +00:00
|
|
|
(base32 "1wvwibq6zzjlhh8yqrlqras0m8i01ynlwj9z6l3f0g0hyyz5nkw4"))))
|
2020-01-19 16:39:09 +00:00
|
|
|
(build-system qt-build-system)
|
|
|
|
(native-inputs
|
2021-12-13 16:18:24 +00:00
|
|
|
(list extra-cmake-modules dbus kdoctools libxslt shared-mime-info))
|
2020-01-19 16:39:09 +00:00
|
|
|
(inputs
|
2021-12-13 16:18:24 +00:00
|
|
|
(list akonadi
|
|
|
|
akonadi-calendar
|
|
|
|
akonadi-contacts
|
|
|
|
akonadi-mime
|
|
|
|
akonadi-notes
|
|
|
|
boost
|
|
|
|
cyrus-sasl
|
gnu: KDE PIM: Update all packages to 21.12.3.
* gnu/packages/kde-pim.scm (KDE PIM): Update to 21.12.3.
(akonadi, akonadi-calendar, akonadi-contacts, akonadi-mime,
akonadi-notes, akonadi-search, kaddressbook, kalarmcal,
kcalendarsupport, kcalutils, kdepim-runtime, keventviews, kgpg,
kidentitymanagement, kimap, kincidenceeditor, kldap, kleopatra, kmail,
kmailcommon, kmailimporter, kmailtransport, kmbox, kmessagelib, kmime,
knotes, kontactinterface, korganizer, kpeoplevcard, kpimcommon,
kpimtextedit, ksmtp, ktnef, libgravatar, libkdepim, libkgapi, libkleo,
libksieve): Update to 21.12.3.
(kblog): Update to 20.04.3.
* gnu/packages/patches/akonadi-not-relocatable.patch
* gnu/packages/patches/akonadi-paths.patch
* gnu/packages/patches/akonadi-timestamps.patch
Fix patches to apply to latest code.
(akonadi-calendar): [inputs]: Add new dependencies.
(akonadi-contacts): [inputs]: Add new dependencies.
(akonadi-search): [arguments]: Disable failing tests.
(kcalendarsupport): [inputs]: Add new dependency, remove obsolete kdepim-apps-lib.
(libksieve): [arguments]: Enable test that works now.
* gnu/packages/patches/libksieve-Fix-missing-link-libraries.patch: Fix patch.
(kaddressbook): [inputs]: Remove obsolete kdepim-apps-libs.
Move kdocstools to native-inputs.
(kmessagelib): [inputs]: Remove obsolete kdepim-appslibs, add kguiaddons.
[arguments]: Fix findind header file.
(kmailimporter): [inputs]: Add new dependencies.
(kmailtransport): [inputs]: Add qtkeychain.
(knotes): [inputs]: Move kdocstools to native-inputs.
(kincidenceeditor): [inputs]: Add new dependencies. Remove obsolete kdepim-apps-libs
[arguments]: Disable failing test.
(kldap): [inputs]: Add qtkeychain.
(kgpg)[arguments]: Disable failing tests.
(libkleo): [propagated-inputs]: Propagate gpgme, qgpgme.
[arguments]: Disable failing tests.
(kdepim-runtime): [inputs]: Add new dependencies grantlee, grantleetheme, kcmutils, kldap,
libkdepim, qtkeychain
[arguments]: Enable all the tests that pass.
We need to use the old hack instead of search-input-directory to
workaround a mysterious include error.
(kdepim-apps-lib): Remove obsolete package.
(kmail): [origin]: Remove patch. Don't think it is needed anymore.
[inputs]: Add new dependencies, delete obsolete kdepim-apps-libs and
duplicate kmime.
[arguments]: Disable failing tests.
* gnu/packages/patches/kmail-Fix-missing-link-libraries.patch: Delete file.
* gnu/local.mk: Remove reference to patch.
(kmailcommon): [inputs]: Add new dependencies.
Signed-off-by: Marius Bakke <marius@gnu.org>
2022-02-02 09:08:23 +00:00
|
|
|
grantlee
|
|
|
|
grantleetheme
|
2021-12-13 16:18:24 +00:00
|
|
|
kcalendarcore
|
|
|
|
kcalutils
|
gnu: KDE PIM: Update all packages to 21.12.3.
* gnu/packages/kde-pim.scm (KDE PIM): Update to 21.12.3.
(akonadi, akonadi-calendar, akonadi-contacts, akonadi-mime,
akonadi-notes, akonadi-search, kaddressbook, kalarmcal,
kcalendarsupport, kcalutils, kdepim-runtime, keventviews, kgpg,
kidentitymanagement, kimap, kincidenceeditor, kldap, kleopatra, kmail,
kmailcommon, kmailimporter, kmailtransport, kmbox, kmessagelib, kmime,
knotes, kontactinterface, korganizer, kpeoplevcard, kpimcommon,
kpimtextedit, ksmtp, ktnef, libgravatar, libkdepim, libkgapi, libkleo,
libksieve): Update to 21.12.3.
(kblog): Update to 20.04.3.
* gnu/packages/patches/akonadi-not-relocatable.patch
* gnu/packages/patches/akonadi-paths.patch
* gnu/packages/patches/akonadi-timestamps.patch
Fix patches to apply to latest code.
(akonadi-calendar): [inputs]: Add new dependencies.
(akonadi-contacts): [inputs]: Add new dependencies.
(akonadi-search): [arguments]: Disable failing tests.
(kcalendarsupport): [inputs]: Add new dependency, remove obsolete kdepim-apps-lib.
(libksieve): [arguments]: Enable test that works now.
* gnu/packages/patches/libksieve-Fix-missing-link-libraries.patch: Fix patch.
(kaddressbook): [inputs]: Remove obsolete kdepim-apps-libs.
Move kdocstools to native-inputs.
(kmessagelib): [inputs]: Remove obsolete kdepim-appslibs, add kguiaddons.
[arguments]: Fix findind header file.
(kmailimporter): [inputs]: Add new dependencies.
(kmailtransport): [inputs]: Add qtkeychain.
(knotes): [inputs]: Move kdocstools to native-inputs.
(kincidenceeditor): [inputs]: Add new dependencies. Remove obsolete kdepim-apps-libs
[arguments]: Disable failing test.
(kldap): [inputs]: Add qtkeychain.
(kgpg)[arguments]: Disable failing tests.
(libkleo): [propagated-inputs]: Propagate gpgme, qgpgme.
[arguments]: Disable failing tests.
(kdepim-runtime): [inputs]: Add new dependencies grantlee, grantleetheme, kcmutils, kldap,
libkdepim, qtkeychain
[arguments]: Enable all the tests that pass.
We need to use the old hack instead of search-input-directory to
workaround a mysterious include error.
(kdepim-apps-lib): Remove obsolete package.
(kmail): [origin]: Remove patch. Don't think it is needed anymore.
[inputs]: Add new dependencies, delete obsolete kdepim-apps-libs and
duplicate kmime.
[arguments]: Disable failing tests.
* gnu/packages/patches/kmail-Fix-missing-link-libraries.patch: Delete file.
* gnu/local.mk: Remove reference to patch.
(kmailcommon): [inputs]: Add new dependencies.
Signed-off-by: Marius Bakke <marius@gnu.org>
2022-02-02 09:08:23 +00:00
|
|
|
kcmutils
|
2021-12-13 16:18:24 +00:00
|
|
|
kcodecs
|
|
|
|
kconfig
|
|
|
|
kconfigwidgets
|
|
|
|
kcontacts
|
|
|
|
kdav
|
|
|
|
kholidays
|
|
|
|
kidentitymanagement
|
|
|
|
kimap
|
|
|
|
kio
|
|
|
|
kitemmodels
|
|
|
|
kmailtransport
|
gnu: KDE PIM: Update all packages to 21.12.3.
* gnu/packages/kde-pim.scm (KDE PIM): Update to 21.12.3.
(akonadi, akonadi-calendar, akonadi-contacts, akonadi-mime,
akonadi-notes, akonadi-search, kaddressbook, kalarmcal,
kcalendarsupport, kcalutils, kdepim-runtime, keventviews, kgpg,
kidentitymanagement, kimap, kincidenceeditor, kldap, kleopatra, kmail,
kmailcommon, kmailimporter, kmailtransport, kmbox, kmessagelib, kmime,
knotes, kontactinterface, korganizer, kpeoplevcard, kpimcommon,
kpimtextedit, ksmtp, ktnef, libgravatar, libkdepim, libkgapi, libkleo,
libksieve): Update to 21.12.3.
(kblog): Update to 20.04.3.
* gnu/packages/patches/akonadi-not-relocatable.patch
* gnu/packages/patches/akonadi-paths.patch
* gnu/packages/patches/akonadi-timestamps.patch
Fix patches to apply to latest code.
(akonadi-calendar): [inputs]: Add new dependencies.
(akonadi-contacts): [inputs]: Add new dependencies.
(akonadi-search): [arguments]: Disable failing tests.
(kcalendarsupport): [inputs]: Add new dependency, remove obsolete kdepim-apps-lib.
(libksieve): [arguments]: Enable test that works now.
* gnu/packages/patches/libksieve-Fix-missing-link-libraries.patch: Fix patch.
(kaddressbook): [inputs]: Remove obsolete kdepim-apps-libs.
Move kdocstools to native-inputs.
(kmessagelib): [inputs]: Remove obsolete kdepim-appslibs, add kguiaddons.
[arguments]: Fix findind header file.
(kmailimporter): [inputs]: Add new dependencies.
(kmailtransport): [inputs]: Add qtkeychain.
(knotes): [inputs]: Move kdocstools to native-inputs.
(kincidenceeditor): [inputs]: Add new dependencies. Remove obsolete kdepim-apps-libs
[arguments]: Disable failing test.
(kldap): [inputs]: Add qtkeychain.
(kgpg)[arguments]: Disable failing tests.
(libkleo): [propagated-inputs]: Propagate gpgme, qgpgme.
[arguments]: Disable failing tests.
(kdepim-runtime): [inputs]: Add new dependencies grantlee, grantleetheme, kcmutils, kldap,
libkdepim, qtkeychain
[arguments]: Enable all the tests that pass.
We need to use the old hack instead of search-input-directory to
workaround a mysterious include error.
(kdepim-apps-lib): Remove obsolete package.
(kmail): [origin]: Remove patch. Don't think it is needed anymore.
[inputs]: Add new dependencies, delete obsolete kdepim-apps-libs and
duplicate kmime.
[arguments]: Disable failing tests.
* gnu/packages/patches/kmail-Fix-missing-link-libraries.patch: Delete file.
* gnu/local.mk: Remove reference to patch.
(kmailcommon): [inputs]: Add new dependencies.
Signed-off-by: Marius Bakke <marius@gnu.org>
2022-02-02 09:08:23 +00:00
|
|
|
kldap
|
2021-12-13 16:18:24 +00:00
|
|
|
kmbox
|
|
|
|
kmime
|
|
|
|
knotifications
|
|
|
|
knotifyconfig
|
|
|
|
kpimcommon
|
|
|
|
kpimtextedit
|
|
|
|
kross
|
|
|
|
ktextwidgets
|
|
|
|
kwallet
|
|
|
|
kwindowsystem
|
gnu: KDE PIM: Update all packages to 21.12.3.
* gnu/packages/kde-pim.scm (KDE PIM): Update to 21.12.3.
(akonadi, akonadi-calendar, akonadi-contacts, akonadi-mime,
akonadi-notes, akonadi-search, kaddressbook, kalarmcal,
kcalendarsupport, kcalutils, kdepim-runtime, keventviews, kgpg,
kidentitymanagement, kimap, kincidenceeditor, kldap, kleopatra, kmail,
kmailcommon, kmailimporter, kmailtransport, kmbox, kmessagelib, kmime,
knotes, kontactinterface, korganizer, kpeoplevcard, kpimcommon,
kpimtextedit, ksmtp, ktnef, libgravatar, libkdepim, libkgapi, libkleo,
libksieve): Update to 21.12.3.
(kblog): Update to 20.04.3.
* gnu/packages/patches/akonadi-not-relocatable.patch
* gnu/packages/patches/akonadi-paths.patch
* gnu/packages/patches/akonadi-timestamps.patch
Fix patches to apply to latest code.
(akonadi-calendar): [inputs]: Add new dependencies.
(akonadi-contacts): [inputs]: Add new dependencies.
(akonadi-search): [arguments]: Disable failing tests.
(kcalendarsupport): [inputs]: Add new dependency, remove obsolete kdepim-apps-lib.
(libksieve): [arguments]: Enable test that works now.
* gnu/packages/patches/libksieve-Fix-missing-link-libraries.patch: Fix patch.
(kaddressbook): [inputs]: Remove obsolete kdepim-apps-libs.
Move kdocstools to native-inputs.
(kmessagelib): [inputs]: Remove obsolete kdepim-appslibs, add kguiaddons.
[arguments]: Fix findind header file.
(kmailimporter): [inputs]: Add new dependencies.
(kmailtransport): [inputs]: Add qtkeychain.
(knotes): [inputs]: Move kdocstools to native-inputs.
(kincidenceeditor): [inputs]: Add new dependencies. Remove obsolete kdepim-apps-libs
[arguments]: Disable failing test.
(kldap): [inputs]: Add qtkeychain.
(kgpg)[arguments]: Disable failing tests.
(libkleo): [propagated-inputs]: Propagate gpgme, qgpgme.
[arguments]: Disable failing tests.
(kdepim-runtime): [inputs]: Add new dependencies grantlee, grantleetheme, kcmutils, kldap,
libkdepim, qtkeychain
[arguments]: Enable all the tests that pass.
We need to use the old hack instead of search-input-directory to
workaround a mysterious include error.
(kdepim-apps-lib): Remove obsolete package.
(kmail): [origin]: Remove patch. Don't think it is needed anymore.
[inputs]: Add new dependencies, delete obsolete kdepim-apps-libs and
duplicate kmime.
[arguments]: Disable failing tests.
* gnu/packages/patches/kmail-Fix-missing-link-libraries.patch: Delete file.
* gnu/local.mk: Remove reference to patch.
(kmailcommon): [inputs]: Add new dependencies.
Signed-off-by: Marius Bakke <marius@gnu.org>
2022-02-02 09:08:23 +00:00
|
|
|
libkdepim
|
2021-12-13 16:18:24 +00:00
|
|
|
libkgapi
|
|
|
|
;; TODO: libkolab
|
|
|
|
qca
|
|
|
|
qtbase-5
|
2022-07-18 01:03:18 +00:00
|
|
|
qtdeclarative-5
|
gnu: KDE PIM: Update all packages to 21.12.3.
* gnu/packages/kde-pim.scm (KDE PIM): Update to 21.12.3.
(akonadi, akonadi-calendar, akonadi-contacts, akonadi-mime,
akonadi-notes, akonadi-search, kaddressbook, kalarmcal,
kcalendarsupport, kcalutils, kdepim-runtime, keventviews, kgpg,
kidentitymanagement, kimap, kincidenceeditor, kldap, kleopatra, kmail,
kmailcommon, kmailimporter, kmailtransport, kmbox, kmessagelib, kmime,
knotes, kontactinterface, korganizer, kpeoplevcard, kpimcommon,
kpimtextedit, ksmtp, ktnef, libgravatar, libkdepim, libkgapi, libkleo,
libksieve): Update to 21.12.3.
(kblog): Update to 20.04.3.
* gnu/packages/patches/akonadi-not-relocatable.patch
* gnu/packages/patches/akonadi-paths.patch
* gnu/packages/patches/akonadi-timestamps.patch
Fix patches to apply to latest code.
(akonadi-calendar): [inputs]: Add new dependencies.
(akonadi-contacts): [inputs]: Add new dependencies.
(akonadi-search): [arguments]: Disable failing tests.
(kcalendarsupport): [inputs]: Add new dependency, remove obsolete kdepim-apps-lib.
(libksieve): [arguments]: Enable test that works now.
* gnu/packages/patches/libksieve-Fix-missing-link-libraries.patch: Fix patch.
(kaddressbook): [inputs]: Remove obsolete kdepim-apps-libs.
Move kdocstools to native-inputs.
(kmessagelib): [inputs]: Remove obsolete kdepim-appslibs, add kguiaddons.
[arguments]: Fix findind header file.
(kmailimporter): [inputs]: Add new dependencies.
(kmailtransport): [inputs]: Add qtkeychain.
(knotes): [inputs]: Move kdocstools to native-inputs.
(kincidenceeditor): [inputs]: Add new dependencies. Remove obsolete kdepim-apps-libs
[arguments]: Disable failing test.
(kldap): [inputs]: Add qtkeychain.
(kgpg)[arguments]: Disable failing tests.
(libkleo): [propagated-inputs]: Propagate gpgme, qgpgme.
[arguments]: Disable failing tests.
(kdepim-runtime): [inputs]: Add new dependencies grantlee, grantleetheme, kcmutils, kldap,
libkdepim, qtkeychain
[arguments]: Enable all the tests that pass.
We need to use the old hack instead of search-input-directory to
workaround a mysterious include error.
(kdepim-apps-lib): Remove obsolete package.
(kmail): [origin]: Remove patch. Don't think it is needed anymore.
[inputs]: Add new dependencies, delete obsolete kdepim-apps-libs and
duplicate kmime.
[arguments]: Disable failing tests.
* gnu/packages/patches/kmail-Fix-missing-link-libraries.patch: Delete file.
* gnu/local.mk: Remove reference to patch.
(kmailcommon): [inputs]: Add new dependencies.
Signed-off-by: Marius Bakke <marius@gnu.org>
2022-02-02 09:08:23 +00:00
|
|
|
qtkeychain
|
2022-07-20 00:23:12 +00:00
|
|
|
qtnetworkauth-5
|
2021-12-13 16:18:24 +00:00
|
|
|
qtspeech
|
2022-07-18 04:02:58 +00:00
|
|
|
qtwebchannel-5
|
2022-07-18 11:57:16 +00:00
|
|
|
qtwebengine-5
|
2021-12-13 16:18:24 +00:00
|
|
|
qtxmlpatterns))
|
2020-01-19 16:39:09 +00:00
|
|
|
(arguments
|
|
|
|
;; TODO: 5/45 tests fail for quite different reasons, even with
|
|
|
|
;; "offscreen" and dbus
|
gnu: KDE PIM: Update all packages to 21.12.3.
* gnu/packages/kde-pim.scm (KDE PIM): Update to 21.12.3.
(akonadi, akonadi-calendar, akonadi-contacts, akonadi-mime,
akonadi-notes, akonadi-search, kaddressbook, kalarmcal,
kcalendarsupport, kcalutils, kdepim-runtime, keventviews, kgpg,
kidentitymanagement, kimap, kincidenceeditor, kldap, kleopatra, kmail,
kmailcommon, kmailimporter, kmailtransport, kmbox, kmessagelib, kmime,
knotes, kontactinterface, korganizer, kpeoplevcard, kpimcommon,
kpimtextedit, ksmtp, ktnef, libgravatar, libkdepim, libkgapi, libkleo,
libksieve): Update to 21.12.3.
(kblog): Update to 20.04.3.
* gnu/packages/patches/akonadi-not-relocatable.patch
* gnu/packages/patches/akonadi-paths.patch
* gnu/packages/patches/akonadi-timestamps.patch
Fix patches to apply to latest code.
(akonadi-calendar): [inputs]: Add new dependencies.
(akonadi-contacts): [inputs]: Add new dependencies.
(akonadi-search): [arguments]: Disable failing tests.
(kcalendarsupport): [inputs]: Add new dependency, remove obsolete kdepim-apps-lib.
(libksieve): [arguments]: Enable test that works now.
* gnu/packages/patches/libksieve-Fix-missing-link-libraries.patch: Fix patch.
(kaddressbook): [inputs]: Remove obsolete kdepim-apps-libs.
Move kdocstools to native-inputs.
(kmessagelib): [inputs]: Remove obsolete kdepim-appslibs, add kguiaddons.
[arguments]: Fix findind header file.
(kmailimporter): [inputs]: Add new dependencies.
(kmailtransport): [inputs]: Add qtkeychain.
(knotes): [inputs]: Move kdocstools to native-inputs.
(kincidenceeditor): [inputs]: Add new dependencies. Remove obsolete kdepim-apps-libs
[arguments]: Disable failing test.
(kldap): [inputs]: Add qtkeychain.
(kgpg)[arguments]: Disable failing tests.
(libkleo): [propagated-inputs]: Propagate gpgme, qgpgme.
[arguments]: Disable failing tests.
(kdepim-runtime): [inputs]: Add new dependencies grantlee, grantleetheme, kcmutils, kldap,
libkdepim, qtkeychain
[arguments]: Enable all the tests that pass.
We need to use the old hack instead of search-input-directory to
workaround a mysterious include error.
(kdepim-apps-lib): Remove obsolete package.
(kmail): [origin]: Remove patch. Don't think it is needed anymore.
[inputs]: Add new dependencies, delete obsolete kdepim-apps-libs and
duplicate kmime.
[arguments]: Disable failing tests.
* gnu/packages/patches/kmail-Fix-missing-link-libraries.patch: Delete file.
* gnu/local.mk: Remove reference to patch.
(kmailcommon): [inputs]: Add new dependencies.
Signed-off-by: Marius Bakke <marius@gnu.org>
2022-02-02 09:08:23 +00:00
|
|
|
`(#:phases (modify-phases %standard-phases
|
gnu: KDE: Update to 20.04.1.
* gnu/packages/patches/akonadi-paths.patch: Adjust for upstream changes.
* gnu/packages/patches/kdepim-runtime-Fix-missing-link-libraries.patch: Delete file.
* gnu/local.mk (dist_patch_DATA): Adjust accordingly.
* gnu/packages/kde-internet.scm (kget, kopete, krdc, libgravatar): Update to
20.04.1.
[source](uri): Adjust for new upstream location.
* gnu/packages/kde-multimedia.scm (audiocd-kio, dragon, ffmpegthumbs, juk,
k3b, kamoso, kmix, kwave, libkcddb, libkcompactdisc): Likewise.
* gnu/packages/kde-systemtools.scm (dolphin, dolphin-plugins, khelpcenter,
konsole, krfb, ksystemlog): Update to 20.04.1.
[source](uri): Adjust for new upstream location.
* gnu/packages/kde-utils.scm (kate, kmag, kmousetool, kmouth, sweeper): Update
to 20.04.1.
[source](uri): Adjust for new upstream location.
* gnu/packages/kde.scm (baloo-widgets, libkomparediff2, kqtquickcharts,
grantleetheme, kcachegrind, libkdegames, zeroconf-ioslave): Update to 20.04.1.
[source](uri): Adjust for new upstream location.
(grantleetheme)[inputs]: Add KGUIADDONS.
* gnu/packages/kde-pim.scm (akonadi, akonadi-calendar, akonadi-contacts,
akonadi-mime, akonadi-notes, akonadi-search, kincidenceeditor, kaddressbook,
kalarmcal, kblog, kcalendarsupport, kcalutils, kdav, kdepim-apps-libs,
kdepim-runtime, keventviews, kgpg, kidentitymanagement, kimap, kldap,
kleopatra, kmail, kmailcommon, kmailimporter, kmailtransport, kmbox,
kmessagelib, kmime, knotes, kontactinterface, korganizer, kpimcommon,
kpimtextedit, ksmtp, ktnef, libkdepim, libkgapi, libkleo, libksieve): Update
to 20.04.1.
[source](uri): Adjust to current.
(akonadi)[inputs]: Remove KDBUSADDONS and KDESIGNERPLUGIN.
(akonadi-calendar)[inputs]: Remove KDBUSADDONS.
(kdepim-runtime)[source](patches): Remove.
[arguments]: Add phase 'extend-CPLUS_INCLUDE_PATH'.
[inputs]: Remove KDBUSADDONS and KICONTHEMES.
(kmessagelib)[arguments]: Add phase 'extend-CPLUS_INCLUDE_PATH.
[inputs]: Add QCA.
(kdepim-apps-libs)[inputs]: Remove KDBUSADDONS and KICONTHEMES.
(knotes)[inputs]: Remove KDBUSADDONS.
(kpimcommon)[inputs]: Remove KDBUSADDONS and KCOMPLETION.
(libksieve)[arguments]: Disable one more test.
(korganizer)[arguments]: Disable one test.
2020-06-06 14:06:58 +00:00
|
|
|
(add-after 'set-paths 'extend-CPLUS_INCLUDE_PATH
|
|
|
|
(lambda* (#:key inputs #:allow-other-keys)
|
|
|
|
;; FIXME: <Akonadi/KMime/SpecialMailCollections> is not
|
|
|
|
;; found during one of the compilation steps without
|
|
|
|
;; this hack.
|
|
|
|
(setenv "CPLUS_INCLUDE_PATH"
|
2021-07-16 14:01:49 +00:00
|
|
|
(string-append
|
gnu: KDE PIM: Update all packages to 21.12.3.
* gnu/packages/kde-pim.scm (KDE PIM): Update to 21.12.3.
(akonadi, akonadi-calendar, akonadi-contacts, akonadi-mime,
akonadi-notes, akonadi-search, kaddressbook, kalarmcal,
kcalendarsupport, kcalutils, kdepim-runtime, keventviews, kgpg,
kidentitymanagement, kimap, kincidenceeditor, kldap, kleopatra, kmail,
kmailcommon, kmailimporter, kmailtransport, kmbox, kmessagelib, kmime,
knotes, kontactinterface, korganizer, kpeoplevcard, kpimcommon,
kpimtextedit, ksmtp, ktnef, libgravatar, libkdepim, libkgapi, libkleo,
libksieve): Update to 21.12.3.
(kblog): Update to 20.04.3.
* gnu/packages/patches/akonadi-not-relocatable.patch
* gnu/packages/patches/akonadi-paths.patch
* gnu/packages/patches/akonadi-timestamps.patch
Fix patches to apply to latest code.
(akonadi-calendar): [inputs]: Add new dependencies.
(akonadi-contacts): [inputs]: Add new dependencies.
(akonadi-search): [arguments]: Disable failing tests.
(kcalendarsupport): [inputs]: Add new dependency, remove obsolete kdepim-apps-lib.
(libksieve): [arguments]: Enable test that works now.
* gnu/packages/patches/libksieve-Fix-missing-link-libraries.patch: Fix patch.
(kaddressbook): [inputs]: Remove obsolete kdepim-apps-libs.
Move kdocstools to native-inputs.
(kmessagelib): [inputs]: Remove obsolete kdepim-appslibs, add kguiaddons.
[arguments]: Fix findind header file.
(kmailimporter): [inputs]: Add new dependencies.
(kmailtransport): [inputs]: Add qtkeychain.
(knotes): [inputs]: Move kdocstools to native-inputs.
(kincidenceeditor): [inputs]: Add new dependencies. Remove obsolete kdepim-apps-libs
[arguments]: Disable failing test.
(kldap): [inputs]: Add qtkeychain.
(kgpg)[arguments]: Disable failing tests.
(libkleo): [propagated-inputs]: Propagate gpgme, qgpgme.
[arguments]: Disable failing tests.
(kdepim-runtime): [inputs]: Add new dependencies grantlee, grantleetheme, kcmutils, kldap,
libkdepim, qtkeychain
[arguments]: Enable all the tests that pass.
We need to use the old hack instead of search-input-directory to
workaround a mysterious include error.
(kdepim-apps-lib): Remove obsolete package.
(kmail): [origin]: Remove patch. Don't think it is needed anymore.
[inputs]: Add new dependencies, delete obsolete kdepim-apps-libs and
duplicate kmime.
[arguments]: Disable failing tests.
* gnu/packages/patches/kmail-Fix-missing-link-libraries.patch: Delete file.
* gnu/local.mk: Remove reference to patch.
(kmailcommon): [inputs]: Add new dependencies.
Signed-off-by: Marius Bakke <marius@gnu.org>
2022-02-02 09:08:23 +00:00
|
|
|
(assoc-ref inputs "akonadi-mime") "/include/KF5:"
|
|
|
|
(or (getenv "CPLUS_INCLUDE_PATH") "")))))
|
|
|
|
(replace 'check
|
|
|
|
(lambda* (#:key tests? #:allow-other-keys)
|
|
|
|
(when tests?
|
|
|
|
;; FIXME: Atleast some appear to require network.
|
|
|
|
(invoke "dbus-launch" "ctest" "-E" "\
|
|
|
|
(akonadi-sqlite-synctest|akonadi-sqlite-pop3test|storecompacttest\
|
|
|
|
|akonadi-sqlite-ewstest|ewsmoveitemrequest_ut|ewsdeleteitemrequest_ut\
|
|
|
|
|ewsgetitemrequest_ut|ewsunsubscriberequest_ut|ewssettings_ut\
|
|
|
|
|templatemethodstest|akonadi-sqlite-serverbusytest|ewsattachment_ut|\\
|
gnu: KDE-PIM: Remove trailing booleans.
* gnu/packages/kde-pim.scm (akonadi, akonadi-mime, akonadi-search,
kincidenceeditor, kdepim-runtime, kidentitymanagement, kleopatra, kmail,
kmime, korganizer, kpeoplevcard, ksmtp, libkleo,
libksieve)[arguments]: Remove trailing booleans.
Signed-off-by: Marius Bakke <marius@gnu.org>
2022-07-21 06:33:36 +00:00
|
|
|
testmovecollectiontask)")))))))
|
gnu: KDE: Fix old cgit home-pages.
Fix all home-pages pointing to git-repos a cgit.kde.org, which is
gone, to now use the correct repo at invent.kde.org.
* gnu/packages/kde.scm (grantleetheme, kdiagram): Update home-page.
* gnu/packages/kde-frameworks.scm (kholidays): Likewise.
* gnu/packages/kde-internet.scm (libgravatar, libktorrent): Likewise.
* gnu/packages/kde-multimedia.scm (libkcddb, libkcompactdisc): Likewise.
* gnu/packages/kde-pim.scm (kblog, kdav, kdepim-apps-libs,
kdepim-runtime, keventviews, kincidenceeditor, kmailcommon,
kmailimporter, kmessagelib, kpimcommon, ksmtp, libkdepim, libkgapi,
libkleo, libksieve): Likewise.
* gnu/packages/kde-plasma.scm (kdecoration, kscreenlocker): Likewise.
2020-12-12 17:22:37 +00:00
|
|
|
(home-page "https://invent.kde.org/pim/kdepim-runtime")
|
2020-01-19 16:39:09 +00:00
|
|
|
(synopsis "Runtime components for Akonadi KDE")
|
|
|
|
(description "This package contains Akonadi agents written using KDE
|
|
|
|
Development Platform libraries. Any package that uses Akonadi should probably
|
|
|
|
pull this in as a dependency. The kres-bridges is also parts of this
|
|
|
|
package.")
|
|
|
|
(license ;; Files vary a lot regarding the license. GPL2+ and LGPL2.1+
|
|
|
|
;; have been used in those I checked. But the archive also includes
|
|
|
|
;; license texts for GPL3 and AGPL3.
|
|
|
|
(list license:gpl2+ license:lgpl2.0+))))
|
|
|
|
|
2020-01-22 12:03:13 +00:00
|
|
|
(define-public keventviews
|
|
|
|
(package
|
|
|
|
(name "keventviews")
|
2023-07-30 02:32:00 +00:00
|
|
|
(version "23.04.3")
|
2020-01-22 12:03:13 +00:00
|
|
|
(source
|
|
|
|
(origin
|
|
|
|
(method url-fetch)
|
gnu: KDE: Update to 20.04.1.
* gnu/packages/patches/akonadi-paths.patch: Adjust for upstream changes.
* gnu/packages/patches/kdepim-runtime-Fix-missing-link-libraries.patch: Delete file.
* gnu/local.mk (dist_patch_DATA): Adjust accordingly.
* gnu/packages/kde-internet.scm (kget, kopete, krdc, libgravatar): Update to
20.04.1.
[source](uri): Adjust for new upstream location.
* gnu/packages/kde-multimedia.scm (audiocd-kio, dragon, ffmpegthumbs, juk,
k3b, kamoso, kmix, kwave, libkcddb, libkcompactdisc): Likewise.
* gnu/packages/kde-systemtools.scm (dolphin, dolphin-plugins, khelpcenter,
konsole, krfb, ksystemlog): Update to 20.04.1.
[source](uri): Adjust for new upstream location.
* gnu/packages/kde-utils.scm (kate, kmag, kmousetool, kmouth, sweeper): Update
to 20.04.1.
[source](uri): Adjust for new upstream location.
* gnu/packages/kde.scm (baloo-widgets, libkomparediff2, kqtquickcharts,
grantleetheme, kcachegrind, libkdegames, zeroconf-ioslave): Update to 20.04.1.
[source](uri): Adjust for new upstream location.
(grantleetheme)[inputs]: Add KGUIADDONS.
* gnu/packages/kde-pim.scm (akonadi, akonadi-calendar, akonadi-contacts,
akonadi-mime, akonadi-notes, akonadi-search, kincidenceeditor, kaddressbook,
kalarmcal, kblog, kcalendarsupport, kcalutils, kdav, kdepim-apps-libs,
kdepim-runtime, keventviews, kgpg, kidentitymanagement, kimap, kldap,
kleopatra, kmail, kmailcommon, kmailimporter, kmailtransport, kmbox,
kmessagelib, kmime, knotes, kontactinterface, korganizer, kpimcommon,
kpimtextedit, ksmtp, ktnef, libkdepim, libkgapi, libkleo, libksieve): Update
to 20.04.1.
[source](uri): Adjust to current.
(akonadi)[inputs]: Remove KDBUSADDONS and KDESIGNERPLUGIN.
(akonadi-calendar)[inputs]: Remove KDBUSADDONS.
(kdepim-runtime)[source](patches): Remove.
[arguments]: Add phase 'extend-CPLUS_INCLUDE_PATH'.
[inputs]: Remove KDBUSADDONS and KICONTHEMES.
(kmessagelib)[arguments]: Add phase 'extend-CPLUS_INCLUDE_PATH.
[inputs]: Add QCA.
(kdepim-apps-libs)[inputs]: Remove KDBUSADDONS and KICONTHEMES.
(knotes)[inputs]: Remove KDBUSADDONS.
(kpimcommon)[inputs]: Remove KDBUSADDONS and KCOMPLETION.
(libksieve)[arguments]: Disable one more test.
(korganizer)[arguments]: Disable one test.
2020-06-06 14:06:58 +00:00
|
|
|
(uri (string-append "mirror://kde/stable/release-service/" version
|
2020-01-22 12:03:13 +00:00
|
|
|
"/src/eventviews-" version ".tar.xz"))
|
|
|
|
(sha256
|
2023-07-30 02:32:00 +00:00
|
|
|
(base32 "1nh8a7jy0sjsyi41pxhxwjkq6fr4yy9rqgcjjbj01dnx1ykz3d7l"))))
|
2020-01-22 12:03:13 +00:00
|
|
|
(properties `((upstream-name . "eventviews")))
|
|
|
|
(build-system qt-build-system)
|
|
|
|
(native-inputs
|
2022-07-19 20:52:05 +00:00
|
|
|
(list extra-cmake-modules qttools-5))
|
2020-01-22 12:03:13 +00:00
|
|
|
(inputs
|
2021-12-13 16:18:24 +00:00
|
|
|
(list akonadi
|
|
|
|
akonadi-calendar
|
|
|
|
akonadi-contacts
|
|
|
|
boost
|
|
|
|
kcalendarcore
|
|
|
|
kcalendarsupport
|
|
|
|
kcalutils
|
|
|
|
kcodecs
|
|
|
|
kcompletion
|
|
|
|
kconfigwidgets
|
|
|
|
kcontacts
|
|
|
|
kdbusaddons
|
|
|
|
kdiagram
|
|
|
|
kguiaddons
|
|
|
|
kholidays
|
|
|
|
ki18n
|
|
|
|
kiconthemes
|
|
|
|
kidentitymanagement
|
|
|
|
kio
|
|
|
|
kitemmodels
|
|
|
|
kmime
|
|
|
|
kpimtextedit
|
|
|
|
kservice
|
|
|
|
ktextwidgets
|
|
|
|
kxmlgui
|
|
|
|
libkdepim
|
|
|
|
qtbase-5))
|
gnu: KDE: Fix old cgit home-pages.
Fix all home-pages pointing to git-repos a cgit.kde.org, which is
gone, to now use the correct repo at invent.kde.org.
* gnu/packages/kde.scm (grantleetheme, kdiagram): Update home-page.
* gnu/packages/kde-frameworks.scm (kholidays): Likewise.
* gnu/packages/kde-internet.scm (libgravatar, libktorrent): Likewise.
* gnu/packages/kde-multimedia.scm (libkcddb, libkcompactdisc): Likewise.
* gnu/packages/kde-pim.scm (kblog, kdav, kdepim-apps-libs,
kdepim-runtime, keventviews, kincidenceeditor, kmailcommon,
kmailimporter, kmessagelib, kpimcommon, ksmtp, libkdepim, libkgapi,
libkleo, libksieve): Likewise.
* gnu/packages/kde-plasma.scm (kdecoration, kscreenlocker): Likewise.
2020-12-12 17:22:37 +00:00
|
|
|
(home-page "https://invent.kde.org/pim/eventviews")
|
2020-01-22 12:03:13 +00:00
|
|
|
(synopsis "KDE PIM library for creating events")
|
|
|
|
(description "This library provides an event creator for KDE PIM.")
|
|
|
|
(license ;; GPL for programs, LGPL for libraries
|
|
|
|
(list license:gpl2+ license:lgpl2.0+))))
|
|
|
|
|
2019-12-03 22:42:10 +00:00
|
|
|
(define-public kgpg
|
|
|
|
(package
|
|
|
|
(name "kgpg")
|
2023-07-30 02:32:00 +00:00
|
|
|
(version "23.04.3")
|
2019-12-03 22:42:10 +00:00
|
|
|
(source
|
|
|
|
(origin
|
|
|
|
(method url-fetch)
|
gnu: KDE: Update to 20.04.1.
* gnu/packages/patches/akonadi-paths.patch: Adjust for upstream changes.
* gnu/packages/patches/kdepim-runtime-Fix-missing-link-libraries.patch: Delete file.
* gnu/local.mk (dist_patch_DATA): Adjust accordingly.
* gnu/packages/kde-internet.scm (kget, kopete, krdc, libgravatar): Update to
20.04.1.
[source](uri): Adjust for new upstream location.
* gnu/packages/kde-multimedia.scm (audiocd-kio, dragon, ffmpegthumbs, juk,
k3b, kamoso, kmix, kwave, libkcddb, libkcompactdisc): Likewise.
* gnu/packages/kde-systemtools.scm (dolphin, dolphin-plugins, khelpcenter,
konsole, krfb, ksystemlog): Update to 20.04.1.
[source](uri): Adjust for new upstream location.
* gnu/packages/kde-utils.scm (kate, kmag, kmousetool, kmouth, sweeper): Update
to 20.04.1.
[source](uri): Adjust for new upstream location.
* gnu/packages/kde.scm (baloo-widgets, libkomparediff2, kqtquickcharts,
grantleetheme, kcachegrind, libkdegames, zeroconf-ioslave): Update to 20.04.1.
[source](uri): Adjust for new upstream location.
(grantleetheme)[inputs]: Add KGUIADDONS.
* gnu/packages/kde-pim.scm (akonadi, akonadi-calendar, akonadi-contacts,
akonadi-mime, akonadi-notes, akonadi-search, kincidenceeditor, kaddressbook,
kalarmcal, kblog, kcalendarsupport, kcalutils, kdav, kdepim-apps-libs,
kdepim-runtime, keventviews, kgpg, kidentitymanagement, kimap, kldap,
kleopatra, kmail, kmailcommon, kmailimporter, kmailtransport, kmbox,
kmessagelib, kmime, knotes, kontactinterface, korganizer, kpimcommon,
kpimtextedit, ksmtp, ktnef, libkdepim, libkgapi, libkleo, libksieve): Update
to 20.04.1.
[source](uri): Adjust to current.
(akonadi)[inputs]: Remove KDBUSADDONS and KDESIGNERPLUGIN.
(akonadi-calendar)[inputs]: Remove KDBUSADDONS.
(kdepim-runtime)[source](patches): Remove.
[arguments]: Add phase 'extend-CPLUS_INCLUDE_PATH'.
[inputs]: Remove KDBUSADDONS and KICONTHEMES.
(kmessagelib)[arguments]: Add phase 'extend-CPLUS_INCLUDE_PATH.
[inputs]: Add QCA.
(kdepim-apps-libs)[inputs]: Remove KDBUSADDONS and KICONTHEMES.
(knotes)[inputs]: Remove KDBUSADDONS.
(kpimcommon)[inputs]: Remove KDBUSADDONS and KCOMPLETION.
(libksieve)[arguments]: Disable one more test.
(korganizer)[arguments]: Disable one test.
2020-06-06 14:06:58 +00:00
|
|
|
(uri (string-append "mirror://kde/stable/release-service/" version
|
2019-12-03 22:42:10 +00:00
|
|
|
"/src/kgpg-" version ".tar.xz"))
|
|
|
|
(sha256
|
2023-07-30 02:32:00 +00:00
|
|
|
(base32 "1ihxw1s4sq7cp5pm6rddcmvqk0v5gfg4v38b6yg8hyjg655x63jz"))))
|
2019-12-03 22:42:10 +00:00
|
|
|
(build-system qt-build-system)
|
gnu: KDE PIM: Update all packages to 21.12.3.
* gnu/packages/kde-pim.scm (KDE PIM): Update to 21.12.3.
(akonadi, akonadi-calendar, akonadi-contacts, akonadi-mime,
akonadi-notes, akonadi-search, kaddressbook, kalarmcal,
kcalendarsupport, kcalutils, kdepim-runtime, keventviews, kgpg,
kidentitymanagement, kimap, kincidenceeditor, kldap, kleopatra, kmail,
kmailcommon, kmailimporter, kmailtransport, kmbox, kmessagelib, kmime,
knotes, kontactinterface, korganizer, kpeoplevcard, kpimcommon,
kpimtextedit, ksmtp, ktnef, libgravatar, libkdepim, libkgapi, libkleo,
libksieve): Update to 21.12.3.
(kblog): Update to 20.04.3.
* gnu/packages/patches/akonadi-not-relocatable.patch
* gnu/packages/patches/akonadi-paths.patch
* gnu/packages/patches/akonadi-timestamps.patch
Fix patches to apply to latest code.
(akonadi-calendar): [inputs]: Add new dependencies.
(akonadi-contacts): [inputs]: Add new dependencies.
(akonadi-search): [arguments]: Disable failing tests.
(kcalendarsupport): [inputs]: Add new dependency, remove obsolete kdepim-apps-lib.
(libksieve): [arguments]: Enable test that works now.
* gnu/packages/patches/libksieve-Fix-missing-link-libraries.patch: Fix patch.
(kaddressbook): [inputs]: Remove obsolete kdepim-apps-libs.
Move kdocstools to native-inputs.
(kmessagelib): [inputs]: Remove obsolete kdepim-appslibs, add kguiaddons.
[arguments]: Fix findind header file.
(kmailimporter): [inputs]: Add new dependencies.
(kmailtransport): [inputs]: Add qtkeychain.
(knotes): [inputs]: Move kdocstools to native-inputs.
(kincidenceeditor): [inputs]: Add new dependencies. Remove obsolete kdepim-apps-libs
[arguments]: Disable failing test.
(kldap): [inputs]: Add qtkeychain.
(kgpg)[arguments]: Disable failing tests.
(libkleo): [propagated-inputs]: Propagate gpgme, qgpgme.
[arguments]: Disable failing tests.
(kdepim-runtime): [inputs]: Add new dependencies grantlee, grantleetheme, kcmutils, kldap,
libkdepim, qtkeychain
[arguments]: Enable all the tests that pass.
We need to use the old hack instead of search-input-directory to
workaround a mysterious include error.
(kdepim-apps-lib): Remove obsolete package.
(kmail): [origin]: Remove patch. Don't think it is needed anymore.
[inputs]: Add new dependencies, delete obsolete kdepim-apps-libs and
duplicate kmime.
[arguments]: Disable failing tests.
* gnu/packages/patches/kmail-Fix-missing-link-libraries.patch: Delete file.
* gnu/local.mk: Remove reference to patch.
(kmailcommon): [inputs]: Add new dependencies.
Signed-off-by: Marius Bakke <marius@gnu.org>
2022-02-02 09:08:23 +00:00
|
|
|
(arguments
|
2023-07-30 02:32:00 +00:00
|
|
|
(list #:phases
|
|
|
|
#~(modify-phases %standard-phases
|
|
|
|
(replace 'check
|
|
|
|
(lambda* (#:key tests? #:allow-other-keys)
|
|
|
|
(when tests?
|
|
|
|
(setenv "HOME" (getcwd))
|
2023-08-18 11:44:36 +00:00
|
|
|
(invoke "ctest")))))
|
|
|
|
;; XXX: Tests could fail randomly with:
|
|
|
|
;; gpg: can't connect to the agent: IPC connect call failed
|
|
|
|
;; gpg process did not finish. Cannot generate a new key pair.
|
|
|
|
#:tests? #f))
|
2019-12-03 22:42:10 +00:00
|
|
|
(native-inputs
|
2023-07-30 02:32:00 +00:00
|
|
|
(list extra-cmake-modules
|
|
|
|
gnupg ;; TODO: Remove after gpgme uses fixed path
|
|
|
|
kdoctools
|
|
|
|
pkg-config))
|
2019-12-03 22:42:10 +00:00
|
|
|
(inputs
|
2021-12-13 16:18:24 +00:00
|
|
|
(list akonadi
|
|
|
|
akonadi-contacts
|
|
|
|
boost
|
|
|
|
gpgme
|
gnu: KDE PIM: Update all packages to 21.12.3.
* gnu/packages/kde-pim.scm (KDE PIM): Update to 21.12.3.
(akonadi, akonadi-calendar, akonadi-contacts, akonadi-mime,
akonadi-notes, akonadi-search, kaddressbook, kalarmcal,
kcalendarsupport, kcalutils, kdepim-runtime, keventviews, kgpg,
kidentitymanagement, kimap, kincidenceeditor, kldap, kleopatra, kmail,
kmailcommon, kmailimporter, kmailtransport, kmbox, kmessagelib, kmime,
knotes, kontactinterface, korganizer, kpeoplevcard, kpimcommon,
kpimtextedit, ksmtp, ktnef, libgravatar, libkdepim, libkgapi, libkleo,
libksieve): Update to 21.12.3.
(kblog): Update to 20.04.3.
* gnu/packages/patches/akonadi-not-relocatable.patch
* gnu/packages/patches/akonadi-paths.patch
* gnu/packages/patches/akonadi-timestamps.patch
Fix patches to apply to latest code.
(akonadi-calendar): [inputs]: Add new dependencies.
(akonadi-contacts): [inputs]: Add new dependencies.
(akonadi-search): [arguments]: Disable failing tests.
(kcalendarsupport): [inputs]: Add new dependency, remove obsolete kdepim-apps-lib.
(libksieve): [arguments]: Enable test that works now.
* gnu/packages/patches/libksieve-Fix-missing-link-libraries.patch: Fix patch.
(kaddressbook): [inputs]: Remove obsolete kdepim-apps-libs.
Move kdocstools to native-inputs.
(kmessagelib): [inputs]: Remove obsolete kdepim-appslibs, add kguiaddons.
[arguments]: Fix findind header file.
(kmailimporter): [inputs]: Add new dependencies.
(kmailtransport): [inputs]: Add qtkeychain.
(knotes): [inputs]: Move kdocstools to native-inputs.
(kincidenceeditor): [inputs]: Add new dependencies. Remove obsolete kdepim-apps-libs
[arguments]: Disable failing test.
(kldap): [inputs]: Add qtkeychain.
(kgpg)[arguments]: Disable failing tests.
(libkleo): [propagated-inputs]: Propagate gpgme, qgpgme.
[arguments]: Disable failing tests.
(kdepim-runtime): [inputs]: Add new dependencies grantlee, grantleetheme, kcmutils, kldap,
libkdepim, qtkeychain
[arguments]: Enable all the tests that pass.
We need to use the old hack instead of search-input-directory to
workaround a mysterious include error.
(kdepim-apps-lib): Remove obsolete package.
(kmail): [origin]: Remove patch. Don't think it is needed anymore.
[inputs]: Add new dependencies, delete obsolete kdepim-apps-libs and
duplicate kmime.
[arguments]: Disable failing tests.
* gnu/packages/patches/kmail-Fix-missing-link-libraries.patch: Delete file.
* gnu/local.mk: Remove reference to patch.
(kmailcommon): [inputs]: Add new dependencies.
Signed-off-by: Marius Bakke <marius@gnu.org>
2022-02-02 09:08:23 +00:00
|
|
|
grantlee
|
|
|
|
grantleetheme
|
2021-12-13 16:18:24 +00:00
|
|
|
karchive
|
|
|
|
kcodecs
|
|
|
|
kcontacts
|
|
|
|
kcoreaddons
|
|
|
|
kcrash
|
|
|
|
kdbusaddons
|
|
|
|
ki18n
|
|
|
|
kiconthemes
|
|
|
|
kio
|
|
|
|
kitemmodels
|
|
|
|
kjobwidgets
|
|
|
|
knotifications
|
|
|
|
kservice
|
|
|
|
ktextwidgets
|
|
|
|
kwidgetsaddons
|
|
|
|
kwindowsystem
|
|
|
|
kxmlgui
|
2022-02-15 11:21:15 +00:00
|
|
|
breeze-icons ;; default icon set
|
2021-12-13 16:18:24 +00:00
|
|
|
qtbase-5))
|
gnu: KDE PIM: Update home-pages.
* gnu/packages/kde-pim.scm (akonadi, kaddressbook, kcalutils, kgpg, kimap,
kldap, kleopatra, kmail, kmailtransport, kmbox, kmime, knotes,
kontactinterface, korganizer, kpimtextedit, ktnef): [home-page]: Update the
link.
Signed-off-by: Marius Bakke <marius@gnu.org>
2022-07-26 06:48:48 +00:00
|
|
|
(home-page "https://apps.kde.org/kgpg/")
|
2019-12-03 22:42:10 +00:00
|
|
|
(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+)))
|
|
|
|
|
2022-10-03 15:09:31 +00:00
|
|
|
(define-public khealthcertificate
|
|
|
|
(package
|
|
|
|
(name "khealthcertificate")
|
2023-07-30 02:32:00 +00:00
|
|
|
(version "23.01.0")
|
2022-10-03 15:09:31 +00:00
|
|
|
(source (origin
|
|
|
|
(method url-fetch)
|
2023-07-30 02:32:00 +00:00
|
|
|
(uri (string-append "mirror://kde/stable/plasma-mobile/" version
|
2022-10-03 15:09:31 +00:00
|
|
|
"/khealthcertificate-" version ".tar.xz"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
2023-07-30 02:32:00 +00:00
|
|
|
"193agd3jg029vcq1h5hdg3gw6zgqcmszl6ffcrid0ajbbiic4pbm"))))
|
2022-10-03 15:09:31 +00:00
|
|
|
(build-system qt-build-system)
|
|
|
|
(arguments
|
2023-07-30 02:32:00 +00:00
|
|
|
(list #:phases
|
|
|
|
#~(modify-phases %standard-phases
|
|
|
|
(replace 'check
|
|
|
|
(lambda* (#:key inputs tests? #:allow-other-keys)
|
|
|
|
(when tests?
|
|
|
|
(setenv "TZDIR"
|
|
|
|
(search-input-directory inputs "share/zoneinfo"))
|
|
|
|
(invoke "ctest" "-E"
|
|
|
|
"(icaovdsparsertest|eudgcparsertest)")))))))
|
|
|
|
(native-inputs (list extra-cmake-modules pkg-config tzdata-for-tests))
|
2022-10-03 15:09:31 +00:00
|
|
|
(inputs (list karchive
|
|
|
|
kcodecs
|
|
|
|
ki18n
|
|
|
|
openssl
|
|
|
|
qtdeclarative-5
|
|
|
|
zlib))
|
|
|
|
(home-page "https://api.kde.org/khealthcertificate/html/index.html")
|
|
|
|
(synopsis "Digital vaccination and recovery certificate library")
|
|
|
|
(description
|
|
|
|
"This package provides a library for arsing of digital vaccination,
|
|
|
|
test and recovery certificates.")
|
|
|
|
(license license:lgpl2.0)))
|
|
|
|
|
2019-12-05 19:24:07 +00:00
|
|
|
(define-public kidentitymanagement
|
|
|
|
(package
|
|
|
|
(name "kidentitymanagement")
|
2023-07-30 02:32:00 +00:00
|
|
|
(version "23.04.3")
|
2019-12-05 19:24:07 +00:00
|
|
|
(source
|
|
|
|
(origin
|
|
|
|
(method url-fetch)
|
gnu: KDE: Update to 20.04.1.
* gnu/packages/patches/akonadi-paths.patch: Adjust for upstream changes.
* gnu/packages/patches/kdepim-runtime-Fix-missing-link-libraries.patch: Delete file.
* gnu/local.mk (dist_patch_DATA): Adjust accordingly.
* gnu/packages/kde-internet.scm (kget, kopete, krdc, libgravatar): Update to
20.04.1.
[source](uri): Adjust for new upstream location.
* gnu/packages/kde-multimedia.scm (audiocd-kio, dragon, ffmpegthumbs, juk,
k3b, kamoso, kmix, kwave, libkcddb, libkcompactdisc): Likewise.
* gnu/packages/kde-systemtools.scm (dolphin, dolphin-plugins, khelpcenter,
konsole, krfb, ksystemlog): Update to 20.04.1.
[source](uri): Adjust for new upstream location.
* gnu/packages/kde-utils.scm (kate, kmag, kmousetool, kmouth, sweeper): Update
to 20.04.1.
[source](uri): Adjust for new upstream location.
* gnu/packages/kde.scm (baloo-widgets, libkomparediff2, kqtquickcharts,
grantleetheme, kcachegrind, libkdegames, zeroconf-ioslave): Update to 20.04.1.
[source](uri): Adjust for new upstream location.
(grantleetheme)[inputs]: Add KGUIADDONS.
* gnu/packages/kde-pim.scm (akonadi, akonadi-calendar, akonadi-contacts,
akonadi-mime, akonadi-notes, akonadi-search, kincidenceeditor, kaddressbook,
kalarmcal, kblog, kcalendarsupport, kcalutils, kdav, kdepim-apps-libs,
kdepim-runtime, keventviews, kgpg, kidentitymanagement, kimap, kldap,
kleopatra, kmail, kmailcommon, kmailimporter, kmailtransport, kmbox,
kmessagelib, kmime, knotes, kontactinterface, korganizer, kpimcommon,
kpimtextedit, ksmtp, ktnef, libkdepim, libkgapi, libkleo, libksieve): Update
to 20.04.1.
[source](uri): Adjust to current.
(akonadi)[inputs]: Remove KDBUSADDONS and KDESIGNERPLUGIN.
(akonadi-calendar)[inputs]: Remove KDBUSADDONS.
(kdepim-runtime)[source](patches): Remove.
[arguments]: Add phase 'extend-CPLUS_INCLUDE_PATH'.
[inputs]: Remove KDBUSADDONS and KICONTHEMES.
(kmessagelib)[arguments]: Add phase 'extend-CPLUS_INCLUDE_PATH.
[inputs]: Add QCA.
(kdepim-apps-libs)[inputs]: Remove KDBUSADDONS and KICONTHEMES.
(knotes)[inputs]: Remove KDBUSADDONS.
(kpimcommon)[inputs]: Remove KDBUSADDONS and KCOMPLETION.
(libksieve)[arguments]: Disable one more test.
(korganizer)[arguments]: Disable one test.
2020-06-06 14:06:58 +00:00
|
|
|
(uri (string-append "mirror://kde/stable/release-service/" version
|
2019-12-05 19:24:07 +00:00
|
|
|
"/src/kidentitymanagement-" version ".tar.xz"))
|
|
|
|
(sha256
|
2023-07-30 02:32:00 +00:00
|
|
|
(base32 "03bfz0x35wiynla39iysxa5g3rckmy9nj2z1f439v9sblcqbvz3p"))))
|
2019-12-05 19:24:07 +00:00
|
|
|
(build-system qt-build-system)
|
|
|
|
(native-inputs
|
2021-12-13 16:18:24 +00:00
|
|
|
(list extra-cmake-modules))
|
2019-12-05 19:24:07 +00:00
|
|
|
(inputs
|
2021-12-13 16:18:24 +00:00
|
|
|
(list kcodecs
|
|
|
|
kcompletion
|
|
|
|
kconfig
|
|
|
|
kcoreaddons
|
|
|
|
kemoticons
|
|
|
|
kiconthemes
|
|
|
|
kio
|
|
|
|
kpimtextedit
|
|
|
|
ktextwidgets
|
|
|
|
kxmlgui
|
|
|
|
qtbase-5))
|
2019-12-05 19:24:07 +00:00
|
|
|
(arguments
|
|
|
|
`(#:phases
|
|
|
|
(modify-phases %standard-phases
|
|
|
|
(add-before 'check 'set-home
|
|
|
|
(lambda _
|
gnu: KDE-PIM: Remove trailing booleans.
* gnu/packages/kde-pim.scm (akonadi, akonadi-mime, akonadi-search,
kincidenceeditor, kdepim-runtime, kidentitymanagement, kleopatra, kmail,
kmime, korganizer, kpeoplevcard, ksmtp, libkleo,
libksieve)[arguments]: Remove trailing booleans.
Signed-off-by: Marius Bakke <marius@gnu.org>
2022-07-21 06:33:36 +00:00
|
|
|
(setenv "HOME" "/tmp/dummy-home")))))) ;; FIXME: what is this?
|
2019-12-05 19:24:07 +00:00
|
|
|
(home-page "https://kontact.kde.org/")
|
|
|
|
(synopsis "Library for shared identities between mail applications")
|
gnu: Reword and extend descriptions for some KDE packages.
* gnu/packages/kde-multimedia.scm (libkcompatdisc)[description]: Extend.
* gnu/packages/kde-pim.scm (akonadi-search, kalarmcal, kdemailimporter,
kdepim-apps-libs, kidentitymanagement, kldap, kmailtransport, kmbox, kmime,
kontactinterface, kpimtextedit)[description]: Reword and extend.
(ktnef, kpimcommon, libkdepim)[synopsis, description]: Reword and extend.
(kmailtransport)[synopsis]: Fix space.
* gnu/packages/kde-systemtools.scm (khelpcenter)[description]: Extend.
2020-03-01 16:13:49 +00:00
|
|
|
(description "This library provides an API for managing user identities.")
|
2019-12-05 19:24:07 +00:00
|
|
|
(license ;; GPL for programs, LGPL for libraries, FDL for documentation
|
|
|
|
(list license:gpl2+ license:lgpl2.0+ license:fdl1.2+))))
|
|
|
|
|
2019-12-05 21:52:57 +00:00
|
|
|
(define-public kimap
|
|
|
|
(package
|
|
|
|
(name "kimap")
|
2023-07-30 02:32:00 +00:00
|
|
|
(version "23.04.3")
|
2019-12-05 21:52:57 +00:00
|
|
|
(source
|
|
|
|
(origin
|
|
|
|
(method url-fetch)
|
gnu: KDE: Update to 20.04.1.
* gnu/packages/patches/akonadi-paths.patch: Adjust for upstream changes.
* gnu/packages/patches/kdepim-runtime-Fix-missing-link-libraries.patch: Delete file.
* gnu/local.mk (dist_patch_DATA): Adjust accordingly.
* gnu/packages/kde-internet.scm (kget, kopete, krdc, libgravatar): Update to
20.04.1.
[source](uri): Adjust for new upstream location.
* gnu/packages/kde-multimedia.scm (audiocd-kio, dragon, ffmpegthumbs, juk,
k3b, kamoso, kmix, kwave, libkcddb, libkcompactdisc): Likewise.
* gnu/packages/kde-systemtools.scm (dolphin, dolphin-plugins, khelpcenter,
konsole, krfb, ksystemlog): Update to 20.04.1.
[source](uri): Adjust for new upstream location.
* gnu/packages/kde-utils.scm (kate, kmag, kmousetool, kmouth, sweeper): Update
to 20.04.1.
[source](uri): Adjust for new upstream location.
* gnu/packages/kde.scm (baloo-widgets, libkomparediff2, kqtquickcharts,
grantleetheme, kcachegrind, libkdegames, zeroconf-ioslave): Update to 20.04.1.
[source](uri): Adjust for new upstream location.
(grantleetheme)[inputs]: Add KGUIADDONS.
* gnu/packages/kde-pim.scm (akonadi, akonadi-calendar, akonadi-contacts,
akonadi-mime, akonadi-notes, akonadi-search, kincidenceeditor, kaddressbook,
kalarmcal, kblog, kcalendarsupport, kcalutils, kdav, kdepim-apps-libs,
kdepim-runtime, keventviews, kgpg, kidentitymanagement, kimap, kldap,
kleopatra, kmail, kmailcommon, kmailimporter, kmailtransport, kmbox,
kmessagelib, kmime, knotes, kontactinterface, korganizer, kpimcommon,
kpimtextedit, ksmtp, ktnef, libkdepim, libkgapi, libkleo, libksieve): Update
to 20.04.1.
[source](uri): Adjust to current.
(akonadi)[inputs]: Remove KDBUSADDONS and KDESIGNERPLUGIN.
(akonadi-calendar)[inputs]: Remove KDBUSADDONS.
(kdepim-runtime)[source](patches): Remove.
[arguments]: Add phase 'extend-CPLUS_INCLUDE_PATH'.
[inputs]: Remove KDBUSADDONS and KICONTHEMES.
(kmessagelib)[arguments]: Add phase 'extend-CPLUS_INCLUDE_PATH.
[inputs]: Add QCA.
(kdepim-apps-libs)[inputs]: Remove KDBUSADDONS and KICONTHEMES.
(knotes)[inputs]: Remove KDBUSADDONS.
(kpimcommon)[inputs]: Remove KDBUSADDONS and KCOMPLETION.
(libksieve)[arguments]: Disable one more test.
(korganizer)[arguments]: Disable one test.
2020-06-06 14:06:58 +00:00
|
|
|
(uri (string-append "mirror://kde/stable/release-service/" version
|
2019-12-05 21:52:57 +00:00
|
|
|
"/src/kimap-" version ".tar.xz"))
|
|
|
|
(sha256
|
2023-07-30 02:32:00 +00:00
|
|
|
(base32 "08s2891f2cnf5f7q034lmqv3vnh3v61l7bsyssdx711jfbswg9ik"))))
|
2019-12-05 21:52:57 +00:00
|
|
|
(build-system qt-build-system)
|
|
|
|
(native-inputs
|
2021-12-13 16:18:24 +00:00
|
|
|
(list extra-cmake-modules))
|
2019-12-05 21:52:57 +00:00
|
|
|
(inputs
|
2021-12-13 16:18:24 +00:00
|
|
|
(list cyrus-sasl
|
|
|
|
kcoreaddons
|
|
|
|
ki18n
|
|
|
|
kio
|
|
|
|
kmime
|
|
|
|
qtbase-5))
|
gnu: KDE PIM: Update home-pages.
* gnu/packages/kde-pim.scm (akonadi, kaddressbook, kcalutils, kgpg, kimap,
kldap, kleopatra, kmail, kmailtransport, kmbox, kmime, knotes,
kontactinterface, korganizer, kpimtextedit, ktnef): [home-page]: Update the
link.
Signed-off-by: Marius Bakke <marius@gnu.org>
2022-07-26 06:48:48 +00:00
|
|
|
(home-page "https://api.kde.org/kdepim/kimap/html/index.html")
|
2019-12-05 21:52:57 +00:00
|
|
|
(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+))))
|
|
|
|
|
2022-08-09 22:39:14 +00:00
|
|
|
(define-public kitinerary
|
|
|
|
(package
|
|
|
|
(name "kitinerary")
|
2023-07-30 04:56:14 +00:00
|
|
|
(version "23.04.3")
|
2022-08-09 22:39:14 +00:00
|
|
|
(source (origin
|
|
|
|
(method url-fetch)
|
2023-07-30 04:56:14 +00:00
|
|
|
(uri (string-append "mirror://kde/stable/release-service/"
|
|
|
|
version "/src/kitinerary-" version ".tar.xz"))
|
2022-08-09 22:39:14 +00:00
|
|
|
(sha256
|
|
|
|
(base32
|
2023-07-30 04:56:14 +00:00
|
|
|
"0fcqix7hgmv7qcfxzmqy61kg7dqi5zas5vqfs7pfycgcxma0g869"))))
|
2022-08-09 22:39:14 +00:00
|
|
|
(build-system qt-build-system)
|
|
|
|
(arguments
|
|
|
|
(list #:phases #~(modify-phases %standard-phases
|
|
|
|
(replace 'check
|
|
|
|
(lambda* (#:key tests? #:allow-other-keys)
|
|
|
|
(when tests?
|
|
|
|
(invoke "dbus-launch" "ctest" "-E"
|
|
|
|
"(jsonlddocumenttest|mergeutiltest|locationutiltest|knowledgedbtest|airportdbtest|extractorscriptenginetest|pkpassextractortest|postprocessortest|calendarhandlertest|extractortest)")))))))
|
|
|
|
(native-inputs (list dbus extra-cmake-modules))
|
|
|
|
(inputs (list kpkpass
|
|
|
|
kcalendarcore
|
|
|
|
karchive
|
|
|
|
ki18n
|
|
|
|
kcoreaddons
|
|
|
|
kcontacts
|
|
|
|
kmime
|
|
|
|
knotifications
|
|
|
|
shared-mime-info
|
|
|
|
openssl
|
|
|
|
poppler
|
|
|
|
qtbase-5
|
|
|
|
qtdeclarative-5
|
|
|
|
qtlocation
|
|
|
|
qtquickcontrols2-5
|
|
|
|
libxml2
|
2023-07-30 04:56:14 +00:00
|
|
|
zlib
|
|
|
|
zxing-cpp))
|
2022-08-09 22:39:14 +00:00
|
|
|
(home-page "https://apps.kde.org/itinerary/")
|
|
|
|
(synopsis
|
|
|
|
"Data Model and Extraction System for Travel Reservation information")
|
|
|
|
(description "This package provides a library containing itinerary data
|
|
|
|
model and itinerary extraction code.")
|
|
|
|
(license license:lgpl2.0)))
|
|
|
|
|
2019-12-05 21:53:44 +00:00
|
|
|
(define-public kldap
|
|
|
|
(package
|
|
|
|
(name "kldap")
|
2023-07-30 02:32:00 +00:00
|
|
|
(version "23.04.3")
|
2019-12-05 21:53:44 +00:00
|
|
|
(source
|
|
|
|
(origin
|
|
|
|
(method url-fetch)
|
gnu: KDE: Update to 20.04.1.
* gnu/packages/patches/akonadi-paths.patch: Adjust for upstream changes.
* gnu/packages/patches/kdepim-runtime-Fix-missing-link-libraries.patch: Delete file.
* gnu/local.mk (dist_patch_DATA): Adjust accordingly.
* gnu/packages/kde-internet.scm (kget, kopete, krdc, libgravatar): Update to
20.04.1.
[source](uri): Adjust for new upstream location.
* gnu/packages/kde-multimedia.scm (audiocd-kio, dragon, ffmpegthumbs, juk,
k3b, kamoso, kmix, kwave, libkcddb, libkcompactdisc): Likewise.
* gnu/packages/kde-systemtools.scm (dolphin, dolphin-plugins, khelpcenter,
konsole, krfb, ksystemlog): Update to 20.04.1.
[source](uri): Adjust for new upstream location.
* gnu/packages/kde-utils.scm (kate, kmag, kmousetool, kmouth, sweeper): Update
to 20.04.1.
[source](uri): Adjust for new upstream location.
* gnu/packages/kde.scm (baloo-widgets, libkomparediff2, kqtquickcharts,
grantleetheme, kcachegrind, libkdegames, zeroconf-ioslave): Update to 20.04.1.
[source](uri): Adjust for new upstream location.
(grantleetheme)[inputs]: Add KGUIADDONS.
* gnu/packages/kde-pim.scm (akonadi, akonadi-calendar, akonadi-contacts,
akonadi-mime, akonadi-notes, akonadi-search, kincidenceeditor, kaddressbook,
kalarmcal, kblog, kcalendarsupport, kcalutils, kdav, kdepim-apps-libs,
kdepim-runtime, keventviews, kgpg, kidentitymanagement, kimap, kldap,
kleopatra, kmail, kmailcommon, kmailimporter, kmailtransport, kmbox,
kmessagelib, kmime, knotes, kontactinterface, korganizer, kpimcommon,
kpimtextedit, ksmtp, ktnef, libkdepim, libkgapi, libkleo, libksieve): Update
to 20.04.1.
[source](uri): Adjust to current.
(akonadi)[inputs]: Remove KDBUSADDONS and KDESIGNERPLUGIN.
(akonadi-calendar)[inputs]: Remove KDBUSADDONS.
(kdepim-runtime)[source](patches): Remove.
[arguments]: Add phase 'extend-CPLUS_INCLUDE_PATH'.
[inputs]: Remove KDBUSADDONS and KICONTHEMES.
(kmessagelib)[arguments]: Add phase 'extend-CPLUS_INCLUDE_PATH.
[inputs]: Add QCA.
(kdepim-apps-libs)[inputs]: Remove KDBUSADDONS and KICONTHEMES.
(knotes)[inputs]: Remove KDBUSADDONS.
(kpimcommon)[inputs]: Remove KDBUSADDONS and KCOMPLETION.
(libksieve)[arguments]: Disable one more test.
(korganizer)[arguments]: Disable one test.
2020-06-06 14:06:58 +00:00
|
|
|
(uri (string-append "mirror://kde/stable/release-service/" version
|
2019-12-05 21:53:44 +00:00
|
|
|
"/src/kldap-" version ".tar.xz"))
|
|
|
|
(sha256
|
2023-07-30 02:32:00 +00:00
|
|
|
(base32 "0hp5j02kwh91xf0n6zqzgam7g50r54hzbkli5i7c0rxdb1g28ihm"))))
|
2019-12-05 21:53:44 +00:00
|
|
|
(build-system qt-build-system)
|
|
|
|
(native-inputs
|
2021-12-13 16:18:24 +00:00
|
|
|
(list extra-cmake-modules kdoctools))
|
2019-12-05 21:53:44 +00:00
|
|
|
(inputs
|
gnu: KDE PIM: Update all packages to 21.12.3.
* gnu/packages/kde-pim.scm (KDE PIM): Update to 21.12.3.
(akonadi, akonadi-calendar, akonadi-contacts, akonadi-mime,
akonadi-notes, akonadi-search, kaddressbook, kalarmcal,
kcalendarsupport, kcalutils, kdepim-runtime, keventviews, kgpg,
kidentitymanagement, kimap, kincidenceeditor, kldap, kleopatra, kmail,
kmailcommon, kmailimporter, kmailtransport, kmbox, kmessagelib, kmime,
knotes, kontactinterface, korganizer, kpeoplevcard, kpimcommon,
kpimtextedit, ksmtp, ktnef, libgravatar, libkdepim, libkgapi, libkleo,
libksieve): Update to 21.12.3.
(kblog): Update to 20.04.3.
* gnu/packages/patches/akonadi-not-relocatable.patch
* gnu/packages/patches/akonadi-paths.patch
* gnu/packages/patches/akonadi-timestamps.patch
Fix patches to apply to latest code.
(akonadi-calendar): [inputs]: Add new dependencies.
(akonadi-contacts): [inputs]: Add new dependencies.
(akonadi-search): [arguments]: Disable failing tests.
(kcalendarsupport): [inputs]: Add new dependency, remove obsolete kdepim-apps-lib.
(libksieve): [arguments]: Enable test that works now.
* gnu/packages/patches/libksieve-Fix-missing-link-libraries.patch: Fix patch.
(kaddressbook): [inputs]: Remove obsolete kdepim-apps-libs.
Move kdocstools to native-inputs.
(kmessagelib): [inputs]: Remove obsolete kdepim-appslibs, add kguiaddons.
[arguments]: Fix findind header file.
(kmailimporter): [inputs]: Add new dependencies.
(kmailtransport): [inputs]: Add qtkeychain.
(knotes): [inputs]: Move kdocstools to native-inputs.
(kincidenceeditor): [inputs]: Add new dependencies. Remove obsolete kdepim-apps-libs
[arguments]: Disable failing test.
(kldap): [inputs]: Add qtkeychain.
(kgpg)[arguments]: Disable failing tests.
(libkleo): [propagated-inputs]: Propagate gpgme, qgpgme.
[arguments]: Disable failing tests.
(kdepim-runtime): [inputs]: Add new dependencies grantlee, grantleetheme, kcmutils, kldap,
libkdepim, qtkeychain
[arguments]: Enable all the tests that pass.
We need to use the old hack instead of search-input-directory to
workaround a mysterious include error.
(kdepim-apps-lib): Remove obsolete package.
(kmail): [origin]: Remove patch. Don't think it is needed anymore.
[inputs]: Add new dependencies, delete obsolete kdepim-apps-libs and
duplicate kmime.
[arguments]: Disable failing tests.
* gnu/packages/patches/kmail-Fix-missing-link-libraries.patch: Delete file.
* gnu/local.mk: Remove reference to patch.
(kmailcommon): [inputs]: Add new dependencies.
Signed-off-by: Marius Bakke <marius@gnu.org>
2022-02-02 09:08:23 +00:00
|
|
|
(list ki18n kio kwidgetsaddons qtbase-5 qtkeychain))
|
2019-12-05 21:53:44 +00:00
|
|
|
(propagated-inputs
|
2021-12-13 16:18:24 +00:00
|
|
|
(list cyrus-sasl openldap))
|
gnu: KDE PIM: Update home-pages.
* gnu/packages/kde-pim.scm (akonadi, kaddressbook, kcalutils, kgpg, kimap,
kldap, kleopatra, kmail, kmailtransport, kmbox, kmime, knotes,
kontactinterface, korganizer, kpimtextedit, ktnef): [home-page]: Update the
link.
Signed-off-by: Marius Bakke <marius@gnu.org>
2022-07-26 06:48:48 +00:00
|
|
|
(home-page "https://api.kde.org/kdepim/kldap/html/index.html")
|
2019-12-05 21:53:44 +00:00
|
|
|
(synopsis "Library for accessing LDAP")
|
gnu: KDE PIM: Update all packages to 21.12.3.
* gnu/packages/kde-pim.scm (KDE PIM): Update to 21.12.3.
(akonadi, akonadi-calendar, akonadi-contacts, akonadi-mime,
akonadi-notes, akonadi-search, kaddressbook, kalarmcal,
kcalendarsupport, kcalutils, kdepim-runtime, keventviews, kgpg,
kidentitymanagement, kimap, kincidenceeditor, kldap, kleopatra, kmail,
kmailcommon, kmailimporter, kmailtransport, kmbox, kmessagelib, kmime,
knotes, kontactinterface, korganizer, kpeoplevcard, kpimcommon,
kpimtextedit, ksmtp, ktnef, libgravatar, libkdepim, libkgapi, libkleo,
libksieve): Update to 21.12.3.
(kblog): Update to 20.04.3.
* gnu/packages/patches/akonadi-not-relocatable.patch
* gnu/packages/patches/akonadi-paths.patch
* gnu/packages/patches/akonadi-timestamps.patch
Fix patches to apply to latest code.
(akonadi-calendar): [inputs]: Add new dependencies.
(akonadi-contacts): [inputs]: Add new dependencies.
(akonadi-search): [arguments]: Disable failing tests.
(kcalendarsupport): [inputs]: Add new dependency, remove obsolete kdepim-apps-lib.
(libksieve): [arguments]: Enable test that works now.
* gnu/packages/patches/libksieve-Fix-missing-link-libraries.patch: Fix patch.
(kaddressbook): [inputs]: Remove obsolete kdepim-apps-libs.
Move kdocstools to native-inputs.
(kmessagelib): [inputs]: Remove obsolete kdepim-appslibs, add kguiaddons.
[arguments]: Fix findind header file.
(kmailimporter): [inputs]: Add new dependencies.
(kmailtransport): [inputs]: Add qtkeychain.
(knotes): [inputs]: Move kdocstools to native-inputs.
(kincidenceeditor): [inputs]: Add new dependencies. Remove obsolete kdepim-apps-libs
[arguments]: Disable failing test.
(kldap): [inputs]: Add qtkeychain.
(kgpg)[arguments]: Disable failing tests.
(libkleo): [propagated-inputs]: Propagate gpgme, qgpgme.
[arguments]: Disable failing tests.
(kdepim-runtime): [inputs]: Add new dependencies grantlee, grantleetheme, kcmutils, kldap,
libkdepim, qtkeychain
[arguments]: Enable all the tests that pass.
We need to use the old hack instead of search-input-directory to
workaround a mysterious include error.
(kdepim-apps-lib): Remove obsolete package.
(kmail): [origin]: Remove patch. Don't think it is needed anymore.
[inputs]: Add new dependencies, delete obsolete kdepim-apps-libs and
duplicate kmime.
[arguments]: Disable failing tests.
* gnu/packages/patches/kmail-Fix-missing-link-libraries.patch: Delete file.
* gnu/local.mk: Remove reference to patch.
(kmailcommon): [inputs]: Add new dependencies.
Signed-off-by: Marius Bakke <marius@gnu.org>
2022-02-02 09:08:23 +00:00
|
|
|
(description "This is a library for accessing LDAP with a convenient Qt
|
gnu: Reword and extend descriptions for some KDE packages.
* gnu/packages/kde-multimedia.scm (libkcompatdisc)[description]: Extend.
* gnu/packages/kde-pim.scm (akonadi-search, kalarmcal, kdemailimporter,
kdepim-apps-libs, kidentitymanagement, kldap, kmailtransport, kmbox, kmime,
kontactinterface, kpimtextedit)[description]: Reword and extend.
(ktnef, kpimcommon, libkdepim)[synopsis, description]: Reword and extend.
(kmailtransport)[synopsis]: Fix space.
* gnu/packages/kde-systemtools.scm (khelpcenter)[description]: Extend.
2020-03-01 16:13:49 +00:00
|
|
|
style C++ API. LDAP (Lightweight Directory Access Protocol) is an application
|
2021-12-30 06:30:36 +00:00
|
|
|
protocol for querying and modifying directory services running over TCP/IP.")
|
2019-12-05 21:53:44 +00:00
|
|
|
(license license:lgpl2.0+)))
|
|
|
|
|
2020-01-18 20:09:03 +00:00
|
|
|
(define-public kleopatra
|
|
|
|
(package
|
|
|
|
(name "kleopatra")
|
2023-07-30 02:32:00 +00:00
|
|
|
(version "23.04.3")
|
2020-01-18 20:09:03 +00:00
|
|
|
(source
|
|
|
|
(origin
|
|
|
|
(method url-fetch)
|
gnu: KDE: Update to 20.04.1.
* gnu/packages/patches/akonadi-paths.patch: Adjust for upstream changes.
* gnu/packages/patches/kdepim-runtime-Fix-missing-link-libraries.patch: Delete file.
* gnu/local.mk (dist_patch_DATA): Adjust accordingly.
* gnu/packages/kde-internet.scm (kget, kopete, krdc, libgravatar): Update to
20.04.1.
[source](uri): Adjust for new upstream location.
* gnu/packages/kde-multimedia.scm (audiocd-kio, dragon, ffmpegthumbs, juk,
k3b, kamoso, kmix, kwave, libkcddb, libkcompactdisc): Likewise.
* gnu/packages/kde-systemtools.scm (dolphin, dolphin-plugins, khelpcenter,
konsole, krfb, ksystemlog): Update to 20.04.1.
[source](uri): Adjust for new upstream location.
* gnu/packages/kde-utils.scm (kate, kmag, kmousetool, kmouth, sweeper): Update
to 20.04.1.
[source](uri): Adjust for new upstream location.
* gnu/packages/kde.scm (baloo-widgets, libkomparediff2, kqtquickcharts,
grantleetheme, kcachegrind, libkdegames, zeroconf-ioslave): Update to 20.04.1.
[source](uri): Adjust for new upstream location.
(grantleetheme)[inputs]: Add KGUIADDONS.
* gnu/packages/kde-pim.scm (akonadi, akonadi-calendar, akonadi-contacts,
akonadi-mime, akonadi-notes, akonadi-search, kincidenceeditor, kaddressbook,
kalarmcal, kblog, kcalendarsupport, kcalutils, kdav, kdepim-apps-libs,
kdepim-runtime, keventviews, kgpg, kidentitymanagement, kimap, kldap,
kleopatra, kmail, kmailcommon, kmailimporter, kmailtransport, kmbox,
kmessagelib, kmime, knotes, kontactinterface, korganizer, kpimcommon,
kpimtextedit, ksmtp, ktnef, libkdepim, libkgapi, libkleo, libksieve): Update
to 20.04.1.
[source](uri): Adjust to current.
(akonadi)[inputs]: Remove KDBUSADDONS and KDESIGNERPLUGIN.
(akonadi-calendar)[inputs]: Remove KDBUSADDONS.
(kdepim-runtime)[source](patches): Remove.
[arguments]: Add phase 'extend-CPLUS_INCLUDE_PATH'.
[inputs]: Remove KDBUSADDONS and KICONTHEMES.
(kmessagelib)[arguments]: Add phase 'extend-CPLUS_INCLUDE_PATH.
[inputs]: Add QCA.
(kdepim-apps-libs)[inputs]: Remove KDBUSADDONS and KICONTHEMES.
(knotes)[inputs]: Remove KDBUSADDONS.
(kpimcommon)[inputs]: Remove KDBUSADDONS and KCOMPLETION.
(libksieve)[arguments]: Disable one more test.
(korganizer)[arguments]: Disable one test.
2020-06-06 14:06:58 +00:00
|
|
|
(uri (string-append "mirror://kde/stable/release-service/" version
|
2020-01-18 20:09:03 +00:00
|
|
|
"/src/kleopatra-" version ".tar.xz"))
|
|
|
|
(sha256
|
2023-07-30 02:32:00 +00:00
|
|
|
(base32 "0lcl20yihsa8dq0s24akp5z0290vh9nxjjjdwqk88nz8vmsr29i0"))))
|
2020-01-18 20:09:03 +00:00
|
|
|
(build-system qt-build-system)
|
|
|
|
(native-inputs
|
2021-12-13 16:18:24 +00:00
|
|
|
(list dbus extra-cmake-modules gnupg ;; TODO: Remove after gpgme uses fixed path
|
|
|
|
kdoctools))
|
2020-01-18 20:09:03 +00:00
|
|
|
(inputs
|
2021-12-13 16:18:24 +00:00
|
|
|
(list boost
|
2023-03-30 21:48:17 +00:00
|
|
|
gpgme
|
2021-12-13 16:18:24 +00:00
|
|
|
kcmutils
|
|
|
|
kcodecs
|
|
|
|
kconfig
|
|
|
|
kconfigwidgets
|
|
|
|
kcoreaddons
|
|
|
|
kcrash
|
|
|
|
kdbusaddons
|
|
|
|
ki18n
|
|
|
|
kiconthemes
|
|
|
|
kitemmodels
|
|
|
|
kmime
|
|
|
|
knotifications
|
|
|
|
ktextwidgets
|
|
|
|
kwidgetsaddons
|
|
|
|
kwindowsystem
|
|
|
|
kxmlgui
|
|
|
|
libassuan
|
|
|
|
libkleo
|
2022-02-15 11:21:15 +00:00
|
|
|
breeze-icons ;; default icon set
|
2023-03-30 21:48:17 +00:00
|
|
|
qgpgme
|
2021-12-13 16:18:24 +00:00
|
|
|
qtbase-5))
|
2020-01-18 20:09:03 +00:00
|
|
|
(arguments
|
|
|
|
`(#:phases
|
|
|
|
(modify-phases %standard-phases
|
|
|
|
(replace 'check
|
2021-09-13 08:06:33 +00:00
|
|
|
(lambda* (#:key tests? #:allow-other-keys)
|
|
|
|
(when tests?
|
gnu: KDE-PIM: Remove trailing booleans.
* gnu/packages/kde-pim.scm (akonadi, akonadi-mime, akonadi-search,
kincidenceeditor, kdepim-runtime, kidentitymanagement, kleopatra, kmail,
kmime, korganizer, kpeoplevcard, ksmtp, libkleo,
libksieve)[arguments]: Remove trailing booleans.
Signed-off-by: Marius Bakke <marius@gnu.org>
2022-07-21 06:33:36 +00:00
|
|
|
(invoke "dbus-launch" "ctest")))))))
|
gnu: KDE PIM: Update home-pages.
* gnu/packages/kde-pim.scm (akonadi, kaddressbook, kcalutils, kgpg, kimap,
kldap, kleopatra, kmail, kmailtransport, kmbox, kmime, knotes,
kontactinterface, korganizer, kpimtextedit, ktnef): [home-page]: Update the
link.
Signed-off-by: Marius Bakke <marius@gnu.org>
2022-07-26 06:48:48 +00:00
|
|
|
(home-page "https://apps.kde.org/kleopatra/")
|
2020-01-18 20:09:03 +00:00
|
|
|
(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+))))
|
|
|
|
|
2020-01-19 23:48:32 +00:00
|
|
|
(define-public kmail
|
|
|
|
(package
|
|
|
|
(name "kmail")
|
2023-07-30 02:32:00 +00:00
|
|
|
(version "23.04.3")
|
2020-01-19 23:48:32 +00:00
|
|
|
(source
|
|
|
|
(origin
|
|
|
|
(method url-fetch)
|
gnu: KDE: Update to 20.04.1.
* gnu/packages/patches/akonadi-paths.patch: Adjust for upstream changes.
* gnu/packages/patches/kdepim-runtime-Fix-missing-link-libraries.patch: Delete file.
* gnu/local.mk (dist_patch_DATA): Adjust accordingly.
* gnu/packages/kde-internet.scm (kget, kopete, krdc, libgravatar): Update to
20.04.1.
[source](uri): Adjust for new upstream location.
* gnu/packages/kde-multimedia.scm (audiocd-kio, dragon, ffmpegthumbs, juk,
k3b, kamoso, kmix, kwave, libkcddb, libkcompactdisc): Likewise.
* gnu/packages/kde-systemtools.scm (dolphin, dolphin-plugins, khelpcenter,
konsole, krfb, ksystemlog): Update to 20.04.1.
[source](uri): Adjust for new upstream location.
* gnu/packages/kde-utils.scm (kate, kmag, kmousetool, kmouth, sweeper): Update
to 20.04.1.
[source](uri): Adjust for new upstream location.
* gnu/packages/kde.scm (baloo-widgets, libkomparediff2, kqtquickcharts,
grantleetheme, kcachegrind, libkdegames, zeroconf-ioslave): Update to 20.04.1.
[source](uri): Adjust for new upstream location.
(grantleetheme)[inputs]: Add KGUIADDONS.
* gnu/packages/kde-pim.scm (akonadi, akonadi-calendar, akonadi-contacts,
akonadi-mime, akonadi-notes, akonadi-search, kincidenceeditor, kaddressbook,
kalarmcal, kblog, kcalendarsupport, kcalutils, kdav, kdepim-apps-libs,
kdepim-runtime, keventviews, kgpg, kidentitymanagement, kimap, kldap,
kleopatra, kmail, kmailcommon, kmailimporter, kmailtransport, kmbox,
kmessagelib, kmime, knotes, kontactinterface, korganizer, kpimcommon,
kpimtextedit, ksmtp, ktnef, libkdepim, libkgapi, libkleo, libksieve): Update
to 20.04.1.
[source](uri): Adjust to current.
(akonadi)[inputs]: Remove KDBUSADDONS and KDESIGNERPLUGIN.
(akonadi-calendar)[inputs]: Remove KDBUSADDONS.
(kdepim-runtime)[source](patches): Remove.
[arguments]: Add phase 'extend-CPLUS_INCLUDE_PATH'.
[inputs]: Remove KDBUSADDONS and KICONTHEMES.
(kmessagelib)[arguments]: Add phase 'extend-CPLUS_INCLUDE_PATH.
[inputs]: Add QCA.
(kdepim-apps-libs)[inputs]: Remove KDBUSADDONS and KICONTHEMES.
(knotes)[inputs]: Remove KDBUSADDONS.
(kpimcommon)[inputs]: Remove KDBUSADDONS and KCOMPLETION.
(libksieve)[arguments]: Disable one more test.
(korganizer)[arguments]: Disable one test.
2020-06-06 14:06:58 +00:00
|
|
|
(uri (string-append "mirror://kde/stable/release-service/" version
|
2020-01-19 23:48:32 +00:00
|
|
|
"/src/kmail-" version ".tar.xz"))
|
|
|
|
(sha256
|
2023-07-30 02:32:00 +00:00
|
|
|
(base32 "16gz0i7na1pkyly9jnvavyffkawxf5irr92rd50w68p01b82dhc6"))))
|
2020-01-19 23:48:32 +00:00
|
|
|
(build-system qt-build-system)
|
|
|
|
(native-inputs
|
2021-12-13 16:18:24 +00:00
|
|
|
(list extra-cmake-modules dbus kdoctools))
|
2020-01-19 23:48:32 +00:00
|
|
|
(inputs
|
2021-12-13 16:18:24 +00:00
|
|
|
(list akonadi
|
|
|
|
akonadi-contacts
|
|
|
|
akonadi-mime
|
|
|
|
akonadi-search
|
|
|
|
boost
|
2023-03-30 21:48:17 +00:00
|
|
|
gpgme
|
gnu: KDE PIM: Update all packages to 21.12.3.
* gnu/packages/kde-pim.scm (KDE PIM): Update to 21.12.3.
(akonadi, akonadi-calendar, akonadi-contacts, akonadi-mime,
akonadi-notes, akonadi-search, kaddressbook, kalarmcal,
kcalendarsupport, kcalutils, kdepim-runtime, keventviews, kgpg,
kidentitymanagement, kimap, kincidenceeditor, kldap, kleopatra, kmail,
kmailcommon, kmailimporter, kmailtransport, kmbox, kmessagelib, kmime,
knotes, kontactinterface, korganizer, kpeoplevcard, kpimcommon,
kpimtextedit, ksmtp, ktnef, libgravatar, libkdepim, libkgapi, libkleo,
libksieve): Update to 21.12.3.
(kblog): Update to 20.04.3.
* gnu/packages/patches/akonadi-not-relocatable.patch
* gnu/packages/patches/akonadi-paths.patch
* gnu/packages/patches/akonadi-timestamps.patch
Fix patches to apply to latest code.
(akonadi-calendar): [inputs]: Add new dependencies.
(akonadi-contacts): [inputs]: Add new dependencies.
(akonadi-search): [arguments]: Disable failing tests.
(kcalendarsupport): [inputs]: Add new dependency, remove obsolete kdepim-apps-lib.
(libksieve): [arguments]: Enable test that works now.
* gnu/packages/patches/libksieve-Fix-missing-link-libraries.patch: Fix patch.
(kaddressbook): [inputs]: Remove obsolete kdepim-apps-libs.
Move kdocstools to native-inputs.
(kmessagelib): [inputs]: Remove obsolete kdepim-appslibs, add kguiaddons.
[arguments]: Fix findind header file.
(kmailimporter): [inputs]: Add new dependencies.
(kmailtransport): [inputs]: Add qtkeychain.
(knotes): [inputs]: Move kdocstools to native-inputs.
(kincidenceeditor): [inputs]: Add new dependencies. Remove obsolete kdepim-apps-libs
[arguments]: Disable failing test.
(kldap): [inputs]: Add qtkeychain.
(kgpg)[arguments]: Disable failing tests.
(libkleo): [propagated-inputs]: Propagate gpgme, qgpgme.
[arguments]: Disable failing tests.
(kdepim-runtime): [inputs]: Add new dependencies grantlee, grantleetheme, kcmutils, kldap,
libkdepim, qtkeychain
[arguments]: Enable all the tests that pass.
We need to use the old hack instead of search-input-directory to
workaround a mysterious include error.
(kdepim-apps-lib): Remove obsolete package.
(kmail): [origin]: Remove patch. Don't think it is needed anymore.
[inputs]: Add new dependencies, delete obsolete kdepim-apps-libs and
duplicate kmime.
[arguments]: Disable failing tests.
* gnu/packages/patches/kmail-Fix-missing-link-libraries.patch: Delete file.
* gnu/local.mk: Remove reference to patch.
(kmailcommon): [inputs]: Add new dependencies.
Signed-off-by: Marius Bakke <marius@gnu.org>
2022-02-02 09:08:23 +00:00
|
|
|
grantlee
|
|
|
|
grantleetheme
|
2021-12-13 16:18:24 +00:00
|
|
|
kbookmarks
|
|
|
|
kcalendarcore
|
|
|
|
kcalutils
|
|
|
|
kcmutils
|
|
|
|
kcodecs
|
|
|
|
kconfig
|
|
|
|
kconfigwidgets
|
|
|
|
kcontacts
|
|
|
|
kcrash
|
|
|
|
kdbusaddons
|
|
|
|
kguiaddons
|
|
|
|
ki18n
|
|
|
|
kiconthemes
|
|
|
|
kidentitymanagement
|
|
|
|
kimap
|
|
|
|
kio
|
|
|
|
kitemmodels
|
|
|
|
kitemviews
|
|
|
|
kjobwidgets
|
|
|
|
kldap
|
|
|
|
kmailcommon
|
|
|
|
kmailtransport
|
|
|
|
kmessagelib
|
|
|
|
kmime
|
|
|
|
knotifications
|
|
|
|
knotifyconfig
|
|
|
|
kontactinterface
|
|
|
|
kparts
|
|
|
|
kpimcommon
|
|
|
|
kpimtextedit
|
|
|
|
kservice
|
|
|
|
ksyntaxhighlighting
|
2023-08-08 11:51:30 +00:00
|
|
|
ktextaddons
|
2021-12-13 16:18:24 +00:00
|
|
|
ktextwidgets
|
gnu: KDE PIM: Update all packages to 21.12.3.
* gnu/packages/kde-pim.scm (KDE PIM): Update to 21.12.3.
(akonadi, akonadi-calendar, akonadi-contacts, akonadi-mime,
akonadi-notes, akonadi-search, kaddressbook, kalarmcal,
kcalendarsupport, kcalutils, kdepim-runtime, keventviews, kgpg,
kidentitymanagement, kimap, kincidenceeditor, kldap, kleopatra, kmail,
kmailcommon, kmailimporter, kmailtransport, kmbox, kmessagelib, kmime,
knotes, kontactinterface, korganizer, kpeoplevcard, kpimcommon,
kpimtextedit, ksmtp, ktnef, libgravatar, libkdepim, libkgapi, libkleo,
libksieve): Update to 21.12.3.
(kblog): Update to 20.04.3.
* gnu/packages/patches/akonadi-not-relocatable.patch
* gnu/packages/patches/akonadi-paths.patch
* gnu/packages/patches/akonadi-timestamps.patch
Fix patches to apply to latest code.
(akonadi-calendar): [inputs]: Add new dependencies.
(akonadi-contacts): [inputs]: Add new dependencies.
(akonadi-search): [arguments]: Disable failing tests.
(kcalendarsupport): [inputs]: Add new dependency, remove obsolete kdepim-apps-lib.
(libksieve): [arguments]: Enable test that works now.
* gnu/packages/patches/libksieve-Fix-missing-link-libraries.patch: Fix patch.
(kaddressbook): [inputs]: Remove obsolete kdepim-apps-libs.
Move kdocstools to native-inputs.
(kmessagelib): [inputs]: Remove obsolete kdepim-appslibs, add kguiaddons.
[arguments]: Fix findind header file.
(kmailimporter): [inputs]: Add new dependencies.
(kmailtransport): [inputs]: Add qtkeychain.
(knotes): [inputs]: Move kdocstools to native-inputs.
(kincidenceeditor): [inputs]: Add new dependencies. Remove obsolete kdepim-apps-libs
[arguments]: Disable failing test.
(kldap): [inputs]: Add qtkeychain.
(kgpg)[arguments]: Disable failing tests.
(libkleo): [propagated-inputs]: Propagate gpgme, qgpgme.
[arguments]: Disable failing tests.
(kdepim-runtime): [inputs]: Add new dependencies grantlee, grantleetheme, kcmutils, kldap,
libkdepim, qtkeychain
[arguments]: Enable all the tests that pass.
We need to use the old hack instead of search-input-directory to
workaround a mysterious include error.
(kdepim-apps-lib): Remove obsolete package.
(kmail): [origin]: Remove patch. Don't think it is needed anymore.
[inputs]: Add new dependencies, delete obsolete kdepim-apps-libs and
duplicate kmime.
[arguments]: Disable failing tests.
* gnu/packages/patches/kmail-Fix-missing-link-libraries.patch: Delete file.
* gnu/local.mk: Remove reference to patch.
(kmailcommon): [inputs]: Add new dependencies.
Signed-off-by: Marius Bakke <marius@gnu.org>
2022-02-02 09:08:23 +00:00
|
|
|
kuserfeedback
|
2021-12-13 16:18:24 +00:00
|
|
|
ktnef
|
|
|
|
kwallet
|
|
|
|
kwidgetsaddons
|
|
|
|
kwindowsystem
|
|
|
|
kxmlgui
|
|
|
|
libgravatar
|
|
|
|
libkdepim
|
|
|
|
libkleo
|
|
|
|
libksieve
|
2022-02-15 11:21:15 +00:00
|
|
|
breeze-icons ; default icon set, required for tests
|
2023-03-30 21:48:17 +00:00
|
|
|
qgpgme
|
2021-12-13 16:18:24 +00:00
|
|
|
qtbase-5
|
2022-07-18 01:03:18 +00:00
|
|
|
qtdeclarative-5
|
gnu: KDE PIM: Update all packages to 21.12.3.
* gnu/packages/kde-pim.scm (KDE PIM): Update to 21.12.3.
(akonadi, akonadi-calendar, akonadi-contacts, akonadi-mime,
akonadi-notes, akonadi-search, kaddressbook, kalarmcal,
kcalendarsupport, kcalutils, kdepim-runtime, keventviews, kgpg,
kidentitymanagement, kimap, kincidenceeditor, kldap, kleopatra, kmail,
kmailcommon, kmailimporter, kmailtransport, kmbox, kmessagelib, kmime,
knotes, kontactinterface, korganizer, kpeoplevcard, kpimcommon,
kpimtextedit, ksmtp, ktnef, libgravatar, libkdepim, libkgapi, libkleo,
libksieve): Update to 21.12.3.
(kblog): Update to 20.04.3.
* gnu/packages/patches/akonadi-not-relocatable.patch
* gnu/packages/patches/akonadi-paths.patch
* gnu/packages/patches/akonadi-timestamps.patch
Fix patches to apply to latest code.
(akonadi-calendar): [inputs]: Add new dependencies.
(akonadi-contacts): [inputs]: Add new dependencies.
(akonadi-search): [arguments]: Disable failing tests.
(kcalendarsupport): [inputs]: Add new dependency, remove obsolete kdepim-apps-lib.
(libksieve): [arguments]: Enable test that works now.
* gnu/packages/patches/libksieve-Fix-missing-link-libraries.patch: Fix patch.
(kaddressbook): [inputs]: Remove obsolete kdepim-apps-libs.
Move kdocstools to native-inputs.
(kmessagelib): [inputs]: Remove obsolete kdepim-appslibs, add kguiaddons.
[arguments]: Fix findind header file.
(kmailimporter): [inputs]: Add new dependencies.
(kmailtransport): [inputs]: Add qtkeychain.
(knotes): [inputs]: Move kdocstools to native-inputs.
(kincidenceeditor): [inputs]: Add new dependencies. Remove obsolete kdepim-apps-libs
[arguments]: Disable failing test.
(kldap): [inputs]: Add qtkeychain.
(kgpg)[arguments]: Disable failing tests.
(libkleo): [propagated-inputs]: Propagate gpgme, qgpgme.
[arguments]: Disable failing tests.
(kdepim-runtime): [inputs]: Add new dependencies grantlee, grantleetheme, kcmutils, kldap,
libkdepim, qtkeychain
[arguments]: Enable all the tests that pass.
We need to use the old hack instead of search-input-directory to
workaround a mysterious include error.
(kdepim-apps-lib): Remove obsolete package.
(kmail): [origin]: Remove patch. Don't think it is needed anymore.
[inputs]: Add new dependencies, delete obsolete kdepim-apps-libs and
duplicate kmime.
[arguments]: Disable failing tests.
* gnu/packages/patches/kmail-Fix-missing-link-libraries.patch: Delete file.
* gnu/local.mk: Remove reference to patch.
(kmailcommon): [inputs]: Add new dependencies.
Signed-off-by: Marius Bakke <marius@gnu.org>
2022-02-02 09:08:23 +00:00
|
|
|
qtkeychain
|
2022-07-18 04:02:58 +00:00
|
|
|
qtwebchannel-5
|
2022-07-18 11:57:16 +00:00
|
|
|
qtwebengine-5
|
2021-12-13 16:18:24 +00:00
|
|
|
sonnet))
|
2020-01-19 23:48:32 +00:00
|
|
|
(arguments
|
|
|
|
`(#:phases
|
|
|
|
(modify-phases %standard-phases
|
|
|
|
(replace 'check
|
2021-09-13 08:05:35 +00:00
|
|
|
(lambda* (#:key tests? #:allow-other-keys)
|
|
|
|
(when tests?
|
gnu: KDE PIM: Update all packages to 21.12.3.
* gnu/packages/kde-pim.scm (KDE PIM): Update to 21.12.3.
(akonadi, akonadi-calendar, akonadi-contacts, akonadi-mime,
akonadi-notes, akonadi-search, kaddressbook, kalarmcal,
kcalendarsupport, kcalutils, kdepim-runtime, keventviews, kgpg,
kidentitymanagement, kimap, kincidenceeditor, kldap, kleopatra, kmail,
kmailcommon, kmailimporter, kmailtransport, kmbox, kmessagelib, kmime,
knotes, kontactinterface, korganizer, kpeoplevcard, kpimcommon,
kpimtextedit, ksmtp, ktnef, libgravatar, libkdepim, libkgapi, libkleo,
libksieve): Update to 21.12.3.
(kblog): Update to 20.04.3.
* gnu/packages/patches/akonadi-not-relocatable.patch
* gnu/packages/patches/akonadi-paths.patch
* gnu/packages/patches/akonadi-timestamps.patch
Fix patches to apply to latest code.
(akonadi-calendar): [inputs]: Add new dependencies.
(akonadi-contacts): [inputs]: Add new dependencies.
(akonadi-search): [arguments]: Disable failing tests.
(kcalendarsupport): [inputs]: Add new dependency, remove obsolete kdepim-apps-lib.
(libksieve): [arguments]: Enable test that works now.
* gnu/packages/patches/libksieve-Fix-missing-link-libraries.patch: Fix patch.
(kaddressbook): [inputs]: Remove obsolete kdepim-apps-libs.
Move kdocstools to native-inputs.
(kmessagelib): [inputs]: Remove obsolete kdepim-appslibs, add kguiaddons.
[arguments]: Fix findind header file.
(kmailimporter): [inputs]: Add new dependencies.
(kmailtransport): [inputs]: Add qtkeychain.
(knotes): [inputs]: Move kdocstools to native-inputs.
(kincidenceeditor): [inputs]: Add new dependencies. Remove obsolete kdepim-apps-libs
[arguments]: Disable failing test.
(kldap): [inputs]: Add qtkeychain.
(kgpg)[arguments]: Disable failing tests.
(libkleo): [propagated-inputs]: Propagate gpgme, qgpgme.
[arguments]: Disable failing tests.
(kdepim-runtime): [inputs]: Add new dependencies grantlee, grantleetheme, kcmutils, kldap,
libkdepim, qtkeychain
[arguments]: Enable all the tests that pass.
We need to use the old hack instead of search-input-directory to
workaround a mysterious include error.
(kdepim-apps-lib): Remove obsolete package.
(kmail): [origin]: Remove patch. Don't think it is needed anymore.
[inputs]: Add new dependencies, delete obsolete kdepim-apps-libs and
duplicate kmime.
[arguments]: Disable failing tests.
* gnu/packages/patches/kmail-Fix-missing-link-libraries.patch: Delete file.
* gnu/local.mk: Remove reference to patch.
(kmailcommon): [inputs]: Add new dependencies.
Signed-off-by: Marius Bakke <marius@gnu.org>
2022-02-02 09:08:23 +00:00
|
|
|
(invoke "dbus-launch" "ctest" "-E" ;; FIXME: Many failing tests.
|
|
|
|
"(akonadi-sqlite-kmcomposerwintest|\
|
|
|
|
akonadi-sqlite-tagselectdialogtest|\
|
|
|
|
akonadi-sqlite-kmcommandstest|\
|
|
|
|
sendlateragent-sendlaterutiltest|\
|
|
|
|
sendlateragent-sendlaterconfigtest|\
|
|
|
|
followupreminder-followupreminderconfigtest|\
|
gnu: KDE-PIM: Remove trailing booleans.
* gnu/packages/kde-pim.scm (akonadi, akonadi-mime, akonadi-search,
kincidenceeditor, kdepim-runtime, kidentitymanagement, kleopatra, kmail,
kmime, korganizer, kpeoplevcard, ksmtp, libkleo,
libksieve)[arguments]: Remove trailing booleans.
Signed-off-by: Marius Bakke <marius@gnu.org>
2022-07-21 06:33:36 +00:00
|
|
|
akonadi-sqlite-unifiedmailboxmanagertest)")))))))
|
gnu: KDE PIM: Update home-pages.
* gnu/packages/kde-pim.scm (akonadi, kaddressbook, kcalutils, kgpg, kimap,
kldap, kleopatra, kmail, kmailtransport, kmbox, kmime, knotes,
kontactinterface, korganizer, kpimtextedit, ktnef): [home-page]: Update the
link.
Signed-off-by: Marius Bakke <marius@gnu.org>
2022-07-26 06:48:48 +00:00
|
|
|
(home-page "https://kontact.kde.org/components/kmail/")
|
2020-01-19 23:48:32 +00:00
|
|
|
(synopsis "Full featured graphical email client")
|
|
|
|
(description "KMail supports multiple accounts, mail filtering and email
|
|
|
|
encryption. The program let you configure your workflow and it has good
|
2021-04-09 17:53:14 +00:00
|
|
|
integration into KDE (Plasma Desktop) but is also usable with other Desktop
|
2020-04-12 18:48:34 +00:00
|
|
|
Environments.
|
2020-01-19 23:48:32 +00:00
|
|
|
|
|
|
|
KMail is the email component of Kontact, the integrated personal information
|
|
|
|
manager from KDE.")
|
|
|
|
(license ;; GPL for programs, LGPL for libraries, FDL for documentation
|
|
|
|
(list license:gpl2+ license:lgpl2.0+ license:fdl1.2+))))
|
|
|
|
|
2020-01-19 15:52:12 +00:00
|
|
|
(define-public kmailcommon
|
|
|
|
(package
|
|
|
|
(name "kmailcommon")
|
2023-07-30 02:32:00 +00:00
|
|
|
(version "23.04.3")
|
2020-01-19 15:52:12 +00:00
|
|
|
(source
|
|
|
|
(origin
|
|
|
|
(method url-fetch)
|
gnu: KDE: Update to 20.04.1.
* gnu/packages/patches/akonadi-paths.patch: Adjust for upstream changes.
* gnu/packages/patches/kdepim-runtime-Fix-missing-link-libraries.patch: Delete file.
* gnu/local.mk (dist_patch_DATA): Adjust accordingly.
* gnu/packages/kde-internet.scm (kget, kopete, krdc, libgravatar): Update to
20.04.1.
[source](uri): Adjust for new upstream location.
* gnu/packages/kde-multimedia.scm (audiocd-kio, dragon, ffmpegthumbs, juk,
k3b, kamoso, kmix, kwave, libkcddb, libkcompactdisc): Likewise.
* gnu/packages/kde-systemtools.scm (dolphin, dolphin-plugins, khelpcenter,
konsole, krfb, ksystemlog): Update to 20.04.1.
[source](uri): Adjust for new upstream location.
* gnu/packages/kde-utils.scm (kate, kmag, kmousetool, kmouth, sweeper): Update
to 20.04.1.
[source](uri): Adjust for new upstream location.
* gnu/packages/kde.scm (baloo-widgets, libkomparediff2, kqtquickcharts,
grantleetheme, kcachegrind, libkdegames, zeroconf-ioslave): Update to 20.04.1.
[source](uri): Adjust for new upstream location.
(grantleetheme)[inputs]: Add KGUIADDONS.
* gnu/packages/kde-pim.scm (akonadi, akonadi-calendar, akonadi-contacts,
akonadi-mime, akonadi-notes, akonadi-search, kincidenceeditor, kaddressbook,
kalarmcal, kblog, kcalendarsupport, kcalutils, kdav, kdepim-apps-libs,
kdepim-runtime, keventviews, kgpg, kidentitymanagement, kimap, kldap,
kleopatra, kmail, kmailcommon, kmailimporter, kmailtransport, kmbox,
kmessagelib, kmime, knotes, kontactinterface, korganizer, kpimcommon,
kpimtextedit, ksmtp, ktnef, libkdepim, libkgapi, libkleo, libksieve): Update
to 20.04.1.
[source](uri): Adjust to current.
(akonadi)[inputs]: Remove KDBUSADDONS and KDESIGNERPLUGIN.
(akonadi-calendar)[inputs]: Remove KDBUSADDONS.
(kdepim-runtime)[source](patches): Remove.
[arguments]: Add phase 'extend-CPLUS_INCLUDE_PATH'.
[inputs]: Remove KDBUSADDONS and KICONTHEMES.
(kmessagelib)[arguments]: Add phase 'extend-CPLUS_INCLUDE_PATH.
[inputs]: Add QCA.
(kdepim-apps-libs)[inputs]: Remove KDBUSADDONS and KICONTHEMES.
(knotes)[inputs]: Remove KDBUSADDONS.
(kpimcommon)[inputs]: Remove KDBUSADDONS and KCOMPLETION.
(libksieve)[arguments]: Disable one more test.
(korganizer)[arguments]: Disable one test.
2020-06-06 14:06:58 +00:00
|
|
|
(uri (string-append "mirror://kde/stable/release-service/" version
|
2020-01-19 15:52:12 +00:00
|
|
|
"/src/mailcommon-" version ".tar.xz"))
|
|
|
|
(sha256
|
2023-07-30 02:32:00 +00:00
|
|
|
(base32 "165a0qf6i2862dpsw4wvgnxi4wv7hnc9s63fsf9jp6kbwwfw9nqv"))))
|
2020-01-19 15:52:12 +00:00
|
|
|
(properties `((upstream-name . "mailcommon")))
|
|
|
|
(build-system qt-build-system)
|
|
|
|
(native-inputs
|
2022-07-19 20:52:05 +00:00
|
|
|
(list extra-cmake-modules dbus gnupg qttools-5))
|
2020-01-19 15:52:12 +00:00
|
|
|
(inputs
|
2021-12-13 16:18:24 +00:00
|
|
|
(list akonadi
|
|
|
|
akonadi-contacts
|
|
|
|
akonadi-mime
|
|
|
|
boost
|
|
|
|
gpgme
|
gnu: KDE PIM: Update all packages to 21.12.3.
* gnu/packages/kde-pim.scm (KDE PIM): Update to 21.12.3.
(akonadi, akonadi-calendar, akonadi-contacts, akonadi-mime,
akonadi-notes, akonadi-search, kaddressbook, kalarmcal,
kcalendarsupport, kcalutils, kdepim-runtime, keventviews, kgpg,
kidentitymanagement, kimap, kincidenceeditor, kldap, kleopatra, kmail,
kmailcommon, kmailimporter, kmailtransport, kmbox, kmessagelib, kmime,
knotes, kontactinterface, korganizer, kpeoplevcard, kpimcommon,
kpimtextedit, ksmtp, ktnef, libgravatar, libkdepim, libkgapi, libkleo,
libksieve): Update to 21.12.3.
(kblog): Update to 20.04.3.
* gnu/packages/patches/akonadi-not-relocatable.patch
* gnu/packages/patches/akonadi-paths.patch
* gnu/packages/patches/akonadi-timestamps.patch
Fix patches to apply to latest code.
(akonadi-calendar): [inputs]: Add new dependencies.
(akonadi-contacts): [inputs]: Add new dependencies.
(akonadi-search): [arguments]: Disable failing tests.
(kcalendarsupport): [inputs]: Add new dependency, remove obsolete kdepim-apps-lib.
(libksieve): [arguments]: Enable test that works now.
* gnu/packages/patches/libksieve-Fix-missing-link-libraries.patch: Fix patch.
(kaddressbook): [inputs]: Remove obsolete kdepim-apps-libs.
Move kdocstools to native-inputs.
(kmessagelib): [inputs]: Remove obsolete kdepim-appslibs, add kguiaddons.
[arguments]: Fix findind header file.
(kmailimporter): [inputs]: Add new dependencies.
(kmailtransport): [inputs]: Add qtkeychain.
(knotes): [inputs]: Move kdocstools to native-inputs.
(kincidenceeditor): [inputs]: Add new dependencies. Remove obsolete kdepim-apps-libs
[arguments]: Disable failing test.
(kldap): [inputs]: Add qtkeychain.
(kgpg)[arguments]: Disable failing tests.
(libkleo): [propagated-inputs]: Propagate gpgme, qgpgme.
[arguments]: Disable failing tests.
(kdepim-runtime): [inputs]: Add new dependencies grantlee, grantleetheme, kcmutils, kldap,
libkdepim, qtkeychain
[arguments]: Enable all the tests that pass.
We need to use the old hack instead of search-input-directory to
workaround a mysterious include error.
(kdepim-apps-lib): Remove obsolete package.
(kmail): [origin]: Remove patch. Don't think it is needed anymore.
[inputs]: Add new dependencies, delete obsolete kdepim-apps-libs and
duplicate kmime.
[arguments]: Disable failing tests.
* gnu/packages/patches/kmail-Fix-missing-link-libraries.patch: Delete file.
* gnu/local.mk: Remove reference to patch.
(kmailcommon): [inputs]: Add new dependencies.
Signed-off-by: Marius Bakke <marius@gnu.org>
2022-02-02 09:08:23 +00:00
|
|
|
grantlee
|
|
|
|
grantleetheme
|
2021-12-13 16:18:24 +00:00
|
|
|
karchive
|
|
|
|
kcodecs
|
|
|
|
kcompletion
|
|
|
|
kconfig
|
|
|
|
kconfigwidgets
|
|
|
|
kcontacts
|
|
|
|
kdbusaddons
|
|
|
|
kdesignerplugin
|
gnu: KDE PIM: Update all packages to 21.12.3.
* gnu/packages/kde-pim.scm (KDE PIM): Update to 21.12.3.
(akonadi, akonadi-calendar, akonadi-contacts, akonadi-mime,
akonadi-notes, akonadi-search, kaddressbook, kalarmcal,
kcalendarsupport, kcalutils, kdepim-runtime, keventviews, kgpg,
kidentitymanagement, kimap, kincidenceeditor, kldap, kleopatra, kmail,
kmailcommon, kmailimporter, kmailtransport, kmbox, kmessagelib, kmime,
knotes, kontactinterface, korganizer, kpeoplevcard, kpimcommon,
kpimtextedit, ksmtp, ktnef, libgravatar, libkdepim, libkgapi, libkleo,
libksieve): Update to 21.12.3.
(kblog): Update to 20.04.3.
* gnu/packages/patches/akonadi-not-relocatable.patch
* gnu/packages/patches/akonadi-paths.patch
* gnu/packages/patches/akonadi-timestamps.patch
Fix patches to apply to latest code.
(akonadi-calendar): [inputs]: Add new dependencies.
(akonadi-contacts): [inputs]: Add new dependencies.
(akonadi-search): [arguments]: Disable failing tests.
(kcalendarsupport): [inputs]: Add new dependency, remove obsolete kdepim-apps-lib.
(libksieve): [arguments]: Enable test that works now.
* gnu/packages/patches/libksieve-Fix-missing-link-libraries.patch: Fix patch.
(kaddressbook): [inputs]: Remove obsolete kdepim-apps-libs.
Move kdocstools to native-inputs.
(kmessagelib): [inputs]: Remove obsolete kdepim-appslibs, add kguiaddons.
[arguments]: Fix findind header file.
(kmailimporter): [inputs]: Add new dependencies.
(kmailtransport): [inputs]: Add qtkeychain.
(knotes): [inputs]: Move kdocstools to native-inputs.
(kincidenceeditor): [inputs]: Add new dependencies. Remove obsolete kdepim-apps-libs
[arguments]: Disable failing test.
(kldap): [inputs]: Add qtkeychain.
(kgpg)[arguments]: Disable failing tests.
(libkleo): [propagated-inputs]: Propagate gpgme, qgpgme.
[arguments]: Disable failing tests.
(kdepim-runtime): [inputs]: Add new dependencies grantlee, grantleetheme, kcmutils, kldap,
libkdepim, qtkeychain
[arguments]: Enable all the tests that pass.
We need to use the old hack instead of search-input-directory to
workaround a mysterious include error.
(kdepim-apps-lib): Remove obsolete package.
(kmail): [origin]: Remove patch. Don't think it is needed anymore.
[inputs]: Add new dependencies, delete obsolete kdepim-apps-libs and
duplicate kmime.
[arguments]: Disable failing tests.
* gnu/packages/patches/kmail-Fix-missing-link-libraries.patch: Delete file.
* gnu/local.mk: Remove reference to patch.
(kmailcommon): [inputs]: Add new dependencies.
Signed-off-by: Marius Bakke <marius@gnu.org>
2022-02-02 09:08:23 +00:00
|
|
|
kguiaddons
|
2021-12-13 16:18:24 +00:00
|
|
|
ki18n
|
|
|
|
kiconthemes
|
|
|
|
kidentitymanagement
|
|
|
|
kimap
|
|
|
|
kio
|
|
|
|
kitemmodels
|
|
|
|
kitemviews
|
|
|
|
kldap
|
|
|
|
kmailimporter
|
|
|
|
kmailtransport
|
|
|
|
kmessagelib
|
|
|
|
kmime
|
|
|
|
kpimcommon
|
|
|
|
kpimtextedit
|
|
|
|
ksyntaxhighlighting
|
2023-08-08 11:51:30 +00:00
|
|
|
ktextaddons
|
2021-12-13 16:18:24 +00:00
|
|
|
ktextwidgets
|
|
|
|
kwallet
|
|
|
|
kwidgetsaddons
|
|
|
|
kwindowsystem
|
|
|
|
kxmlgui
|
|
|
|
libkdepim
|
|
|
|
libkleo
|
|
|
|
libxslt
|
|
|
|
phonon
|
|
|
|
qgpgme
|
gnu: KDE PIM: Update to 22.08.1.
* gnu/packages/kde-pim.scm (akonadi, akonadi-calendar, akonadi-contacts,
akonadi-mime, akonadi-notes, akonadi-search, kincidenceeditor,
kaddressbook, kcalendarsupport, kcalutils, kdepim-runtime, keventviews, kgpg,
kidentitymanagement, kimap, kldap, kleopatra, kmail, kmailcommon,
kmailimporter, kmailtransport, kmbox, kmessagelib, kmime, knotes,
kontactinterface, korganizer, kpimcommon, libgravatar,
kpimtextedit, ksmtp, ktnef, libkdepim, libkgapi, libkleo, libksieve): Update
to 22.08.1.
(kmailcommon)[inputs]: Add qtwebchannel-5 and qtwebengine-5.
(libkleo)[inputs]: Add kconfigwidgets.
(libksieve)[arguments]: Fix disabling of test.
Signed-off-by: Marius Bakke <marius@gnu.org>
2022-09-28 19:25:19 +00:00
|
|
|
qtwebchannel-5
|
|
|
|
qtwebengine-5
|
2021-12-13 16:18:24 +00:00
|
|
|
qtbase-5))
|
2020-01-19 15:52:12 +00:00
|
|
|
(arguments
|
gnu: KDE PIM: Update all packages to 21.12.3.
* gnu/packages/kde-pim.scm (KDE PIM): Update to 21.12.3.
(akonadi, akonadi-calendar, akonadi-contacts, akonadi-mime,
akonadi-notes, akonadi-search, kaddressbook, kalarmcal,
kcalendarsupport, kcalutils, kdepim-runtime, keventviews, kgpg,
kidentitymanagement, kimap, kincidenceeditor, kldap, kleopatra, kmail,
kmailcommon, kmailimporter, kmailtransport, kmbox, kmessagelib, kmime,
knotes, kontactinterface, korganizer, kpeoplevcard, kpimcommon,
kpimtextedit, ksmtp, ktnef, libgravatar, libkdepim, libkgapi, libkleo,
libksieve): Update to 21.12.3.
(kblog): Update to 20.04.3.
* gnu/packages/patches/akonadi-not-relocatable.patch
* gnu/packages/patches/akonadi-paths.patch
* gnu/packages/patches/akonadi-timestamps.patch
Fix patches to apply to latest code.
(akonadi-calendar): [inputs]: Add new dependencies.
(akonadi-contacts): [inputs]: Add new dependencies.
(akonadi-search): [arguments]: Disable failing tests.
(kcalendarsupport): [inputs]: Add new dependency, remove obsolete kdepim-apps-lib.
(libksieve): [arguments]: Enable test that works now.
* gnu/packages/patches/libksieve-Fix-missing-link-libraries.patch: Fix patch.
(kaddressbook): [inputs]: Remove obsolete kdepim-apps-libs.
Move kdocstools to native-inputs.
(kmessagelib): [inputs]: Remove obsolete kdepim-appslibs, add kguiaddons.
[arguments]: Fix findind header file.
(kmailimporter): [inputs]: Add new dependencies.
(kmailtransport): [inputs]: Add qtkeychain.
(knotes): [inputs]: Move kdocstools to native-inputs.
(kincidenceeditor): [inputs]: Add new dependencies. Remove obsolete kdepim-apps-libs
[arguments]: Disable failing test.
(kldap): [inputs]: Add qtkeychain.
(kgpg)[arguments]: Disable failing tests.
(libkleo): [propagated-inputs]: Propagate gpgme, qgpgme.
[arguments]: Disable failing tests.
(kdepim-runtime): [inputs]: Add new dependencies grantlee, grantleetheme, kcmutils, kldap,
libkdepim, qtkeychain
[arguments]: Enable all the tests that pass.
We need to use the old hack instead of search-input-directory to
workaround a mysterious include error.
(kdepim-apps-lib): Remove obsolete package.
(kmail): [origin]: Remove patch. Don't think it is needed anymore.
[inputs]: Add new dependencies, delete obsolete kdepim-apps-libs and
duplicate kmime.
[arguments]: Disable failing tests.
* gnu/packages/patches/kmail-Fix-missing-link-libraries.patch: Delete file.
* gnu/local.mk: Remove reference to patch.
(kmailcommon): [inputs]: Add new dependencies.
Signed-off-by: Marius Bakke <marius@gnu.org>
2022-02-02 09:08:23 +00:00
|
|
|
`(#:tests? #f)) ;; TODO: 12/62 tests fail
|
gnu: KDE: Fix old cgit home-pages.
Fix all home-pages pointing to git-repos a cgit.kde.org, which is
gone, to now use the correct repo at invent.kde.org.
* gnu/packages/kde.scm (grantleetheme, kdiagram): Update home-page.
* gnu/packages/kde-frameworks.scm (kholidays): Likewise.
* gnu/packages/kde-internet.scm (libgravatar, libktorrent): Likewise.
* gnu/packages/kde-multimedia.scm (libkcddb, libkcompactdisc): Likewise.
* gnu/packages/kde-pim.scm (kblog, kdav, kdepim-apps-libs,
kdepim-runtime, keventviews, kincidenceeditor, kmailcommon,
kmailimporter, kmessagelib, kpimcommon, ksmtp, libkdepim, libkgapi,
libkleo, libksieve): Likewise.
* gnu/packages/kde-plasma.scm (kdecoration, kscreenlocker): Likewise.
2020-12-12 17:22:37 +00:00
|
|
|
(home-page "https://invent.kde.org/pim/mailcommon")
|
2020-01-19 15:52:12 +00:00
|
|
|
(synopsis "KDE email utility library")
|
|
|
|
(description "The mail common library provides utility functions for
|
|
|
|
dealing with email.")
|
|
|
|
(license ;; GPL for programs, LGPL for libraries
|
|
|
|
(list license:gpl2+ license:lgpl2.0+))))
|
|
|
|
|
2020-01-18 18:13:02 +00:00
|
|
|
(define-public kmailimporter
|
|
|
|
(package
|
|
|
|
(name "kmailimporter")
|
2023-07-30 02:32:00 +00:00
|
|
|
(version "23.04.3")
|
2020-01-18 18:13:02 +00:00
|
|
|
(source
|
|
|
|
(origin
|
|
|
|
(method url-fetch)
|
gnu: KDE: Update to 20.04.1.
* gnu/packages/patches/akonadi-paths.patch: Adjust for upstream changes.
* gnu/packages/patches/kdepim-runtime-Fix-missing-link-libraries.patch: Delete file.
* gnu/local.mk (dist_patch_DATA): Adjust accordingly.
* gnu/packages/kde-internet.scm (kget, kopete, krdc, libgravatar): Update to
20.04.1.
[source](uri): Adjust for new upstream location.
* gnu/packages/kde-multimedia.scm (audiocd-kio, dragon, ffmpegthumbs, juk,
k3b, kamoso, kmix, kwave, libkcddb, libkcompactdisc): Likewise.
* gnu/packages/kde-systemtools.scm (dolphin, dolphin-plugins, khelpcenter,
konsole, krfb, ksystemlog): Update to 20.04.1.
[source](uri): Adjust for new upstream location.
* gnu/packages/kde-utils.scm (kate, kmag, kmousetool, kmouth, sweeper): Update
to 20.04.1.
[source](uri): Adjust for new upstream location.
* gnu/packages/kde.scm (baloo-widgets, libkomparediff2, kqtquickcharts,
grantleetheme, kcachegrind, libkdegames, zeroconf-ioslave): Update to 20.04.1.
[source](uri): Adjust for new upstream location.
(grantleetheme)[inputs]: Add KGUIADDONS.
* gnu/packages/kde-pim.scm (akonadi, akonadi-calendar, akonadi-contacts,
akonadi-mime, akonadi-notes, akonadi-search, kincidenceeditor, kaddressbook,
kalarmcal, kblog, kcalendarsupport, kcalutils, kdav, kdepim-apps-libs,
kdepim-runtime, keventviews, kgpg, kidentitymanagement, kimap, kldap,
kleopatra, kmail, kmailcommon, kmailimporter, kmailtransport, kmbox,
kmessagelib, kmime, knotes, kontactinterface, korganizer, kpimcommon,
kpimtextedit, ksmtp, ktnef, libkdepim, libkgapi, libkleo, libksieve): Update
to 20.04.1.
[source](uri): Adjust to current.
(akonadi)[inputs]: Remove KDBUSADDONS and KDESIGNERPLUGIN.
(akonadi-calendar)[inputs]: Remove KDBUSADDONS.
(kdepim-runtime)[source](patches): Remove.
[arguments]: Add phase 'extend-CPLUS_INCLUDE_PATH'.
[inputs]: Remove KDBUSADDONS and KICONTHEMES.
(kmessagelib)[arguments]: Add phase 'extend-CPLUS_INCLUDE_PATH.
[inputs]: Add QCA.
(kdepim-apps-libs)[inputs]: Remove KDBUSADDONS and KICONTHEMES.
(knotes)[inputs]: Remove KDBUSADDONS.
(kpimcommon)[inputs]: Remove KDBUSADDONS and KCOMPLETION.
(libksieve)[arguments]: Disable one more test.
(korganizer)[arguments]: Disable one test.
2020-06-06 14:06:58 +00:00
|
|
|
(uri (string-append "mirror://kde/stable/release-service/" version
|
2020-01-18 18:13:02 +00:00
|
|
|
"/src/mailimporter-" version ".tar.xz"))
|
|
|
|
(sha256
|
2023-07-30 02:32:00 +00:00
|
|
|
(base32 "18shpxz7rg64g2mxdhdjhxhn893m0930v76cdnij339ycbcq5ypc"))))
|
2020-01-18 18:13:02 +00:00
|
|
|
(properties `((upstream-name . "mailimporter")))
|
|
|
|
(build-system qt-build-system)
|
|
|
|
(native-inputs
|
2021-12-13 16:18:24 +00:00
|
|
|
(list extra-cmake-modules))
|
2020-01-18 18:13:02 +00:00
|
|
|
(inputs
|
2021-12-13 16:18:24 +00:00
|
|
|
(list akonadi
|
gnu: KDE PIM: Update all packages to 21.12.3.
* gnu/packages/kde-pim.scm (KDE PIM): Update to 21.12.3.
(akonadi, akonadi-calendar, akonadi-contacts, akonadi-mime,
akonadi-notes, akonadi-search, kaddressbook, kalarmcal,
kcalendarsupport, kcalutils, kdepim-runtime, keventviews, kgpg,
kidentitymanagement, kimap, kincidenceeditor, kldap, kleopatra, kmail,
kmailcommon, kmailimporter, kmailtransport, kmbox, kmessagelib, kmime,
knotes, kontactinterface, korganizer, kpeoplevcard, kpimcommon,
kpimtextedit, ksmtp, ktnef, libgravatar, libkdepim, libkgapi, libkleo,
libksieve): Update to 21.12.3.
(kblog): Update to 20.04.3.
* gnu/packages/patches/akonadi-not-relocatable.patch
* gnu/packages/patches/akonadi-paths.patch
* gnu/packages/patches/akonadi-timestamps.patch
Fix patches to apply to latest code.
(akonadi-calendar): [inputs]: Add new dependencies.
(akonadi-contacts): [inputs]: Add new dependencies.
(akonadi-search): [arguments]: Disable failing tests.
(kcalendarsupport): [inputs]: Add new dependency, remove obsolete kdepim-apps-lib.
(libksieve): [arguments]: Enable test that works now.
* gnu/packages/patches/libksieve-Fix-missing-link-libraries.patch: Fix patch.
(kaddressbook): [inputs]: Remove obsolete kdepim-apps-libs.
Move kdocstools to native-inputs.
(kmessagelib): [inputs]: Remove obsolete kdepim-appslibs, add kguiaddons.
[arguments]: Fix findind header file.
(kmailimporter): [inputs]: Add new dependencies.
(kmailtransport): [inputs]: Add qtkeychain.
(knotes): [inputs]: Move kdocstools to native-inputs.
(kincidenceeditor): [inputs]: Add new dependencies. Remove obsolete kdepim-apps-libs
[arguments]: Disable failing test.
(kldap): [inputs]: Add qtkeychain.
(kgpg)[arguments]: Disable failing tests.
(libkleo): [propagated-inputs]: Propagate gpgme, qgpgme.
[arguments]: Disable failing tests.
(kdepim-runtime): [inputs]: Add new dependencies grantlee, grantleetheme, kcmutils, kldap,
libkdepim, qtkeychain
[arguments]: Enable all the tests that pass.
We need to use the old hack instead of search-input-directory to
workaround a mysterious include error.
(kdepim-apps-lib): Remove obsolete package.
(kmail): [origin]: Remove patch. Don't think it is needed anymore.
[inputs]: Add new dependencies, delete obsolete kdepim-apps-libs and
duplicate kmime.
[arguments]: Disable failing tests.
* gnu/packages/patches/kmail-Fix-missing-link-libraries.patch: Delete file.
* gnu/local.mk: Remove reference to patch.
(kmailcommon): [inputs]: Add new dependencies.
Signed-off-by: Marius Bakke <marius@gnu.org>
2022-02-02 09:08:23 +00:00
|
|
|
akonadi-contacts
|
2021-12-13 16:18:24 +00:00
|
|
|
akonadi-mime
|
gnu: KDE PIM: Update all packages to 21.12.3.
* gnu/packages/kde-pim.scm (KDE PIM): Update to 21.12.3.
(akonadi, akonadi-calendar, akonadi-contacts, akonadi-mime,
akonadi-notes, akonadi-search, kaddressbook, kalarmcal,
kcalendarsupport, kcalutils, kdepim-runtime, keventviews, kgpg,
kidentitymanagement, kimap, kincidenceeditor, kldap, kleopatra, kmail,
kmailcommon, kmailimporter, kmailtransport, kmbox, kmessagelib, kmime,
knotes, kontactinterface, korganizer, kpeoplevcard, kpimcommon,
kpimtextedit, ksmtp, ktnef, libgravatar, libkdepim, libkgapi, libkleo,
libksieve): Update to 21.12.3.
(kblog): Update to 20.04.3.
* gnu/packages/patches/akonadi-not-relocatable.patch
* gnu/packages/patches/akonadi-paths.patch
* gnu/packages/patches/akonadi-timestamps.patch
Fix patches to apply to latest code.
(akonadi-calendar): [inputs]: Add new dependencies.
(akonadi-contacts): [inputs]: Add new dependencies.
(akonadi-search): [arguments]: Disable failing tests.
(kcalendarsupport): [inputs]: Add new dependency, remove obsolete kdepim-apps-lib.
(libksieve): [arguments]: Enable test that works now.
* gnu/packages/patches/libksieve-Fix-missing-link-libraries.patch: Fix patch.
(kaddressbook): [inputs]: Remove obsolete kdepim-apps-libs.
Move kdocstools to native-inputs.
(kmessagelib): [inputs]: Remove obsolete kdepim-appslibs, add kguiaddons.
[arguments]: Fix findind header file.
(kmailimporter): [inputs]: Add new dependencies.
(kmailtransport): [inputs]: Add qtkeychain.
(knotes): [inputs]: Move kdocstools to native-inputs.
(kincidenceeditor): [inputs]: Add new dependencies. Remove obsolete kdepim-apps-libs
[arguments]: Disable failing test.
(kldap): [inputs]: Add qtkeychain.
(kgpg)[arguments]: Disable failing tests.
(libkleo): [propagated-inputs]: Propagate gpgme, qgpgme.
[arguments]: Disable failing tests.
(kdepim-runtime): [inputs]: Add new dependencies grantlee, grantleetheme, kcmutils, kldap,
libkdepim, qtkeychain
[arguments]: Enable all the tests that pass.
We need to use the old hack instead of search-input-directory to
workaround a mysterious include error.
(kdepim-apps-lib): Remove obsolete package.
(kmail): [origin]: Remove patch. Don't think it is needed anymore.
[inputs]: Add new dependencies, delete obsolete kdepim-apps-libs and
duplicate kmime.
[arguments]: Disable failing tests.
* gnu/packages/patches/kmail-Fix-missing-link-libraries.patch: Delete file.
* gnu/local.mk: Remove reference to patch.
(kmailcommon): [inputs]: Add new dependencies.
Signed-off-by: Marius Bakke <marius@gnu.org>
2022-02-02 09:08:23 +00:00
|
|
|
grantlee
|
|
|
|
grantleetheme
|
2021-12-13 16:18:24 +00:00
|
|
|
boost
|
|
|
|
karchive
|
|
|
|
kcompletion
|
|
|
|
kconfig
|
|
|
|
kconfigwidgets
|
gnu: KDE PIM: Update all packages to 21.12.3.
* gnu/packages/kde-pim.scm (KDE PIM): Update to 21.12.3.
(akonadi, akonadi-calendar, akonadi-contacts, akonadi-mime,
akonadi-notes, akonadi-search, kaddressbook, kalarmcal,
kcalendarsupport, kcalutils, kdepim-runtime, keventviews, kgpg,
kidentitymanagement, kimap, kincidenceeditor, kldap, kleopatra, kmail,
kmailcommon, kmailimporter, kmailtransport, kmbox, kmessagelib, kmime,
knotes, kontactinterface, korganizer, kpeoplevcard, kpimcommon,
kpimtextedit, ksmtp, ktnef, libgravatar, libkdepim, libkgapi, libkleo,
libksieve): Update to 21.12.3.
(kblog): Update to 20.04.3.
* gnu/packages/patches/akonadi-not-relocatable.patch
* gnu/packages/patches/akonadi-paths.patch
* gnu/packages/patches/akonadi-timestamps.patch
Fix patches to apply to latest code.
(akonadi-calendar): [inputs]: Add new dependencies.
(akonadi-contacts): [inputs]: Add new dependencies.
(akonadi-search): [arguments]: Disable failing tests.
(kcalendarsupport): [inputs]: Add new dependency, remove obsolete kdepim-apps-lib.
(libksieve): [arguments]: Enable test that works now.
* gnu/packages/patches/libksieve-Fix-missing-link-libraries.patch: Fix patch.
(kaddressbook): [inputs]: Remove obsolete kdepim-apps-libs.
Move kdocstools to native-inputs.
(kmessagelib): [inputs]: Remove obsolete kdepim-appslibs, add kguiaddons.
[arguments]: Fix findind header file.
(kmailimporter): [inputs]: Add new dependencies.
(kmailtransport): [inputs]: Add qtkeychain.
(knotes): [inputs]: Move kdocstools to native-inputs.
(kincidenceeditor): [inputs]: Add new dependencies. Remove obsolete kdepim-apps-libs
[arguments]: Disable failing test.
(kldap): [inputs]: Add qtkeychain.
(kgpg)[arguments]: Disable failing tests.
(libkleo): [propagated-inputs]: Propagate gpgme, qgpgme.
[arguments]: Disable failing tests.
(kdepim-runtime): [inputs]: Add new dependencies grantlee, grantleetheme, kcmutils, kldap,
libkdepim, qtkeychain
[arguments]: Enable all the tests that pass.
We need to use the old hack instead of search-input-directory to
workaround a mysterious include error.
(kdepim-apps-lib): Remove obsolete package.
(kmail): [origin]: Remove patch. Don't think it is needed anymore.
[inputs]: Add new dependencies, delete obsolete kdepim-apps-libs and
duplicate kmime.
[arguments]: Disable failing tests.
* gnu/packages/patches/kmail-Fix-missing-link-libraries.patch: Delete file.
* gnu/local.mk: Remove reference to patch.
(kmailcommon): [inputs]: Add new dependencies.
Signed-off-by: Marius Bakke <marius@gnu.org>
2022-02-02 09:08:23 +00:00
|
|
|
kcontacts
|
2021-12-13 16:18:24 +00:00
|
|
|
kcoreaddons
|
|
|
|
kdbusaddons
|
|
|
|
ki18n
|
gnu: KDE PIM: Update all packages to 21.12.3.
* gnu/packages/kde-pim.scm (KDE PIM): Update to 21.12.3.
(akonadi, akonadi-calendar, akonadi-contacts, akonadi-mime,
akonadi-notes, akonadi-search, kaddressbook, kalarmcal,
kcalendarsupport, kcalutils, kdepim-runtime, keventviews, kgpg,
kidentitymanagement, kimap, kincidenceeditor, kldap, kleopatra, kmail,
kmailcommon, kmailimporter, kmailtransport, kmbox, kmessagelib, kmime,
knotes, kontactinterface, korganizer, kpeoplevcard, kpimcommon,
kpimtextedit, ksmtp, ktnef, libgravatar, libkdepim, libkgapi, libkleo,
libksieve): Update to 21.12.3.
(kblog): Update to 20.04.3.
* gnu/packages/patches/akonadi-not-relocatable.patch
* gnu/packages/patches/akonadi-paths.patch
* gnu/packages/patches/akonadi-timestamps.patch
Fix patches to apply to latest code.
(akonadi-calendar): [inputs]: Add new dependencies.
(akonadi-contacts): [inputs]: Add new dependencies.
(akonadi-search): [arguments]: Disable failing tests.
(kcalendarsupport): [inputs]: Add new dependency, remove obsolete kdepim-apps-lib.
(libksieve): [arguments]: Enable test that works now.
* gnu/packages/patches/libksieve-Fix-missing-link-libraries.patch: Fix patch.
(kaddressbook): [inputs]: Remove obsolete kdepim-apps-libs.
Move kdocstools to native-inputs.
(kmessagelib): [inputs]: Remove obsolete kdepim-appslibs, add kguiaddons.
[arguments]: Fix findind header file.
(kmailimporter): [inputs]: Add new dependencies.
(kmailtransport): [inputs]: Add qtkeychain.
(knotes): [inputs]: Move kdocstools to native-inputs.
(kincidenceeditor): [inputs]: Add new dependencies. Remove obsolete kdepim-apps-libs
[arguments]: Disable failing test.
(kldap): [inputs]: Add qtkeychain.
(kgpg)[arguments]: Disable failing tests.
(libkleo): [propagated-inputs]: Propagate gpgme, qgpgme.
[arguments]: Disable failing tests.
(kdepim-runtime): [inputs]: Add new dependencies grantlee, grantleetheme, kcmutils, kldap,
libkdepim, qtkeychain
[arguments]: Enable all the tests that pass.
We need to use the old hack instead of search-input-directory to
workaround a mysterious include error.
(kdepim-apps-lib): Remove obsolete package.
(kmail): [origin]: Remove patch. Don't think it is needed anymore.
[inputs]: Add new dependencies, delete obsolete kdepim-apps-libs and
duplicate kmime.
[arguments]: Disable failing tests.
* gnu/packages/patches/kmail-Fix-missing-link-libraries.patch: Delete file.
* gnu/local.mk: Remove reference to patch.
(kmailcommon): [inputs]: Add new dependencies.
Signed-off-by: Marius Bakke <marius@gnu.org>
2022-02-02 09:08:23 +00:00
|
|
|
kimap
|
2021-12-13 16:18:24 +00:00
|
|
|
kio
|
|
|
|
kitemmodels
|
|
|
|
kmime
|
gnu: KDE PIM: Update all packages to 21.12.3.
* gnu/packages/kde-pim.scm (KDE PIM): Update to 21.12.3.
(akonadi, akonadi-calendar, akonadi-contacts, akonadi-mime,
akonadi-notes, akonadi-search, kaddressbook, kalarmcal,
kcalendarsupport, kcalutils, kdepim-runtime, keventviews, kgpg,
kidentitymanagement, kimap, kincidenceeditor, kldap, kleopatra, kmail,
kmailcommon, kmailimporter, kmailtransport, kmbox, kmessagelib, kmime,
knotes, kontactinterface, korganizer, kpeoplevcard, kpimcommon,
kpimtextedit, ksmtp, ktnef, libgravatar, libkdepim, libkgapi, libkleo,
libksieve): Update to 21.12.3.
(kblog): Update to 20.04.3.
* gnu/packages/patches/akonadi-not-relocatable.patch
* gnu/packages/patches/akonadi-paths.patch
* gnu/packages/patches/akonadi-timestamps.patch
Fix patches to apply to latest code.
(akonadi-calendar): [inputs]: Add new dependencies.
(akonadi-contacts): [inputs]: Add new dependencies.
(akonadi-search): [arguments]: Disable failing tests.
(kcalendarsupport): [inputs]: Add new dependency, remove obsolete kdepim-apps-lib.
(libksieve): [arguments]: Enable test that works now.
* gnu/packages/patches/libksieve-Fix-missing-link-libraries.patch: Fix patch.
(kaddressbook): [inputs]: Remove obsolete kdepim-apps-libs.
Move kdocstools to native-inputs.
(kmessagelib): [inputs]: Remove obsolete kdepim-appslibs, add kguiaddons.
[arguments]: Fix findind header file.
(kmailimporter): [inputs]: Add new dependencies.
(kmailtransport): [inputs]: Add qtkeychain.
(knotes): [inputs]: Move kdocstools to native-inputs.
(kincidenceeditor): [inputs]: Add new dependencies. Remove obsolete kdepim-apps-libs
[arguments]: Disable failing test.
(kldap): [inputs]: Add qtkeychain.
(kgpg)[arguments]: Disable failing tests.
(libkleo): [propagated-inputs]: Propagate gpgme, qgpgme.
[arguments]: Disable failing tests.
(kdepim-runtime): [inputs]: Add new dependencies grantlee, grantleetheme, kcmutils, kldap,
libkdepim, qtkeychain
[arguments]: Enable all the tests that pass.
We need to use the old hack instead of search-input-directory to
workaround a mysterious include error.
(kdepim-apps-lib): Remove obsolete package.
(kmail): [origin]: Remove patch. Don't think it is needed anymore.
[inputs]: Add new dependencies, delete obsolete kdepim-apps-libs and
duplicate kmime.
[arguments]: Disable failing tests.
* gnu/packages/patches/kmail-Fix-missing-link-libraries.patch: Delete file.
* gnu/local.mk: Remove reference to patch.
(kmailcommon): [inputs]: Add new dependencies.
Signed-off-by: Marius Bakke <marius@gnu.org>
2022-02-02 09:08:23 +00:00
|
|
|
kpimcommon
|
gnu: KDE PIM: Update all packages to 22.04.3.
* gnu/packages/kde-pim.scm (KDE PIM): Update to 22.04.3.
(akonadi, akonadi-calendar, akonadi-contacts, akonadi-mime,
akonadi-notes, akonadi-search, kaddressbook, kalarmcal,
kcalendarsupport, kcalutils, kdepim-runtime, keventviews, kgpg
kidentitymanagement, kimap, kincidenceeditor, kldap, kleopatra
kmailcommon, kmailimporter, kmailtransport, kmbox, kmessagelib
knotes, kontactinterface, korganizer, kpeoplevcard, kpimcommon
kpimtextedit, ksmtp, ktnef, libgravatar, libkdepim, libkgapi,
libksieve): Update to 22.04.3.
(akonadi-calendar): [inputs]: Add kdbusaddons and knotifications.
(kincidenceeditor): [arguments]: Disable failing tests.
(kdepim-runtime): [inputs]: Remove kalarmcal.
(kmailimporter): [inputs]: Add kpimtextedit and ktextwidgets.
(kmessagelib): [inputs]: Add knotifications.
(kpimcommon): [inputs]: Add kpimtextedit.
(libksieve): [inputs]: Add grantlee.
Signed-off-by: Marius Bakke <marius@gnu.org>
2022-08-01 12:29:50 +00:00
|
|
|
kpimtextedit
|
2023-08-08 11:51:30 +00:00
|
|
|
ktextaddons
|
gnu: KDE PIM: Update all packages to 22.04.3.
* gnu/packages/kde-pim.scm (KDE PIM): Update to 22.04.3.
(akonadi, akonadi-calendar, akonadi-contacts, akonadi-mime,
akonadi-notes, akonadi-search, kaddressbook, kalarmcal,
kcalendarsupport, kcalutils, kdepim-runtime, keventviews, kgpg
kidentitymanagement, kimap, kincidenceeditor, kldap, kleopatra
kmailcommon, kmailimporter, kmailtransport, kmbox, kmessagelib
knotes, kontactinterface, korganizer, kpeoplevcard, kpimcommon
kpimtextedit, ksmtp, ktnef, libgravatar, libkdepim, libkgapi,
libksieve): Update to 22.04.3.
(akonadi-calendar): [inputs]: Add kdbusaddons and knotifications.
(kincidenceeditor): [arguments]: Disable failing tests.
(kdepim-runtime): [inputs]: Remove kalarmcal.
(kmailimporter): [inputs]: Add kpimtextedit and ktextwidgets.
(kmessagelib): [inputs]: Add knotifications.
(kpimcommon): [inputs]: Add kpimtextedit.
(libksieve): [inputs]: Add grantlee.
Signed-off-by: Marius Bakke <marius@gnu.org>
2022-08-01 12:29:50 +00:00
|
|
|
ktextwidgets
|
2021-12-13 16:18:24 +00:00
|
|
|
kxmlgui
|
|
|
|
libkdepim
|
|
|
|
qtbase-5))
|
gnu: KDE: Fix old cgit home-pages.
Fix all home-pages pointing to git-repos a cgit.kde.org, which is
gone, to now use the correct repo at invent.kde.org.
* gnu/packages/kde.scm (grantleetheme, kdiagram): Update home-page.
* gnu/packages/kde-frameworks.scm (kholidays): Likewise.
* gnu/packages/kde-internet.scm (libgravatar, libktorrent): Likewise.
* gnu/packages/kde-multimedia.scm (libkcddb, libkcompactdisc): Likewise.
* gnu/packages/kde-pim.scm (kblog, kdav, kdepim-apps-libs,
kdepim-runtime, keventviews, kincidenceeditor, kmailcommon,
kmailimporter, kmessagelib, kpimcommon, ksmtp, libkdepim, libkgapi,
libkleo, libksieve): Likewise.
* gnu/packages/kde-plasma.scm (kdecoration, kscreenlocker): Likewise.
2020-12-12 17:22:37 +00:00
|
|
|
(home-page "https://invent.kde.org/pim/mailimporter")
|
2020-01-18 18:13:02 +00:00
|
|
|
(synopsis "KDE mail importer library")
|
gnu: Reword and extend descriptions for some KDE packages.
* gnu/packages/kde-multimedia.scm (libkcompatdisc)[description]: Extend.
* gnu/packages/kde-pim.scm (akonadi-search, kalarmcal, kdemailimporter,
kdepim-apps-libs, kidentitymanagement, kldap, kmailtransport, kmbox, kmime,
kontactinterface, kpimtextedit)[description]: Reword and extend.
(ktnef, kpimcommon, libkdepim)[synopsis, description]: Reword and extend.
(kmailtransport)[synopsis]: Fix space.
* gnu/packages/kde-systemtools.scm (khelpcenter)[description]: Extend.
2020-03-01 16:13:49 +00:00
|
|
|
(description "This package provides libraries for importing mails other
|
|
|
|
e-mail client programs into KMail and KDE PIM.")
|
2020-01-18 18:13:02 +00:00
|
|
|
(license ;; GPL for programs, LGPL for libraries
|
|
|
|
(list license:gpl2+ license:lgpl2.0+))))
|
|
|
|
|
2019-12-05 22:31:39 +00:00
|
|
|
(define-public kmailtransport
|
|
|
|
(package
|
|
|
|
(name "kmailtransport")
|
2023-07-30 02:32:00 +00:00
|
|
|
(version "23.04.3")
|
2019-12-05 22:31:39 +00:00
|
|
|
(source
|
|
|
|
(origin
|
|
|
|
(method url-fetch)
|
gnu: KDE: Update to 20.04.1.
* gnu/packages/patches/akonadi-paths.patch: Adjust for upstream changes.
* gnu/packages/patches/kdepim-runtime-Fix-missing-link-libraries.patch: Delete file.
* gnu/local.mk (dist_patch_DATA): Adjust accordingly.
* gnu/packages/kde-internet.scm (kget, kopete, krdc, libgravatar): Update to
20.04.1.
[source](uri): Adjust for new upstream location.
* gnu/packages/kde-multimedia.scm (audiocd-kio, dragon, ffmpegthumbs, juk,
k3b, kamoso, kmix, kwave, libkcddb, libkcompactdisc): Likewise.
* gnu/packages/kde-systemtools.scm (dolphin, dolphin-plugins, khelpcenter,
konsole, krfb, ksystemlog): Update to 20.04.1.
[source](uri): Adjust for new upstream location.
* gnu/packages/kde-utils.scm (kate, kmag, kmousetool, kmouth, sweeper): Update
to 20.04.1.
[source](uri): Adjust for new upstream location.
* gnu/packages/kde.scm (baloo-widgets, libkomparediff2, kqtquickcharts,
grantleetheme, kcachegrind, libkdegames, zeroconf-ioslave): Update to 20.04.1.
[source](uri): Adjust for new upstream location.
(grantleetheme)[inputs]: Add KGUIADDONS.
* gnu/packages/kde-pim.scm (akonadi, akonadi-calendar, akonadi-contacts,
akonadi-mime, akonadi-notes, akonadi-search, kincidenceeditor, kaddressbook,
kalarmcal, kblog, kcalendarsupport, kcalutils, kdav, kdepim-apps-libs,
kdepim-runtime, keventviews, kgpg, kidentitymanagement, kimap, kldap,
kleopatra, kmail, kmailcommon, kmailimporter, kmailtransport, kmbox,
kmessagelib, kmime, knotes, kontactinterface, korganizer, kpimcommon,
kpimtextedit, ksmtp, ktnef, libkdepim, libkgapi, libkleo, libksieve): Update
to 20.04.1.
[source](uri): Adjust to current.
(akonadi)[inputs]: Remove KDBUSADDONS and KDESIGNERPLUGIN.
(akonadi-calendar)[inputs]: Remove KDBUSADDONS.
(kdepim-runtime)[source](patches): Remove.
[arguments]: Add phase 'extend-CPLUS_INCLUDE_PATH'.
[inputs]: Remove KDBUSADDONS and KICONTHEMES.
(kmessagelib)[arguments]: Add phase 'extend-CPLUS_INCLUDE_PATH.
[inputs]: Add QCA.
(kdepim-apps-libs)[inputs]: Remove KDBUSADDONS and KICONTHEMES.
(knotes)[inputs]: Remove KDBUSADDONS.
(kpimcommon)[inputs]: Remove KDBUSADDONS and KCOMPLETION.
(libksieve)[arguments]: Disable one more test.
(korganizer)[arguments]: Disable one test.
2020-06-06 14:06:58 +00:00
|
|
|
(uri (string-append "mirror://kde/stable/release-service/" version
|
2019-12-05 22:31:39 +00:00
|
|
|
"/src/kmailtransport-" version ".tar.xz"))
|
|
|
|
(sha256
|
2023-07-30 02:32:00 +00:00
|
|
|
(base32 "14vmm9vla8i477jq40z73lc4klx6mm03y2xnljvx1v4inm3cpw2c"))))
|
2019-12-05 22:31:39 +00:00
|
|
|
(build-system qt-build-system)
|
|
|
|
(native-inputs
|
2021-12-13 16:18:24 +00:00
|
|
|
(list extra-cmake-modules kdoctools))
|
2019-12-05 22:31:39 +00:00
|
|
|
(inputs
|
2021-12-13 16:18:24 +00:00
|
|
|
(list akonadi
|
|
|
|
akonadi-mime
|
|
|
|
boost
|
|
|
|
cyrus-sasl
|
|
|
|
kcalendarcore
|
|
|
|
kcmutils
|
|
|
|
kcontacts
|
|
|
|
kdbusaddons
|
|
|
|
kconfigwidgets
|
|
|
|
ki18n
|
|
|
|
kitemmodels
|
|
|
|
kio
|
|
|
|
kmime
|
|
|
|
ksmtp
|
|
|
|
ktextwidgets
|
|
|
|
kwallet
|
|
|
|
libkgapi
|
gnu: KDE PIM: Update all packages to 21.12.3.
* gnu/packages/kde-pim.scm (KDE PIM): Update to 21.12.3.
(akonadi, akonadi-calendar, akonadi-contacts, akonadi-mime,
akonadi-notes, akonadi-search, kaddressbook, kalarmcal,
kcalendarsupport, kcalutils, kdepim-runtime, keventviews, kgpg,
kidentitymanagement, kimap, kincidenceeditor, kldap, kleopatra, kmail,
kmailcommon, kmailimporter, kmailtransport, kmbox, kmessagelib, kmime,
knotes, kontactinterface, korganizer, kpeoplevcard, kpimcommon,
kpimtextedit, ksmtp, ktnef, libgravatar, libkdepim, libkgapi, libkleo,
libksieve): Update to 21.12.3.
(kblog): Update to 20.04.3.
* gnu/packages/patches/akonadi-not-relocatable.patch
* gnu/packages/patches/akonadi-paths.patch
* gnu/packages/patches/akonadi-timestamps.patch
Fix patches to apply to latest code.
(akonadi-calendar): [inputs]: Add new dependencies.
(akonadi-contacts): [inputs]: Add new dependencies.
(akonadi-search): [arguments]: Disable failing tests.
(kcalendarsupport): [inputs]: Add new dependency, remove obsolete kdepim-apps-lib.
(libksieve): [arguments]: Enable test that works now.
* gnu/packages/patches/libksieve-Fix-missing-link-libraries.patch: Fix patch.
(kaddressbook): [inputs]: Remove obsolete kdepim-apps-libs.
Move kdocstools to native-inputs.
(kmessagelib): [inputs]: Remove obsolete kdepim-appslibs, add kguiaddons.
[arguments]: Fix findind header file.
(kmailimporter): [inputs]: Add new dependencies.
(kmailtransport): [inputs]: Add qtkeychain.
(knotes): [inputs]: Move kdocstools to native-inputs.
(kincidenceeditor): [inputs]: Add new dependencies. Remove obsolete kdepim-apps-libs
[arguments]: Disable failing test.
(kldap): [inputs]: Add qtkeychain.
(kgpg)[arguments]: Disable failing tests.
(libkleo): [propagated-inputs]: Propagate gpgme, qgpgme.
[arguments]: Disable failing tests.
(kdepim-runtime): [inputs]: Add new dependencies grantlee, grantleetheme, kcmutils, kldap,
libkdepim, qtkeychain
[arguments]: Enable all the tests that pass.
We need to use the old hack instead of search-input-directory to
workaround a mysterious include error.
(kdepim-apps-lib): Remove obsolete package.
(kmail): [origin]: Remove patch. Don't think it is needed anymore.
[inputs]: Add new dependencies, delete obsolete kdepim-apps-libs and
duplicate kmime.
[arguments]: Disable failing tests.
* gnu/packages/patches/kmail-Fix-missing-link-libraries.patch: Delete file.
* gnu/local.mk: Remove reference to patch.
(kmailcommon): [inputs]: Add new dependencies.
Signed-off-by: Marius Bakke <marius@gnu.org>
2022-02-02 09:08:23 +00:00
|
|
|
qtbase-5
|
|
|
|
qtkeychain))
|
2019-12-05 22:31:39 +00:00
|
|
|
(arguments
|
|
|
|
`(#:tests? #f)) ;; TODO - 3/3 tests fail, require drkonqi
|
gnu: KDE PIM: Update home-pages.
* gnu/packages/kde-pim.scm (akonadi, kaddressbook, kcalutils, kgpg, kimap,
kldap, kleopatra, kmail, kmailtransport, kmbox, kmime, knotes,
kontactinterface, korganizer, kpimtextedit, ktnef): [home-page]: Update the
link.
Signed-off-by: Marius Bakke <marius@gnu.org>
2022-07-26 06:48:48 +00:00
|
|
|
(home-page "https://api.kde.org/kdepim/kmailtransport/html/index.html")
|
2019-12-05 22:31:39 +00:00
|
|
|
(synopsis "Mail transport service library")
|
gnu: Reword and extend descriptions for some KDE packages.
* gnu/packages/kde-multimedia.scm (libkcompatdisc)[description]: Extend.
* gnu/packages/kde-pim.scm (akonadi-search, kalarmcal, kdemailimporter,
kdepim-apps-libs, kidentitymanagement, kldap, kmailtransport, kmbox, kmime,
kontactinterface, kpimtextedit)[description]: Reword and extend.
(ktnef, kpimcommon, libkdepim)[synopsis, description]: Reword and extend.
(kmailtransport)[synopsis]: Fix space.
* gnu/packages/kde-systemtools.scm (khelpcenter)[description]: Extend.
2020-03-01 16:13:49 +00:00
|
|
|
(description "This library provides an API and support code for managing
|
2019-12-05 22:31:39 +00:00
|
|
|
mail transport.")
|
|
|
|
(license license:lgpl2.0+)))
|
|
|
|
|
2019-12-05 18:55:57 +00:00
|
|
|
(define-public kmbox
|
|
|
|
(package
|
|
|
|
(name "kmbox")
|
2023-07-30 02:32:00 +00:00
|
|
|
(version "23.04.3")
|
2019-12-05 18:55:57 +00:00
|
|
|
(source
|
|
|
|
(origin
|
|
|
|
(method url-fetch)
|
gnu: KDE: Update to 20.04.1.
* gnu/packages/patches/akonadi-paths.patch: Adjust for upstream changes.
* gnu/packages/patches/kdepim-runtime-Fix-missing-link-libraries.patch: Delete file.
* gnu/local.mk (dist_patch_DATA): Adjust accordingly.
* gnu/packages/kde-internet.scm (kget, kopete, krdc, libgravatar): Update to
20.04.1.
[source](uri): Adjust for new upstream location.
* gnu/packages/kde-multimedia.scm (audiocd-kio, dragon, ffmpegthumbs, juk,
k3b, kamoso, kmix, kwave, libkcddb, libkcompactdisc): Likewise.
* gnu/packages/kde-systemtools.scm (dolphin, dolphin-plugins, khelpcenter,
konsole, krfb, ksystemlog): Update to 20.04.1.
[source](uri): Adjust for new upstream location.
* gnu/packages/kde-utils.scm (kate, kmag, kmousetool, kmouth, sweeper): Update
to 20.04.1.
[source](uri): Adjust for new upstream location.
* gnu/packages/kde.scm (baloo-widgets, libkomparediff2, kqtquickcharts,
grantleetheme, kcachegrind, libkdegames, zeroconf-ioslave): Update to 20.04.1.
[source](uri): Adjust for new upstream location.
(grantleetheme)[inputs]: Add KGUIADDONS.
* gnu/packages/kde-pim.scm (akonadi, akonadi-calendar, akonadi-contacts,
akonadi-mime, akonadi-notes, akonadi-search, kincidenceeditor, kaddressbook,
kalarmcal, kblog, kcalendarsupport, kcalutils, kdav, kdepim-apps-libs,
kdepim-runtime, keventviews, kgpg, kidentitymanagement, kimap, kldap,
kleopatra, kmail, kmailcommon, kmailimporter, kmailtransport, kmbox,
kmessagelib, kmime, knotes, kontactinterface, korganizer, kpimcommon,
kpimtextedit, ksmtp, ktnef, libkdepim, libkgapi, libkleo, libksieve): Update
to 20.04.1.
[source](uri): Adjust to current.
(akonadi)[inputs]: Remove KDBUSADDONS and KDESIGNERPLUGIN.
(akonadi-calendar)[inputs]: Remove KDBUSADDONS.
(kdepim-runtime)[source](patches): Remove.
[arguments]: Add phase 'extend-CPLUS_INCLUDE_PATH'.
[inputs]: Remove KDBUSADDONS and KICONTHEMES.
(kmessagelib)[arguments]: Add phase 'extend-CPLUS_INCLUDE_PATH.
[inputs]: Add QCA.
(kdepim-apps-libs)[inputs]: Remove KDBUSADDONS and KICONTHEMES.
(knotes)[inputs]: Remove KDBUSADDONS.
(kpimcommon)[inputs]: Remove KDBUSADDONS and KCOMPLETION.
(libksieve)[arguments]: Disable one more test.
(korganizer)[arguments]: Disable one test.
2020-06-06 14:06:58 +00:00
|
|
|
(uri (string-append "mirror://kde/stable/release-service/" version
|
2019-12-05 18:55:57 +00:00
|
|
|
"/src/kmbox-" version ".tar.xz"))
|
|
|
|
(sha256
|
2023-07-30 02:32:00 +00:00
|
|
|
(base32 "05hdfjwp6ay2j16rxp55k3fywwf7kxiig4dv9fh51iysglmzzn76"))))
|
2019-12-05 18:55:57 +00:00
|
|
|
(build-system qt-build-system)
|
|
|
|
(native-inputs
|
2021-12-13 16:18:24 +00:00
|
|
|
(list extra-cmake-modules))
|
2019-12-05 18:55:57 +00:00
|
|
|
(inputs
|
2021-12-13 16:18:24 +00:00
|
|
|
(list kcodecs kmime qtbase-5))
|
gnu: KDE PIM: Update home-pages.
* gnu/packages/kde-pim.scm (akonadi, kaddressbook, kcalutils, kgpg, kimap,
kldap, kleopatra, kmail, kmailtransport, kmbox, kmime, knotes,
kontactinterface, korganizer, kpimtextedit, ktnef): [home-page]: Update the
link.
Signed-off-by: Marius Bakke <marius@gnu.org>
2022-07-26 06:48:48 +00:00
|
|
|
(home-page "https://api.kde.org/kdepim/kmbox/html/index.html")
|
2019-12-05 18:55:57 +00:00
|
|
|
(synopsis "Library for handling mbox mailboxes")
|
gnu: Reword and extend descriptions for some KDE packages.
* gnu/packages/kde-multimedia.scm (libkcompatdisc)[description]: Extend.
* gnu/packages/kde-pim.scm (akonadi-search, kalarmcal, kdemailimporter,
kdepim-apps-libs, kidentitymanagement, kldap, kmailtransport, kmbox, kmime,
kontactinterface, kpimtextedit)[description]: Reword and extend.
(ktnef, kpimcommon, libkdepim)[synopsis, description]: Reword and extend.
(kmailtransport)[synopsis]: Fix space.
* gnu/packages/kde-systemtools.scm (khelpcenter)[description]: Extend.
2020-03-01 16:13:49 +00:00
|
|
|
(description "This is a library for handling mailboxes in mbox format,
|
|
|
|
using a Qt/KMime C++ API.")
|
2019-12-05 18:55:57 +00:00
|
|
|
(license license:lgpl2.0+ )))
|
|
|
|
|
2020-01-18 20:47:53 +00:00
|
|
|
(define-public kmessagelib
|
|
|
|
(package
|
|
|
|
(name "kmessagelib")
|
2023-07-30 02:32:01 +00:00
|
|
|
(version "23.04.3")
|
2020-01-18 20:47:53 +00:00
|
|
|
(source
|
|
|
|
(origin
|
|
|
|
(method url-fetch)
|
gnu: KDE: Update to 20.04.1.
* gnu/packages/patches/akonadi-paths.patch: Adjust for upstream changes.
* gnu/packages/patches/kdepim-runtime-Fix-missing-link-libraries.patch: Delete file.
* gnu/local.mk (dist_patch_DATA): Adjust accordingly.
* gnu/packages/kde-internet.scm (kget, kopete, krdc, libgravatar): Update to
20.04.1.
[source](uri): Adjust for new upstream location.
* gnu/packages/kde-multimedia.scm (audiocd-kio, dragon, ffmpegthumbs, juk,
k3b, kamoso, kmix, kwave, libkcddb, libkcompactdisc): Likewise.
* gnu/packages/kde-systemtools.scm (dolphin, dolphin-plugins, khelpcenter,
konsole, krfb, ksystemlog): Update to 20.04.1.
[source](uri): Adjust for new upstream location.
* gnu/packages/kde-utils.scm (kate, kmag, kmousetool, kmouth, sweeper): Update
to 20.04.1.
[source](uri): Adjust for new upstream location.
* gnu/packages/kde.scm (baloo-widgets, libkomparediff2, kqtquickcharts,
grantleetheme, kcachegrind, libkdegames, zeroconf-ioslave): Update to 20.04.1.
[source](uri): Adjust for new upstream location.
(grantleetheme)[inputs]: Add KGUIADDONS.
* gnu/packages/kde-pim.scm (akonadi, akonadi-calendar, akonadi-contacts,
akonadi-mime, akonadi-notes, akonadi-search, kincidenceeditor, kaddressbook,
kalarmcal, kblog, kcalendarsupport, kcalutils, kdav, kdepim-apps-libs,
kdepim-runtime, keventviews, kgpg, kidentitymanagement, kimap, kldap,
kleopatra, kmail, kmailcommon, kmailimporter, kmailtransport, kmbox,
kmessagelib, kmime, knotes, kontactinterface, korganizer, kpimcommon,
kpimtextedit, ksmtp, ktnef, libkdepim, libkgapi, libkleo, libksieve): Update
to 20.04.1.
[source](uri): Adjust to current.
(akonadi)[inputs]: Remove KDBUSADDONS and KDESIGNERPLUGIN.
(akonadi-calendar)[inputs]: Remove KDBUSADDONS.
(kdepim-runtime)[source](patches): Remove.
[arguments]: Add phase 'extend-CPLUS_INCLUDE_PATH'.
[inputs]: Remove KDBUSADDONS and KICONTHEMES.
(kmessagelib)[arguments]: Add phase 'extend-CPLUS_INCLUDE_PATH.
[inputs]: Add QCA.
(kdepim-apps-libs)[inputs]: Remove KDBUSADDONS and KICONTHEMES.
(knotes)[inputs]: Remove KDBUSADDONS.
(kpimcommon)[inputs]: Remove KDBUSADDONS and KCOMPLETION.
(libksieve)[arguments]: Disable one more test.
(korganizer)[arguments]: Disable one test.
2020-06-06 14:06:58 +00:00
|
|
|
(uri (string-append "mirror://kde/stable/release-service/" version
|
2020-01-18 20:47:53 +00:00
|
|
|
"/src/messagelib-" version ".tar.xz"))
|
|
|
|
(sha256
|
2023-07-30 02:32:01 +00:00
|
|
|
(base32 "0aqac0p46cwnr3qxjk0ivalfwjcgwy52s088wnk6ckp77m7r65is"))))
|
2020-01-18 20:47:53 +00:00
|
|
|
(properties `((upstream-name . "messagelib")))
|
|
|
|
(build-system qt-build-system)
|
|
|
|
(native-inputs
|
2021-12-13 16:18:24 +00:00
|
|
|
(list extra-cmake-modules gnupg libxml2))
|
2020-01-18 20:47:53 +00:00
|
|
|
(inputs
|
2021-12-13 16:18:24 +00:00
|
|
|
(list akonadi
|
|
|
|
akonadi-contacts
|
|
|
|
akonadi-mime
|
|
|
|
akonadi-notes
|
|
|
|
akonadi-search
|
|
|
|
boost
|
|
|
|
gpgme
|
|
|
|
grantlee
|
|
|
|
grantleetheme
|
|
|
|
karchive
|
|
|
|
kcalendarcore
|
|
|
|
kcodecs
|
|
|
|
kcompletion
|
|
|
|
kconfig
|
|
|
|
kconfigwidgets
|
|
|
|
kcontacts
|
|
|
|
kdbusaddons
|
gnu: KDE PIM: Update all packages to 21.12.3.
* gnu/packages/kde-pim.scm (KDE PIM): Update to 21.12.3.
(akonadi, akonadi-calendar, akonadi-contacts, akonadi-mime,
akonadi-notes, akonadi-search, kaddressbook, kalarmcal,
kcalendarsupport, kcalutils, kdepim-runtime, keventviews, kgpg,
kidentitymanagement, kimap, kincidenceeditor, kldap, kleopatra, kmail,
kmailcommon, kmailimporter, kmailtransport, kmbox, kmessagelib, kmime,
knotes, kontactinterface, korganizer, kpeoplevcard, kpimcommon,
kpimtextedit, ksmtp, ktnef, libgravatar, libkdepim, libkgapi, libkleo,
libksieve): Update to 21.12.3.
(kblog): Update to 20.04.3.
* gnu/packages/patches/akonadi-not-relocatable.patch
* gnu/packages/patches/akonadi-paths.patch
* gnu/packages/patches/akonadi-timestamps.patch
Fix patches to apply to latest code.
(akonadi-calendar): [inputs]: Add new dependencies.
(akonadi-contacts): [inputs]: Add new dependencies.
(akonadi-search): [arguments]: Disable failing tests.
(kcalendarsupport): [inputs]: Add new dependency, remove obsolete kdepim-apps-lib.
(libksieve): [arguments]: Enable test that works now.
* gnu/packages/patches/libksieve-Fix-missing-link-libraries.patch: Fix patch.
(kaddressbook): [inputs]: Remove obsolete kdepim-apps-libs.
Move kdocstools to native-inputs.
(kmessagelib): [inputs]: Remove obsolete kdepim-appslibs, add kguiaddons.
[arguments]: Fix findind header file.
(kmailimporter): [inputs]: Add new dependencies.
(kmailtransport): [inputs]: Add qtkeychain.
(knotes): [inputs]: Move kdocstools to native-inputs.
(kincidenceeditor): [inputs]: Add new dependencies. Remove obsolete kdepim-apps-libs
[arguments]: Disable failing test.
(kldap): [inputs]: Add qtkeychain.
(kgpg)[arguments]: Disable failing tests.
(libkleo): [propagated-inputs]: Propagate gpgme, qgpgme.
[arguments]: Disable failing tests.
(kdepim-runtime): [inputs]: Add new dependencies grantlee, grantleetheme, kcmutils, kldap,
libkdepim, qtkeychain
[arguments]: Enable all the tests that pass.
We need to use the old hack instead of search-input-directory to
workaround a mysterious include error.
(kdepim-apps-lib): Remove obsolete package.
(kmail): [origin]: Remove patch. Don't think it is needed anymore.
[inputs]: Add new dependencies, delete obsolete kdepim-apps-libs and
duplicate kmime.
[arguments]: Disable failing tests.
* gnu/packages/patches/kmail-Fix-missing-link-libraries.patch: Delete file.
* gnu/local.mk: Remove reference to patch.
(kmailcommon): [inputs]: Add new dependencies.
Signed-off-by: Marius Bakke <marius@gnu.org>
2022-02-02 09:08:23 +00:00
|
|
|
kguiaddons
|
2021-12-13 16:18:24 +00:00
|
|
|
ki18n
|
|
|
|
kiconthemes
|
|
|
|
kidentitymanagement
|
|
|
|
kimap
|
|
|
|
kio
|
|
|
|
kitemmodels
|
|
|
|
kitemviews
|
|
|
|
kjobwidgets
|
|
|
|
kldap
|
|
|
|
kmailtransport
|
|
|
|
kmbox
|
|
|
|
kmime
|
|
|
|
knewstuff
|
gnu: KDE PIM: Update all packages to 22.04.3.
* gnu/packages/kde-pim.scm (KDE PIM): Update to 22.04.3.
(akonadi, akonadi-calendar, akonadi-contacts, akonadi-mime,
akonadi-notes, akonadi-search, kaddressbook, kalarmcal,
kcalendarsupport, kcalutils, kdepim-runtime, keventviews, kgpg
kidentitymanagement, kimap, kincidenceeditor, kldap, kleopatra
kmailcommon, kmailimporter, kmailtransport, kmbox, kmessagelib
knotes, kontactinterface, korganizer, kpeoplevcard, kpimcommon
kpimtextedit, ksmtp, ktnef, libgravatar, libkdepim, libkgapi,
libksieve): Update to 22.04.3.
(akonadi-calendar): [inputs]: Add kdbusaddons and knotifications.
(kincidenceeditor): [arguments]: Disable failing tests.
(kdepim-runtime): [inputs]: Remove kalarmcal.
(kmailimporter): [inputs]: Add kpimtextedit and ktextwidgets.
(kmessagelib): [inputs]: Add knotifications.
(kpimcommon): [inputs]: Add kpimtextedit.
(libksieve): [inputs]: Add grantlee.
Signed-off-by: Marius Bakke <marius@gnu.org>
2022-08-01 12:29:50 +00:00
|
|
|
knotifications
|
2021-12-13 16:18:24 +00:00
|
|
|
kpimcommon
|
|
|
|
kpimtextedit
|
|
|
|
kservice
|
|
|
|
ksyntaxhighlighting
|
2023-08-08 11:51:30 +00:00
|
|
|
ktextaddons
|
2021-12-13 16:18:24 +00:00
|
|
|
ktextwidgets
|
|
|
|
kwallet
|
|
|
|
kwidgetsaddons
|
|
|
|
kwindowsystem
|
|
|
|
kxmlgui
|
|
|
|
libgravatar
|
|
|
|
libkdepim
|
|
|
|
libkleo
|
|
|
|
qca
|
|
|
|
qgpgme
|
|
|
|
qtbase-5
|
2022-07-18 01:03:18 +00:00
|
|
|
qtdeclarative-5
|
2022-07-18 04:02:58 +00:00
|
|
|
qtwebchannel-5
|
2022-07-18 11:57:16 +00:00
|
|
|
qtwebengine-5
|
2021-12-13 16:18:24 +00:00
|
|
|
sonnet))
|
2020-01-18 20:47:53 +00:00
|
|
|
(arguments
|
gnu: KDE: Update to 20.04.1.
* gnu/packages/patches/akonadi-paths.patch: Adjust for upstream changes.
* gnu/packages/patches/kdepim-runtime-Fix-missing-link-libraries.patch: Delete file.
* gnu/local.mk (dist_patch_DATA): Adjust accordingly.
* gnu/packages/kde-internet.scm (kget, kopete, krdc, libgravatar): Update to
20.04.1.
[source](uri): Adjust for new upstream location.
* gnu/packages/kde-multimedia.scm (audiocd-kio, dragon, ffmpegthumbs, juk,
k3b, kamoso, kmix, kwave, libkcddb, libkcompactdisc): Likewise.
* gnu/packages/kde-systemtools.scm (dolphin, dolphin-plugins, khelpcenter,
konsole, krfb, ksystemlog): Update to 20.04.1.
[source](uri): Adjust for new upstream location.
* gnu/packages/kde-utils.scm (kate, kmag, kmousetool, kmouth, sweeper): Update
to 20.04.1.
[source](uri): Adjust for new upstream location.
* gnu/packages/kde.scm (baloo-widgets, libkomparediff2, kqtquickcharts,
grantleetheme, kcachegrind, libkdegames, zeroconf-ioslave): Update to 20.04.1.
[source](uri): Adjust for new upstream location.
(grantleetheme)[inputs]: Add KGUIADDONS.
* gnu/packages/kde-pim.scm (akonadi, akonadi-calendar, akonadi-contacts,
akonadi-mime, akonadi-notes, akonadi-search, kincidenceeditor, kaddressbook,
kalarmcal, kblog, kcalendarsupport, kcalutils, kdav, kdepim-apps-libs,
kdepim-runtime, keventviews, kgpg, kidentitymanagement, kimap, kldap,
kleopatra, kmail, kmailcommon, kmailimporter, kmailtransport, kmbox,
kmessagelib, kmime, knotes, kontactinterface, korganizer, kpimcommon,
kpimtextedit, ksmtp, ktnef, libkdepim, libkgapi, libkleo, libksieve): Update
to 20.04.1.
[source](uri): Adjust to current.
(akonadi)[inputs]: Remove KDBUSADDONS and KDESIGNERPLUGIN.
(akonadi-calendar)[inputs]: Remove KDBUSADDONS.
(kdepim-runtime)[source](patches): Remove.
[arguments]: Add phase 'extend-CPLUS_INCLUDE_PATH'.
[inputs]: Remove KDBUSADDONS and KICONTHEMES.
(kmessagelib)[arguments]: Add phase 'extend-CPLUS_INCLUDE_PATH.
[inputs]: Add QCA.
(kdepim-apps-libs)[inputs]: Remove KDBUSADDONS and KICONTHEMES.
(knotes)[inputs]: Remove KDBUSADDONS.
(kpimcommon)[inputs]: Remove KDBUSADDONS and KCOMPLETION.
(libksieve)[arguments]: Disable one more test.
(korganizer)[arguments]: Disable one test.
2020-06-06 14:06:58 +00:00
|
|
|
`(#:tests? #f ;TODO many test fail for quite different reasons
|
|
|
|
#:phases (modify-phases %standard-phases
|
|
|
|
(add-after 'set-paths 'extend-CPLUS_INCLUDE_PATH
|
|
|
|
(lambda* (#:key inputs #:allow-other-keys)
|
|
|
|
;; FIXME: One of the compilation steps fail to find
|
gnu: KDE PIM: Update all packages to 21.12.3.
* gnu/packages/kde-pim.scm (KDE PIM): Update to 21.12.3.
(akonadi, akonadi-calendar, akonadi-contacts, akonadi-mime,
akonadi-notes, akonadi-search, kaddressbook, kalarmcal,
kcalendarsupport, kcalutils, kdepim-runtime, keventviews, kgpg,
kidentitymanagement, kimap, kincidenceeditor, kldap, kleopatra, kmail,
kmailcommon, kmailimporter, kmailtransport, kmbox, kmessagelib, kmime,
knotes, kontactinterface, korganizer, kpeoplevcard, kpimcommon,
kpimtextedit, ksmtp, ktnef, libgravatar, libkdepim, libkgapi, libkleo,
libksieve): Update to 21.12.3.
(kblog): Update to 20.04.3.
* gnu/packages/patches/akonadi-not-relocatable.patch
* gnu/packages/patches/akonadi-paths.patch
* gnu/packages/patches/akonadi-timestamps.patch
Fix patches to apply to latest code.
(akonadi-calendar): [inputs]: Add new dependencies.
(akonadi-contacts): [inputs]: Add new dependencies.
(akonadi-search): [arguments]: Disable failing tests.
(kcalendarsupport): [inputs]: Add new dependency, remove obsolete kdepim-apps-lib.
(libksieve): [arguments]: Enable test that works now.
* gnu/packages/patches/libksieve-Fix-missing-link-libraries.patch: Fix patch.
(kaddressbook): [inputs]: Remove obsolete kdepim-apps-libs.
Move kdocstools to native-inputs.
(kmessagelib): [inputs]: Remove obsolete kdepim-appslibs, add kguiaddons.
[arguments]: Fix findind header file.
(kmailimporter): [inputs]: Add new dependencies.
(kmailtransport): [inputs]: Add qtkeychain.
(knotes): [inputs]: Move kdocstools to native-inputs.
(kincidenceeditor): [inputs]: Add new dependencies. Remove obsolete kdepim-apps-libs
[arguments]: Disable failing test.
(kldap): [inputs]: Add qtkeychain.
(kgpg)[arguments]: Disable failing tests.
(libkleo): [propagated-inputs]: Propagate gpgme, qgpgme.
[arguments]: Disable failing tests.
(kdepim-runtime): [inputs]: Add new dependencies grantlee, grantleetheme, kcmutils, kldap,
libkdepim, qtkeychain
[arguments]: Enable all the tests that pass.
We need to use the old hack instead of search-input-directory to
workaround a mysterious include error.
(kdepim-apps-lib): Remove obsolete package.
(kmail): [origin]: Remove patch. Don't think it is needed anymore.
[inputs]: Add new dependencies, delete obsolete kdepim-apps-libs and
duplicate kmime.
[arguments]: Disable failing tests.
* gnu/packages/patches/kmail-Fix-missing-link-libraries.patch: Delete file.
* gnu/local.mk: Remove reference to patch.
(kmailcommon): [inputs]: Add new dependencies.
Signed-off-by: Marius Bakke <marius@gnu.org>
2022-02-02 09:08:23 +00:00
|
|
|
;; <QPrinter> without this hack.
|
gnu: KDE: Update to 20.04.1.
* gnu/packages/patches/akonadi-paths.patch: Adjust for upstream changes.
* gnu/packages/patches/kdepim-runtime-Fix-missing-link-libraries.patch: Delete file.
* gnu/local.mk (dist_patch_DATA): Adjust accordingly.
* gnu/packages/kde-internet.scm (kget, kopete, krdc, libgravatar): Update to
20.04.1.
[source](uri): Adjust for new upstream location.
* gnu/packages/kde-multimedia.scm (audiocd-kio, dragon, ffmpegthumbs, juk,
k3b, kamoso, kmix, kwave, libkcddb, libkcompactdisc): Likewise.
* gnu/packages/kde-systemtools.scm (dolphin, dolphin-plugins, khelpcenter,
konsole, krfb, ksystemlog): Update to 20.04.1.
[source](uri): Adjust for new upstream location.
* gnu/packages/kde-utils.scm (kate, kmag, kmousetool, kmouth, sweeper): Update
to 20.04.1.
[source](uri): Adjust for new upstream location.
* gnu/packages/kde.scm (baloo-widgets, libkomparediff2, kqtquickcharts,
grantleetheme, kcachegrind, libkdegames, zeroconf-ioslave): Update to 20.04.1.
[source](uri): Adjust for new upstream location.
(grantleetheme)[inputs]: Add KGUIADDONS.
* gnu/packages/kde-pim.scm (akonadi, akonadi-calendar, akonadi-contacts,
akonadi-mime, akonadi-notes, akonadi-search, kincidenceeditor, kaddressbook,
kalarmcal, kblog, kcalendarsupport, kcalutils, kdav, kdepim-apps-libs,
kdepim-runtime, keventviews, kgpg, kidentitymanagement, kimap, kldap,
kleopatra, kmail, kmailcommon, kmailimporter, kmailtransport, kmbox,
kmessagelib, kmime, knotes, kontactinterface, korganizer, kpimcommon,
kpimtextedit, ksmtp, ktnef, libkdepim, libkgapi, libkleo, libksieve): Update
to 20.04.1.
[source](uri): Adjust to current.
(akonadi)[inputs]: Remove KDBUSADDONS and KDESIGNERPLUGIN.
(akonadi-calendar)[inputs]: Remove KDBUSADDONS.
(kdepim-runtime)[source](patches): Remove.
[arguments]: Add phase 'extend-CPLUS_INCLUDE_PATH'.
[inputs]: Remove KDBUSADDONS and KICONTHEMES.
(kmessagelib)[arguments]: Add phase 'extend-CPLUS_INCLUDE_PATH.
[inputs]: Add QCA.
(kdepim-apps-libs)[inputs]: Remove KDBUSADDONS and KICONTHEMES.
(knotes)[inputs]: Remove KDBUSADDONS.
(kpimcommon)[inputs]: Remove KDBUSADDONS and KCOMPLETION.
(libksieve)[arguments]: Disable one more test.
(korganizer)[arguments]: Disable one test.
2020-06-06 14:06:58 +00:00
|
|
|
(setenv "CPLUS_INCLUDE_PATH"
|
gnu: KDE PIM: Update all packages to 21.12.3.
* gnu/packages/kde-pim.scm (KDE PIM): Update to 21.12.3.
(akonadi, akonadi-calendar, akonadi-contacts, akonadi-mime,
akonadi-notes, akonadi-search, kaddressbook, kalarmcal,
kcalendarsupport, kcalutils, kdepim-runtime, keventviews, kgpg,
kidentitymanagement, kimap, kincidenceeditor, kldap, kleopatra, kmail,
kmailcommon, kmailimporter, kmailtransport, kmbox, kmessagelib, kmime,
knotes, kontactinterface, korganizer, kpeoplevcard, kpimcommon,
kpimtextedit, ksmtp, ktnef, libgravatar, libkdepim, libkgapi, libkleo,
libksieve): Update to 21.12.3.
(kblog): Update to 20.04.3.
* gnu/packages/patches/akonadi-not-relocatable.patch
* gnu/packages/patches/akonadi-paths.patch
* gnu/packages/patches/akonadi-timestamps.patch
Fix patches to apply to latest code.
(akonadi-calendar): [inputs]: Add new dependencies.
(akonadi-contacts): [inputs]: Add new dependencies.
(akonadi-search): [arguments]: Disable failing tests.
(kcalendarsupport): [inputs]: Add new dependency, remove obsolete kdepim-apps-lib.
(libksieve): [arguments]: Enable test that works now.
* gnu/packages/patches/libksieve-Fix-missing-link-libraries.patch: Fix patch.
(kaddressbook): [inputs]: Remove obsolete kdepim-apps-libs.
Move kdocstools to native-inputs.
(kmessagelib): [inputs]: Remove obsolete kdepim-appslibs, add kguiaddons.
[arguments]: Fix findind header file.
(kmailimporter): [inputs]: Add new dependencies.
(kmailtransport): [inputs]: Add qtkeychain.
(knotes): [inputs]: Move kdocstools to native-inputs.
(kincidenceeditor): [inputs]: Add new dependencies. Remove obsolete kdepim-apps-libs
[arguments]: Disable failing test.
(kldap): [inputs]: Add qtkeychain.
(kgpg)[arguments]: Disable failing tests.
(libkleo): [propagated-inputs]: Propagate gpgme, qgpgme.
[arguments]: Disable failing tests.
(kdepim-runtime): [inputs]: Add new dependencies grantlee, grantleetheme, kcmutils, kldap,
libkdepim, qtkeychain
[arguments]: Enable all the tests that pass.
We need to use the old hack instead of search-input-directory to
workaround a mysterious include error.
(kdepim-apps-lib): Remove obsolete package.
(kmail): [origin]: Remove patch. Don't think it is needed anymore.
[inputs]: Add new dependencies, delete obsolete kdepim-apps-libs and
duplicate kmime.
[arguments]: Disable failing tests.
* gnu/packages/patches/kmail-Fix-missing-link-libraries.patch: Delete file.
* gnu/local.mk: Remove reference to patch.
(kmailcommon): [inputs]: Add new dependencies.
Signed-off-by: Marius Bakke <marius@gnu.org>
2022-02-02 09:08:23 +00:00
|
|
|
(string-append (assoc-ref inputs "qtbase")
|
|
|
|
"/include/qt5/QtPrintSupport:"
|
|
|
|
(or (getenv "CPLUS_INCLUDE_PATH") ""))))))))
|
gnu: KDE: Fix old cgit home-pages.
Fix all home-pages pointing to git-repos a cgit.kde.org, which is
gone, to now use the correct repo at invent.kde.org.
* gnu/packages/kde.scm (grantleetheme, kdiagram): Update home-page.
* gnu/packages/kde-frameworks.scm (kholidays): Likewise.
* gnu/packages/kde-internet.scm (libgravatar, libktorrent): Likewise.
* gnu/packages/kde-multimedia.scm (libkcddb, libkcompactdisc): Likewise.
* gnu/packages/kde-pim.scm (kblog, kdav, kdepim-apps-libs,
kdepim-runtime, keventviews, kincidenceeditor, kmailcommon,
kmailimporter, kmessagelib, kpimcommon, ksmtp, libkdepim, libkgapi,
libkleo, libksieve): Likewise.
* gnu/packages/kde-plasma.scm (kdecoration, kscreenlocker): Likewise.
2020-12-12 17:22:37 +00:00
|
|
|
(home-page "https://invent.kde.org/pim/messagelib")
|
2020-01-18 20:47:53 +00:00
|
|
|
(synopsis "KDE PIM messaging libraries")
|
2020-04-12 18:31:39 +00:00
|
|
|
(description "This package provides several libraries for messages,
|
2020-01-18 20:47:53 +00:00
|
|
|
e.g. a message list, a mime tree parse, a template parser and the
|
|
|
|
kwebengineviewer.")
|
|
|
|
(license ;; GPL for programs, LGPL for libraries
|
|
|
|
(list license:gpl2+ license:lgpl2.0+))))
|
|
|
|
|
2019-12-05 18:49:11 +00:00
|
|
|
(define-public kmime
|
|
|
|
(package
|
|
|
|
(name "kmime")
|
2023-07-30 02:32:01 +00:00
|
|
|
(version "23.04.3")
|
2019-12-05 18:49:11 +00:00
|
|
|
(source
|
|
|
|
(origin
|
|
|
|
(method url-fetch)
|
gnu: KDE: Update to 20.04.1.
* gnu/packages/patches/akonadi-paths.patch: Adjust for upstream changes.
* gnu/packages/patches/kdepim-runtime-Fix-missing-link-libraries.patch: Delete file.
* gnu/local.mk (dist_patch_DATA): Adjust accordingly.
* gnu/packages/kde-internet.scm (kget, kopete, krdc, libgravatar): Update to
20.04.1.
[source](uri): Adjust for new upstream location.
* gnu/packages/kde-multimedia.scm (audiocd-kio, dragon, ffmpegthumbs, juk,
k3b, kamoso, kmix, kwave, libkcddb, libkcompactdisc): Likewise.
* gnu/packages/kde-systemtools.scm (dolphin, dolphin-plugins, khelpcenter,
konsole, krfb, ksystemlog): Update to 20.04.1.
[source](uri): Adjust for new upstream location.
* gnu/packages/kde-utils.scm (kate, kmag, kmousetool, kmouth, sweeper): Update
to 20.04.1.
[source](uri): Adjust for new upstream location.
* gnu/packages/kde.scm (baloo-widgets, libkomparediff2, kqtquickcharts,
grantleetheme, kcachegrind, libkdegames, zeroconf-ioslave): Update to 20.04.1.
[source](uri): Adjust for new upstream location.
(grantleetheme)[inputs]: Add KGUIADDONS.
* gnu/packages/kde-pim.scm (akonadi, akonadi-calendar, akonadi-contacts,
akonadi-mime, akonadi-notes, akonadi-search, kincidenceeditor, kaddressbook,
kalarmcal, kblog, kcalendarsupport, kcalutils, kdav, kdepim-apps-libs,
kdepim-runtime, keventviews, kgpg, kidentitymanagement, kimap, kldap,
kleopatra, kmail, kmailcommon, kmailimporter, kmailtransport, kmbox,
kmessagelib, kmime, knotes, kontactinterface, korganizer, kpimcommon,
kpimtextedit, ksmtp, ktnef, libkdepim, libkgapi, libkleo, libksieve): Update
to 20.04.1.
[source](uri): Adjust to current.
(akonadi)[inputs]: Remove KDBUSADDONS and KDESIGNERPLUGIN.
(akonadi-calendar)[inputs]: Remove KDBUSADDONS.
(kdepim-runtime)[source](patches): Remove.
[arguments]: Add phase 'extend-CPLUS_INCLUDE_PATH'.
[inputs]: Remove KDBUSADDONS and KICONTHEMES.
(kmessagelib)[arguments]: Add phase 'extend-CPLUS_INCLUDE_PATH.
[inputs]: Add QCA.
(kdepim-apps-libs)[inputs]: Remove KDBUSADDONS and KICONTHEMES.
(knotes)[inputs]: Remove KDBUSADDONS.
(kpimcommon)[inputs]: Remove KDBUSADDONS and KCOMPLETION.
(libksieve)[arguments]: Disable one more test.
(korganizer)[arguments]: Disable one test.
2020-06-06 14:06:58 +00:00
|
|
|
(uri (string-append "mirror://kde/stable/release-service/" version
|
2019-12-05 18:49:11 +00:00
|
|
|
"/src/kmime-" version ".tar.xz"))
|
|
|
|
(sha256
|
2023-07-30 02:32:01 +00:00
|
|
|
(base32 "1i38g0s98d24882kxyjay965nz3d3fjhb3mv1p4sllm2lnffrq2d"))))
|
2019-12-05 18:49:11 +00:00
|
|
|
(build-system qt-build-system)
|
|
|
|
(native-inputs
|
2021-12-13 16:18:24 +00:00
|
|
|
(list extra-cmake-modules))
|
2019-12-05 18:49:11 +00:00
|
|
|
(inputs
|
2021-12-13 16:18:24 +00:00
|
|
|
(list kcodecs ki18n qtbase-5))
|
2019-12-05 18:49:11 +00:00
|
|
|
(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)
|
gnu: KDE-PIM: Remove trailing booleans.
* gnu/packages/kde-pim.scm (akonadi, akonadi-mime, akonadi-search,
kincidenceeditor, kdepim-runtime, kidentitymanagement, kleopatra, kmail,
kmime, korganizer, kpeoplevcard, ksmtp, libkleo,
libksieve)[arguments]: Remove trailing booleans.
Signed-off-by: Marius Bakke <marius@gnu.org>
2022-07-21 06:33:36 +00:00
|
|
|
(string-append day " 12:34 PM"))))))))
|
|
|
|
(home-page "https://api.kde.org/stable/kdepimlibs-apidocs/")
|
2019-12-05 18:49:11 +00:00
|
|
|
(synopsis "Library for handling MIME data")
|
gnu: Reword and extend descriptions for some KDE packages.
* gnu/packages/kde-multimedia.scm (libkcompatdisc)[description]: Extend.
* gnu/packages/kde-pim.scm (akonadi-search, kalarmcal, kdemailimporter,
kdepim-apps-libs, kidentitymanagement, kldap, kmailtransport, kmbox, kmime,
kontactinterface, kpimtextedit)[description]: Reword and extend.
(ktnef, kpimcommon, libkdepim)[synopsis, description]: Reword and extend.
(kmailtransport)[synopsis]: Fix space.
* gnu/packages/kde-systemtools.scm (khelpcenter)[description]: Extend.
2020-03-01 16:13:49 +00:00
|
|
|
(description "This library provides an API for handling MIME
|
|
|
|
data. MIME (Multipurpose Internet Mail Extensions) is an Internet Standard
|
|
|
|
that extends the format of e-mail to support text in character sets other than
|
|
|
|
US-ASCII, non-text attachments, multi-part message bodies, and header
|
|
|
|
information in non-ASCII character sets.")
|
2019-12-05 18:49:11 +00:00
|
|
|
(license license:lgpl2.0+)))
|
2019-12-05 19:09:50 +00:00
|
|
|
|
2020-01-19 23:38:11 +00:00
|
|
|
(define-public knotes
|
|
|
|
(package
|
|
|
|
(name "knotes")
|
2023-07-30 02:32:01 +00:00
|
|
|
(version "23.04.3")
|
2020-01-19 23:38:11 +00:00
|
|
|
(source
|
|
|
|
(origin
|
|
|
|
(method url-fetch)
|
gnu: KDE: Update to 20.04.1.
* gnu/packages/patches/akonadi-paths.patch: Adjust for upstream changes.
* gnu/packages/patches/kdepim-runtime-Fix-missing-link-libraries.patch: Delete file.
* gnu/local.mk (dist_patch_DATA): Adjust accordingly.
* gnu/packages/kde-internet.scm (kget, kopete, krdc, libgravatar): Update to
20.04.1.
[source](uri): Adjust for new upstream location.
* gnu/packages/kde-multimedia.scm (audiocd-kio, dragon, ffmpegthumbs, juk,
k3b, kamoso, kmix, kwave, libkcddb, libkcompactdisc): Likewise.
* gnu/packages/kde-systemtools.scm (dolphin, dolphin-plugins, khelpcenter,
konsole, krfb, ksystemlog): Update to 20.04.1.
[source](uri): Adjust for new upstream location.
* gnu/packages/kde-utils.scm (kate, kmag, kmousetool, kmouth, sweeper): Update
to 20.04.1.
[source](uri): Adjust for new upstream location.
* gnu/packages/kde.scm (baloo-widgets, libkomparediff2, kqtquickcharts,
grantleetheme, kcachegrind, libkdegames, zeroconf-ioslave): Update to 20.04.1.
[source](uri): Adjust for new upstream location.
(grantleetheme)[inputs]: Add KGUIADDONS.
* gnu/packages/kde-pim.scm (akonadi, akonadi-calendar, akonadi-contacts,
akonadi-mime, akonadi-notes, akonadi-search, kincidenceeditor, kaddressbook,
kalarmcal, kblog, kcalendarsupport, kcalutils, kdav, kdepim-apps-libs,
kdepim-runtime, keventviews, kgpg, kidentitymanagement, kimap, kldap,
kleopatra, kmail, kmailcommon, kmailimporter, kmailtransport, kmbox,
kmessagelib, kmime, knotes, kontactinterface, korganizer, kpimcommon,
kpimtextedit, ksmtp, ktnef, libkdepim, libkgapi, libkleo, libksieve): Update
to 20.04.1.
[source](uri): Adjust to current.
(akonadi)[inputs]: Remove KDBUSADDONS and KDESIGNERPLUGIN.
(akonadi-calendar)[inputs]: Remove KDBUSADDONS.
(kdepim-runtime)[source](patches): Remove.
[arguments]: Add phase 'extend-CPLUS_INCLUDE_PATH'.
[inputs]: Remove KDBUSADDONS and KICONTHEMES.
(kmessagelib)[arguments]: Add phase 'extend-CPLUS_INCLUDE_PATH.
[inputs]: Add QCA.
(kdepim-apps-libs)[inputs]: Remove KDBUSADDONS and KICONTHEMES.
(knotes)[inputs]: Remove KDBUSADDONS.
(kpimcommon)[inputs]: Remove KDBUSADDONS and KCOMPLETION.
(libksieve)[arguments]: Disable one more test.
(korganizer)[arguments]: Disable one test.
2020-06-06 14:06:58 +00:00
|
|
|
(uri (string-append "mirror://kde/stable/release-service/" version
|
2020-01-19 23:38:11 +00:00
|
|
|
"/src/knotes-" version ".tar.xz"))
|
|
|
|
(sha256
|
2023-07-30 02:32:01 +00:00
|
|
|
(base32 "0f2a9xy2w909y792hwwnmsqvxx91azn6f0j0xl2mlmav00a4w6za"))))
|
2020-01-19 23:38:11 +00:00
|
|
|
(build-system qt-build-system)
|
|
|
|
(native-inputs
|
gnu: KDE PIM: Update all packages to 21.12.3.
* gnu/packages/kde-pim.scm (KDE PIM): Update to 21.12.3.
(akonadi, akonadi-calendar, akonadi-contacts, akonadi-mime,
akonadi-notes, akonadi-search, kaddressbook, kalarmcal,
kcalendarsupport, kcalutils, kdepim-runtime, keventviews, kgpg,
kidentitymanagement, kimap, kincidenceeditor, kldap, kleopatra, kmail,
kmailcommon, kmailimporter, kmailtransport, kmbox, kmessagelib, kmime,
knotes, kontactinterface, korganizer, kpeoplevcard, kpimcommon,
kpimtextedit, ksmtp, ktnef, libgravatar, libkdepim, libkgapi, libkleo,
libksieve): Update to 21.12.3.
(kblog): Update to 20.04.3.
* gnu/packages/patches/akonadi-not-relocatable.patch
* gnu/packages/patches/akonadi-paths.patch
* gnu/packages/patches/akonadi-timestamps.patch
Fix patches to apply to latest code.
(akonadi-calendar): [inputs]: Add new dependencies.
(akonadi-contacts): [inputs]: Add new dependencies.
(akonadi-search): [arguments]: Disable failing tests.
(kcalendarsupport): [inputs]: Add new dependency, remove obsolete kdepim-apps-lib.
(libksieve): [arguments]: Enable test that works now.
* gnu/packages/patches/libksieve-Fix-missing-link-libraries.patch: Fix patch.
(kaddressbook): [inputs]: Remove obsolete kdepim-apps-libs.
Move kdocstools to native-inputs.
(kmessagelib): [inputs]: Remove obsolete kdepim-appslibs, add kguiaddons.
[arguments]: Fix findind header file.
(kmailimporter): [inputs]: Add new dependencies.
(kmailtransport): [inputs]: Add qtkeychain.
(knotes): [inputs]: Move kdocstools to native-inputs.
(kincidenceeditor): [inputs]: Add new dependencies. Remove obsolete kdepim-apps-libs
[arguments]: Disable failing test.
(kldap): [inputs]: Add qtkeychain.
(kgpg)[arguments]: Disable failing tests.
(libkleo): [propagated-inputs]: Propagate gpgme, qgpgme.
[arguments]: Disable failing tests.
(kdepim-runtime): [inputs]: Add new dependencies grantlee, grantleetheme, kcmutils, kldap,
libkdepim, qtkeychain
[arguments]: Enable all the tests that pass.
We need to use the old hack instead of search-input-directory to
workaround a mysterious include error.
(kdepim-apps-lib): Remove obsolete package.
(kmail): [origin]: Remove patch. Don't think it is needed anymore.
[inputs]: Add new dependencies, delete obsolete kdepim-apps-libs and
duplicate kmime.
[arguments]: Disable failing tests.
* gnu/packages/patches/kmail-Fix-missing-link-libraries.patch: Delete file.
* gnu/local.mk: Remove reference to patch.
(kmailcommon): [inputs]: Add new dependencies.
Signed-off-by: Marius Bakke <marius@gnu.org>
2022-02-02 09:08:23 +00:00
|
|
|
(list extra-cmake-modules kdoctools libxslt))
|
2020-01-19 23:38:11 +00:00
|
|
|
(inputs
|
2021-12-13 16:18:24 +00:00
|
|
|
(list akonadi
|
|
|
|
akonadi-contacts
|
|
|
|
akonadi-mime
|
|
|
|
akonadi-notes
|
|
|
|
akonadi-search
|
|
|
|
boost
|
|
|
|
grantlee
|
|
|
|
grantleetheme
|
|
|
|
kcalendarcore
|
|
|
|
kcalutils
|
|
|
|
kcmutils
|
|
|
|
kcompletion
|
|
|
|
kconfig
|
|
|
|
kconfigwidgets
|
|
|
|
kcontacts
|
|
|
|
kcoreaddons
|
|
|
|
kcrash
|
|
|
|
kdnssd
|
|
|
|
kglobalaccel
|
|
|
|
kiconthemes
|
|
|
|
kimap
|
|
|
|
kitemmodels
|
|
|
|
kitemviews
|
|
|
|
kmime
|
|
|
|
knewstuff
|
|
|
|
knotifications
|
|
|
|
knotifyconfig
|
|
|
|
kontactinterface
|
|
|
|
kparts
|
|
|
|
kpimcommon
|
|
|
|
kpimtextedit
|
2023-08-08 11:51:30 +00:00
|
|
|
ktextaddons
|
2021-12-13 16:18:24 +00:00
|
|
|
ktextwidgets
|
|
|
|
kwidgetsaddons
|
|
|
|
kwindowsystem
|
|
|
|
kxmlgui
|
|
|
|
kxmlgui
|
|
|
|
libkdepim
|
2022-02-15 11:21:15 +00:00
|
|
|
breeze-icons ; default icon set, required for tests
|
2021-12-13 16:18:24 +00:00
|
|
|
qtbase-5
|
|
|
|
qtx11extras))
|
gnu: KDE PIM: Update home-pages.
* gnu/packages/kde-pim.scm (akonadi, kaddressbook, kcalutils, kgpg, kimap,
kldap, kleopatra, kmail, kmailtransport, kmbox, kmime, knotes,
kontactinterface, korganizer, kpimtextedit, ktnef): [home-page]: Update the
link.
Signed-off-by: Marius Bakke <marius@gnu.org>
2022-07-26 06:48:48 +00:00
|
|
|
(home-page "https://apps.kde.org/knotes/")
|
2020-01-19 23:38:11 +00:00
|
|
|
(synopsis "Note-taking utility")
|
|
|
|
(description "KNotes lets you write the computer equivalent of sticky
|
|
|
|
notes. The notes are saved automatically when you exit the program, and they
|
|
|
|
display when you open the program.
|
|
|
|
|
|
|
|
Features:
|
|
|
|
@itemize
|
|
|
|
@item Write notes in your choice of font and background color
|
|
|
|
@item Use drag and drop to email your notes
|
|
|
|
@item Can be dragged into Calendar to book a time-slot
|
|
|
|
@item Notes can be printed
|
|
|
|
@end itemize")
|
|
|
|
(license (list license:gpl2+ license:lgpl2.0+))))
|
|
|
|
|
2019-12-05 22:38:25 +00:00
|
|
|
(define-public kontactinterface
|
|
|
|
(package
|
|
|
|
(name "kontactinterface")
|
2023-07-30 02:32:01 +00:00
|
|
|
(version "23.04.3")
|
2019-12-05 22:38:25 +00:00
|
|
|
(source
|
|
|
|
(origin
|
|
|
|
(method url-fetch)
|
gnu: KDE: Update to 20.04.1.
* gnu/packages/patches/akonadi-paths.patch: Adjust for upstream changes.
* gnu/packages/patches/kdepim-runtime-Fix-missing-link-libraries.patch: Delete file.
* gnu/local.mk (dist_patch_DATA): Adjust accordingly.
* gnu/packages/kde-internet.scm (kget, kopete, krdc, libgravatar): Update to
20.04.1.
[source](uri): Adjust for new upstream location.
* gnu/packages/kde-multimedia.scm (audiocd-kio, dragon, ffmpegthumbs, juk,
k3b, kamoso, kmix, kwave, libkcddb, libkcompactdisc): Likewise.
* gnu/packages/kde-systemtools.scm (dolphin, dolphin-plugins, khelpcenter,
konsole, krfb, ksystemlog): Update to 20.04.1.
[source](uri): Adjust for new upstream location.
* gnu/packages/kde-utils.scm (kate, kmag, kmousetool, kmouth, sweeper): Update
to 20.04.1.
[source](uri): Adjust for new upstream location.
* gnu/packages/kde.scm (baloo-widgets, libkomparediff2, kqtquickcharts,
grantleetheme, kcachegrind, libkdegames, zeroconf-ioslave): Update to 20.04.1.
[source](uri): Adjust for new upstream location.
(grantleetheme)[inputs]: Add KGUIADDONS.
* gnu/packages/kde-pim.scm (akonadi, akonadi-calendar, akonadi-contacts,
akonadi-mime, akonadi-notes, akonadi-search, kincidenceeditor, kaddressbook,
kalarmcal, kblog, kcalendarsupport, kcalutils, kdav, kdepim-apps-libs,
kdepim-runtime, keventviews, kgpg, kidentitymanagement, kimap, kldap,
kleopatra, kmail, kmailcommon, kmailimporter, kmailtransport, kmbox,
kmessagelib, kmime, knotes, kontactinterface, korganizer, kpimcommon,
kpimtextedit, ksmtp, ktnef, libkdepim, libkgapi, libkleo, libksieve): Update
to 20.04.1.
[source](uri): Adjust to current.
(akonadi)[inputs]: Remove KDBUSADDONS and KDESIGNERPLUGIN.
(akonadi-calendar)[inputs]: Remove KDBUSADDONS.
(kdepim-runtime)[source](patches): Remove.
[arguments]: Add phase 'extend-CPLUS_INCLUDE_PATH'.
[inputs]: Remove KDBUSADDONS and KICONTHEMES.
(kmessagelib)[arguments]: Add phase 'extend-CPLUS_INCLUDE_PATH.
[inputs]: Add QCA.
(kdepim-apps-libs)[inputs]: Remove KDBUSADDONS and KICONTHEMES.
(knotes)[inputs]: Remove KDBUSADDONS.
(kpimcommon)[inputs]: Remove KDBUSADDONS and KCOMPLETION.
(libksieve)[arguments]: Disable one more test.
(korganizer)[arguments]: Disable one test.
2020-06-06 14:06:58 +00:00
|
|
|
(uri (string-append "mirror://kde/stable/release-service/" version
|
2019-12-05 22:38:25 +00:00
|
|
|
"/src/kontactinterface-" version ".tar.xz"))
|
|
|
|
(sha256
|
2023-07-30 02:32:01 +00:00
|
|
|
(base32 "16fg24hz9vx912cffc94x5zx4jv3k72mbxgp5ck50lydypx6rfns"))))
|
2019-12-05 22:38:25 +00:00
|
|
|
(build-system qt-build-system)
|
|
|
|
(native-inputs
|
2021-12-13 16:18:24 +00:00
|
|
|
(list extra-cmake-modules))
|
2019-12-05 22:38:25 +00:00
|
|
|
(inputs
|
2021-12-13 16:18:24 +00:00
|
|
|
(list kcoreaddons
|
|
|
|
ki18n
|
|
|
|
kiconthemes
|
|
|
|
kparts
|
|
|
|
kwindowsystem
|
|
|
|
kxmlgui
|
2023-07-30 02:32:01 +00:00
|
|
|
qtbase-5
|
|
|
|
qtx11extras))
|
gnu: KDE PIM: Update home-pages.
* gnu/packages/kde-pim.scm (akonadi, kaddressbook, kcalutils, kgpg, kimap,
kldap, kleopatra, kmail, kmailtransport, kmbox, kmime, knotes,
kontactinterface, korganizer, kpimtextedit, ktnef): [home-page]: Update the
link.
Signed-off-by: Marius Bakke <marius@gnu.org>
2022-07-26 06:48:48 +00:00
|
|
|
(home-page "https://api.kde.org/kdepim/kontactinterface/html/index.html")
|
2019-12-05 22:38:25 +00:00
|
|
|
(synopsis "Kontact interface library")
|
gnu: KDE PIM: Update home-pages.
* gnu/packages/kde-pim.scm (akonadi, kaddressbook, kcalutils, kgpg, kimap,
kldap, kleopatra, kmail, kmailtransport, kmbox, kmime, knotes,
kontactinterface, korganizer, kpimtextedit, ktnef): [home-page]: Update the
link.
Signed-off-by: Marius Bakke <marius@gnu.org>
2022-07-26 06:48:48 +00:00
|
|
|
(description "This library provides the glue necessary for
|
gnu: Reword and extend descriptions for some KDE packages.
* gnu/packages/kde-multimedia.scm (libkcompatdisc)[description]: Extend.
* gnu/packages/kde-pim.scm (akonadi-search, kalarmcal, kdemailimporter,
kdepim-apps-libs, kidentitymanagement, kldap, kmailtransport, kmbox, kmime,
kontactinterface, kpimtextedit)[description]: Reword and extend.
(ktnef, kpimcommon, libkdepim)[synopsis, description]: Reword and extend.
(kmailtransport)[synopsis]: Fix space.
* gnu/packages/kde-systemtools.scm (khelpcenter)[description]: Extend.
2020-03-01 16:13:49 +00:00
|
|
|
application \"Parts\" to be embedded as a Kontact component (or plugin).")
|
2019-12-05 22:38:25 +00:00
|
|
|
(license license:lgpl2.0+)))
|
|
|
|
|
2020-01-20 00:14:36 +00:00
|
|
|
(define-public korganizer
|
|
|
|
(package
|
|
|
|
(name "korganizer")
|
2023-07-30 02:32:01 +00:00
|
|
|
(version "23.04.3")
|
2020-01-20 00:14:36 +00:00
|
|
|
(source
|
|
|
|
(origin
|
|
|
|
(method url-fetch)
|
gnu: KDE: Update to 20.04.1.
* gnu/packages/patches/akonadi-paths.patch: Adjust for upstream changes.
* gnu/packages/patches/kdepim-runtime-Fix-missing-link-libraries.patch: Delete file.
* gnu/local.mk (dist_patch_DATA): Adjust accordingly.
* gnu/packages/kde-internet.scm (kget, kopete, krdc, libgravatar): Update to
20.04.1.
[source](uri): Adjust for new upstream location.
* gnu/packages/kde-multimedia.scm (audiocd-kio, dragon, ffmpegthumbs, juk,
k3b, kamoso, kmix, kwave, libkcddb, libkcompactdisc): Likewise.
* gnu/packages/kde-systemtools.scm (dolphin, dolphin-plugins, khelpcenter,
konsole, krfb, ksystemlog): Update to 20.04.1.
[source](uri): Adjust for new upstream location.
* gnu/packages/kde-utils.scm (kate, kmag, kmousetool, kmouth, sweeper): Update
to 20.04.1.
[source](uri): Adjust for new upstream location.
* gnu/packages/kde.scm (baloo-widgets, libkomparediff2, kqtquickcharts,
grantleetheme, kcachegrind, libkdegames, zeroconf-ioslave): Update to 20.04.1.
[source](uri): Adjust for new upstream location.
(grantleetheme)[inputs]: Add KGUIADDONS.
* gnu/packages/kde-pim.scm (akonadi, akonadi-calendar, akonadi-contacts,
akonadi-mime, akonadi-notes, akonadi-search, kincidenceeditor, kaddressbook,
kalarmcal, kblog, kcalendarsupport, kcalutils, kdav, kdepim-apps-libs,
kdepim-runtime, keventviews, kgpg, kidentitymanagement, kimap, kldap,
kleopatra, kmail, kmailcommon, kmailimporter, kmailtransport, kmbox,
kmessagelib, kmime, knotes, kontactinterface, korganizer, kpimcommon,
kpimtextedit, ksmtp, ktnef, libkdepim, libkgapi, libkleo, libksieve): Update
to 20.04.1.
[source](uri): Adjust to current.
(akonadi)[inputs]: Remove KDBUSADDONS and KDESIGNERPLUGIN.
(akonadi-calendar)[inputs]: Remove KDBUSADDONS.
(kdepim-runtime)[source](patches): Remove.
[arguments]: Add phase 'extend-CPLUS_INCLUDE_PATH'.
[inputs]: Remove KDBUSADDONS and KICONTHEMES.
(kmessagelib)[arguments]: Add phase 'extend-CPLUS_INCLUDE_PATH.
[inputs]: Add QCA.
(kdepim-apps-libs)[inputs]: Remove KDBUSADDONS and KICONTHEMES.
(knotes)[inputs]: Remove KDBUSADDONS.
(kpimcommon)[inputs]: Remove KDBUSADDONS and KCOMPLETION.
(libksieve)[arguments]: Disable one more test.
(korganizer)[arguments]: Disable one test.
2020-06-06 14:06:58 +00:00
|
|
|
(uri (string-append "mirror://kde/stable/release-service/" version
|
2020-01-20 00:14:36 +00:00
|
|
|
"/src/korganizer-" version ".tar.xz"))
|
|
|
|
(sha256
|
2023-07-30 02:32:01 +00:00
|
|
|
(base32 "1vp1jsmna059vvfj7xaj9fhhhq0lz9k0pphczkfbwm3gy6nzcavz"))))
|
2020-01-20 00:14:36 +00:00
|
|
|
(build-system qt-build-system)
|
|
|
|
(native-inputs
|
2023-08-09 10:14:06 +00:00
|
|
|
(list extra-cmake-modules dbus qttools-5 kdoctools tzdata-for-tests))
|
2020-01-20 00:14:36 +00:00
|
|
|
(inputs
|
2021-12-13 16:18:24 +00:00
|
|
|
(list akonadi
|
|
|
|
akonadi-calendar
|
|
|
|
akonadi-contacts
|
|
|
|
akonadi-mime
|
|
|
|
akonadi-notes
|
|
|
|
akonadi-search
|
|
|
|
boost
|
gnu: KDE PIM: Update all packages to 21.12.3.
* gnu/packages/kde-pim.scm (KDE PIM): Update to 21.12.3.
(akonadi, akonadi-calendar, akonadi-contacts, akonadi-mime,
akonadi-notes, akonadi-search, kaddressbook, kalarmcal,
kcalendarsupport, kcalutils, kdepim-runtime, keventviews, kgpg,
kidentitymanagement, kimap, kincidenceeditor, kldap, kleopatra, kmail,
kmailcommon, kmailimporter, kmailtransport, kmbox, kmessagelib, kmime,
knotes, kontactinterface, korganizer, kpeoplevcard, kpimcommon,
kpimtextedit, ksmtp, ktnef, libgravatar, libkdepim, libkgapi, libkleo,
libksieve): Update to 21.12.3.
(kblog): Update to 20.04.3.
* gnu/packages/patches/akonadi-not-relocatable.patch
* gnu/packages/patches/akonadi-paths.patch
* gnu/packages/patches/akonadi-timestamps.patch
Fix patches to apply to latest code.
(akonadi-calendar): [inputs]: Add new dependencies.
(akonadi-contacts): [inputs]: Add new dependencies.
(akonadi-search): [arguments]: Disable failing tests.
(kcalendarsupport): [inputs]: Add new dependency, remove obsolete kdepim-apps-lib.
(libksieve): [arguments]: Enable test that works now.
* gnu/packages/patches/libksieve-Fix-missing-link-libraries.patch: Fix patch.
(kaddressbook): [inputs]: Remove obsolete kdepim-apps-libs.
Move kdocstools to native-inputs.
(kmessagelib): [inputs]: Remove obsolete kdepim-appslibs, add kguiaddons.
[arguments]: Fix findind header file.
(kmailimporter): [inputs]: Add new dependencies.
(kmailtransport): [inputs]: Add qtkeychain.
(knotes): [inputs]: Move kdocstools to native-inputs.
(kincidenceeditor): [inputs]: Add new dependencies. Remove obsolete kdepim-apps-libs
[arguments]: Disable failing test.
(kldap): [inputs]: Add qtkeychain.
(kgpg)[arguments]: Disable failing tests.
(libkleo): [propagated-inputs]: Propagate gpgme, qgpgme.
[arguments]: Disable failing tests.
(kdepim-runtime): [inputs]: Add new dependencies grantlee, grantleetheme, kcmutils, kldap,
libkdepim, qtkeychain
[arguments]: Enable all the tests that pass.
We need to use the old hack instead of search-input-directory to
workaround a mysterious include error.
(kdepim-apps-lib): Remove obsolete package.
(kmail): [origin]: Remove patch. Don't think it is needed anymore.
[inputs]: Add new dependencies, delete obsolete kdepim-apps-libs and
duplicate kmime.
[arguments]: Disable failing tests.
* gnu/packages/patches/kmail-Fix-missing-link-libraries.patch: Delete file.
* gnu/local.mk: Remove reference to patch.
(kmailcommon): [inputs]: Add new dependencies.
Signed-off-by: Marius Bakke <marius@gnu.org>
2022-02-02 09:08:23 +00:00
|
|
|
grantlee
|
|
|
|
grantleetheme
|
2021-12-13 16:18:24 +00:00
|
|
|
kcalendarcore
|
|
|
|
kcalendarsupport
|
|
|
|
kcalutils
|
|
|
|
kcmutils
|
|
|
|
kcodecs
|
|
|
|
kcompletion
|
|
|
|
kconfig
|
|
|
|
kconfigwidgets
|
|
|
|
kcontacts
|
|
|
|
kcoreaddons
|
|
|
|
kcrash
|
|
|
|
kdbusaddons
|
|
|
|
keventviews
|
|
|
|
kholidays
|
|
|
|
kiconthemes
|
|
|
|
kidentitymanagement
|
|
|
|
kimap
|
|
|
|
kincidenceeditor
|
|
|
|
kitemmodels
|
|
|
|
kitemviews
|
|
|
|
kjobwidgets
|
|
|
|
kldap
|
|
|
|
kmailtransport
|
|
|
|
kmime
|
|
|
|
knewstuff
|
|
|
|
knotifications
|
|
|
|
kontactinterface
|
|
|
|
kparts
|
|
|
|
kpimcommon
|
|
|
|
kpimtextedit
|
|
|
|
kservice
|
2023-08-08 11:51:30 +00:00
|
|
|
ktextaddons
|
2021-12-13 16:18:24 +00:00
|
|
|
kwallet
|
|
|
|
kwidgetsaddons
|
|
|
|
kwindowsystem
|
|
|
|
kxmlgui
|
|
|
|
libkdepim
|
2022-02-15 11:21:15 +00:00
|
|
|
breeze-icons ; default icon set, required for tests
|
2021-12-13 16:18:24 +00:00
|
|
|
phonon
|
|
|
|
qtbase-5))
|
2020-01-20 00:14:36 +00:00
|
|
|
(arguments
|
2023-08-09 10:14:06 +00:00
|
|
|
'(#:phases
|
2020-01-20 00:14:36 +00:00
|
|
|
(modify-phases %standard-phases
|
|
|
|
(replace 'check
|
2023-08-09 10:14:06 +00:00
|
|
|
(lambda* (#:key inputs tests? #:allow-other-keys)
|
2021-09-13 08:07:30 +00:00
|
|
|
(when tests?
|
2023-08-09 10:14:06 +00:00
|
|
|
(setenv "TZDIR" (search-input-directory
|
|
|
|
inputs "share/zoneinfo"))
|
gnu: KDE-PIM: Remove trailing booleans.
* gnu/packages/kde-pim.scm (akonadi, akonadi-mime, akonadi-search,
kincidenceeditor, kdepim-runtime, kidentitymanagement, kleopatra, kmail,
kmime, korganizer, kpeoplevcard, ksmtp, libkleo,
libksieve)[arguments]: Remove trailing booleans.
Signed-off-by: Marius Bakke <marius@gnu.org>
2022-07-21 06:33:36 +00:00
|
|
|
(invoke "dbus-launch" "ctest")))))))
|
gnu: KDE PIM: Update home-pages.
* gnu/packages/kde-pim.scm (akonadi, kaddressbook, kcalutils, kgpg, kimap,
kldap, kleopatra, kmail, kmailtransport, kmbox, kmime, knotes,
kontactinterface, korganizer, kpimtextedit, ktnef): [home-page]: Update the
link.
Signed-off-by: Marius Bakke <marius@gnu.org>
2022-07-26 06:48:48 +00:00
|
|
|
(home-page "https://apps.kde.org/korganizer/")
|
2020-01-20 00:14:36 +00:00
|
|
|
(synopsis "Organizational assistant, providing calendars and other similar
|
2022-11-01 23:55:41 +00:00
|
|
|
functionality")
|
2020-01-20 00:14:36 +00:00
|
|
|
(description "KOrganizer is the calendar and scheduling component of
|
|
|
|
Kontact. It provides management of events and tasks, alarm notification, web
|
|
|
|
export, network transparent handling of data, group scheduling, import and
|
|
|
|
export of calendar files and more. It is able to work together with a wide
|
2020-03-28 19:03:50 +00:00
|
|
|
variety of calendaring services, including NextCloud, Kolab, Google Calendar
|
2020-01-20 00:14:36 +00:00
|
|
|
and others. KOrganizer is fully customizable to your needs and is an integral
|
|
|
|
part of the Kontact suite, which aims to be a complete solution for organizing
|
|
|
|
your personal data. KOrganizer supports the two dominant standards for storing
|
|
|
|
and exchanging calendar data, vCalendar and iCalendar.")
|
|
|
|
(license ;; GPL for programs, LGPL for libraries, FDL for documentation
|
|
|
|
(list license:gpl2+ license:lgpl2.0+ license:fdl1.2+))))
|
|
|
|
|
2020-06-06 18:57:50 +00:00
|
|
|
(define-public kpeoplevcard
|
|
|
|
(package
|
|
|
|
(name "kpeoplevcard")
|
|
|
|
(version "0.1")
|
|
|
|
(source (origin
|
|
|
|
(method url-fetch)
|
2022-03-28 21:19:43 +00:00
|
|
|
(uri (string-append "mirror://kde/stable/kpeoplevcard/"
|
2020-06-06 18:57:50 +00:00
|
|
|
version "/kpeoplevcard-" version ".tar.xz"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
|
|
|
"1hv3fq5k0pps1wdvq9r1zjnr0nxf8qc3vwsnzh9jpvdy79ddzrcd"))))
|
|
|
|
(build-system qt-build-system)
|
|
|
|
(arguments
|
|
|
|
'(#:phases (modify-phases %standard-phases
|
|
|
|
(replace 'check-setup
|
|
|
|
(lambda _
|
gnu: KDE-PIM: Remove trailing booleans.
* gnu/packages/kde-pim.scm (akonadi, akonadi-mime, akonadi-search,
kincidenceeditor, kdepim-runtime, kidentitymanagement, kleopatra, kmail,
kmime, korganizer, kpeoplevcard, ksmtp, libkleo,
libksieve)[arguments]: Remove trailing booleans.
Signed-off-by: Marius Bakke <marius@gnu.org>
2022-07-21 06:33:36 +00:00
|
|
|
(setenv "HOME" "/tmp"))))))
|
2020-06-06 18:57:50 +00:00
|
|
|
(native-inputs
|
2021-12-13 16:18:24 +00:00
|
|
|
(list extra-cmake-modules))
|
2020-06-06 18:57:50 +00:00
|
|
|
(inputs
|
2021-12-13 16:18:24 +00:00
|
|
|
(list kcontacts kpeople qtbase-5))
|
2020-06-06 18:57:50 +00:00
|
|
|
(home-page "https://invent.kde.org/pim/kpeoplevcard")
|
|
|
|
(synopsis "Expose vCard contacts to KPeople")
|
|
|
|
(description
|
|
|
|
"This plugins adds support for vCard (also known as @acronym{VCF,
|
|
|
|
Virtual Contact File}) files to the KPeople contact management library.")
|
|
|
|
(license license:lgpl2.1+)))
|
|
|
|
|
2022-08-09 22:39:57 +00:00
|
|
|
(define-public kpkpass
|
|
|
|
(package
|
|
|
|
(name "kpkpass")
|
2023-07-30 02:32:01 +00:00
|
|
|
(version "23.04.3")
|
2022-08-09 22:39:57 +00:00
|
|
|
(source (origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append "mirror://kde/stable/release-service/" version
|
|
|
|
"/src/kpkpass-" version ".tar.xz"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
2023-07-30 02:32:01 +00:00
|
|
|
"1l3k33yzfjzarc2rpf576ib86ifzrfmsvpcdmv060dy0k8lbm1k9"))))
|
2022-08-09 22:39:57 +00:00
|
|
|
(build-system qt-build-system)
|
|
|
|
(native-inputs (list extra-cmake-modules))
|
|
|
|
(inputs (list karchive qtbase-5 shared-mime-info))
|
|
|
|
(home-page "https://invent.kde.org/pim/kpkpass")
|
|
|
|
(synopsis "Apple Wallet Pass reader")
|
|
|
|
(description "This package provides library to deal with Apple Wallet
|
|
|
|
pass files.")
|
|
|
|
(license license:lgpl2.0+)))
|
|
|
|
|
2020-01-19 21:19:15 +00:00
|
|
|
(define-public kpimcommon
|
|
|
|
(package
|
|
|
|
(name "kpimcommon")
|
2023-07-30 02:32:01 +00:00
|
|
|
(version "23.04.3")
|
2020-01-19 21:19:15 +00:00
|
|
|
(source
|
|
|
|
(origin
|
|
|
|
(method url-fetch)
|
gnu: KDE: Update to 20.04.1.
* gnu/packages/patches/akonadi-paths.patch: Adjust for upstream changes.
* gnu/packages/patches/kdepim-runtime-Fix-missing-link-libraries.patch: Delete file.
* gnu/local.mk (dist_patch_DATA): Adjust accordingly.
* gnu/packages/kde-internet.scm (kget, kopete, krdc, libgravatar): Update to
20.04.1.
[source](uri): Adjust for new upstream location.
* gnu/packages/kde-multimedia.scm (audiocd-kio, dragon, ffmpegthumbs, juk,
k3b, kamoso, kmix, kwave, libkcddb, libkcompactdisc): Likewise.
* gnu/packages/kde-systemtools.scm (dolphin, dolphin-plugins, khelpcenter,
konsole, krfb, ksystemlog): Update to 20.04.1.
[source](uri): Adjust for new upstream location.
* gnu/packages/kde-utils.scm (kate, kmag, kmousetool, kmouth, sweeper): Update
to 20.04.1.
[source](uri): Adjust for new upstream location.
* gnu/packages/kde.scm (baloo-widgets, libkomparediff2, kqtquickcharts,
grantleetheme, kcachegrind, libkdegames, zeroconf-ioslave): Update to 20.04.1.
[source](uri): Adjust for new upstream location.
(grantleetheme)[inputs]: Add KGUIADDONS.
* gnu/packages/kde-pim.scm (akonadi, akonadi-calendar, akonadi-contacts,
akonadi-mime, akonadi-notes, akonadi-search, kincidenceeditor, kaddressbook,
kalarmcal, kblog, kcalendarsupport, kcalutils, kdav, kdepim-apps-libs,
kdepim-runtime, keventviews, kgpg, kidentitymanagement, kimap, kldap,
kleopatra, kmail, kmailcommon, kmailimporter, kmailtransport, kmbox,
kmessagelib, kmime, knotes, kontactinterface, korganizer, kpimcommon,
kpimtextedit, ksmtp, ktnef, libkdepim, libkgapi, libkleo, libksieve): Update
to 20.04.1.
[source](uri): Adjust to current.
(akonadi)[inputs]: Remove KDBUSADDONS and KDESIGNERPLUGIN.
(akonadi-calendar)[inputs]: Remove KDBUSADDONS.
(kdepim-runtime)[source](patches): Remove.
[arguments]: Add phase 'extend-CPLUS_INCLUDE_PATH'.
[inputs]: Remove KDBUSADDONS and KICONTHEMES.
(kmessagelib)[arguments]: Add phase 'extend-CPLUS_INCLUDE_PATH.
[inputs]: Add QCA.
(kdepim-apps-libs)[inputs]: Remove KDBUSADDONS and KICONTHEMES.
(knotes)[inputs]: Remove KDBUSADDONS.
(kpimcommon)[inputs]: Remove KDBUSADDONS and KCOMPLETION.
(libksieve)[arguments]: Disable one more test.
(korganizer)[arguments]: Disable one test.
2020-06-06 14:06:58 +00:00
|
|
|
(uri (string-append "mirror://kde/stable/release-service/" version
|
2020-01-19 21:19:15 +00:00
|
|
|
"/src/pimcommon-" version ".tar.xz"))
|
|
|
|
(sha256
|
2023-07-30 02:32:01 +00:00
|
|
|
(base32 "1v2nv83h9p1ajbcwfdk8b7lrr84r8c855lysknzvzkpm5z012z3l"))))
|
2020-01-19 21:19:15 +00:00
|
|
|
(properties `((upstream-name . "pimcommon")))
|
|
|
|
(build-system qt-build-system)
|
|
|
|
(native-inputs
|
2022-07-19 20:52:05 +00:00
|
|
|
(list extra-cmake-modules qttools-5))
|
2020-01-19 21:19:15 +00:00
|
|
|
(inputs
|
2021-12-13 16:18:24 +00:00
|
|
|
(list karchive
|
|
|
|
akonadi
|
|
|
|
akonadi-contacts
|
|
|
|
akonadi-mime
|
gnu: KDE PIM: Update all packages to 21.12.3.
* gnu/packages/kde-pim.scm (KDE PIM): Update to 21.12.3.
(akonadi, akonadi-calendar, akonadi-contacts, akonadi-mime,
akonadi-notes, akonadi-search, kaddressbook, kalarmcal,
kcalendarsupport, kcalutils, kdepim-runtime, keventviews, kgpg,
kidentitymanagement, kimap, kincidenceeditor, kldap, kleopatra, kmail,
kmailcommon, kmailimporter, kmailtransport, kmbox, kmessagelib, kmime,
knotes, kontactinterface, korganizer, kpeoplevcard, kpimcommon,
kpimtextedit, ksmtp, ktnef, libgravatar, libkdepim, libkgapi, libkleo,
libksieve): Update to 21.12.3.
(kblog): Update to 20.04.3.
* gnu/packages/patches/akonadi-not-relocatable.patch
* gnu/packages/patches/akonadi-paths.patch
* gnu/packages/patches/akonadi-timestamps.patch
Fix patches to apply to latest code.
(akonadi-calendar): [inputs]: Add new dependencies.
(akonadi-contacts): [inputs]: Add new dependencies.
(akonadi-search): [arguments]: Disable failing tests.
(kcalendarsupport): [inputs]: Add new dependency, remove obsolete kdepim-apps-lib.
(libksieve): [arguments]: Enable test that works now.
* gnu/packages/patches/libksieve-Fix-missing-link-libraries.patch: Fix patch.
(kaddressbook): [inputs]: Remove obsolete kdepim-apps-libs.
Move kdocstools to native-inputs.
(kmessagelib): [inputs]: Remove obsolete kdepim-appslibs, add kguiaddons.
[arguments]: Fix findind header file.
(kmailimporter): [inputs]: Add new dependencies.
(kmailtransport): [inputs]: Add qtkeychain.
(knotes): [inputs]: Move kdocstools to native-inputs.
(kincidenceeditor): [inputs]: Add new dependencies. Remove obsolete kdepim-apps-libs
[arguments]: Disable failing test.
(kldap): [inputs]: Add qtkeychain.
(kgpg)[arguments]: Disable failing tests.
(libkleo): [propagated-inputs]: Propagate gpgme, qgpgme.
[arguments]: Disable failing tests.
(kdepim-runtime): [inputs]: Add new dependencies grantlee, grantleetheme, kcmutils, kldap,
libkdepim, qtkeychain
[arguments]: Enable all the tests that pass.
We need to use the old hack instead of search-input-directory to
workaround a mysterious include error.
(kdepim-apps-lib): Remove obsolete package.
(kmail): [origin]: Remove patch. Don't think it is needed anymore.
[inputs]: Add new dependencies, delete obsolete kdepim-apps-libs and
duplicate kmime.
[arguments]: Disable failing tests.
* gnu/packages/patches/kmail-Fix-missing-link-libraries.patch: Delete file.
* gnu/local.mk: Remove reference to patch.
(kmailcommon): [inputs]: Add new dependencies.
Signed-off-by: Marius Bakke <marius@gnu.org>
2022-02-02 09:08:23 +00:00
|
|
|
akonadi-search
|
2021-12-13 16:18:24 +00:00
|
|
|
boost
|
|
|
|
grantlee
|
gnu: KDE PIM: Update all packages to 21.12.3.
* gnu/packages/kde-pim.scm (KDE PIM): Update to 21.12.3.
(akonadi, akonadi-calendar, akonadi-contacts, akonadi-mime,
akonadi-notes, akonadi-search, kaddressbook, kalarmcal,
kcalendarsupport, kcalutils, kdepim-runtime, keventviews, kgpg,
kidentitymanagement, kimap, kincidenceeditor, kldap, kleopatra, kmail,
kmailcommon, kmailimporter, kmailtransport, kmbox, kmessagelib, kmime,
knotes, kontactinterface, korganizer, kpeoplevcard, kpimcommon,
kpimtextedit, ksmtp, ktnef, libgravatar, libkdepim, libkgapi, libkleo,
libksieve): Update to 21.12.3.
(kblog): Update to 20.04.3.
* gnu/packages/patches/akonadi-not-relocatable.patch
* gnu/packages/patches/akonadi-paths.patch
* gnu/packages/patches/akonadi-timestamps.patch
Fix patches to apply to latest code.
(akonadi-calendar): [inputs]: Add new dependencies.
(akonadi-contacts): [inputs]: Add new dependencies.
(akonadi-search): [arguments]: Disable failing tests.
(kcalendarsupport): [inputs]: Add new dependency, remove obsolete kdepim-apps-lib.
(libksieve): [arguments]: Enable test that works now.
* gnu/packages/patches/libksieve-Fix-missing-link-libraries.patch: Fix patch.
(kaddressbook): [inputs]: Remove obsolete kdepim-apps-libs.
Move kdocstools to native-inputs.
(kmessagelib): [inputs]: Remove obsolete kdepim-appslibs, add kguiaddons.
[arguments]: Fix findind header file.
(kmailimporter): [inputs]: Add new dependencies.
(kmailtransport): [inputs]: Add qtkeychain.
(knotes): [inputs]: Move kdocstools to native-inputs.
(kincidenceeditor): [inputs]: Add new dependencies. Remove obsolete kdepim-apps-libs
[arguments]: Disable failing test.
(kldap): [inputs]: Add qtkeychain.
(kgpg)[arguments]: Disable failing tests.
(libkleo): [propagated-inputs]: Propagate gpgme, qgpgme.
[arguments]: Disable failing tests.
(kdepim-runtime): [inputs]: Add new dependencies grantlee, grantleetheme, kcmutils, kldap,
libkdepim, qtkeychain
[arguments]: Enable all the tests that pass.
We need to use the old hack instead of search-input-directory to
workaround a mysterious include error.
(kdepim-apps-lib): Remove obsolete package.
(kmail): [origin]: Remove patch. Don't think it is needed anymore.
[inputs]: Add new dependencies, delete obsolete kdepim-apps-libs and
duplicate kmime.
[arguments]: Disable failing tests.
* gnu/packages/patches/kmail-Fix-missing-link-libraries.patch: Delete file.
* gnu/local.mk: Remove reference to patch.
(kmailcommon): [inputs]: Add new dependencies.
Signed-off-by: Marius Bakke <marius@gnu.org>
2022-02-02 09:08:23 +00:00
|
|
|
grantleetheme
|
2021-12-13 16:18:24 +00:00
|
|
|
;; TODO: ("kaccounts" ,kaccounts)
|
gnu: KDE PIM: Update all packages to 21.12.3.
* gnu/packages/kde-pim.scm (KDE PIM): Update to 21.12.3.
(akonadi, akonadi-calendar, akonadi-contacts, akonadi-mime,
akonadi-notes, akonadi-search, kaddressbook, kalarmcal,
kcalendarsupport, kcalutils, kdepim-runtime, keventviews, kgpg,
kidentitymanagement, kimap, kincidenceeditor, kldap, kleopatra, kmail,
kmailcommon, kmailimporter, kmailtransport, kmbox, kmessagelib, kmime,
knotes, kontactinterface, korganizer, kpeoplevcard, kpimcommon,
kpimtextedit, ksmtp, ktnef, libgravatar, libkdepim, libkgapi, libkleo,
libksieve): Update to 21.12.3.
(kblog): Update to 20.04.3.
* gnu/packages/patches/akonadi-not-relocatable.patch
* gnu/packages/patches/akonadi-paths.patch
* gnu/packages/patches/akonadi-timestamps.patch
Fix patches to apply to latest code.
(akonadi-calendar): [inputs]: Add new dependencies.
(akonadi-contacts): [inputs]: Add new dependencies.
(akonadi-search): [arguments]: Disable failing tests.
(kcalendarsupport): [inputs]: Add new dependency, remove obsolete kdepim-apps-lib.
(libksieve): [arguments]: Enable test that works now.
* gnu/packages/patches/libksieve-Fix-missing-link-libraries.patch: Fix patch.
(kaddressbook): [inputs]: Remove obsolete kdepim-apps-libs.
Move kdocstools to native-inputs.
(kmessagelib): [inputs]: Remove obsolete kdepim-appslibs, add kguiaddons.
[arguments]: Fix findind header file.
(kmailimporter): [inputs]: Add new dependencies.
(kmailtransport): [inputs]: Add qtkeychain.
(knotes): [inputs]: Move kdocstools to native-inputs.
(kincidenceeditor): [inputs]: Add new dependencies. Remove obsolete kdepim-apps-libs
[arguments]: Disable failing test.
(kldap): [inputs]: Add qtkeychain.
(kgpg)[arguments]: Disable failing tests.
(libkleo): [propagated-inputs]: Propagate gpgme, qgpgme.
[arguments]: Disable failing tests.
(kdepim-runtime): [inputs]: Add new dependencies grantlee, grantleetheme, kcmutils, kldap,
libkdepim, qtkeychain
[arguments]: Enable all the tests that pass.
We need to use the old hack instead of search-input-directory to
workaround a mysterious include error.
(kdepim-apps-lib): Remove obsolete package.
(kmail): [origin]: Remove patch. Don't think it is needed anymore.
[inputs]: Add new dependencies, delete obsolete kdepim-apps-libs and
duplicate kmime.
[arguments]: Disable failing tests.
* gnu/packages/patches/kmail-Fix-missing-link-libraries.patch: Delete file.
* gnu/local.mk: Remove reference to patch.
(kmailcommon): [inputs]: Add new dependencies.
Signed-off-by: Marius Bakke <marius@gnu.org>
2022-02-02 09:08:23 +00:00
|
|
|
kcalendarcore
|
|
|
|
kcmutils
|
2021-12-13 16:18:24 +00:00
|
|
|
kcodecs
|
|
|
|
kconfig
|
|
|
|
kconfigwidgets
|
|
|
|
kcontacts
|
|
|
|
kcoreaddons
|
|
|
|
kdesignerplugin
|
|
|
|
ki18n
|
|
|
|
kiconthemes
|
|
|
|
kimap
|
|
|
|
kio
|
|
|
|
kirigami ;; run-time dependency
|
|
|
|
kitemmodels
|
|
|
|
kitemviews
|
|
|
|
kjobwidgets
|
gnu: KDE PIM: Update all packages to 21.12.3.
* gnu/packages/kde-pim.scm (KDE PIM): Update to 21.12.3.
(akonadi, akonadi-calendar, akonadi-contacts, akonadi-mime,
akonadi-notes, akonadi-search, kaddressbook, kalarmcal,
kcalendarsupport, kcalutils, kdepim-runtime, keventviews, kgpg,
kidentitymanagement, kimap, kincidenceeditor, kldap, kleopatra, kmail,
kmailcommon, kmailimporter, kmailtransport, kmbox, kmessagelib, kmime,
knotes, kontactinterface, korganizer, kpeoplevcard, kpimcommon,
kpimtextedit, ksmtp, ktnef, libgravatar, libkdepim, libkgapi, libkleo,
libksieve): Update to 21.12.3.
(kblog): Update to 20.04.3.
* gnu/packages/patches/akonadi-not-relocatable.patch
* gnu/packages/patches/akonadi-paths.patch
* gnu/packages/patches/akonadi-timestamps.patch
Fix patches to apply to latest code.
(akonadi-calendar): [inputs]: Add new dependencies.
(akonadi-contacts): [inputs]: Add new dependencies.
(akonadi-search): [arguments]: Disable failing tests.
(kcalendarsupport): [inputs]: Add new dependency, remove obsolete kdepim-apps-lib.
(libksieve): [arguments]: Enable test that works now.
* gnu/packages/patches/libksieve-Fix-missing-link-libraries.patch: Fix patch.
(kaddressbook): [inputs]: Remove obsolete kdepim-apps-libs.
Move kdocstools to native-inputs.
(kmessagelib): [inputs]: Remove obsolete kdepim-appslibs, add kguiaddons.
[arguments]: Fix findind header file.
(kmailimporter): [inputs]: Add new dependencies.
(kmailtransport): [inputs]: Add qtkeychain.
(knotes): [inputs]: Move kdocstools to native-inputs.
(kincidenceeditor): [inputs]: Add new dependencies. Remove obsolete kdepim-apps-libs
[arguments]: Disable failing test.
(kldap): [inputs]: Add qtkeychain.
(kgpg)[arguments]: Disable failing tests.
(libkleo): [propagated-inputs]: Propagate gpgme, qgpgme.
[arguments]: Disable failing tests.
(kdepim-runtime): [inputs]: Add new dependencies grantlee, grantleetheme, kcmutils, kldap,
libkdepim, qtkeychain
[arguments]: Enable all the tests that pass.
We need to use the old hack instead of search-input-directory to
workaround a mysterious include error.
(kdepim-apps-lib): Remove obsolete package.
(kmail): [origin]: Remove patch. Don't think it is needed anymore.
[inputs]: Add new dependencies, delete obsolete kdepim-apps-libs and
duplicate kmime.
[arguments]: Disable failing tests.
* gnu/packages/patches/kmail-Fix-missing-link-libraries.patch: Delete file.
* gnu/local.mk: Remove reference to patch.
(kmailcommon): [inputs]: Add new dependencies.
Signed-off-by: Marius Bakke <marius@gnu.org>
2022-02-02 09:08:23 +00:00
|
|
|
kldap
|
2021-12-13 16:18:24 +00:00
|
|
|
kmime
|
|
|
|
knewstuff
|
|
|
|
kpimtextedit
|
2023-08-08 11:51:30 +00:00
|
|
|
ktextaddons
|
2021-12-13 16:18:24 +00:00
|
|
|
ktextwidgets
|
|
|
|
kwallet
|
|
|
|
kwidgetsaddons
|
|
|
|
kwindowsystem
|
|
|
|
kxmlgui
|
|
|
|
libkdepim
|
|
|
|
libxslt
|
|
|
|
purpose
|
|
|
|
qtbase-5
|
2022-07-18 11:57:16 +00:00
|
|
|
qtwebengine-5))
|
2020-01-19 21:19:15 +00:00
|
|
|
(arguments
|
|
|
|
`(#:tests? #f)) ;; TODO tests hang
|
gnu: KDE: Fix old cgit home-pages.
Fix all home-pages pointing to git-repos a cgit.kde.org, which is
gone, to now use the correct repo at invent.kde.org.
* gnu/packages/kde.scm (grantleetheme, kdiagram): Update home-page.
* gnu/packages/kde-frameworks.scm (kholidays): Likewise.
* gnu/packages/kde-internet.scm (libgravatar, libktorrent): Likewise.
* gnu/packages/kde-multimedia.scm (libkcddb, libkcompactdisc): Likewise.
* gnu/packages/kde-pim.scm (kblog, kdav, kdepim-apps-libs,
kdepim-runtime, keventviews, kincidenceeditor, kmailcommon,
kmailimporter, kmessagelib, kpimcommon, ksmtp, libkdepim, libkgapi,
libkleo, libksieve): Likewise.
* gnu/packages/kde-plasma.scm (kdecoration, kscreenlocker): Likewise.
2020-12-12 17:22:37 +00:00
|
|
|
(home-page "https://invent.kde.org/pim/pimcommon")
|
gnu: Reword and extend descriptions for some KDE packages.
* gnu/packages/kde-multimedia.scm (libkcompatdisc)[description]: Extend.
* gnu/packages/kde-pim.scm (akonadi-search, kalarmcal, kdemailimporter,
kdepim-apps-libs, kidentitymanagement, kldap, kmailtransport, kmbox, kmime,
kontactinterface, kpimtextedit)[description]: Reword and extend.
(ktnef, kpimcommon, libkdepim)[synopsis, description]: Reword and extend.
(kmailtransport)[synopsis]: Fix space.
* gnu/packages/kde-systemtools.scm (khelpcenter)[description]: Extend.
2020-03-01 16:13:49 +00:00
|
|
|
(synopsis "Common libraries for KDE PIM")
|
|
|
|
(description "This package provides common libraries for KDE PIM.")
|
2020-01-19 21:19:15 +00:00
|
|
|
(license ;; GPL for programs, LGPL for libraries
|
|
|
|
(list license:gpl2+ license:lgpl2.0+))))
|
|
|
|
|
2021-10-14 07:25:20 +00:00
|
|
|
(define-public libgravatar
|
|
|
|
(package
|
|
|
|
(name "libgravatar")
|
2023-07-30 02:32:01 +00:00
|
|
|
(version "23.04.3")
|
2021-10-14 07:25:20 +00:00
|
|
|
(source
|
|
|
|
(origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append "mirror://kde/stable/release-service/" version
|
|
|
|
"/src/libgravatar-" version ".tar.xz"))
|
|
|
|
(sha256
|
2023-07-30 02:32:01 +00:00
|
|
|
(base32 "03zhnpb114y6a6vhiv9c1fiqsinjmk52j1k9w2r04ibxp35m3xj7"))))
|
2021-10-14 07:25:20 +00:00
|
|
|
(build-system qt-build-system)
|
2022-07-21 06:26:59 +00:00
|
|
|
(native-inputs (list extra-cmake-modules))
|
|
|
|
(inputs (list kconfig
|
|
|
|
ki18n
|
|
|
|
kio
|
|
|
|
kpimcommon
|
gnu: KDE PIM: Update all packages to 22.04.3.
* gnu/packages/kde-pim.scm (KDE PIM): Update to 22.04.3.
(akonadi, akonadi-calendar, akonadi-contacts, akonadi-mime,
akonadi-notes, akonadi-search, kaddressbook, kalarmcal,
kcalendarsupport, kcalutils, kdepim-runtime, keventviews, kgpg
kidentitymanagement, kimap, kincidenceeditor, kldap, kleopatra
kmailcommon, kmailimporter, kmailtransport, kmbox, kmessagelib
knotes, kontactinterface, korganizer, kpeoplevcard, kpimcommon
kpimtextedit, ksmtp, ktnef, libgravatar, libkdepim, libkgapi,
libksieve): Update to 22.04.3.
(akonadi-calendar): [inputs]: Add kdbusaddons and knotifications.
(kincidenceeditor): [arguments]: Disable failing tests.
(kdepim-runtime): [inputs]: Remove kalarmcal.
(kmailimporter): [inputs]: Add kpimtextedit and ktextwidgets.
(kmessagelib): [inputs]: Add knotifications.
(kpimcommon): [inputs]: Add kpimtextedit.
(libksieve): [inputs]: Add grantlee.
Signed-off-by: Marius Bakke <marius@gnu.org>
2022-08-01 12:29:50 +00:00
|
|
|
kpimtextedit
|
2023-08-08 11:51:30 +00:00
|
|
|
ktextaddons
|
2022-07-21 06:26:59 +00:00
|
|
|
ktextwidgets
|
|
|
|
kwidgetsaddons
|
|
|
|
qtbase-5))
|
2021-10-14 07:25:20 +00:00
|
|
|
(arguments
|
|
|
|
`(#:tests? #f)) ;; 2/7 tests fail (due to network issues?)
|
|
|
|
(home-page "https://invent.kde.org/pim/libgravatar")
|
|
|
|
(synopsis "Online avatar lookup library")
|
|
|
|
(description "This library retrieves avatar images based on a
|
|
|
|
hash from a person's email address, as well as local caching to avoid
|
|
|
|
unnecessary network operations.")
|
|
|
|
(license ;; GPL for programs, LGPL for libraries
|
|
|
|
(list license:gpl2+ license:lgpl2.0+))))
|
|
|
|
|
2019-12-05 19:09:50 +00:00
|
|
|
(define-public kpimtextedit
|
|
|
|
(package
|
|
|
|
(name "kpimtextedit")
|
2023-07-30 02:32:01 +00:00
|
|
|
(version "23.04.3")
|
2019-12-05 19:09:50 +00:00
|
|
|
(source
|
|
|
|
(origin
|
|
|
|
(method url-fetch)
|
gnu: KDE: Update to 20.04.1.
* gnu/packages/patches/akonadi-paths.patch: Adjust for upstream changes.
* gnu/packages/patches/kdepim-runtime-Fix-missing-link-libraries.patch: Delete file.
* gnu/local.mk (dist_patch_DATA): Adjust accordingly.
* gnu/packages/kde-internet.scm (kget, kopete, krdc, libgravatar): Update to
20.04.1.
[source](uri): Adjust for new upstream location.
* gnu/packages/kde-multimedia.scm (audiocd-kio, dragon, ffmpegthumbs, juk,
k3b, kamoso, kmix, kwave, libkcddb, libkcompactdisc): Likewise.
* gnu/packages/kde-systemtools.scm (dolphin, dolphin-plugins, khelpcenter,
konsole, krfb, ksystemlog): Update to 20.04.1.
[source](uri): Adjust for new upstream location.
* gnu/packages/kde-utils.scm (kate, kmag, kmousetool, kmouth, sweeper): Update
to 20.04.1.
[source](uri): Adjust for new upstream location.
* gnu/packages/kde.scm (baloo-widgets, libkomparediff2, kqtquickcharts,
grantleetheme, kcachegrind, libkdegames, zeroconf-ioslave): Update to 20.04.1.
[source](uri): Adjust for new upstream location.
(grantleetheme)[inputs]: Add KGUIADDONS.
* gnu/packages/kde-pim.scm (akonadi, akonadi-calendar, akonadi-contacts,
akonadi-mime, akonadi-notes, akonadi-search, kincidenceeditor, kaddressbook,
kalarmcal, kblog, kcalendarsupport, kcalutils, kdav, kdepim-apps-libs,
kdepim-runtime, keventviews, kgpg, kidentitymanagement, kimap, kldap,
kleopatra, kmail, kmailcommon, kmailimporter, kmailtransport, kmbox,
kmessagelib, kmime, knotes, kontactinterface, korganizer, kpimcommon,
kpimtextedit, ksmtp, ktnef, libkdepim, libkgapi, libkleo, libksieve): Update
to 20.04.1.
[source](uri): Adjust to current.
(akonadi)[inputs]: Remove KDBUSADDONS and KDESIGNERPLUGIN.
(akonadi-calendar)[inputs]: Remove KDBUSADDONS.
(kdepim-runtime)[source](patches): Remove.
[arguments]: Add phase 'extend-CPLUS_INCLUDE_PATH'.
[inputs]: Remove KDBUSADDONS and KICONTHEMES.
(kmessagelib)[arguments]: Add phase 'extend-CPLUS_INCLUDE_PATH.
[inputs]: Add QCA.
(kdepim-apps-libs)[inputs]: Remove KDBUSADDONS and KICONTHEMES.
(knotes)[inputs]: Remove KDBUSADDONS.
(kpimcommon)[inputs]: Remove KDBUSADDONS and KCOMPLETION.
(libksieve)[arguments]: Disable one more test.
(korganizer)[arguments]: Disable one test.
2020-06-06 14:06:58 +00:00
|
|
|
(uri (string-append "mirror://kde/stable/release-service/" version
|
2019-12-05 19:09:50 +00:00
|
|
|
"/src/kpimtextedit-" version ".tar.xz"))
|
|
|
|
(sha256
|
2023-07-30 02:32:01 +00:00
|
|
|
(base32 "1rrs19bwl8qvasridysbbgsgdy9hyjlpi26hw77hli5ixkflj85b"))))
|
2019-12-05 19:09:50 +00:00
|
|
|
(build-system qt-build-system)
|
|
|
|
(native-inputs
|
2022-07-19 20:52:05 +00:00
|
|
|
(list extra-cmake-modules qttools-5))
|
2019-12-05 19:09:50 +00:00
|
|
|
(inputs
|
2021-12-13 16:18:24 +00:00
|
|
|
(list grantlee
|
|
|
|
kcodecs
|
|
|
|
kconfigwidgets
|
|
|
|
kcoreaddons
|
|
|
|
kdesignerplugin
|
|
|
|
kemoticons
|
|
|
|
ki18n
|
|
|
|
kiconthemes
|
|
|
|
kio
|
|
|
|
ksyntaxhighlighting
|
|
|
|
ktextwidgets
|
|
|
|
kwidgetsaddons
|
|
|
|
kxmlgui
|
|
|
|
qtbase-5
|
|
|
|
qtspeech
|
|
|
|
sonnet))
|
2019-12-05 19:09:50 +00:00
|
|
|
(arguments
|
|
|
|
`(#:tests? #f)) ;; TODO - test suite hangs
|
gnu: KDE PIM: Update home-pages.
* gnu/packages/kde-pim.scm (akonadi, kaddressbook, kcalutils, kgpg, kimap,
kldap, kleopatra, kmail, kmailtransport, kmbox, kmime, knotes,
kontactinterface, korganizer, kpimtextedit, ktnef): [home-page]: Update the
link.
Signed-off-by: Marius Bakke <marius@gnu.org>
2022-07-26 06:48:48 +00:00
|
|
|
(home-page "https://api.kde.org/kdepim/kpimtextedit/html/index.html")
|
2019-12-05 19:09:50 +00:00
|
|
|
(synopsis "Library providing a textedit with PIM-specific features")
|
gnu: Reword and extend descriptions for some KDE packages.
* gnu/packages/kde-multimedia.scm (libkcompatdisc)[description]: Extend.
* gnu/packages/kde-pim.scm (akonadi-search, kalarmcal, kdemailimporter,
kdepim-apps-libs, kidentitymanagement, kldap, kmailtransport, kmbox, kmime,
kontactinterface, kpimtextedit)[description]: Reword and extend.
(ktnef, kpimcommon, libkdepim)[synopsis, description]: Reword and extend.
(kmailtransport)[synopsis]: Fix space.
* gnu/packages/kde-systemtools.scm (khelpcenter)[description]: Extend.
2020-03-01 16:13:49 +00:00
|
|
|
(description "This package provides a textedit with PIM-specific features.
|
|
|
|
It also provides so-called rich text builders which can convert the formatted
|
|
|
|
text in the text edit to all kinds of markup, like HTML or BBCODE.")
|
2019-12-05 19:09:50 +00:00
|
|
|
(license ;; GPL for programs, LGPL for libraries, FDL for documentation
|
|
|
|
(list license:gpl2+ license:lgpl2.0+ license:fdl1.2+))))
|
2019-12-05 20:15:40 +00:00
|
|
|
|
2019-12-14 23:10:44 +00:00
|
|
|
(define-public ksmtp
|
|
|
|
(package
|
|
|
|
(name "ksmtp")
|
2023-07-30 02:32:01 +00:00
|
|
|
(version "23.04.3")
|
2019-12-14 23:10:44 +00:00
|
|
|
(source
|
|
|
|
(origin
|
|
|
|
(method url-fetch)
|
gnu: KDE: Update to 20.04.1.
* gnu/packages/patches/akonadi-paths.patch: Adjust for upstream changes.
* gnu/packages/patches/kdepim-runtime-Fix-missing-link-libraries.patch: Delete file.
* gnu/local.mk (dist_patch_DATA): Adjust accordingly.
* gnu/packages/kde-internet.scm (kget, kopete, krdc, libgravatar): Update to
20.04.1.
[source](uri): Adjust for new upstream location.
* gnu/packages/kde-multimedia.scm (audiocd-kio, dragon, ffmpegthumbs, juk,
k3b, kamoso, kmix, kwave, libkcddb, libkcompactdisc): Likewise.
* gnu/packages/kde-systemtools.scm (dolphin, dolphin-plugins, khelpcenter,
konsole, krfb, ksystemlog): Update to 20.04.1.
[source](uri): Adjust for new upstream location.
* gnu/packages/kde-utils.scm (kate, kmag, kmousetool, kmouth, sweeper): Update
to 20.04.1.
[source](uri): Adjust for new upstream location.
* gnu/packages/kde.scm (baloo-widgets, libkomparediff2, kqtquickcharts,
grantleetheme, kcachegrind, libkdegames, zeroconf-ioslave): Update to 20.04.1.
[source](uri): Adjust for new upstream location.
(grantleetheme)[inputs]: Add KGUIADDONS.
* gnu/packages/kde-pim.scm (akonadi, akonadi-calendar, akonadi-contacts,
akonadi-mime, akonadi-notes, akonadi-search, kincidenceeditor, kaddressbook,
kalarmcal, kblog, kcalendarsupport, kcalutils, kdav, kdepim-apps-libs,
kdepim-runtime, keventviews, kgpg, kidentitymanagement, kimap, kldap,
kleopatra, kmail, kmailcommon, kmailimporter, kmailtransport, kmbox,
kmessagelib, kmime, knotes, kontactinterface, korganizer, kpimcommon,
kpimtextedit, ksmtp, ktnef, libkdepim, libkgapi, libkleo, libksieve): Update
to 20.04.1.
[source](uri): Adjust to current.
(akonadi)[inputs]: Remove KDBUSADDONS and KDESIGNERPLUGIN.
(akonadi-calendar)[inputs]: Remove KDBUSADDONS.
(kdepim-runtime)[source](patches): Remove.
[arguments]: Add phase 'extend-CPLUS_INCLUDE_PATH'.
[inputs]: Remove KDBUSADDONS and KICONTHEMES.
(kmessagelib)[arguments]: Add phase 'extend-CPLUS_INCLUDE_PATH.
[inputs]: Add QCA.
(kdepim-apps-libs)[inputs]: Remove KDBUSADDONS and KICONTHEMES.
(knotes)[inputs]: Remove KDBUSADDONS.
(kpimcommon)[inputs]: Remove KDBUSADDONS and KCOMPLETION.
(libksieve)[arguments]: Disable one more test.
(korganizer)[arguments]: Disable one test.
2020-06-06 14:06:58 +00:00
|
|
|
(uri (string-append "mirror://kde/stable/release-service/" version
|
2019-12-14 23:10:44 +00:00
|
|
|
"/src/ksmtp-" version ".tar.xz"))
|
|
|
|
(sha256
|
2023-07-30 02:32:01 +00:00
|
|
|
(base32 "0pz17vmn38n2xl35d9di1b9138dh54wgyal9hx412nh123w13h12"))))
|
2019-12-14 23:10:44 +00:00
|
|
|
(build-system qt-build-system)
|
|
|
|
(native-inputs
|
2021-12-13 16:18:24 +00:00
|
|
|
(list extra-cmake-modules))
|
2019-12-14 23:10:44 +00:00
|
|
|
(inputs
|
2021-12-13 16:18:24 +00:00
|
|
|
(list cyrus-sasl
|
|
|
|
kcodecs
|
|
|
|
kconfig
|
|
|
|
kcoreaddons
|
|
|
|
ki18n
|
|
|
|
kio
|
|
|
|
qtbase-5))
|
2019-12-14 23:10:44 +00:00
|
|
|
(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)
|
gnu: KDE-PIM: Remove trailing booleans.
* gnu/packages/kde-pim.scm (akonadi, akonadi-mime, akonadi-search,
kincidenceeditor, kdepim-runtime, kidentitymanagement, kleopatra, kmail,
kmime, korganizer, kpeoplevcard, ksmtp, libkleo,
libksieve)[arguments]: Remove trailing booleans.
Signed-off-by: Marius Bakke <marius@gnu.org>
2022-07-21 06:33:36 +00:00
|
|
|
(string-append prefix "${KDE_INSTALL_TARGETS_DEFAULT_ARGS})"))))))))
|
gnu: KDE: Fix old cgit home-pages.
Fix all home-pages pointing to git-repos a cgit.kde.org, which is
gone, to now use the correct repo at invent.kde.org.
* gnu/packages/kde.scm (grantleetheme, kdiagram): Update home-page.
* gnu/packages/kde-frameworks.scm (kholidays): Likewise.
* gnu/packages/kde-internet.scm (libgravatar, libktorrent): Likewise.
* gnu/packages/kde-multimedia.scm (libkcddb, libkcompactdisc): Likewise.
* gnu/packages/kde-pim.scm (kblog, kdav, kdepim-apps-libs,
kdepim-runtime, keventviews, kincidenceeditor, kmailcommon,
kmailimporter, kmessagelib, kpimcommon, ksmtp, libkdepim, libkgapi,
libkleo, libksieve): Likewise.
* gnu/packages/kde-plasma.scm (kdecoration, kscreenlocker): Likewise.
2020-12-12 17:22:37 +00:00
|
|
|
(home-page "https://invent.kde.org/pim/ksmtp")
|
2019-12-14 23:10:44 +00:00
|
|
|
(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+)))
|
|
|
|
|
2019-12-05 20:15:40 +00:00
|
|
|
(define-public ktnef
|
|
|
|
(package
|
|
|
|
(name "ktnef")
|
2023-07-30 02:32:01 +00:00
|
|
|
(version "23.04.3")
|
2019-12-05 20:15:40 +00:00
|
|
|
(source
|
|
|
|
(origin
|
|
|
|
(method url-fetch)
|
gnu: KDE: Update to 20.04.1.
* gnu/packages/patches/akonadi-paths.patch: Adjust for upstream changes.
* gnu/packages/patches/kdepim-runtime-Fix-missing-link-libraries.patch: Delete file.
* gnu/local.mk (dist_patch_DATA): Adjust accordingly.
* gnu/packages/kde-internet.scm (kget, kopete, krdc, libgravatar): Update to
20.04.1.
[source](uri): Adjust for new upstream location.
* gnu/packages/kde-multimedia.scm (audiocd-kio, dragon, ffmpegthumbs, juk,
k3b, kamoso, kmix, kwave, libkcddb, libkcompactdisc): Likewise.
* gnu/packages/kde-systemtools.scm (dolphin, dolphin-plugins, khelpcenter,
konsole, krfb, ksystemlog): Update to 20.04.1.
[source](uri): Adjust for new upstream location.
* gnu/packages/kde-utils.scm (kate, kmag, kmousetool, kmouth, sweeper): Update
to 20.04.1.
[source](uri): Adjust for new upstream location.
* gnu/packages/kde.scm (baloo-widgets, libkomparediff2, kqtquickcharts,
grantleetheme, kcachegrind, libkdegames, zeroconf-ioslave): Update to 20.04.1.
[source](uri): Adjust for new upstream location.
(grantleetheme)[inputs]: Add KGUIADDONS.
* gnu/packages/kde-pim.scm (akonadi, akonadi-calendar, akonadi-contacts,
akonadi-mime, akonadi-notes, akonadi-search, kincidenceeditor, kaddressbook,
kalarmcal, kblog, kcalendarsupport, kcalutils, kdav, kdepim-apps-libs,
kdepim-runtime, keventviews, kgpg, kidentitymanagement, kimap, kldap,
kleopatra, kmail, kmailcommon, kmailimporter, kmailtransport, kmbox,
kmessagelib, kmime, knotes, kontactinterface, korganizer, kpimcommon,
kpimtextedit, ksmtp, ktnef, libkdepim, libkgapi, libkleo, libksieve): Update
to 20.04.1.
[source](uri): Adjust to current.
(akonadi)[inputs]: Remove KDBUSADDONS and KDESIGNERPLUGIN.
(akonadi-calendar)[inputs]: Remove KDBUSADDONS.
(kdepim-runtime)[source](patches): Remove.
[arguments]: Add phase 'extend-CPLUS_INCLUDE_PATH'.
[inputs]: Remove KDBUSADDONS and KICONTHEMES.
(kmessagelib)[arguments]: Add phase 'extend-CPLUS_INCLUDE_PATH.
[inputs]: Add QCA.
(kdepim-apps-libs)[inputs]: Remove KDBUSADDONS and KICONTHEMES.
(knotes)[inputs]: Remove KDBUSADDONS.
(kpimcommon)[inputs]: Remove KDBUSADDONS and KCOMPLETION.
(libksieve)[arguments]: Disable one more test.
(korganizer)[arguments]: Disable one test.
2020-06-06 14:06:58 +00:00
|
|
|
(uri (string-append "mirror://kde/stable/release-service/" version
|
2019-12-05 20:15:40 +00:00
|
|
|
"/src/ktnef-" version ".tar.xz"))
|
|
|
|
(sha256
|
2023-07-30 02:32:01 +00:00
|
|
|
(base32 "00dkcmywjxzq5v2kp4klw50c3w74lmh16kbcwn8qd97kky3pd5ik"))))
|
2019-12-05 20:15:40 +00:00
|
|
|
(build-system qt-build-system)
|
|
|
|
(native-inputs
|
2021-12-13 16:18:24 +00:00
|
|
|
(list extra-cmake-modules))
|
2019-12-05 20:15:40 +00:00
|
|
|
(inputs
|
2021-12-13 16:18:24 +00:00
|
|
|
(list kcalendarcore
|
|
|
|
kcalutils
|
|
|
|
kcodecs
|
|
|
|
kconfig
|
|
|
|
kcontacts
|
|
|
|
kcoreaddons
|
|
|
|
ki18n
|
|
|
|
qtbase-5))
|
gnu: KDE PIM: Update home-pages.
* gnu/packages/kde-pim.scm (akonadi, kaddressbook, kcalutils, kgpg, kimap,
kldap, kleopatra, kmail, kmailtransport, kmbox, kmime, knotes,
kontactinterface, korganizer, kpimtextedit, ktnef): [home-page]: Update the
link.
Signed-off-by: Marius Bakke <marius@gnu.org>
2022-07-26 06:48:48 +00:00
|
|
|
(home-page "https://api.kde.org/kdepim/ktnef/html/index.html")
|
gnu: Reword and extend descriptions for some KDE packages.
* gnu/packages/kde-multimedia.scm (libkcompatdisc)[description]: Extend.
* gnu/packages/kde-pim.scm (akonadi-search, kalarmcal, kdemailimporter,
kdepim-apps-libs, kidentitymanagement, kldap, kmailtransport, kmbox, kmime,
kontactinterface, kpimtextedit)[description]: Reword and extend.
(ktnef, kpimcommon, libkdepim)[synopsis, description]: Reword and extend.
(kmailtransport)[synopsis]: Fix space.
* gnu/packages/kde-systemtools.scm (khelpcenter)[description]: Extend.
2020-03-01 16:13:49 +00:00
|
|
|
(synopsis "Library for handling mail attachments using TNEF format")
|
|
|
|
(description "Ktnef is a library for handling data in the TNEF
|
|
|
|
format (Transport Neutral Encapsulation Format, a proprietary format of e-mail
|
|
|
|
attachment used by Microsoft Outlook and Microsoft Exchange Server). The API
|
|
|
|
permits access to the actual attachments, the message properties (TNEF/MAPI),
|
|
|
|
and allows one to view/extract message formatted text in Rich Text Format.")
|
2019-12-05 20:15:40 +00:00
|
|
|
(license license:lgpl2.0+)))
|
2019-12-14 23:22:09 +00:00
|
|
|
|
2020-01-18 17:59:33 +00:00
|
|
|
(define-public libkdepim
|
|
|
|
(package
|
|
|
|
(name "libkdepim")
|
2023-07-30 02:32:01 +00:00
|
|
|
(version "23.04.3")
|
2020-01-18 17:59:33 +00:00
|
|
|
(source
|
|
|
|
(origin
|
|
|
|
(method url-fetch)
|
gnu: KDE: Update to 20.04.1.
* gnu/packages/patches/akonadi-paths.patch: Adjust for upstream changes.
* gnu/packages/patches/kdepim-runtime-Fix-missing-link-libraries.patch: Delete file.
* gnu/local.mk (dist_patch_DATA): Adjust accordingly.
* gnu/packages/kde-internet.scm (kget, kopete, krdc, libgravatar): Update to
20.04.1.
[source](uri): Adjust for new upstream location.
* gnu/packages/kde-multimedia.scm (audiocd-kio, dragon, ffmpegthumbs, juk,
k3b, kamoso, kmix, kwave, libkcddb, libkcompactdisc): Likewise.
* gnu/packages/kde-systemtools.scm (dolphin, dolphin-plugins, khelpcenter,
konsole, krfb, ksystemlog): Update to 20.04.1.
[source](uri): Adjust for new upstream location.
* gnu/packages/kde-utils.scm (kate, kmag, kmousetool, kmouth, sweeper): Update
to 20.04.1.
[source](uri): Adjust for new upstream location.
* gnu/packages/kde.scm (baloo-widgets, libkomparediff2, kqtquickcharts,
grantleetheme, kcachegrind, libkdegames, zeroconf-ioslave): Update to 20.04.1.
[source](uri): Adjust for new upstream location.
(grantleetheme)[inputs]: Add KGUIADDONS.
* gnu/packages/kde-pim.scm (akonadi, akonadi-calendar, akonadi-contacts,
akonadi-mime, akonadi-notes, akonadi-search, kincidenceeditor, kaddressbook,
kalarmcal, kblog, kcalendarsupport, kcalutils, kdav, kdepim-apps-libs,
kdepim-runtime, keventviews, kgpg, kidentitymanagement, kimap, kldap,
kleopatra, kmail, kmailcommon, kmailimporter, kmailtransport, kmbox,
kmessagelib, kmime, knotes, kontactinterface, korganizer, kpimcommon,
kpimtextedit, ksmtp, ktnef, libkdepim, libkgapi, libkleo, libksieve): Update
to 20.04.1.
[source](uri): Adjust to current.
(akonadi)[inputs]: Remove KDBUSADDONS and KDESIGNERPLUGIN.
(akonadi-calendar)[inputs]: Remove KDBUSADDONS.
(kdepim-runtime)[source](patches): Remove.
[arguments]: Add phase 'extend-CPLUS_INCLUDE_PATH'.
[inputs]: Remove KDBUSADDONS and KICONTHEMES.
(kmessagelib)[arguments]: Add phase 'extend-CPLUS_INCLUDE_PATH.
[inputs]: Add QCA.
(kdepim-apps-libs)[inputs]: Remove KDBUSADDONS and KICONTHEMES.
(knotes)[inputs]: Remove KDBUSADDONS.
(kpimcommon)[inputs]: Remove KDBUSADDONS and KCOMPLETION.
(libksieve)[arguments]: Disable one more test.
(korganizer)[arguments]: Disable one test.
2020-06-06 14:06:58 +00:00
|
|
|
(uri (string-append "mirror://kde/stable/release-service/" version
|
2020-01-18 17:59:33 +00:00
|
|
|
"/src/libkdepim-" version ".tar.xz"))
|
|
|
|
(sha256
|
2023-07-30 02:32:01 +00:00
|
|
|
(base32 "1i5c4qqd4ghlfjvxniy8sbfqh0fsrz4sadvh0n2d207s9rsl274v"))))
|
2020-01-18 17:59:33 +00:00
|
|
|
(build-system qt-build-system)
|
|
|
|
(native-inputs
|
2022-07-19 20:52:05 +00:00
|
|
|
(list extra-cmake-modules qttools-5))
|
2020-01-18 17:59:33 +00:00
|
|
|
(inputs
|
2021-12-13 16:18:24 +00:00
|
|
|
(list akonadi
|
|
|
|
akonadi-contacts
|
|
|
|
akonadi-mime
|
|
|
|
akonadi-search
|
|
|
|
boost
|
|
|
|
kcmutils
|
|
|
|
kcodecs
|
|
|
|
kcalendarcore
|
|
|
|
kcompletion
|
|
|
|
kconfig
|
|
|
|
kconfigwidgets
|
|
|
|
kcontacts
|
|
|
|
kcoreaddons
|
|
|
|
kdbusaddons
|
|
|
|
kdesignerplugin
|
|
|
|
ki18n
|
|
|
|
kiconthemes
|
|
|
|
kio
|
|
|
|
kitemmodels
|
|
|
|
kitemviews
|
|
|
|
kjobwidgets
|
|
|
|
kldap
|
|
|
|
kmime
|
|
|
|
kwallet
|
|
|
|
kwidgetsaddons
|
|
|
|
qtbase-5))
|
gnu: KDE: Fix old cgit home-pages.
Fix all home-pages pointing to git-repos a cgit.kde.org, which is
gone, to now use the correct repo at invent.kde.org.
* gnu/packages/kde.scm (grantleetheme, kdiagram): Update home-page.
* gnu/packages/kde-frameworks.scm (kholidays): Likewise.
* gnu/packages/kde-internet.scm (libgravatar, libktorrent): Likewise.
* gnu/packages/kde-multimedia.scm (libkcddb, libkcompactdisc): Likewise.
* gnu/packages/kde-pim.scm (kblog, kdav, kdepim-apps-libs,
kdepim-runtime, keventviews, kincidenceeditor, kmailcommon,
kmailimporter, kmessagelib, kpimcommon, ksmtp, libkdepim, libkgapi,
libkleo, libksieve): Likewise.
* gnu/packages/kde-plasma.scm (kdecoration, kscreenlocker): Likewise.
2020-12-12 17:22:37 +00:00
|
|
|
(home-page "https://invent.kde.org/pim/libkdepim")
|
gnu: Reword and extend descriptions for some KDE packages.
* gnu/packages/kde-multimedia.scm (libkcompatdisc)[description]: Extend.
* gnu/packages/kde-pim.scm (akonadi-search, kalarmcal, kdemailimporter,
kdepim-apps-libs, kidentitymanagement, kldap, kmailtransport, kmbox, kmime,
kontactinterface, kpimtextedit)[description]: Reword and extend.
(ktnef, kpimcommon, libkdepim)[synopsis, description]: Reword and extend.
(kmailtransport)[synopsis]: Fix space.
* gnu/packages/kde-systemtools.scm (khelpcenter)[description]: Extend.
2020-03-01 16:13:49 +00:00
|
|
|
(synopsis "Libraries for common KDE PIM apps")
|
|
|
|
(description "This package provided libraries for common KDE PIM apps.")
|
2020-01-18 17:59:33 +00:00
|
|
|
(license ;; GPL for programs, LGPL for libraries
|
|
|
|
(list license:gpl2+ license:lgpl2.0+))))
|
|
|
|
|
2019-12-14 23:22:09 +00:00
|
|
|
(define-public libkgapi
|
|
|
|
(package
|
|
|
|
(name "libkgapi")
|
2023-07-30 02:32:01 +00:00
|
|
|
(version "23.04.3")
|
2019-12-14 23:22:09 +00:00
|
|
|
(source
|
|
|
|
(origin
|
|
|
|
(method url-fetch)
|
gnu: KDE: Update to 20.04.1.
* gnu/packages/patches/akonadi-paths.patch: Adjust for upstream changes.
* gnu/packages/patches/kdepim-runtime-Fix-missing-link-libraries.patch: Delete file.
* gnu/local.mk (dist_patch_DATA): Adjust accordingly.
* gnu/packages/kde-internet.scm (kget, kopete, krdc, libgravatar): Update to
20.04.1.
[source](uri): Adjust for new upstream location.
* gnu/packages/kde-multimedia.scm (audiocd-kio, dragon, ffmpegthumbs, juk,
k3b, kamoso, kmix, kwave, libkcddb, libkcompactdisc): Likewise.
* gnu/packages/kde-systemtools.scm (dolphin, dolphin-plugins, khelpcenter,
konsole, krfb, ksystemlog): Update to 20.04.1.
[source](uri): Adjust for new upstream location.
* gnu/packages/kde-utils.scm (kate, kmag, kmousetool, kmouth, sweeper): Update
to 20.04.1.
[source](uri): Adjust for new upstream location.
* gnu/packages/kde.scm (baloo-widgets, libkomparediff2, kqtquickcharts,
grantleetheme, kcachegrind, libkdegames, zeroconf-ioslave): Update to 20.04.1.
[source](uri): Adjust for new upstream location.
(grantleetheme)[inputs]: Add KGUIADDONS.
* gnu/packages/kde-pim.scm (akonadi, akonadi-calendar, akonadi-contacts,
akonadi-mime, akonadi-notes, akonadi-search, kincidenceeditor, kaddressbook,
kalarmcal, kblog, kcalendarsupport, kcalutils, kdav, kdepim-apps-libs,
kdepim-runtime, keventviews, kgpg, kidentitymanagement, kimap, kldap,
kleopatra, kmail, kmailcommon, kmailimporter, kmailtransport, kmbox,
kmessagelib, kmime, knotes, kontactinterface, korganizer, kpimcommon,
kpimtextedit, ksmtp, ktnef, libkdepim, libkgapi, libkleo, libksieve): Update
to 20.04.1.
[source](uri): Adjust to current.
(akonadi)[inputs]: Remove KDBUSADDONS and KDESIGNERPLUGIN.
(akonadi-calendar)[inputs]: Remove KDBUSADDONS.
(kdepim-runtime)[source](patches): Remove.
[arguments]: Add phase 'extend-CPLUS_INCLUDE_PATH'.
[inputs]: Remove KDBUSADDONS and KICONTHEMES.
(kmessagelib)[arguments]: Add phase 'extend-CPLUS_INCLUDE_PATH.
[inputs]: Add QCA.
(kdepim-apps-libs)[inputs]: Remove KDBUSADDONS and KICONTHEMES.
(knotes)[inputs]: Remove KDBUSADDONS.
(kpimcommon)[inputs]: Remove KDBUSADDONS and KCOMPLETION.
(libksieve)[arguments]: Disable one more test.
(korganizer)[arguments]: Disable one test.
2020-06-06 14:06:58 +00:00
|
|
|
(uri (string-append "mirror://kde/stable/release-service/" version
|
2019-12-14 23:22:09 +00:00
|
|
|
"/src/libkgapi-" version ".tar.xz"))
|
|
|
|
(sha256
|
2023-07-30 02:32:01 +00:00
|
|
|
(base32 "18jcrp7qi35zxzb4b7mn6519bjw47s7kwfahd6a50p40j17k09bs"))))
|
2019-12-14 23:22:09 +00:00
|
|
|
(build-system qt-build-system)
|
|
|
|
(native-inputs
|
2022-07-19 20:52:05 +00:00
|
|
|
(list extra-cmake-modules qttools-5))
|
2019-12-14 23:22:09 +00:00
|
|
|
(inputs
|
2021-12-13 16:18:24 +00:00
|
|
|
(list cyrus-sasl
|
|
|
|
ki18n
|
|
|
|
kcontacts
|
|
|
|
kcalendarcore
|
|
|
|
kio
|
|
|
|
kwallet
|
|
|
|
kwindowsystem
|
|
|
|
qtbase-5
|
2022-07-18 01:03:18 +00:00
|
|
|
qtdeclarative-5
|
2022-07-18 04:02:58 +00:00
|
|
|
qtwebchannel-5
|
2022-07-18 11:57:16 +00:00
|
|
|
qtwebengine-5))
|
2019-12-14 23:22:09 +00:00
|
|
|
(arguments
|
|
|
|
`(#:tests? #f)) ;; TODO 6/48 tests fail
|
gnu: KDE: Fix old cgit home-pages.
Fix all home-pages pointing to git-repos a cgit.kde.org, which is
gone, to now use the correct repo at invent.kde.org.
* gnu/packages/kde.scm (grantleetheme, kdiagram): Update home-page.
* gnu/packages/kde-frameworks.scm (kholidays): Likewise.
* gnu/packages/kde-internet.scm (libgravatar, libktorrent): Likewise.
* gnu/packages/kde-multimedia.scm (libkcddb, libkcompactdisc): Likewise.
* gnu/packages/kde-pim.scm (kblog, kdav, kdepim-apps-libs,
kdepim-runtime, keventviews, kincidenceeditor, kmailcommon,
kmailimporter, kmessagelib, kpimcommon, ksmtp, libkdepim, libkgapi,
libkleo, libksieve): Likewise.
* gnu/packages/kde-plasma.scm (kdecoration, kscreenlocker): Likewise.
2020-12-12 17:22:37 +00:00
|
|
|
(home-page "https://invent.kde.org/pim/libkgapi")
|
2019-12-14 23:22:09 +00:00
|
|
|
(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+)))
|
2019-12-09 16:44:04 +00:00
|
|
|
|
|
|
|
(define-public libkleo
|
|
|
|
(package
|
|
|
|
(name "libkleo")
|
2023-07-30 02:32:01 +00:00
|
|
|
(version "23.04.3")
|
2019-12-09 16:44:04 +00:00
|
|
|
(source
|
|
|
|
(origin
|
|
|
|
(method url-fetch)
|
gnu: KDE: Update to 20.04.1.
* gnu/packages/patches/akonadi-paths.patch: Adjust for upstream changes.
* gnu/packages/patches/kdepim-runtime-Fix-missing-link-libraries.patch: Delete file.
* gnu/local.mk (dist_patch_DATA): Adjust accordingly.
* gnu/packages/kde-internet.scm (kget, kopete, krdc, libgravatar): Update to
20.04.1.
[source](uri): Adjust for new upstream location.
* gnu/packages/kde-multimedia.scm (audiocd-kio, dragon, ffmpegthumbs, juk,
k3b, kamoso, kmix, kwave, libkcddb, libkcompactdisc): Likewise.
* gnu/packages/kde-systemtools.scm (dolphin, dolphin-plugins, khelpcenter,
konsole, krfb, ksystemlog): Update to 20.04.1.
[source](uri): Adjust for new upstream location.
* gnu/packages/kde-utils.scm (kate, kmag, kmousetool, kmouth, sweeper): Update
to 20.04.1.
[source](uri): Adjust for new upstream location.
* gnu/packages/kde.scm (baloo-widgets, libkomparediff2, kqtquickcharts,
grantleetheme, kcachegrind, libkdegames, zeroconf-ioslave): Update to 20.04.1.
[source](uri): Adjust for new upstream location.
(grantleetheme)[inputs]: Add KGUIADDONS.
* gnu/packages/kde-pim.scm (akonadi, akonadi-calendar, akonadi-contacts,
akonadi-mime, akonadi-notes, akonadi-search, kincidenceeditor, kaddressbook,
kalarmcal, kblog, kcalendarsupport, kcalutils, kdav, kdepim-apps-libs,
kdepim-runtime, keventviews, kgpg, kidentitymanagement, kimap, kldap,
kleopatra, kmail, kmailcommon, kmailimporter, kmailtransport, kmbox,
kmessagelib, kmime, knotes, kontactinterface, korganizer, kpimcommon,
kpimtextedit, ksmtp, ktnef, libkdepim, libkgapi, libkleo, libksieve): Update
to 20.04.1.
[source](uri): Adjust to current.
(akonadi)[inputs]: Remove KDBUSADDONS and KDESIGNERPLUGIN.
(akonadi-calendar)[inputs]: Remove KDBUSADDONS.
(kdepim-runtime)[source](patches): Remove.
[arguments]: Add phase 'extend-CPLUS_INCLUDE_PATH'.
[inputs]: Remove KDBUSADDONS and KICONTHEMES.
(kmessagelib)[arguments]: Add phase 'extend-CPLUS_INCLUDE_PATH.
[inputs]: Add QCA.
(kdepim-apps-libs)[inputs]: Remove KDBUSADDONS and KICONTHEMES.
(knotes)[inputs]: Remove KDBUSADDONS.
(kpimcommon)[inputs]: Remove KDBUSADDONS and KCOMPLETION.
(libksieve)[arguments]: Disable one more test.
(korganizer)[arguments]: Disable one test.
2020-06-06 14:06:58 +00:00
|
|
|
(uri (string-append "mirror://kde/stable/release-service/" version
|
2019-12-09 16:44:04 +00:00
|
|
|
"/src/libkleo-" version ".tar.xz"))
|
|
|
|
(sha256
|
2023-07-30 02:32:01 +00:00
|
|
|
(base32 "0l77n4dlbv9hclzvh69kdzji907if7yayxiasxnnjkzsvcm1af25"))))
|
2019-12-09 16:44:04 +00:00
|
|
|
(build-system qt-build-system)
|
|
|
|
(native-inputs
|
2022-07-19 20:52:05 +00:00
|
|
|
(list extra-cmake-modules kdoctools qttools-5))
|
2019-12-09 16:44:04 +00:00
|
|
|
(inputs
|
2021-12-13 16:18:24 +00:00
|
|
|
(list boost
|
|
|
|
gpgme
|
|
|
|
kcodecs
|
|
|
|
kcompletion
|
|
|
|
kconfig
|
gnu: KDE PIM: Update to 22.08.1.
* gnu/packages/kde-pim.scm (akonadi, akonadi-calendar, akonadi-contacts,
akonadi-mime, akonadi-notes, akonadi-search, kincidenceeditor,
kaddressbook, kcalendarsupport, kcalutils, kdepim-runtime, keventviews, kgpg,
kidentitymanagement, kimap, kldap, kleopatra, kmail, kmailcommon,
kmailimporter, kmailtransport, kmbox, kmessagelib, kmime, knotes,
kontactinterface, korganizer, kpimcommon, libgravatar,
kpimtextedit, ksmtp, ktnef, libkdepim, libkgapi, libkleo, libksieve): Update
to 22.08.1.
(kmailcommon)[inputs]: Add qtwebchannel-5 and qtwebengine-5.
(libkleo)[inputs]: Add kconfigwidgets.
(libksieve)[arguments]: Fix disabling of test.
Signed-off-by: Marius Bakke <marius@gnu.org>
2022-09-28 19:25:19 +00:00
|
|
|
kconfigwidgets
|
2021-12-13 16:18:24 +00:00
|
|
|
kcoreaddons
|
|
|
|
kcrash
|
|
|
|
ki18n
|
|
|
|
kitemmodels
|
|
|
|
kwidgetsaddons
|
|
|
|
kwindowsystem
|
|
|
|
kpimtextedit
|
|
|
|
qgpgme
|
|
|
|
qtbase-5))
|
gnu: KDE PIM: Update all packages to 21.12.3.
* gnu/packages/kde-pim.scm (KDE PIM): Update to 21.12.3.
(akonadi, akonadi-calendar, akonadi-contacts, akonadi-mime,
akonadi-notes, akonadi-search, kaddressbook, kalarmcal,
kcalendarsupport, kcalutils, kdepim-runtime, keventviews, kgpg,
kidentitymanagement, kimap, kincidenceeditor, kldap, kleopatra, kmail,
kmailcommon, kmailimporter, kmailtransport, kmbox, kmessagelib, kmime,
knotes, kontactinterface, korganizer, kpeoplevcard, kpimcommon,
kpimtextedit, ksmtp, ktnef, libgravatar, libkdepim, libkgapi, libkleo,
libksieve): Update to 21.12.3.
(kblog): Update to 20.04.3.
* gnu/packages/patches/akonadi-not-relocatable.patch
* gnu/packages/patches/akonadi-paths.patch
* gnu/packages/patches/akonadi-timestamps.patch
Fix patches to apply to latest code.
(akonadi-calendar): [inputs]: Add new dependencies.
(akonadi-contacts): [inputs]: Add new dependencies.
(akonadi-search): [arguments]: Disable failing tests.
(kcalendarsupport): [inputs]: Add new dependency, remove obsolete kdepim-apps-lib.
(libksieve): [arguments]: Enable test that works now.
* gnu/packages/patches/libksieve-Fix-missing-link-libraries.patch: Fix patch.
(kaddressbook): [inputs]: Remove obsolete kdepim-apps-libs.
Move kdocstools to native-inputs.
(kmessagelib): [inputs]: Remove obsolete kdepim-appslibs, add kguiaddons.
[arguments]: Fix findind header file.
(kmailimporter): [inputs]: Add new dependencies.
(kmailtransport): [inputs]: Add qtkeychain.
(knotes): [inputs]: Move kdocstools to native-inputs.
(kincidenceeditor): [inputs]: Add new dependencies. Remove obsolete kdepim-apps-libs
[arguments]: Disable failing test.
(kldap): [inputs]: Add qtkeychain.
(kgpg)[arguments]: Disable failing tests.
(libkleo): [propagated-inputs]: Propagate gpgme, qgpgme.
[arguments]: Disable failing tests.
(kdepim-runtime): [inputs]: Add new dependencies grantlee, grantleetheme, kcmutils, kldap,
libkdepim, qtkeychain
[arguments]: Enable all the tests that pass.
We need to use the old hack instead of search-input-directory to
workaround a mysterious include error.
(kdepim-apps-lib): Remove obsolete package.
(kmail): [origin]: Remove patch. Don't think it is needed anymore.
[inputs]: Add new dependencies, delete obsolete kdepim-apps-libs and
duplicate kmime.
[arguments]: Disable failing tests.
* gnu/packages/patches/kmail-Fix-missing-link-libraries.patch: Delete file.
* gnu/local.mk: Remove reference to patch.
(kmailcommon): [inputs]: Add new dependencies.
Signed-off-by: Marius Bakke <marius@gnu.org>
2022-02-02 09:08:23 +00:00
|
|
|
(propagated-inputs
|
|
|
|
`(("gpgme" ,gpgme)
|
|
|
|
("qgpgme" ,qgpgme)))
|
|
|
|
(arguments
|
|
|
|
`(#:phases
|
|
|
|
(modify-phases %standard-phases
|
|
|
|
(replace 'check
|
|
|
|
(lambda* (#:key tests? #:allow-other-keys)
|
|
|
|
(when tests? ;; FIXME: These tests fail.
|
|
|
|
(invoke "ctest" "-E"
|
gnu: KDE-PIM: Remove trailing booleans.
* gnu/packages/kde-pim.scm (akonadi, akonadi-mime, akonadi-search,
kincidenceeditor, kdepim-runtime, kidentitymanagement, kleopatra, kmail,
kmime, korganizer, kpeoplevcard, ksmtp, libkleo,
libksieve)[arguments]: Remove trailing booleans.
Signed-off-by: Marius Bakke <marius@gnu.org>
2022-07-21 06:33:36 +00:00
|
|
|
"(keyresolvercoretest|newkeyapprovaldialogtest)")))))))
|
gnu: KDE: Fix old cgit home-pages.
Fix all home-pages pointing to git-repos a cgit.kde.org, which is
gone, to now use the correct repo at invent.kde.org.
* gnu/packages/kde.scm (grantleetheme, kdiagram): Update home-page.
* gnu/packages/kde-frameworks.scm (kholidays): Likewise.
* gnu/packages/kde-internet.scm (libgravatar, libktorrent): Likewise.
* gnu/packages/kde-multimedia.scm (libkcddb, libkcompactdisc): Likewise.
* gnu/packages/kde-pim.scm (kblog, kdav, kdepim-apps-libs,
kdepim-runtime, keventviews, kincidenceeditor, kmailcommon,
kmailimporter, kmessagelib, kpimcommon, ksmtp, libkdepim, libkgapi,
libkleo, libksieve): Likewise.
* gnu/packages/kde-plasma.scm (kdecoration, kscreenlocker): Likewise.
2020-12-12 17:22:37 +00:00
|
|
|
(home-page "https://invent.kde.org/pim/libkleo")
|
2019-12-09 16:44:04 +00:00
|
|
|
(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+))))
|
2020-01-18 20:47:00 +00:00
|
|
|
|
|
|
|
(define-public libksieve
|
|
|
|
(package
|
|
|
|
(name "libksieve")
|
2023-07-30 02:32:01 +00:00
|
|
|
(version "23.04.3")
|
2020-01-18 20:47:00 +00:00
|
|
|
(source
|
|
|
|
(origin
|
|
|
|
(method url-fetch)
|
gnu: KDE: Update to 20.04.1.
* gnu/packages/patches/akonadi-paths.patch: Adjust for upstream changes.
* gnu/packages/patches/kdepim-runtime-Fix-missing-link-libraries.patch: Delete file.
* gnu/local.mk (dist_patch_DATA): Adjust accordingly.
* gnu/packages/kde-internet.scm (kget, kopete, krdc, libgravatar): Update to
20.04.1.
[source](uri): Adjust for new upstream location.
* gnu/packages/kde-multimedia.scm (audiocd-kio, dragon, ffmpegthumbs, juk,
k3b, kamoso, kmix, kwave, libkcddb, libkcompactdisc): Likewise.
* gnu/packages/kde-systemtools.scm (dolphin, dolphin-plugins, khelpcenter,
konsole, krfb, ksystemlog): Update to 20.04.1.
[source](uri): Adjust for new upstream location.
* gnu/packages/kde-utils.scm (kate, kmag, kmousetool, kmouth, sweeper): Update
to 20.04.1.
[source](uri): Adjust for new upstream location.
* gnu/packages/kde.scm (baloo-widgets, libkomparediff2, kqtquickcharts,
grantleetheme, kcachegrind, libkdegames, zeroconf-ioslave): Update to 20.04.1.
[source](uri): Adjust for new upstream location.
(grantleetheme)[inputs]: Add KGUIADDONS.
* gnu/packages/kde-pim.scm (akonadi, akonadi-calendar, akonadi-contacts,
akonadi-mime, akonadi-notes, akonadi-search, kincidenceeditor, kaddressbook,
kalarmcal, kblog, kcalendarsupport, kcalutils, kdav, kdepim-apps-libs,
kdepim-runtime, keventviews, kgpg, kidentitymanagement, kimap, kldap,
kleopatra, kmail, kmailcommon, kmailimporter, kmailtransport, kmbox,
kmessagelib, kmime, knotes, kontactinterface, korganizer, kpimcommon,
kpimtextedit, ksmtp, ktnef, libkdepim, libkgapi, libkleo, libksieve): Update
to 20.04.1.
[source](uri): Adjust to current.
(akonadi)[inputs]: Remove KDBUSADDONS and KDESIGNERPLUGIN.
(akonadi-calendar)[inputs]: Remove KDBUSADDONS.
(kdepim-runtime)[source](patches): Remove.
[arguments]: Add phase 'extend-CPLUS_INCLUDE_PATH'.
[inputs]: Remove KDBUSADDONS and KICONTHEMES.
(kmessagelib)[arguments]: Add phase 'extend-CPLUS_INCLUDE_PATH.
[inputs]: Add QCA.
(kdepim-apps-libs)[inputs]: Remove KDBUSADDONS and KICONTHEMES.
(knotes)[inputs]: Remove KDBUSADDONS.
(kpimcommon)[inputs]: Remove KDBUSADDONS and KCOMPLETION.
(libksieve)[arguments]: Disable one more test.
(korganizer)[arguments]: Disable one test.
2020-06-06 14:06:58 +00:00
|
|
|
(uri (string-append "mirror://kde/stable/release-service/" version
|
2020-01-18 20:47:00 +00:00
|
|
|
"/src/libksieve-" version ".tar.xz"))
|
|
|
|
(sha256
|
gnu: KDE PIM: Update all packages to 22.04.3.
* gnu/packages/kde-pim.scm (KDE PIM): Update to 22.04.3.
(akonadi, akonadi-calendar, akonadi-contacts, akonadi-mime,
akonadi-notes, akonadi-search, kaddressbook, kalarmcal,
kcalendarsupport, kcalutils, kdepim-runtime, keventviews, kgpg
kidentitymanagement, kimap, kincidenceeditor, kldap, kleopatra
kmailcommon, kmailimporter, kmailtransport, kmbox, kmessagelib
knotes, kontactinterface, korganizer, kpeoplevcard, kpimcommon
kpimtextedit, ksmtp, ktnef, libgravatar, libkdepim, libkgapi,
libksieve): Update to 22.04.3.
(akonadi-calendar): [inputs]: Add kdbusaddons and knotifications.
(kincidenceeditor): [arguments]: Disable failing tests.
(kdepim-runtime): [inputs]: Remove kalarmcal.
(kmailimporter): [inputs]: Add kpimtextedit and ktextwidgets.
(kmessagelib): [inputs]: Add knotifications.
(kpimcommon): [inputs]: Add kpimtextedit.
(libksieve): [inputs]: Add grantlee.
Signed-off-by: Marius Bakke <marius@gnu.org>
2022-08-01 12:29:50 +00:00
|
|
|
(base32
|
2023-07-30 02:32:01 +00:00
|
|
|
"066z33v30h568bmdcsl4v478p3xhiwsmq7pr7kziilrhy3a2m7p6"))))
|
2020-01-18 20:47:00 +00:00
|
|
|
(build-system qt-build-system)
|
|
|
|
(native-inputs
|
2021-12-13 16:18:24 +00:00
|
|
|
(list extra-cmake-modules kdoctools))
|
2020-01-18 20:47:00 +00:00
|
|
|
(inputs
|
2021-12-13 16:18:24 +00:00
|
|
|
(list akonadi
|
|
|
|
cyrus-sasl
|
gnu: KDE PIM: Update all packages to 22.04.3.
* gnu/packages/kde-pim.scm (KDE PIM): Update to 22.04.3.
(akonadi, akonadi-calendar, akonadi-contacts, akonadi-mime,
akonadi-notes, akonadi-search, kaddressbook, kalarmcal,
kcalendarsupport, kcalutils, kdepim-runtime, keventviews, kgpg
kidentitymanagement, kimap, kincidenceeditor, kldap, kleopatra
kmailcommon, kmailimporter, kmailtransport, kmbox, kmessagelib
knotes, kontactinterface, korganizer, kpeoplevcard, kpimcommon
kpimtextedit, ksmtp, ktnef, libgravatar, libkdepim, libkgapi,
libksieve): Update to 22.04.3.
(akonadi-calendar): [inputs]: Add kdbusaddons and knotifications.
(kincidenceeditor): [arguments]: Disable failing tests.
(kdepim-runtime): [inputs]: Remove kalarmcal.
(kmailimporter): [inputs]: Add kpimtextedit and ktextwidgets.
(kmessagelib): [inputs]: Add knotifications.
(kpimcommon): [inputs]: Add kpimtextedit.
(libksieve): [inputs]: Add grantlee.
Signed-off-by: Marius Bakke <marius@gnu.org>
2022-08-01 12:29:50 +00:00
|
|
|
grantleetheme
|
2021-12-13 16:18:24 +00:00
|
|
|
karchive
|
|
|
|
ki18n
|
|
|
|
kiconthemes
|
|
|
|
kidentitymanagement
|
|
|
|
kimap
|
|
|
|
kio
|
|
|
|
kmailtransport
|
|
|
|
kmime
|
|
|
|
knewstuff
|
|
|
|
kpimcommon
|
|
|
|
kpimtextedit
|
|
|
|
ksyntaxhighlighting
|
2023-08-08 11:51:30 +00:00
|
|
|
ktextaddons
|
2021-12-13 16:18:24 +00:00
|
|
|
ktextwidgets
|
|
|
|
kwallet
|
|
|
|
kwindowsystem
|
|
|
|
libkdepim
|
|
|
|
qtbase-5
|
2022-07-18 01:03:18 +00:00
|
|
|
qtdeclarative-5
|
2022-07-18 04:02:58 +00:00
|
|
|
qtwebchannel-5
|
2022-07-18 11:57:16 +00:00
|
|
|
qtwebengine-5))
|
2020-01-18 20:47:00 +00:00
|
|
|
(arguments
|
|
|
|
`(#:phases
|
|
|
|
(modify-phases %standard-phases
|
|
|
|
(add-after 'unpack 'substitute
|
|
|
|
(lambda _
|
|
|
|
;; Disable a failing test
|
|
|
|
;; sieveeditorhelphtmlwidgettest fails with `sigtrap`
|
|
|
|
(substitute*
|
|
|
|
"src/ksieveui/editor/webengine/autotests/CMakeLists.txt"
|
gnu: KDE PIM: Update to 22.08.1.
* gnu/packages/kde-pim.scm (akonadi, akonadi-calendar, akonadi-contacts,
akonadi-mime, akonadi-notes, akonadi-search, kincidenceeditor,
kaddressbook, kcalendarsupport, kcalutils, kdepim-runtime, keventviews, kgpg,
kidentitymanagement, kimap, kldap, kleopatra, kmail, kmailcommon,
kmailimporter, kmailtransport, kmbox, kmessagelib, kmime, knotes,
kontactinterface, korganizer, kpimcommon, libgravatar,
kpimtextedit, ksmtp, ktnef, libkdepim, libkgapi, libkleo, libksieve): Update
to 22.08.1.
(kmailcommon)[inputs]: Add qtwebchannel-5 and qtwebengine-5.
(libkleo)[inputs]: Add kconfigwidgets.
(libksieve)[arguments]: Fix disabling of test.
Signed-off-by: Marius Bakke <marius@gnu.org>
2022-09-28 19:25:19 +00:00
|
|
|
(("^\\s*(add_test|ecm_mark_as_test|set_tests_properties)\\W" line)
|
gnu: KDE-PIM: Remove trailing booleans.
* gnu/packages/kde-pim.scm (akonadi, akonadi-mime, akonadi-search,
kincidenceeditor, kdepim-runtime, kidentitymanagement, kleopatra, kmail,
kmime, korganizer, kpeoplevcard, ksmtp, libkleo,
libksieve)[arguments]: Remove trailing booleans.
Signed-off-by: Marius Bakke <marius@gnu.org>
2022-07-21 06:33:36 +00:00
|
|
|
(string-append "# " line))))))))
|
gnu: KDE: Fix old cgit home-pages.
Fix all home-pages pointing to git-repos a cgit.kde.org, which is
gone, to now use the correct repo at invent.kde.org.
* gnu/packages/kde.scm (grantleetheme, kdiagram): Update home-page.
* gnu/packages/kde-frameworks.scm (kholidays): Likewise.
* gnu/packages/kde-internet.scm (libgravatar, libktorrent): Likewise.
* gnu/packages/kde-multimedia.scm (libkcddb, libkcompactdisc): Likewise.
* gnu/packages/kde-pim.scm (kblog, kdav, kdepim-apps-libs,
kdepim-runtime, keventviews, kincidenceeditor, kmailcommon,
kmailimporter, kmessagelib, kpimcommon, ksmtp, libkdepim, libkgapi,
libkleo, libksieve): Likewise.
* gnu/packages/kde-plasma.scm (kdecoration, kscreenlocker): Likewise.
2020-12-12 17:22:37 +00:00
|
|
|
(home-page "https://invent.kde.org/pim/libksieve")
|
2020-01-18 20:47:00 +00:00
|
|
|
(synopsis "KDE Sieve library")
|
|
|
|
(description "Sieve is a language that can be used filter emails. KSieve
|
|
|
|
is a Sieve parser and interpreter library for KDE.")
|
|
|
|
(license ;; GPL for programs, LGPL for libraries
|
|
|
|
(list license:gpl2+ license:lgpl2.0+))))
|