From mboxrd@z Thu Jan 1 00:00:00 1970 From: David Craven Subject: [PATCH 14/31] gnu: kde-frameworks: Add kcodecs. Date: Mon, 1 Aug 2016 20:13:25 +0200 Message-ID: <20160801181342.16203-15-david@craven.ch> References: <20160801181342.16203-1-david@craven.ch> Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:36316) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bUHjN-0000Mk-Dr for guix-devel@gnu.org; Mon, 01 Aug 2016 14:14:26 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1bUHjM-000132-7F for guix-devel@gnu.org; Mon, 01 Aug 2016 14:14:25 -0400 Received: from so254-10.mailgun.net ([198.61.254.10]:35209) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bUHjL-0000oW-0V for guix-devel@gnu.org; Mon, 01 Aug 2016 14:14:24 -0400 In-Reply-To: <20160801181342.16203-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 From: Hartmut Goebel * gnu/packages/kde-frameworks.scm (kcodecs): New variable. Co-authored-by: David Craven --- 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 9bb780e..7ecee1d 100644 --- a/gnu/packages/kde-frameworks.scm +++ b/gnu/packages/kde-frameworks.scm @@ -233,6 +233,41 @@ GZip format, via a subclass of QIODevice.") (license (list license:lgpl2.1 license:lgpl2.1+ license:lgpl3+ license:bsd-2)))) +(define-public kcodecs + (package + (name "kcodecs") + (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 + "1qpzjh3qc2zz80j2bmlinipbispms14k9bmqw8v61zhi6in9z14c")))) + (build-system cmake-build-system) + (native-inputs + `(("extra-cmake-modules" ,extra-cmake-modules) + ("qttools" ,qttools))) + (inputs + `(("qtbase" ,qtbase))) + (home-page "https://community.kde.org/Frameworks") + (synopsis "String encoding and manipulating library") + (description "KCodecs provide a collection of methods to manipulate +strings using various encodings. + +It can automatically determine the charset of a string, translate XML +entities, validate email addresses, and find encodings by name in a more +tolerant way than QTextCodec (useful e.g. for data coming from the +Internet).") + ;; 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:gpl2 license:gpl2+ license:bsd-2 + license:lgpl2.1 license:lgpl2.1+ license:expat + license:lgpl3+ license:mpl1.1)))) + (define-public kwindowsystem ;;; TODO qtx11extras isn't found (package -- 2.9.0