From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 02538139694 for ; Fri, 7 Jul 2017 09:08:59 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 72481274194; Fri, 7 Jul 2017 09:08:58 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 51481274194 for ; Fri, 7 Jul 2017 09:08:58 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 8D5323418F1 for ; Fri, 7 Jul 2017 09:08:57 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 550037497 for ; Fri, 7 Jul 2017 09:08:56 +0000 (UTC) From: "José María Alonso" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "José María Alonso" Message-ID: <1499418544.b3353274d50c046326ef7f83ef1e3d66d0a06476.nimiux@gentoo> Subject: [gentoo-commits] proj/lisp:master commit in: dev-lisp/binary-types/ X-VCS-Repository: proj/lisp X-VCS-Files: dev-lisp/binary-types/binary-types-0.90.ebuild X-VCS-Directories: dev-lisp/binary-types/ X-VCS-Committer: nimiux X-VCS-Committer-Name: José María Alonso X-VCS-Revision: b3353274d50c046326ef7f83ef1e3d66d0a06476 X-VCS-Branch: master Date: Fri, 7 Jul 2017 09:08:56 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 941e5d29-57a1-4627-a997-5169fdc265f3 X-Archives-Hash: 9c1a7dc7889fc778544af33d61b1dae6 commit: b3353274d50c046326ef7f83ef1e3d66d0a06476 Author: Chema Alonso Josa gentoo org> AuthorDate: Fri Jul 7 09:09:04 2017 +0000 Commit: José María Alonso gentoo org> CommitDate: Fri Jul 7 09:09:04 2017 +0000 URL: https://gitweb.gentoo.org/proj/lisp.git/commit/?id=b3353274 dev-lisp/binary-types: Updates to common-lisp-3 eclass dev-lisp/binary-types/binary-types-0.90.ebuild | 19 ++++++++++++------- 1 file changed, 12 insertions(+), 7 deletions(-) diff --git a/dev-lisp/binary-types/binary-types-0.90.ebuild b/dev-lisp/binary-types/binary-types-0.90.ebuild index 52b3578c..7e8395dc 100644 --- a/dev-lisp/binary-types/binary-types-0.90.ebuild +++ b/dev-lisp/binary-types/binary-types-0.90.ebuild @@ -1,8 +1,9 @@ -# Copyright 1999-2016 Gentoo Foundation +# Copyright 1999-2017 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Id$ -inherit common-lisp-2 eutils +EAPI=6 + +inherit common-lisp-3 eutils # binary-types moved to http://www.common-lisp.net/project/movitz recently @@ -20,12 +21,16 @@ RDEPEND="!dev-lisp/cl-${PN}" src_unpack() { unpack ${A} - epatch "${FILESDIR}"/${PV}-gentoo.patch +} + +src_prepare() { + eapply "${FILESDIR}"/${PV}-gentoo.patch + eapply_user } src_install() { - cp "${FILESDIR}"/binary-types.asd "${S}" - common-lisp-install *.{lisp,asd} - common-lisp-symlink-asdf + cp "${FILESDIR}"/binary-types.asd "${S}" || die + common-lisp-install-sources *.lisp + common-lisp-install-asdf dodoc example.lisp README README-bitfield ChangeLog type-hierarchy.{ps,png} }