Gentoo Archives: gentoo-commits

From: "José María Alonso" <nimiux@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/lisp:master commit in: dev-lisp/trivial-utf8/
Date: Wed, 30 Nov 2016 14:50:10
Message-Id: 1480517395.acbd4a53795b4f1079bd46b6a9e269ffaf95eb08.nimiux@gentoo
1 commit: acbd4a53795b4f1079bd46b6a9e269ffaf95eb08
2 Author: Chema Alonso Josa <nimiux <AT> gentoo <DOT> org>
3 AuthorDate: Wed Nov 30 14:49:55 2016 +0000
4 Commit: José María Alonso <nimiux <AT> gentoo <DOT> org>
5 CommitDate: Wed Nov 30 14:49:55 2016 +0000
6 URL: https://gitweb.gentoo.org/proj/lisp.git/commit/?id=acbd4a53
7
8 dev-lisp/trivial-utf8: Adds live ebuild
9
10 dev-lisp/trivial-utf8/trivial-utf8-9999.ebuild | 24 ++++++++++++++++++++++++
11 1 file changed, 24 insertions(+)
12
13 diff --git a/dev-lisp/trivial-utf8/trivial-utf8-9999.ebuild b/dev-lisp/trivial-utf8/trivial-utf8-9999.ebuild
14 new file mode 100644
15 index 0000000..db2ec15
16 --- /dev/null
17 +++ b/dev-lisp/trivial-utf8/trivial-utf8-9999.ebuild
18 @@ -0,0 +1,24 @@
19 +# Copyright 1999-2016 Gentoo Foundation
20 +# Distributed under the terms of the GNU General Public License v2
21 +# $Id$
22 +
23 +EAPI=6
24 +
25 +inherit common-lisp-3 darcs
26 +
27 +DESCRIPTION="A small library for doing UTF-8-based input and output."
28 +HOMEPAGE="http://common-lisp.net/project/trivial-utf-8/"
29 +EDARCS_REPOSITORY=" https://www.common-lisp.net/project/trivial-utf-8/darcs/trivial-utf-8/"
30 +
31 +LICENSE="ZLIB"
32 +SLOT="0"
33 +IUSE=""
34 +
35 +CLPACKAGE="trivial-utf-8"
36 +CLSYSTEMS="trivial-utf-8"
37 +
38 +src_install() {
39 + common-lisp-install-sources -t lisp .
40 + common-lisp-install-asdf
41 + dodoc -r doc
42 +}