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: Tue, 04 Apr 2017 17:45:08
Message-Id: 1491327938.52056b057d72c5c4a4e88b49710e45a2b0b90bce.nimiux@gentoo
1 commit: 52056b057d72c5c4a4e88b49710e45a2b0b90bce
2 Author: Chema Alonso Josa <nimiux <AT> gentoo <DOT> org>
3 AuthorDate: Tue Apr 4 17:45:38 2017 +0000
4 Commit: José María Alonso <nimiux <AT> gentoo <DOT> org>
5 CommitDate: Tue Apr 4 17:45:38 2017 +0000
6 URL: https://gitweb.gentoo.org/proj/lisp.git/commit/?id=52056b05
7
8 dev-lisp/asdf: Bumps version to 3.2.1
9
10 dev-lisp/asdf/asdf-3.2.1.ebuild | 48 +++++++++++++++++++++++++++++++++++++++++
11 1 file changed, 48 insertions(+)
12
13 diff --git a/dev-lisp/asdf/asdf-3.2.1.ebuild b/dev-lisp/asdf/asdf-3.2.1.ebuild
14 new file mode 100644
15 index 00000000..07a5666b
16 --- /dev/null
17 +++ b/dev-lisp/asdf/asdf-3.2.1.ebuild
18 @@ -0,0 +1,48 @@
19 +# Copyright 1999-2017 Gentoo Foundation
20 +# Distributed under the terms of the GNU General Public License v2
21 +# $Id$
22 +
23 +EAPI=6
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}.tar.gz"
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 +install_docs() {
47 + # Not installing info file at the moment, see bug #605752
48 + (cd doc ; dodoc *.{html,css,ico,png} "${PN}.pdf" ; dodoc -r asdf)
49 +}
50 +
51 +src_compile() {
52 + make
53 + use doc && make -C doc
54 +}
55 +
56 +src_install() {
57 + insinto "/usr/share/common-lisp/source/${PN}"
58 + doins -r build version.lisp-expr
59 + dodoc README.md TODO
60 + use doc && install_docs
61 + insinto /etc/common-lisp
62 + cd "${T}" || die
63 + cp "${FILESDIR}/gentoo-init.lisp" "${FILESDIR}/source-registry.conf" . || die
64 + eprefixify gentoo-init.lisp source-registry.conf
65 + doins gentoo-init.lisp source-registry.conf
66 +}