gnu: kdav: Move to (gnu packages kde-frameworks).
* gnu/packages/kde-pim.scm * gnu/packages/kde-frameworks.scm (kdav): Move to (gnu packages kde-frameworks). It's considered a framework component now. Signed-off-by: Marius Bakke <marius@gnu.org>
This commit is contained in:
parent
8e6af98fbb
commit
53d645c1b1
2 changed files with 25 additions and 24 deletions
|
@ -9,6 +9,7 @@
|
||||||
;;; Copyright © 2020 Vincent Legoll <vincent.legoll@gmail.com>
|
;;; Copyright © 2020 Vincent Legoll <vincent.legoll@gmail.com>
|
||||||
;;; Copyright © 2020 Marius Bakke <mbakke@fastmail.com>
|
;;; Copyright © 2020 Marius Bakke <mbakke@fastmail.com>
|
||||||
;;; Copyright © 2021 Alexandros Theodotou <alex@zrythm.org>
|
;;; Copyright © 2021 Alexandros Theodotou <alex@zrythm.org>
|
||||||
|
;;; Copyright © 2022 Brendan Tildesley <mail@brendan.scot>
|
||||||
;;;
|
;;;
|
||||||
;;; This file is part of GNU Guix.
|
;;; This file is part of GNU Guix.
|
||||||
;;;
|
;;;
|
||||||
|
@ -3808,3 +3809,27 @@ offers abstract functionality to deal with scripts.")
|
||||||
;; under a variety of licenses.
|
;; under a variety of licenses.
|
||||||
(license (list license:lgpl2.0+ license:lgpl2.1+
|
(license (list license:lgpl2.0+ license:lgpl2.1+
|
||||||
license:lgpl2.0 license:gpl3+))))
|
license:lgpl2.0 license:gpl3+))))
|
||||||
|
|
||||||
|
(define-public kdav
|
||||||
|
(package
|
||||||
|
(name "kdav")
|
||||||
|
(version "20.04.3")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (string-append "mirror://kde/stable/release-service/" version
|
||||||
|
"/src/kdav-" version ".tar.xz"))
|
||||||
|
(sha256
|
||||||
|
(base32 "0445gl4xm0h39igkxgb6vmq5iaa04wkgrgbs7nfd0zwngk8xaidn"))))
|
||||||
|
(build-system qt-build-system)
|
||||||
|
(native-inputs
|
||||||
|
(list extra-cmake-modules))
|
||||||
|
(inputs
|
||||||
|
(list kcoreaddons ki18n kio qtbase-5 qtxmlpatterns))
|
||||||
|
(home-page "https://invent.kde.org/frameworks/kdav")
|
||||||
|
(synopsis "DAV protocol implementation with KJobs")
|
||||||
|
(description "This is a DAV protocol implementation with KJobs. Calendars
|
||||||
|
and todos are supported, using either GroupDAV or CalDAV, and contacts are
|
||||||
|
supported using GroupDAV or CardDAV.")
|
||||||
|
(license ;; GPL for programs, LGPL for libraries
|
||||||
|
(list license:gpl2+ license:lgpl2.0+))))
|
||||||
|
|
|
@ -606,30 +606,6 @@ data")
|
||||||
functions for accessing calendar data using the kcalcore API.")
|
functions for accessing calendar data using the kcalcore API.")
|
||||||
(license license:lgpl2.0+)))
|
(license license:lgpl2.0+)))
|
||||||
|
|
||||||
(define-public kdav
|
|
||||||
(package
|
|
||||||
(name "kdav")
|
|
||||||
(version "20.04.3")
|
|
||||||
(source
|
|
||||||
(origin
|
|
||||||
(method url-fetch)
|
|
||||||
(uri (string-append "mirror://kde/stable/release-service/" version
|
|
||||||
"/src/kdav-" version ".tar.xz"))
|
|
||||||
(sha256
|
|
||||||
(base32 "0445gl4xm0h39igkxgb6vmq5iaa04wkgrgbs7nfd0zwngk8xaidn"))))
|
|
||||||
(build-system qt-build-system)
|
|
||||||
(native-inputs
|
|
||||||
(list extra-cmake-modules))
|
|
||||||
(inputs
|
|
||||||
(list kcoreaddons ki18n kio qtbase-5 qtxmlpatterns))
|
|
||||||
(home-page "https://invent.kde.org/frameworks/kdav")
|
|
||||||
(synopsis "DAV protocol implementation with KJobs")
|
|
||||||
(description "This is a DAV protocol implementation with KJobs. Calendars
|
|
||||||
and todos are supported, using either GroupDAV or CalDAV, and contacts are
|
|
||||||
supported using GroupDAV or CardDAV.")
|
|
||||||
(license ;; GPL for programs, LGPL for libraries
|
|
||||||
(list license:gpl2+ license:lgpl2.0+))))
|
|
||||||
|
|
||||||
(define-public kdepim-apps-libs
|
(define-public kdepim-apps-libs
|
||||||
(package
|
(package
|
||||||
(name "kdepim-apps-libs")
|
(name "kdepim-apps-libs")
|
||||||
|
|
Reference in a new issue