From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:36313) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1eABBS-0003oK-Vm for guix-patches@gnu.org; Thu, 02 Nov 2017 04:49:08 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1eABBR-0006k5-1j for guix-patches@gnu.org; Thu, 02 Nov 2017 04:49:07 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:38185) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1eABBQ-0006im-Tb for guix-patches@gnu.org; Thu, 02 Nov 2017 04:49:04 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1eABBQ-0003Gu-Mw for guix-patches@gnu.org; Thu, 02 Nov 2017 04:49:04 -0400 Subject: [bug#29114] [PATCH 08/10] gnu: kactivities: Move to tier 2. Resent-Message-ID: From: Hartmut Goebel Date: Thu, 2 Nov 2017 09:47:48 +0100 Message-Id: <20171102084750.21368-8-h.goebel@crazy-compilers.com> In-Reply-To: <20171102084750.21368-1-h.goebel@crazy-compilers.com> References: <20171102084750.21368-1-h.goebel@crazy-compilers.com> List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: 29114@debbugs.gnu.org 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. --- gnu/packages/kde-frameworks.scm | 92 ++++++++++++++++++++--------------------- 1 file changed, 45 insertions(+), 47 deletions(-) diff --git a/gnu/packages/kde-frameworks.scm b/gnu/packages/kde-frameworks.scm index f8eb504d8..beac86f59 100644 --- a/gnu/packages/kde-frameworks.scm +++ b/gnu/packages/kde-frameworks.scm @@ -1320,6 +1320,51 @@ uses a job-based interface to queue tasks and execute them in an efficient way." ;; 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 @@ maintaining an index of the contents of your files.") ;; 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") -- 2.13.5