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/parse-js/
Date: Tue, 28 Apr 2015 14:40:51
Message-Id: 1430124101.eb656008675e084991767689a6c9d5f6d0d3e96e.nimiux@gentoo
1 commit: eb656008675e084991767689a6c9d5f6d0d3e96e
2 Author: Chema Alonso <nimiux <AT> gentoo <DOT> org>
3 AuthorDate: Mon Apr 27 08:41:41 2015 +0000
4 Commit: José María Alonso <nimiux <AT> gentoo <DOT> org>
5 CommitDate: Mon Apr 27 08:41:41 2015 +0000
6 URL: https://gitweb.gentoo.org/proj/lisp.git/commit/?id=eb656008
7
8 dev-lisp/parse-js: new live ebuild
9
10 dev-lisp/parse-js/parse-js-9999.ebuild | 25 +++++++++++++++++++++++++
11 1 file changed, 25 insertions(+)
12
13 diff --git a/dev-lisp/parse-js/parse-js-9999.ebuild b/dev-lisp/parse-js/parse-js-9999.ebuild
14 new file mode 100644
15 index 0000000..4d65ebf
16 --- /dev/null
17 +++ b/dev-lisp/parse-js/parse-js-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="parse-js is a Common Lisp package for parsing JavaScript"
28 +HOMEPAGE="http://marijnhaverbeke.nl/parse-js/"
29 +EGIT_REPO_URI="http://marijnhaverbeke.nl//git/${PN}"
30 +
31 +LICENSE="ZLIB"
32 +SLOT="0"
33 +KEYWORDS="~amd64 ~x86"
34 +IUSE="doc"
35 +
36 +DEPEND=""
37 +RDEPEND=""
38 +
39 +src_install() {
40 + common-lisp-install-sources src
41 + common-lisp-install-asdf
42 + use doc && dohtml index.html
43 +}