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/named-readtables/
Date: Thu, 30 Apr 2015 13:59:06
Message-Id: 1430402323.c8bb59ec1c86b39a76042e089d22dbac4bd9d4c1.nimiux@gentoo
1 commit: c8bb59ec1c86b39a76042e089d22dbac4bd9d4c1
2 Author: Chema Alonso <nimiux <AT> gentoo <DOT> org>
3 AuthorDate: Thu Apr 30 13:58:43 2015 +0000
4 Commit: José María Alonso <nimiux <AT> gentoo <DOT> org>
5 CommitDate: Thu Apr 30 13:58:43 2015 +0000
6 URL: https://gitweb.gentoo.org/proj/lisp.git/commit/?id=c8bb59ec
7
8 dev-lisp/named-readtables: new live ebuild
9
10 .../named-readtables/named-readtables-9999.ebuild | 21 +++++++++++++++++++++
11 1 file changed, 21 insertions(+)
12
13 diff --git a/dev-lisp/named-readtables/named-readtables-9999.ebuild b/dev-lisp/named-readtables/named-readtables-9999.ebuild
14 new file mode 100644
15 index 0000000..0e4f9de
16 --- /dev/null
17 +++ b/dev-lisp/named-readtables/named-readtables-9999.ebuild
18 @@ -0,0 +1,21 @@
19 +# Copyright 1999-2015 Gentoo Foundation
20 +# Distributed under the terms of the GNU General Public License v2
21 +# $Header: $
22 +
23 +EAPI=5
24 +
25 +inherit common-lisp-3 git-2
26 +
27 +DESCRIPTION="A Common Lisp library that provides a namespace for readtables."
28 +HOMEPAGE="http://common-lisp.net/project/editor-hints/"
29 +EGIT_REPO_URI="git://github.com/melisgl/named-readtables"
30 +
31 +LICENSE="BSD"
32 +SLOT="0"
33 +IUSE="doc"
34 +
35 +src_install() {
36 + common-lisp-install-sources src test
37 + common-lisp-install-asdf
38 + use doc && dohtml doc/${PN}.html
39 +}