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-log/
Date: Mon, 02 Dec 2013 14:56:18
Message-Id: 1385996221.ba419babd15e2138cedc825e33b917bbac6cb983.nimiux@gentoo
1 commit: ba419babd15e2138cedc825e33b917bbac6cb983
2 Author: Chema Alonso <nimiux <AT> gentoo <DOT> org>
3 AuthorDate: Mon Dec 2 14:57:01 2013 +0000
4 Commit: José María Alonso <nimiux <AT> gentoo <DOT> org>
5 CommitDate: Mon Dec 2 14:57:01 2013 +0000
6 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/lisp.git;a=commit;h=ba419bab
7
8 dev-lisp/cl-log: bump to version 1.0.1
9
10 ---
11 dev-lisp/cl-log/cl-log-1.0.1.ebuild | 26 ++++++++++++++++++++++++++
12 1 file changed, 26 insertions(+)
13
14 diff --git a/dev-lisp/cl-log/cl-log-1.0.1.ebuild b/dev-lisp/cl-log/cl-log-1.0.1.ebuild
15 new file mode 100644
16 index 0000000..028a1d1
17 --- /dev/null
18 +++ b/dev-lisp/cl-log/cl-log-1.0.1.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 +MY_P="${PN}"."${PV}"
29 +
30 +DESCRIPTION="CL-LOG is a general purpose logging utility."
31 +HOMEPAGE="http://www.nicklevine.org/cl-log/"
32 +SRC_URI="http://www.nicklevine.org/cl-log/${MY_P}.tar.gz"
33 +
34 +LICENSE="MIT"
35 +SLOT="0"
36 +KEYWORDS="~amd64 ~ppc ~sparc ~x86"
37 +IUSE=""
38 +
39 +S="${WORKDIR}"/"${MY_P}"
40 +
41 +src_install() {
42 + common-lisp-install-sources *.lisp
43 + common-lisp-install-asdf
44 + dodoc doc/index.txt
45 +}