From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id B4869138247 for ; Sun, 1 Dec 2013 22:40:34 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 1581AE09EC; Sun, 1 Dec 2013 22:40:20 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id AB5B6E09EC for ; Sun, 1 Dec 2013 22:40:19 +0000 (UTC) Received: from hornbill.gentoo.org (hornbill.gentoo.org [94.100.119.163]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id AD28733F35C for ; Sun, 1 Dec 2013 22:40:18 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id 5D8DB110004 for ; Sun, 1 Dec 2013 22:40:17 +0000 (UTC) From: "José María Alonso" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "José María Alonso" Message-ID: <1385937658.7645b81e076255f6493deb49ca1a5d2128950c42.nimiux@gentoo> Subject: [gentoo-commits] proj/lisp:master commit in: dev-lisp/cl-launch/ X-VCS-Repository: proj/lisp X-VCS-Files: dev-lisp/cl-launch/cl-launch-3.22.1.ebuild X-VCS-Directories: dev-lisp/cl-launch/ X-VCS-Committer: nimiux X-VCS-Committer-Name: José María Alonso X-VCS-Revision: 7645b81e076255f6493deb49ca1a5d2128950c42 X-VCS-Branch: master Date: Sun, 1 Dec 2013 22:40:17 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: b23d1c2e-07e2-4aca-9416-429c5c719b6a X-Archives-Hash: 58646e8f26fec05b74b98ccfcad914d4 commit: 7645b81e076255f6493deb49ca1a5d2128950c42 Author: Chema Alonso gentoo org> AuthorDate: Sun Dec 1 22:40:58 2013 +0000 Commit: José María Alonso gentoo org> CommitDate: Sun Dec 1 22:40:58 2013 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/lisp.git;a=commit;h=7645b81e dev-lisp/cl-launch: bump to version 3.22.1 --- dev-lisp/cl-launch/cl-launch-3.22.1.ebuild | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/dev-lisp/cl-launch/cl-launch-3.22.1.ebuild b/dev-lisp/cl-launch/cl-launch-3.22.1.ebuild new file mode 100644 index 0000000..d29119f --- /dev/null +++ b/dev-lisp/cl-launch/cl-launch-3.22.1.ebuild @@ -0,0 +1,28 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: $ + +EAPI=5 + +inherit common-lisp-3 + +DESCRIPTION="cl-launch is a utility to make Common Lisp software easily invokable from the command-line." +HOMEPAGE="http://www.cliki.net/cl-launch" +SRC_URI="http://common-lisp.net/project/xcvb/${PN}/${P}.tar.gz" +LICENSE="LLGPL-2.1" + +SLOT="0" +KEYWORDS="~amd64 ~ppc ~sparc ~x86" +IUSE="" + +S="${WORKDIR}"/"${PN}" + +CL_LAUNCH_FASLDIR=/var/cache/cl-launch + +src_install() { + dobin cl-launch.sh + common-lisp-install-sources -t all launcher.lisp wrapper.sh + common-lisp-install-asdf + keepdir "${CL_LAUNCH_FASLDIR}" + fperms 1777 "${CL_LAUNCH_FASLDIR}" +}