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-launch/
Date: Sun, 01 Dec 2013 22:40:34
Message-Id: 1385937658.7645b81e076255f6493deb49ca1a5d2128950c42.nimiux@gentoo
1 commit: 7645b81e076255f6493deb49ca1a5d2128950c42
2 Author: Chema Alonso <nimiux <AT> gentoo <DOT> org>
3 AuthorDate: Sun Dec 1 22:40:58 2013 +0000
4 Commit: José María Alonso <nimiux <AT> gentoo <DOT> org>
5 CommitDate: Sun Dec 1 22:40:58 2013 +0000
6 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/lisp.git;a=commit;h=7645b81e
7
8 dev-lisp/cl-launch: bump to version 3.22.1
9
10 ---
11 dev-lisp/cl-launch/cl-launch-3.22.1.ebuild | 28 ++++++++++++++++++++++++++++
12 1 file changed, 28 insertions(+)
13
14 diff --git a/dev-lisp/cl-launch/cl-launch-3.22.1.ebuild b/dev-lisp/cl-launch/cl-launch-3.22.1.ebuild
15 new file mode 100644
16 index 0000000..d29119f
17 --- /dev/null
18 +++ b/dev-lisp/cl-launch/cl-launch-3.22.1.ebuild
19 @@ -0,0 +1,28 @@
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="cl-launch is a utility to make Common Lisp software easily invokable from the command-line."
29 +HOMEPAGE="http://www.cliki.net/cl-launch"
30 +SRC_URI="http://common-lisp.net/project/xcvb/${PN}/${P}.tar.gz"
31 +LICENSE="LLGPL-2.1"
32 +
33 +SLOT="0"
34 +KEYWORDS="~amd64 ~ppc ~sparc ~x86"
35 +IUSE=""
36 +
37 +S="${WORKDIR}"/"${PN}"
38 +
39 +CL_LAUNCH_FASLDIR=/var/cache/cl-launch
40 +
41 +src_install() {
42 + dobin cl-launch.sh
43 + common-lisp-install-sources -t all launcher.lisp wrapper.sh
44 + common-lisp-install-asdf
45 + keepdir "${CL_LAUNCH_FASLDIR}"
46 + fperms 1777 "${CL_LAUNCH_FASLDIR}"
47 +}