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 EAE34138C9D for ; Tue, 28 Apr 2015 14:40:51 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id CEE29E0930; Tue, 28 Apr 2015 14:40:14 +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 5C178E08E2 for ; Tue, 28 Apr 2015 14:40:08 +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 46141340B10 for ; Mon, 27 Apr 2015 08:42:13 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 51BE998A for ; Mon, 27 Apr 2015 08:42:10 +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: <1430124101.eb656008675e084991767689a6c9d5f6d0d3e96e.nimiux@gentoo> Subject: [gentoo-commits] proj/lisp:master commit in: dev-lisp/parse-js/ X-VCS-Repository: proj/lisp X-VCS-Files: dev-lisp/parse-js/parse-js-9999.ebuild X-VCS-Directories: dev-lisp/parse-js/ X-VCS-Committer: nimiux X-VCS-Committer-Name: José María Alonso X-VCS-Revision: eb656008675e084991767689a6c9d5f6d0d3e96e X-VCS-Branch: master Date: Mon, 27 Apr 2015 08:42:10 +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: b3286ca5-2878-493f-b227-628474cbf719 X-Archives-Hash: e16ff384e54d0481fc653ff40be0bf2d commit: eb656008675e084991767689a6c9d5f6d0d3e96e Author: Chema Alonso gentoo org> AuthorDate: Mon Apr 27 08:41:41 2015 +0000 Commit: José María Alonso gentoo org> CommitDate: Mon Apr 27 08:41:41 2015 +0000 URL: https://gitweb.gentoo.org/proj/lisp.git/commit/?id=eb656008 dev-lisp/parse-js: new live ebuild dev-lisp/parse-js/parse-js-9999.ebuild | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/dev-lisp/parse-js/parse-js-9999.ebuild b/dev-lisp/parse-js/parse-js-9999.ebuild new file mode 100644 index 0000000..4d65ebf --- /dev/null +++ b/dev-lisp/parse-js/parse-js-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="parse-js is a Common Lisp package for parsing JavaScript" +HOMEPAGE="http://marijnhaverbeke.nl/parse-js/" +EGIT_REPO_URI="http://marijnhaverbeke.nl//git/${PN}" + +LICENSE="ZLIB" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="doc" + +DEPEND="" +RDEPEND="" + +src_install() { + common-lisp-install-sources src + common-lisp-install-asdf + use doc && dohtml index.html +}