From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:32911) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1idzWR-0007x4-Ms for guix-patches@gnu.org; Sun, 08 Dec 2019 11:35:04 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1idzWQ-00077Q-6E for guix-patches@gnu.org; Sun, 08 Dec 2019 11:35:03 -0500 Received: from debbugs.gnu.org ([209.51.188.43]:46149) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1idzWQ-00076Q-12 for guix-patches@gnu.org; Sun, 08 Dec 2019 11:35:02 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1idzWP-0002hB-VT for guix-patches@gnu.org; Sun, 08 Dec 2019 11:35:01 -0500 Subject: [bug#38531] [PATCH 1/1] gnu: Add purpose. References: <20191208163307.6381-1-h.goebel@crazy-compilers.com> In-Reply-To: <20191208163307.6381-1-h.goebel@crazy-compilers.com> Resent-Message-ID: From: Hartmut Goebel Date: Sun, 8 Dec 2019 17:34:48 +0100 Message-Id: <20191208163448.6566-1-h.goebel@crazy-compilers.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit 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: 38531@debbugs.gnu.org * gnu/packages/kde-frameworks.scm(purpose): 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 ee6c8ea485..82415e9afa 100644 --- a/gnu/packages/kde-frameworks.scm +++ b/gnu/packages/kde-frameworks.scm @@ -3495,6 +3495,45 @@ script engines.") ;; dual licensed (license (list license:gpl2+ license:lgpl2.1+)))) +(define-public purpose + (package + (name "purpose") + (version "5.63.0") + (source (origin + (method url-fetch) + (uri (string-append + "mirror://kde/stable/frameworks/" + (version-major+minor version) "/" + name "-" version ".tar.xz")) + (sha256 + (base32 + "1mc5z131z9da6qjhlxqz64ys4fgq38iryna58f8l04x8f9igjn8f")))) + (build-system cmake-build-system) + (native-inputs + `(("extra-cmake-modules" ,extra-cmake-modules))) + (inputs + `(;;TODO: ("kaccounts" ,kaccounts) + ("kconfig" ,kconfig) + ("kcoreaddons" ,kcoreaddons) + ("knotifications" ,knotifications) + ("ki18n" ,ki18n) + ("kio" ,kio) + ("kirigami" ,kirigami) + ("qtbase" ,qtbase) + ("qtdeclarative" ,qtdeclarative))) + (arguments + `(#:tests? #f ;; seem to require network; don't find QTQuick components + #:configure-flags '("-DBUILD_TESTING=OFF"))) ; not run anyway + (home-page "https://community.kde.org/Frameworks") + (synopsis "Offers available actions for a specific purpose") + (description "This framework offers the possibility to create integrate +services and actions on any application without having to implement them +specifically. Purpose will offer them mechanisms to list the different +alternatives to execute given the requested action type and will facilitate +components so that all the plugins can receive all the information they +need.") + (license license:lgpl2.1+))) + ;; This version of kdbusaddons does not use kinit as an input, and is used to ;; build kinit-bootstrap, as well as bootstrap versions of all kinit ;; dependencies which also rely on kdbusaddons. -- 2.21.0