mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 23:46:13 -05:00
gnu: kactivities: Move to tier 2.
KDE now lists this package as tier 2, I was trapped by the definitions being at the wrong place. * gnu/packages/kde-frameworks.scm (kactivities): Move into the "section" of tier 2 packages. (kactivities-stats) Remove now obsolete comment.
This commit is contained in:
parent
571f1fa3b2
commit
39d1a429fe
1 changed files with 45 additions and 47 deletions
|
@ -1320,6 +1320,51 @@ (define-public threadweaver
|
|||
;; Tier 2 frameworks additionally depend on tier 1 frameworks, but still have
|
||||
;; easily manageable dependencies.
|
||||
|
||||
(define-public kactivities
|
||||
(package
|
||||
(name "kactivities")
|
||||
(version "5.39.0")
|
||||
(source (origin
|
||||
(method url-fetch)
|
||||
(uri (string-append
|
||||
"mirror://kde/stable/frameworks/"
|
||||
(version-major+minor version) "/"
|
||||
name "-" version ".tar.xz"))
|
||||
(sha256
|
||||
(base32
|
||||
"0nkc1p7n6yvybcib6aqmnz08hwn3ryj1f9wbkiimgs0svr00sslq"))))
|
||||
(build-system cmake-build-system)
|
||||
(native-inputs
|
||||
`(("extra-cmake-modules" ,extra-cmake-modules)))
|
||||
(inputs
|
||||
`(("boost" ,boost)
|
||||
("kauth" ,kauth)
|
||||
("kbookmarks" ,kbookmarks)
|
||||
("kcodecs" ,kcodecs)
|
||||
("kcompletion" ,kcompletion)
|
||||
("kconfig" ,kconfig)
|
||||
("kconfigwidgets" ,kconfigwidgets)
|
||||
("kcoreaddons" ,kcoreaddons)
|
||||
("kio" ,kio)
|
||||
("kitemviews" ,kitemviews)
|
||||
("kjobwidgets" ,kjobwidgets)
|
||||
("kservice" ,kservice)
|
||||
("kwidgetsaddons" ,kwidgetsaddons)
|
||||
("kwindowsystem" ,kwindowsystem)
|
||||
("kxmlgui" ,kxmlgui)
|
||||
("qtbase" ,qtbase)
|
||||
("qtdeclarative" ,qtdeclarative)
|
||||
("solid" ,solid)))
|
||||
(home-page "https://community.kde.org/Frameworks")
|
||||
(synopsis "Core components for the KDE Activity concept")
|
||||
(description "KActivities provides the infrastructure needed to manage a
|
||||
user's activities, allowing them to switch between tasks, and for applications
|
||||
to update their state to match the user's current activity. This includes a
|
||||
daemon, a library for interacting with that daemon, and plugins for integration
|
||||
with other frameworks.")
|
||||
;; triple licensed
|
||||
(license (list license:gpl2+ license:lgpl2.0+ license:lgpl2.1+))))
|
||||
|
||||
(define-public kauth
|
||||
(package
|
||||
(name "kauth")
|
||||
|
@ -1862,53 +1907,6 @@ (define-public baloo
|
|||
;; dual licensed
|
||||
(license (list license:gpl2+ license:lgpl2.1+))))
|
||||
|
||||
(define-public kactivities
|
||||
(package
|
||||
(name "kactivities")
|
||||
(version "5.39.0")
|
||||
(source (origin
|
||||
(method url-fetch)
|
||||
(uri (string-append
|
||||
"mirror://kde/stable/frameworks/"
|
||||
(version-major+minor version) "/"
|
||||
name "-" version ".tar.xz"))
|
||||
(sha256
|
||||
(base32
|
||||
"0nkc1p7n6yvybcib6aqmnz08hwn3ryj1f9wbkiimgs0svr00sslq"))))
|
||||
(build-system cmake-build-system)
|
||||
(native-inputs
|
||||
`(("extra-cmake-modules" ,extra-cmake-modules)))
|
||||
(inputs
|
||||
`(("boost" ,boost)
|
||||
("kauth" ,kauth)
|
||||
("kbookmarks" ,kbookmarks)
|
||||
("kcodecs" ,kcodecs)
|
||||
("kcompletion" ,kcompletion)
|
||||
("kconfig" ,kconfig)
|
||||
("kconfigwidgets" ,kconfigwidgets)
|
||||
("kcoreaddons" ,kcoreaddons)
|
||||
("kio" ,kio)
|
||||
("kitemviews" ,kitemviews)
|
||||
("kjobwidgets" ,kjobwidgets)
|
||||
("kservice" ,kservice)
|
||||
("kwidgetsaddons" ,kwidgetsaddons)
|
||||
("kwindowsystem" ,kwindowsystem)
|
||||
("kxmlgui" ,kxmlgui)
|
||||
("qtbase" ,qtbase)
|
||||
("qtdeclarative" ,qtdeclarative)
|
||||
("solid" ,solid)))
|
||||
(home-page "https://community.kde.org/Frameworks")
|
||||
(synopsis "Core components for the KDE Activity concept")
|
||||
(description "KActivities provides the infrastructure needed to manage a
|
||||
user's activities, allowing them to switch between tasks, and for applications
|
||||
to update their state to match the user's current activity. This includes a
|
||||
daemon, a library for interacting with that daemon, and plugins for integration
|
||||
with other frameworks.")
|
||||
;; triple licensed
|
||||
(license (list license:gpl2+ license:lgpl2.0+ license:lgpl2.1+))))
|
||||
|
||||
;; NOTE: This package is listed as a tier 2 package even though it requires
|
||||
;; kactivities - a tier 3 package.
|
||||
(define-public kactivities-stats
|
||||
(package
|
||||
(name "kactivities-stats")
|
||||
|
|
Loading…
Reference in a new issue