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/cl-json/
Date: Sun, 01 Dec 2013 22:18:32
Message-Id: 1385936358.0db299ea4809b1108d36c3d17bda852e68d1f9ce.nimiux@gentoo
1 commit: 0db299ea4809b1108d36c3d17bda852e68d1f9ce
2 Author: Chema Alonso <nimiux <AT> gentoo <DOT> org>
3 AuthorDate: Sun Dec 1 22:19:18 2013 +0000
4 Commit: José María Alonso <nimiux <AT> gentoo <DOT> org>
5 CommitDate: Sun Dec 1 22:19:18 2013 +0000
6 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/lisp.git;a=commit;h=0db299ea
7
8 dev-lisp/cl-json: bump to version 0.5.0
9
10 ---
11 dev-lisp/cl-json/cl-json-0.5.0.ebuild | 26 ++++++++++++++++++++++++++
12 1 file changed, 26 insertions(+)
13
14 diff --git a/dev-lisp/cl-json/cl-json-0.5.0.ebuild b/dev-lisp/cl-json/cl-json-0.5.0.ebuild
15 new file mode 100644
16 index 0000000..3231aa2
17 --- /dev/null
18 +++ b/dev-lisp/cl-json/cl-json-0.5.0.ebuild
19 @@ -0,0 +1,26 @@
20 +# Copyright 1999-2013 Gentoo Foundation
21 +# Distributed under the terms of the GNU General Public License v2
22 +# $Header: $
23 +
24 +EAPI=5
25 +
26 +inherit common-lisp-3
27 +
28 +DESCRIPTION="A Lisp parser and generator for the JSON data-interchange format"
29 +HOMEPAGE="http://common-lisp.net/project/cl-json/
30 + http://www.cliki.net/cl-json"
31 +SRC_URI="http://github.com/hankhero/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
32 +
33 +LICENSE="MIT"
34 +SLOT="0"
35 +KEYWORDS="~amd64 ~ppc ~sparc ~x86"
36 +IUSE=""
37 +
38 +RDEPEND="dev-lisp/fiveam"
39 +
40 +src_install() {
41 + common-lisp-install-sources src t
42 + common-lisp-install-asdf
43 + dodoc CONTRIBUTORS README.md TODO
44 + dohtml doc/*
45 +}