Gentoo Archives: gentoo-commits

From: "José María Alonso" <nimiux@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/lisp:master commit in: dev-lisp/cl-markdown/
Date: Wed, 30 Nov 2016 21:37:42
Message-Id: 1480541853.45b4e371646cee3f345361e6a78f49a4a1167221.nimiux@gentoo
1 commit: 45b4e371646cee3f345361e6a78f49a4a1167221
2 Author: Chema Alonso Josa <nimiux <AT> gentoo <DOT> org>
3 AuthorDate: Wed Nov 30 21:37:33 2016 +0000
4 Commit: José María Alonso <nimiux <AT> gentoo <DOT> org>
5 CommitDate: Wed Nov 30 21:37:33 2016 +0000
6 URL: https://gitweb.gentoo.org/proj/lisp.git/commit/?id=45b4e371
7
8 dev-lisp/cl-markdown: Bumps to version 0.10.6
9
10 dev-lisp/cl-markdown/cl-markdown-0.10.6.ebuild | 38 ++++++++++++++++++++++++++
11 1 file changed, 38 insertions(+)
12
13 diff --git a/dev-lisp/cl-markdown/cl-markdown-0.10.6.ebuild b/dev-lisp/cl-markdown/cl-markdown-0.10.6.ebuild
14 new file mode 100644
15 index 0000000..a4f2c60
16 --- /dev/null
17 +++ b/dev-lisp/cl-markdown/cl-markdown-0.10.6.ebuild
18 @@ -0,0 +1,38 @@
19 +# Copyright 1999-2016 Gentoo Foundation
20 +# Distributed under the terms of the GNU General Public License v2
21 +# $Id$
22 +
23 +EAPI=6
24 +
25 +inherit common-lisp-3
26 +
27 +MY_PV="version-${PV}_version-${PV}"
28 +
29 +DESCRIPTION="CL-Markdown is a Common Lisp rewrite of Markdown."
30 +HOMEPAGE="http://common-lisp.net/project/cl-markdown"
31 +SRC_URI="https://github.com/gwkkwg/${PN}/archive/${MY_PV}.tar.gz -> ${P}.tar.gz"
32 +
33 +LICENSE="MIT"
34 +SLOT="0"
35 +KEYWORDS="~amd64 ~ppc ~sparc ~x86"
36 +IUSE=""
37 +
38 +RDEPEND=">=dev-lisp/metatilities-base-0.6.0
39 + dev-lisp/metabang-bind
40 + dev-lisp/asdf-system-connections
41 + >=dev-lisp/cl-containers-0.11.5
42 + dev-lisp/dynamic-classes
43 + dev-lisp/anaphora
44 + dev-lisp/cl-ppcre"
45 +
46 +S="${WORKDIR}/${PN}-${MY_PV}"
47 +
48 +CLSYSTEMS="${PN} ${PN}-test"
49 +
50 +src_install() {
51 + # TODO: Install unit-test files. Omitting them now because some of them
52 + # contain spaces and this breaks common-lisp-3 eclass
53 + common-lisp-install-sources dev/*.lisp resources # unit-tests
54 + common-lisp-install-asdf
55 + dodoc *.config
56 +}