From mboxrd@z Thu Jan 1 00:00:00 1970 From: Ricardo Wurmus Subject: Re: [PATCH 06/31] gnu: Add kactivities-stats. Date: Sat, 27 Aug 2016 08:41:21 +0200 Message-ID: <87lgziogry.fsf@elephly.net> References: <20160826215300.12913-1-david@craven.ch> <20160826215300.12913-7-david@craven.ch> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:35501) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bdXJ5-0001G8-I7 for guix-devel@gnu.org; Sat, 27 Aug 2016 02:41:32 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1bdXJ1-00036n-Ce for guix-devel@gnu.org; Sat, 27 Aug 2016 02:41:30 -0400 Received: from sender163-mail.zoho.com ([74.201.84.163]:24944) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bdXJ1-00036W-2o for guix-devel@gnu.org; Sat, 27 Aug 2016 02:41:27 -0400 In-reply-to: <20160826215300.12913-7-david@craven.ch> List-Id: "Development of GNU Guix and the GNU System distribution." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org Sender: "Guix-devel" To: David Craven Cc: guix-devel@gnu.org David Craven writes: > * gnu/packages/kde-frameworks.scm (kactivities-stats): New variable. > > Co-authored-by: Hartmut Goebel > --- > gnu/packages/kde-frameworks.scm | 34 ++++++++++++++++++++++++++++++++++ > 1 file changed, 34 insertions(+) > > diff --git a/gnu/packages/kde-frameworks.scm b/gnu/packages/kde-frameworks.scm > index e81c5f8..f7799bd 100644 > --- a/gnu/packages/kde-frameworks.scm > +++ b/gnu/packages/kde-frameworks.scm > @@ -1580,3 +1580,37 @@ 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.") > (license (list license:gpl2+ license:lgpl2.0+ license:lgpl2.1+)))) > + > +;; NOTE: This package is listed as a tier 2 package even dough it requires > +;; kactivities - a tier 3 package. s/dough/though/ s/ -/,/ What does this mean? Is the tier classification an upstream thing? > +(define-public kactivities-stats > + (package > + (name "kactivities-stats") > + (version "5.24.0") > + (source > + (origin > + (method url-fetch) > + (uri (string-append "mirror://kde/stable/frameworks/" > + (version-major+minor version) "/" > + name "-" version ".tar.xz")) > + (sha256 > + (base32 > + "1z3xvpifxbd05b2xaxxyiypcpid7jgjb1qpwiyjj1gnfp4rjmzpc")))) > + (build-system cmake-build-system) > + (native-inputs > + `(("extra-cmake-modules" ,extra-cmake-modules))) > + (inputs > + `(("boost" ,boost) > + ("kactivities" ,kactivities) > + ("kconfig" ,kconfig) > + ("qtbase" ,qtbase) > + ("qtdeclarative" ,qtdeclarative))) > + (home-page "https://community.kde.org/Frameworks") > + (synopsis "Access usage statistics collected by the activity manager") > + (description "The KActivitiesStats library provides a querying mechanism for > +the data that the activitiy manager collects - which documents hae > been opened hae –> have > +by which applications, and what documents have been linked to which activity. > +The activity manager also keeps the score for each document which gets higher > +when a particular document has been often accessed or kept open for longer > +periods of time. This score is also available through the querying mechanism.") > + (license (list license:lgpl2.0+ license:lgpl2.1+ license:lgpl3+)))) Please add a comment above the “license” field. ~~ Ricardo