unofficial mirror of guix-devel@gnu.org 
 help / color / mirror / code / Atom feed
From: ng0 <ng0@libertad.pw>
To: guix-devel@gnu.org
Subject: [PATCH 12/13] gnu: Add libutf.
Date: Thu, 12 Jan 2017 00:39:33 +0000	[thread overview]
Message-ID: <20170112003934.3924-13-ng0@libertad.pw> (raw)
In-Reply-To: <20170112003934.3924-1-ng0@libertad.pw>

* gnu/packages/suckless.scm (libutf): New variable.
---
 gnu/packages/suckless.scm | 51 ++++++++++++++++++++++++++++++++++++++++++++++-
 1 file changed, 50 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/suckless.scm b/gnu/packages/suckless.scm
index 056487baf..c95119b21 100644
--- a/gnu/packages/suckless.scm
+++ b/gnu/packages/suckless.scm
@@ -42,7 +42,8 @@
   #:use-module (gnu packages linux)
   #:use-module (gnu packages compression)
   #:use-module (gnu packages cups)
-  #:use-module (gnu packages ncurses))
+  #:use-module (gnu packages ncurses)
+  #:use-module (gnu packages gawk))
 
 (define-public dwm
   (package
@@ -574,3 +575,51 @@ initially intended to be used on musl based Linux distributions.
 strings(1) but for pictures.  For a given input file it outputs a
 colormap to stdout.")
     (license license:isc)))
+
+;; No new releases were made at github, this repository is more active than
+;; the one at http://git.suckless.org/libutf/ and it is
+;; done by the same developer.
+(define-public libutf
+  (let ((revision "1")
+        (commit "ff4c60635e1f455b0a0b4200f8183fbd5a88225b"))
+    (package
+      (name "libutf")
+      (version (string-append "0.0.0-" revision "." (string-take commit 7)))
+      (source
+       (origin
+         (method git-fetch)
+         (uri (git-reference
+               (url "https://github.com/cls/libutf")
+               (commit commit)))
+         (file-name (string-append name "-" version "-checkout"))
+         (sha256
+          (base32
+           "1ih5vjavilzggyr1j1z6w1z12c2fs5fg77cfnv7ami5ivsy3kg3d"))))
+      (build-system gnu-build-system)
+      (arguments
+       `(#:tests? #f ; No tests
+         #:make-flags (list "CC=gcc"
+                            (string-append "PREFIX=" %output))
+         #:phases
+         (modify-phases %standard-phases
+           (delete 'configure)))) ; No configure script
+      (inputs
+       `(("gawk" ,gawk)))
+      (home-page "https://github.com/cls/libutf")
+      (synopsis "Plan 9 compatible UTF-8 library")
+      (description
+       "This is a C89 UTF-8 library, with an API compatible with that of
+Plan 9's libutf, but with a number of improvements:
+
+@itemize
+@item Support for runes beyond the Basic Multilingual Plane.
+@item utflen and utfnlen cannot overflow on 32- or 64-bit machines.
+@item chartorune treats all invalid codepoints as though Runeerror.
+@item fullrune, utfecpy, and utfnlen do not overestimate the length
+of malformed runes.
+@item An extra function, charntorune(p,s,n), equivalent to
+fullrune(s,n) ? chartorune(p,s): 0.
+@item Runeerror may be set to an alternative replacement value, such
+as -1, to be used instead of U+FFFD.
+@end itemize\n")
+      (license license:expat))))
-- 
2.11.0

  parent reply	other threads:[~2017-01-12  0:39 UTC|newest]

Thread overview: 37+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-01-09 20:21 Some suckless/2f30 packages ng0
2017-01-09 20:21 ` [PATCH 01/13] gnu: Add xbattmon ng0
2017-01-09 23:53   ` Leo Famulari
2017-01-09 20:21 ` [PATCH 02/13] gnu: Add wificurse ng0
2017-01-09 23:54   ` Leo Famulari
2017-01-11 23:39     ` ng0
2017-01-09 20:21 ` [PATCH 03/13] gnu: Add spoon ng0
2017-01-09 20:21 ` [PATCH 04/13] licenses: Add wtfpl ng0
2017-01-09 20:21 ` [PATCH 05/13] gnu: Add skroll ng0
2017-01-09 23:56   ` Leo Famulari
2017-01-09 20:21 ` [PATCH 06/13] gnu: Add sbm ng0
2017-01-09 20:21 ` [PATCH 07/13] gnu: Add prout ng0
2017-01-09 23:57   ` Leo Famulari
2017-01-09 20:21 ` [PATCH 08/13] gnu: Add noice ng0
2017-01-09 20:21 ` [PATCH 09/13] gnu: Add human ng0
2017-01-09 23:59   ` Leo Famulari
2017-01-09 20:21 ` [PATCH 10/13] gnu: Add fortify-headers ng0
2017-01-09 20:21 ` [PATCH 11/13] gnu: Add colors ng0
2017-01-09 20:21 ` [PATCH 12/13] gnu: Add libutf ng0
2017-01-09 20:21 ` [PATCH 13/13] gnu: Add lchat ng0
2017-01-10  0:03   ` Leo Famulari
2017-01-10  0:03 ` Some suckless/2f30 packages Leo Famulari
2017-01-12  0:39   ` 2f30, v2 ng0
2017-01-12  0:39     ` [PATCH 01/13] gnu: Add xbattmon ng0
2017-01-12  0:39     ` [PATCH 02/13] gnu: Add wificurse ng0
2017-01-12  0:39     ` [PATCH 03/13] gnu: Add spoon ng0
2017-01-12  0:39     ` [PATCH 04/13] licenses: Add wtfpl2 ng0
2017-01-12  0:39     ` [PATCH 05/13] gnu: Add skroll ng0
2017-01-12  0:39     ` [PATCH 06/13] gnu: Add sbm ng0
2017-01-12  0:39     ` [PATCH 07/13] gnu: Add prout ng0
2017-01-12  0:39     ` [PATCH 08/13] gnu: Add noice ng0
2017-01-12  0:39     ` [PATCH 09/13] gnu: Add human ng0
2017-01-12  0:39     ` [PATCH 10/13] gnu: Add fortify-headers ng0
2017-01-12  0:39     ` [PATCH 11/13] gnu: Add colors ng0
2017-01-12  0:39     ` ng0 [this message]
2017-01-12  0:39     ` [PATCH 13/13] gnu: Add lchat ng0
2017-01-13 19:17     ` 2f30, v2 Leo Famulari

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

  List information: https://guix.gnu.org/

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20170112003934.3924-13-ng0@libertad.pw \
    --to=ng0@libertad.pw \
    --cc=guix-devel@gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/guix.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).