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/hunchentoot-cgi/
Date: Thu, 06 Jul 2017 20:58:57
Message-Id: 1499374743.ca7cbb0cf768926a50ee93c2260c9f76d9296e07.nimiux@gentoo
1 commit: ca7cbb0cf768926a50ee93c2260c9f76d9296e07
2 Author: Chema Alonso Josa <nimiux <AT> gentoo <DOT> org>
3 AuthorDate: Thu Jul 6 20:59:03 2017 +0000
4 Commit: José María Alonso <nimiux <AT> gentoo <DOT> org>
5 CommitDate: Thu Jul 6 20:59:03 2017 +0000
6 URL: https://gitweb.gentoo.org/proj/lisp.git/commit/?id=ca7cbb0c
7
8 dev-lisp/hunchentoot-cgi: Updates to common-lisp-3 eclass
9
10 dev-lisp/hunchentoot-cgi/hunchentoot-cgi-0.2.ebuild | 17 +++++++++++------
11 1 file changed, 11 insertions(+), 6 deletions(-)
12
13 diff --git a/dev-lisp/hunchentoot-cgi/hunchentoot-cgi-0.2.ebuild b/dev-lisp/hunchentoot-cgi/hunchentoot-cgi-0.2.ebuild
14 index d794fe02..7cf8d600 100644
15 --- a/dev-lisp/hunchentoot-cgi/hunchentoot-cgi-0.2.ebuild
16 +++ b/dev-lisp/hunchentoot-cgi/hunchentoot-cgi-0.2.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 eutils
24 +EAPI=6
25 +
26 +inherit common-lisp-3 eutils
27
28 MY_P=${PN}_${PV}
29
30 @@ -21,11 +22,15 @@ S="${WORKDIR}"/${MY_P}
31
32 src_unpack() {
33 unpack ${A}
34 - epatch "${FILESDIR}"/fix-asd.patch
35 +}
36 +
37 +src_prepare() {
38 + eapply "${FILESDIR}"/fix-asd.patch
39 + eapply_user
40 }
41
42 src_install() {
43 - common-lisp-install *.{lisp,asd} version.lisp-expr
44 - common-lisp-symlink-asdf
45 + common-lisp-install-sources *.lisp version.lisp-expr
46 + common-lisp-install-asdf
47 dodoc NEWS README
48 }