From mboxrd@z Thu Jan 1 00:00:00 1970 From: Hartmut Goebel Subject: [WIP v0.1 2/8] gnu: Add kde attica Date: Tue, 14 Jun 2016 23:15:04 +0200 Message-ID: <1465938910-15739-3-git-send-email-h.goebel@crazy-compilers.com> References: <1465938910-15739-1-git-send-email-h.goebel@crazy-compilers.com> 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]:53550) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bCvg9-0004g7-OQ for guix-devel@gnu.org; Tue, 14 Jun 2016 17:15:25 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1bCvg4-000317-A7 for guix-devel@gnu.org; Tue, 14 Jun 2016 17:15:20 -0400 Received: from mail-out.m-online.net ([212.18.0.9]:42873) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bCvg3-000313-Vg for guix-devel@gnu.org; Tue, 14 Jun 2016 17:15:16 -0400 Received: from frontend01.mail.m-online.net (unknown [192.168.8.182]) by mail-out.m-online.net (Postfix) with ESMTP id 3rTj8z41vRz3hjQm for ; Tue, 14 Jun 2016 23:15:15 +0200 (CEST) Received: from localhost (dynscan1.mnet-online.de [192.168.6.68]) by mail.m-online.net (Postfix) with ESMTP id 3rTj8z3xC2zvjMk for ; Tue, 14 Jun 2016 23:15:15 +0200 (CEST) Received: from mail.mnet-online.de ([192.168.8.182]) by localhost (dynscan1.mail.m-online.net [192.168.6.68]) (amavisd-new, port 10024) with ESMTP id GCM5AL1c9Mmb for ; Tue, 14 Jun 2016 23:15:14 +0200 (CEST) Received: from hermia.goebel-consult.de (ppp-188-174-133-227.dynamic.mnet-online.de [188.174.133.227]) (using TLSv1 with cipher DHE-RSA-CAMELLIA256-SHA (256/256 bits)) (No client certificate requested) by mail.mnet-online.de (Postfix) with ESMTPS for ; Tue, 14 Jun 2016 23:15:14 +0200 (CEST) Received: from lenashee.goebel-consult.de (lenashee.goebel-consult.de [192.168.110.2]) by hermia.goebel-consult.de (Postfix) with ESMTP id 38F1260B2F for ; Tue, 14 Jun 2016 23:15:10 +0200 (CEST) In-Reply-To: <1465938910-15739-1-git-send-email-h.goebel@crazy-compilers.com> 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: guix-devel@gnu.org * gnu/packages/kde-frameworks.scm (attica): New variable. --- gnu/packages/kde-frameworks.scm | 39 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) diff --git a/gnu/packages/kde-frameworks.scm b/gnu/packages/kde-frameworks.scm index 902d0fd..ca89374 100644 --- a/gnu/packages/kde-frameworks.scm +++ b/gnu/packages/kde-frameworks.scm @@ -1,6 +1,7 @@ ;;; GNU Guix --- Functional package management for GNU ;;; Copyright © 2015 Andreas Enge ;;; Copyright © 2016 Efraim Flashner +;;; Copyright © 2016 Hartmut Goebel ;;; ;;; This file is part of GNU Guix. ;;; @@ -58,6 +59,44 @@ modules provided by CMake to find common software. In addition, it provides common build settings used in software produced by the KDE community.") (license license:bsd-3))) +;; Tier 1 +;; +;; Tier 1 frameworks depend only on Qt (and possibly a small number of other +;; third-party libraries), so can easily be used by an Qt-based project. + +(define-public attica + (package + (name "attica") + (version kde-frameworks-version) + (source + (origin + (method url-fetch) + (uri (string-append "http://download.kde.org/stable/frameworks/" + (version-major+minor version) "/" + name "-" version ".tar.xz")) + (sha256 + (base32 + "1aqfw73g424f60qmpx1lky3qfqrsl1id02388pnlmpa8fnpp940c")))) + (build-system cmake-build-system) + (native-inputs + `(("extra-cmake-modules" ,extra-cmake-modules))) + (inputs + `(("qt" ,qt))) + (home-page "https://community.kde.org/Frameworks") + (synopsis "Open Collaboration Service client library") + (description "Attica is a Qt library that implements the Open +Collaboration Services API version 1.6. + +It grants easy access to the services such as querying information about +persons and contents. The library is used in KNewStuff3 as content provider. +In order to integrate with KDE's Plasma Desktop, a platform plugin exists in +kdebase. + +The REST API is defined here: +http://freedesktop.org/wiki/Specifications/open-collaboration-services/ +") + (license (list license:lgpl2.1+ license:lgpl3+)))) + (define-public kwindowsystem (package (name "kwindowsystem") -- 2.7.4