From mboxrd@z Thu Jan 1 00:00:00 1970 From: David Craven Subject: [PATCH 08/26] gnu: kde-frameworks: Add karchive. Date: Mon, 8 Aug 2016 13:54:06 +0200 Message-ID: <20160808115424.13372-9-david@craven.ch> References: <20160808115424.13372-1-david@craven.ch> Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:57162) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bWj9A-0000lr-Pd for guix-devel@gnu.org; Mon, 08 Aug 2016 07:55:10 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1bWj97-0002nu-N6 for guix-devel@gnu.org; Mon, 08 Aug 2016 07:55:08 -0400 Received: from so254-10.mailgun.net ([198.61.254.10]:54181) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bWj96-0002jd-Fu for guix-devel@gnu.org; Mon, 08 Aug 2016 07:55:05 -0400 In-Reply-To: <20160808115424.13372-1-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: guix-devel@gnu.org Cc: David Craven * gnu/packages/kde-frameworks.scm (karchive): New variable. Co-authored-by: Hartmut Goebel --- gnu/packages/kde-frameworks.scm | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) diff --git a/gnu/packages/kde-frameworks.scm b/gnu/packages/kde-frameworks.scm index 8c59253..604b9b0 100644 --- a/gnu/packages/kde-frameworks.scm +++ b/gnu/packages/kde-frameworks.scm @@ -25,6 +25,7 @@ #:use-module ((guix licenses) #:prefix license:) #:use-module (guix packages) #:use-module (guix utils) + #:use-module (gnu packages compression) #:use-module (gnu packages glib) #:use-module (gnu packages pkg-config) #:use-module (gnu packages python) @@ -211,6 +212,40 @@ documentation.") ;; This list is taken from http://packaging.neon.kde.org/cgit/ (license (list license:bsd-2 license:expat)))) +(define-public karchive + (package + (name "karchive") + (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 + "1n5nfhrfvqnrdjgjjy7arqik4fya5bp3dvxa16mlhqr19azkavzq")))) + (build-system cmake-build-system) + (native-inputs + `(("extra-cmake-modules" ,extra-cmake-modules))) + (inputs + `(("bzip2" ,bzip2) + ("qtbase" ,qtbase) + ("xz" ,xz) + ("zlib" ,zlib))) + (home-page "https://community.kde.org/Frameworks") + (synopsis "Qt 5 addon providing access to numerous types of archives") + (description "KArchive provides classes for easy reading, creation and +manipulation of 'archive' formats like ZIP and TAR. + +It also provides transparent compression and decompression of data, like the +GZip format, via a subclass of QIODevice.") + ;; The included licenses is are gpl2 and lgpl2.1, but the sources are + ;; under a variety of licenses. + ;; This list is taken from http://packaging.neon.kde.org/cgit/ + (license (list license:lgpl2.1 license:lgpl2.1+ + license:lgpl3+ license:bsd-2)))) + (define-public kwindowsystem (package (name "kwindowsystem") -- 2.9.0