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