From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id D66611395E2 for ; Wed, 30 Nov 2016 21:37:42 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 77E9721C054; Wed, 30 Nov 2016 21:37:40 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 5C47A21C054 for ; Wed, 30 Nov 2016 21:37:40 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 13E67340F2A for ; Wed, 30 Nov 2016 21:37:38 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 44DC84A5 for ; Wed, 30 Nov 2016 21:37:36 +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: <1480541853.45b4e371646cee3f345361e6a78f49a4a1167221.nimiux@gentoo> Subject: [gentoo-commits] proj/lisp:master commit in: dev-lisp/cl-markdown/ X-VCS-Repository: proj/lisp X-VCS-Files: dev-lisp/cl-markdown/cl-markdown-0.10.6.ebuild X-VCS-Directories: dev-lisp/cl-markdown/ X-VCS-Committer: nimiux X-VCS-Committer-Name: José María Alonso X-VCS-Revision: 45b4e371646cee3f345361e6a78f49a4a1167221 X-VCS-Branch: master Date: Wed, 30 Nov 2016 21:37:36 +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: 94177660-fcaa-42cc-b3a8-d67acf6701c2 X-Archives-Hash: 764585f1de7e494ab811d8cc6ab03700 commit: 45b4e371646cee3f345361e6a78f49a4a1167221 Author: Chema Alonso Josa gentoo org> AuthorDate: Wed Nov 30 21:37:33 2016 +0000 Commit: José María Alonso gentoo org> CommitDate: Wed Nov 30 21:37:33 2016 +0000 URL: https://gitweb.gentoo.org/proj/lisp.git/commit/?id=45b4e371 dev-lisp/cl-markdown: Bumps to version 0.10.6 dev-lisp/cl-markdown/cl-markdown-0.10.6.ebuild | 38 ++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) diff --git a/dev-lisp/cl-markdown/cl-markdown-0.10.6.ebuild b/dev-lisp/cl-markdown/cl-markdown-0.10.6.ebuild new file mode 100644 index 0000000..a4f2c60 --- /dev/null +++ b/dev-lisp/cl-markdown/cl-markdown-0.10.6.ebuild @@ -0,0 +1,38 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 + +inherit common-lisp-3 + +MY_PV="version-${PV}_version-${PV}" + +DESCRIPTION="CL-Markdown is a Common Lisp rewrite of Markdown." +HOMEPAGE="http://common-lisp.net/project/cl-markdown" +SRC_URI="https://github.com/gwkkwg/${PN}/archive/${MY_PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~sparc ~x86" +IUSE="" + +RDEPEND=">=dev-lisp/metatilities-base-0.6.0 + dev-lisp/metabang-bind + dev-lisp/asdf-system-connections + >=dev-lisp/cl-containers-0.11.5 + dev-lisp/dynamic-classes + dev-lisp/anaphora + dev-lisp/cl-ppcre" + +S="${WORKDIR}/${PN}-${MY_PV}" + +CLSYSTEMS="${PN} ${PN}-test" + +src_install() { + # TODO: Install unit-test files. Omitting them now because some of them + # contain spaces and this breaks common-lisp-3 eclass + common-lisp-install-sources dev/*.lisp resources # unit-tests + common-lisp-install-asdf + dodoc *.config +}