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/plexippus-xpath/
Date: Thu, 06 Jul 2017 19:44:07
Message-Id: 1499370252.e788c620de98dd40c5e8969b8af47dc1a474c9da.nimiux@gentoo
1 commit: e788c620de98dd40c5e8969b8af47dc1a474c9da
2 Author: Chema Alonso Josa <nimiux <AT> gentoo <DOT> org>
3 AuthorDate: Thu Jul 6 19:44:12 2017 +0000
4 Commit: José María Alonso <nimiux <AT> gentoo <DOT> org>
5 CommitDate: Thu Jul 6 19:44:12 2017 +0000
6 URL: https://gitweb.gentoo.org/proj/lisp.git/commit/?id=e788c620
7
8 dev-lisp/plexippus-xpath: Updates to common-lisp-3 eclass
9
10 dev-lisp/plexippus-xpath/plexippus-xpath-20081207.ebuild | 15 +++++++++------
11 1 file changed, 9 insertions(+), 6 deletions(-)
12
13 diff --git a/dev-lisp/plexippus-xpath/plexippus-xpath-20081207.ebuild b/dev-lisp/plexippus-xpath/plexippus-xpath-20081207.ebuild
14 index b0b3d3f1..c0c3e490 100644
15 --- a/dev-lisp/plexippus-xpath/plexippus-xpath-20081207.ebuild
16 +++ b/dev-lisp/plexippus-xpath/plexippus-xpath-20081207.ebuild
17 @@ -1,8 +1,9 @@
18 -# Copyright 1999-2016 Gentoo Foundation
19 +# Copyright 1999-2017 Gentoo Foundation
20 # Distributed under the terms of the GNU General Public License v2
21 -# $Id$
22
23 -inherit common-lisp-2
24 +EAPI=6
25 +
26 +inherit common-lisp-3
27
28 MY_PV=${PV:0:4}-${PV:4:2}-${PV:6:2}
29
30 @@ -26,12 +27,14 @@ CLSYSTEMS="xpath"
31
32 src_unpack() {
33 unpack ${A}
34 +}
35 +
36 +src_prepare() {
37 find "${S}"/doc -type f -not \( -name '*.html' -or -name '*.css' -or -name '*.gif' \) -delete
38 }
39
40 src_install() {
41 - common-lisp-install *.{lisp,asd}
42 - common-lisp-symlink-asdf
43 -
44 + common-lisp-install-sources *.lisp
45 + common-lisp-install-asdf
46 dohtml -r doc/* || die "Cannot install HTML docs"
47 }