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/asdf/
Date: Sun, 27 Mar 2016 19:37:12
Message-Id: 1459107440.4c27de8aaa5c4c83fdc0a4d03be0235f47dacb3e.nimiux@gentoo
1 commit: 4c27de8aaa5c4c83fdc0a4d03be0235f47dacb3e
2 Author: Chema Alonso Josa <nimiux <AT> gentoo <DOT> org>
3 AuthorDate: Sun Mar 27 19:37:20 2016 +0000
4 Commit: José María Alonso <nimiux <AT> gentoo <DOT> org>
5 CommitDate: Sun Mar 27 19:37:20 2016 +0000
6 URL: https://gitweb.gentoo.org/proj/lisp.git/commit/?id=4c27de8a
7
8 dev-lisp/asdf: Bump to version 3.1.7
9
10 dev-lisp/asdf/asdf-3.1.7.ebuild | 50 +++++++++++++++++++++++++++++++++++++++++
11 1 file changed, 50 insertions(+)
12
13 diff --git a/dev-lisp/asdf/asdf-3.1.7.ebuild b/dev-lisp/asdf/asdf-3.1.7.ebuild
14 new file mode 100644
15 index 0000000..3badbce
16 --- /dev/null
17 +++ b/dev-lisp/asdf/asdf-3.1.7.ebuild
18 @@ -0,0 +1,50 @@
19 +# Copyright 1999-2016 Gentoo Foundation
20 +# Distributed under the terms of the GNU General Public License v2
21 +# $Id$
22 +
23 +EAPI=5
24 +
25 +inherit eutils prefix
26 +
27 +DESCRIPTION="ASDF is Another System Definition Facility for Common Lisp"
28 +HOMEPAGE="http://common-lisp.net/project/asdf/"
29 +SRC_URI="http://common-lisp.net/project/${PN}/archives/${P}.tgz"
30 +
31 +LICENSE="MIT"
32 +SLOT="0"
33 +KEYWORDS="~amd64 ~ppc ~sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos ~x86-macos ~x86-solaris"
34 +IUSE="doc"
35 +
36 +SLOT="0/${PVR}"
37 +
38 +DEPEND="!dev-lisp/cl-${PN}
39 + !dev-lisp/asdf-binary-locations
40 + !dev-lisp/gentoo-init
41 + !<dev-lisp/asdf-2.33-r3
42 + doc? ( virtual/texi2dvi )"
43 +RDEPEND=""
44 +PDEPEND="~dev-lisp/uiop-${PV}"
45 +
46 +S="${WORKDIR}"
47 +
48 +src_compile() {
49 + make
50 + use doc && make doc
51 +}
52 +
53 +src_install() {
54 + insinto /usr/share/common-lisp/source/${PN}
55 + doins -r build version.lisp-expr
56 + dodoc README.md TODO
57 + dohtml doc/*.{html,css,ico,png}
58 + if use doc; then
59 + dohtml -r doc/index.html
60 + insinto /usr/share/doc/${PF}
61 + fi
62 +
63 + insinto /etc/common-lisp
64 + cd "${T}"
65 + cp "${FILESDIR}"/gentoo-init.lisp "${FILESDIR}"/source-registry.conf .
66 + eprefixify gentoo-init.lisp source-registry.conf
67 + doins gentoo-init.lisp source-registry.conf
68 +}