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-sqlite/
Date: Sat, 04 Jan 2014 23:29:04
Message-Id: 1388878178.d7e8eba6b40d3173a7eacd146e13d851f078380c.nimiux@gentoo
1 commit: d7e8eba6b40d3173a7eacd146e13d851f078380c
2 Author: Chema Alonso <nimiux <AT> gentoo <DOT> org>
3 AuthorDate: Sat Jan 4 23:29:38 2014 +0000
4 Commit: José María Alonso <nimiux <AT> gentoo <DOT> org>
5 CommitDate: Sat Jan 4 23:29:38 2014 +0000
6 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/lisp.git;a=commit;h=d7e8eba6
7
8 dev-lisp/cl-sqlite: bump to version 0.2
9
10 ---
11 dev-lisp/cl-sqlite/cl-sqlite-0.2.ebuild | 29 +++++++++++++++++++++++++++++
12 1 file changed, 29 insertions(+)
13
14 diff --git a/dev-lisp/cl-sqlite/cl-sqlite-0.2.ebuild b/dev-lisp/cl-sqlite/cl-sqlite-0.2.ebuild
15 new file mode 100644
16 index 0000000..1b01985
17 --- /dev/null
18 +++ b/dev-lisp/cl-sqlite/cl-sqlite-0.2.ebuild
19 @@ -0,0 +1,29 @@
20 +# Copyright 1999-2014 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 CommonLisp interface to the SQLite embedded relational database engine."
29 +HOMEPAGE="http://common-lisp.net/project/cl-sqlite/"
30 +SRC_URI="http://common-lisp.net/project/${PN}/releases/${P}.tar.gz"
31 +
32 +LICENSE="public-domain"
33 +SLOT="0"
34 +KEYWORDS="~amd64 ~ppc ~sparc ~x86"
35 +IUSE=""
36 +
37 +RDEPEND="dev-lisp/cffi
38 + dev-lisp/iterate
39 + dev-lisp/fiveam
40 + dev-db/sqlite:3"
41 +
42 +CLSYSTEMS="sqlite sqlite-tests"
43 +
44 +src_install() {
45 + common-lisp-install-sources *.lisp
46 + common-lisp-install-asdf
47 + dohtml index.html style.css
48 +}