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 D37891381F3 for ; Mon, 29 Jul 2013 12:20:52 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C80B2E09C5; Mon, 29 Jul 2013 12:20:49 +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 69171E09C5 for ; Mon, 29 Jul 2013 12:20:49 +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 8218C33DBC6 for ; Mon, 29 Jul 2013 12:20:48 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id 072A4E468F for ; Mon, 29 Jul 2013 12:20:47 +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: <1375100475.639bc390d9cea438eb542ab49e13e4789d305446.nimiux@gentoo> Subject: [gentoo-commits] proj/lisp:master commit in: dev-lisp/metabang-bind/ X-VCS-Repository: proj/lisp X-VCS-Files: dev-lisp/metabang-bind/metabang-bind-9999.ebuild X-VCS-Directories: dev-lisp/metabang-bind/ X-VCS-Committer: nimiux X-VCS-Committer-Name: José María Alonso X-VCS-Revision: 639bc390d9cea438eb542ab49e13e4789d305446 X-VCS-Branch: master Date: Mon, 29 Jul 2013 12:20:47 +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: b21702ba-b080-4c8d-b504-bb125497f5c3 X-Archives-Hash: 2b3fe1d2d092baefdc2e82ccc1199755 commit: 639bc390d9cea438eb542ab49e13e4789d305446 Author: Chema Alonso gentoo org> AuthorDate: Mon Jul 29 12:21:15 2013 +0000 Commit: José María Alonso gentoo org> CommitDate: Mon Jul 29 12:21:15 2013 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/lisp.git;a=commit;h=639bc390 dev-lisp/metabang-bind: add live ebuild --- dev-lisp/metabang-bind/metabang-bind-9999.ebuild | 28 ++++++++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/dev-lisp/metabang-bind/metabang-bind-9999.ebuild b/dev-lisp/metabang-bind/metabang-bind-9999.ebuild new file mode 100644 index 0000000..b8d7f2f --- /dev/null +++ b/dev-lisp/metabang-bind/metabang-bind-9999.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 git-2 + +DESCRIPTION="BIND combines LET*, DESTRUCTURING-BIND and MULTIPLE-VALUE-BIND into a single form." +HOMEPAGE="http://common-lisp.net/project/metabang-bind + http://www.cliki.net/bind" +EGIT_REPO_URI="git://github.com/gwkkwg/${PN}" + +LICENSE="BSD-2" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~sparc ~x86" +IUSE="" + +RDEPEND="!dev-lisp/cl-bind + dev-lisp/lift" + +CLSYSTEMS="${PN} ${PN}-test" + +src_install() { + common-lisp-install-sources {unit-tests,dev}/*.lisp + common-lisp-install-asdf + dodoc *.config +}