From mboxrd@z Thu Jan 1 00:00:00 1970 From: Efraim Flashner Subject: [PATCH 1/6] gnu: Add liblangtag. Date: Mon, 7 Mar 2016 12:42:02 +0200 Message-ID: <1457347327-13748-2-git-send-email-efraim@flashner.co.il> References: <1457347327-13748-1-git-send-email-efraim@flashner.co.il> Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:43791) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1acscP-00008S-9X for guix-devel@gnu.org; Mon, 07 Mar 2016 05:42:30 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1acscK-0001wz-Mb for guix-devel@gnu.org; Mon, 07 Mar 2016 05:42:29 -0500 Received: from flashner.co.il ([178.62.234.194]:38369) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1acscK-0001wU-Gx for guix-devel@gnu.org; Mon, 07 Mar 2016 05:42:24 -0500 Received: from localhost.localdomain (85.65.229.31.dynamic.barak-online.net [85.65.229.31]) by flashner.co.il (Postfix) with ESMTPSA id 12D744002D for ; Mon, 7 Mar 2016 10:42:22 +0000 (UTC) In-Reply-To: <1457347327-13748-1-git-send-email-efraim@flashner.co.il> 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-bounces+gcggd-guix-devel=m.gmane.org@gnu.org To: guix-devel@gnu.org * gnu/packages/libreoffice.scm (liblangtag): New variable. --- gnu/packages/libreoffice.scm | 32 ++++++++++++++++++++++++++++++-- 1 file changed, 30 insertions(+), 2 deletions(-) diff --git a/gnu/packages/libreoffice.scm b/gnu/packages/libreoffice.scm index a82cde7..62dcb59 100644 --- a/gnu/packages/libreoffice.scm +++ b/gnu/packages/libreoffice.scm @@ -1,6 +1,7 @@ ;;; GNU Guix --- Functional package management for GNU -;;; Copyright =C2=A9 2015 Andreas Enge ;;; Copyright =C2=A9 2014 John Darrington +;;; Copyright =C2=A9 2015 Andreas Enge +;;; Copyright =C2=A9 2016 Efraim Flashner ;;; ;;; This file is part of GNU Guix. ;;; @@ -21,7 +22,7 @@ #:use-module (guix build-system gnu) #:use-module (guix download) #:use-module ((guix licenses) - #:select (gpl2+ lgpl2.1+ mpl1.1 mpl2.0 + #:select (gpl2+ lgpl2.1+ lgpl3+ mpl1.1 mpl2.0 non-copyleft x11-style)) #:use-module (guix packages) #:use-module (guix utils) @@ -373,6 +374,33 @@ CorelDRAW documents of all versions.") Apple Keynote documents. It currently supports Keynote versions 2 to 5.= ") (license mpl2.0))) =20 +(define-public liblangtag + (package + (name "liblangtag") + (version "0.5.8") + (source + (origin + (method url-fetch) + (uri (string-append "https://bitbucket.org/tagoh/liblangtag/down= loads/" + name "-" version ".tar.bz2")) + (sha256 + (base32 + "1akf0d7yp29pv3j2pw2riii4n5kyjr9szc0y77khnx9zzr5zdqh8")))) + (build-system gnu-build-system) + (native-inputs + `(("libtool" ,libtool) + ("pkg-config" ,pkg-config))) + (inputs + `(("libxml2" ,libxml2))) + (home-page "http://tagoh.bitbucket.org/liblangtag/") + (synopsis "Library to access tags for identifying languages") + (description "liblangtag is an interface library to access/deal with= tags +for identifying languages, which is described in RFC 5646. It supports +extensions in extensions RFC6067, RFC6497, and new T Extensions for +language/locale identifier in CLDR 21.0.2.") + (license (list lgpl3+ mpl2.0)))) + + (define-public libexttextcat (package (name "libexttextcat") --=20 2.7.0