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 39A55138C9D for ; Sun, 26 Apr 2015 14:18:48 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id CACD9E0899; Sun, 26 Apr 2015 14:18:45 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 7BBAAE0899 for ; Sun, 26 Apr 2015 14:18:45 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 84666340DAC for ; Sun, 26 Apr 2015 14:18:44 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 0519F97D for ; Sun, 26 Apr 2015 14:18:40 +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: <1430057908.b390fe78ae9b6008f234893cdcf3aec4744bfe31.nimiux@gentoo> Subject: [gentoo-commits] proj/lisp:master commit in: dev-lisp/parenscript/ X-VCS-Repository: proj/lisp X-VCS-Files: dev-lisp/parenscript/parenscript-9999.ebuild X-VCS-Directories: dev-lisp/parenscript/ X-VCS-Committer: nimiux X-VCS-Committer-Name: José María Alonso X-VCS-Revision: b390fe78ae9b6008f234893cdcf3aec4744bfe31 X-VCS-Branch: master Date: Sun, 26 Apr 2015 14:18:40 +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: 4a46d618-6afe-4887-83d7-744daeebf534 X-Archives-Hash: 6da6b313859c7f14792e63f88b0b1c6e commit: b390fe78ae9b6008f234893cdcf3aec4744bfe31 Author: Chema Alonso gentoo org> AuthorDate: Sun Apr 26 14:18:28 2015 +0000 Commit: José María Alonso gentoo org> CommitDate: Sun Apr 26 14:18:28 2015 +0000 URL: https://gitweb.gentoo.org/proj/lisp.git/commit/?id=b390fe78 dev-lisp/parenscript: add live ebuild dev-lisp/parenscript/parenscript-9999.ebuild | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/dev-lisp/parenscript/parenscript-9999.ebuild b/dev-lisp/parenscript/parenscript-9999.ebuild new file mode 100644 index 0000000..152c8e5 --- /dev/null +++ b/dev-lisp/parenscript/parenscript-9999.ebuild @@ -0,0 +1,25 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: $ + +EAPI=5 + +inherit common-lisp-3 git-2 + +DESCRIPTION="Parenscript is a small lispy language that can be compiled to JavaScript." +HOMEPAGE="http://common-lisp.net/project/parenscript/" +EGIT_REPO_URI="git://github.com/vsedach/Parenscript" + +LICENSE="BSD" +SLOT="0" +IUSE="doc" + +DEPEND="" +RDEPEND="" + +src_install() { + common-lisp-install-sources -t all src runtime extras t + common-lisp-install-asdf + dodoc contributors README + use doc && dohtml docs/reference.html +}