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/parenscript/
Date: Sun, 26 Apr 2015 14:18:48
Message-Id: 1430057908.b390fe78ae9b6008f234893cdcf3aec4744bfe31.nimiux@gentoo
1 commit: b390fe78ae9b6008f234893cdcf3aec4744bfe31
2 Author: Chema Alonso <nimiux <AT> gentoo <DOT> org>
3 AuthorDate: Sun Apr 26 14:18:28 2015 +0000
4 Commit: José María Alonso <nimiux <AT> gentoo <DOT> org>
5 CommitDate: Sun Apr 26 14:18:28 2015 +0000
6 URL: https://gitweb.gentoo.org/proj/lisp.git/commit/?id=b390fe78
7
8 dev-lisp/parenscript: add live ebuild
9
10 dev-lisp/parenscript/parenscript-9999.ebuild | 25 +++++++++++++++++++++++++
11 1 file changed, 25 insertions(+)
12
13 diff --git a/dev-lisp/parenscript/parenscript-9999.ebuild b/dev-lisp/parenscript/parenscript-9999.ebuild
14 new file mode 100644
15 index 0000000..152c8e5
16 --- /dev/null
17 +++ b/dev-lisp/parenscript/parenscript-9999.ebuild
18 @@ -0,0 +1,25 @@
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="Parenscript is a small lispy language that can be compiled to JavaScript."
28 +HOMEPAGE="http://common-lisp.net/project/parenscript/"
29 +EGIT_REPO_URI="git://github.com/vsedach/Parenscript"
30 +
31 +LICENSE="BSD"
32 +SLOT="0"
33 +IUSE="doc"
34 +
35 +DEPEND=""
36 +RDEPEND=""
37 +
38 +src_install() {
39 + common-lisp-install-sources -t all src runtime extras t
40 + common-lisp-install-asdf
41 + dodoc contributors README
42 + use doc && dohtml docs/reference.html
43 +}