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/binary-types/
Date: Fri, 07 Jul 2017 09:08:59
Message-Id: 1499418544.b3353274d50c046326ef7f83ef1e3d66d0a06476.nimiux@gentoo
1 commit: b3353274d50c046326ef7f83ef1e3d66d0a06476
2 Author: Chema Alonso Josa <nimiux <AT> gentoo <DOT> org>
3 AuthorDate: Fri Jul 7 09:09:04 2017 +0000
4 Commit: José María Alonso <nimiux <AT> gentoo <DOT> org>
5 CommitDate: Fri Jul 7 09:09:04 2017 +0000
6 URL: https://gitweb.gentoo.org/proj/lisp.git/commit/?id=b3353274
7
8 dev-lisp/binary-types: Updates to common-lisp-3 eclass
9
10 dev-lisp/binary-types/binary-types-0.90.ebuild | 19 ++++++++++++-------
11 1 file changed, 12 insertions(+), 7 deletions(-)
12
13 diff --git a/dev-lisp/binary-types/binary-types-0.90.ebuild b/dev-lisp/binary-types/binary-types-0.90.ebuild
14 index 52b3578c..7e8395dc 100644
15 --- a/dev-lisp/binary-types/binary-types-0.90.ebuild
16 +++ b/dev-lisp/binary-types/binary-types-0.90.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 # binary-types moved to http://www.common-lisp.net/project/movitz recently
29
30 @@ -20,12 +21,16 @@ RDEPEND="!dev-lisp/cl-${PN}"
31
32 src_unpack() {
33 unpack ${A}
34 - epatch "${FILESDIR}"/${PV}-gentoo.patch
35 +}
36 +
37 +src_prepare() {
38 + eapply "${FILESDIR}"/${PV}-gentoo.patch
39 + eapply_user
40 }
41
42 src_install() {
43 - cp "${FILESDIR}"/binary-types.asd "${S}"
44 - common-lisp-install *.{lisp,asd}
45 - common-lisp-symlink-asdf
46 + cp "${FILESDIR}"/binary-types.asd "${S}" || die
47 + common-lisp-install-sources *.lisp
48 + common-lisp-install-asdf
49 dodoc example.lisp README README-bitfield ChangeLog type-hierarchy.{ps,png}
50 }