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 2B75E139694 for ; Thu, 6 Jul 2017 20:40:03 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9EF8623401E; Thu, 6 Jul 2017 20:39:59 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 7775423401E for ; Thu, 6 Jul 2017 20:39:58 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 387A13417CA for ; Thu, 6 Jul 2017 20:39:57 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 7C0C87466 for ; Thu, 6 Jul 2017 20:39:54 +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: <1499373602.105b4de45d28cda2cc7906b50e32de526c7d8c57.nimiux@gentoo> Subject: [gentoo-commits] proj/lisp:master commit in: dev-lisp/irc-logger/ X-VCS-Repository: proj/lisp X-VCS-Files: dev-lisp/irc-logger/irc-logger-0.9.4.ebuild X-VCS-Directories: dev-lisp/irc-logger/ X-VCS-Committer: nimiux X-VCS-Committer-Name: José María Alonso X-VCS-Revision: 105b4de45d28cda2cc7906b50e32de526c7d8c57 X-VCS-Branch: master Date: Thu, 6 Jul 2017 20:39:54 +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: dca2dfb5-daae-4649-862e-ecf44acd40f9 X-Archives-Hash: 5a2bf24982df7ec3c27e58c69f4b399d commit: 105b4de45d28cda2cc7906b50e32de526c7d8c57 Author: Chema Alonso Josa gentoo org> AuthorDate: Thu Jul 6 20:40:02 2017 +0000 Commit: José María Alonso gentoo org> CommitDate: Thu Jul 6 20:40:02 2017 +0000 URL: https://gitweb.gentoo.org/proj/lisp.git/commit/?id=105b4de4 dev-lisp/irc-logger: Updates to common-lisp-3 eclass dev-lisp/irc-logger/irc-logger-0.9.4.ebuild | 20 +++++++++++++------- 1 file changed, 13 insertions(+), 7 deletions(-) diff --git a/dev-lisp/irc-logger/irc-logger-0.9.4.ebuild b/dev-lisp/irc-logger/irc-logger-0.9.4.ebuild index ede99c84..e0cdaaeb 100644 --- a/dev-lisp/irc-logger/irc-logger-0.9.4.ebuild +++ b/dev-lisp/irc-logger/irc-logger-0.9.4.ebuild @@ -1,8 +1,8 @@ -# 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 DESCRIPTION="A Common Lisp IRC logger library" HOMEPAGE="http://www.cliki.net/irc-logger" @@ -20,15 +20,21 @@ RDEPEND="!dev-lisp/cl-${PN} src_unpack() { unpack ${A} - epatch "${FILESDIR}"/${PV}-acl-compat-gentoo.patch +} + +src_prepare() { + eapply "${FILESDIR}"/${PV}-acl-compat-gentoo.patch + eapply_user } src_install() { - common-lisp-install *.{lisp,asd} - common-lisp-symlink-asdf + common-lisp-install-sources *.lisp + common-lisp-install-asdf dodoc "${FILESDIR}"/README.Gentoo } pkg_postinst() { - while read line; do einfo "${line}"; done < "${FILESDIR}"/README.Gentoo + while read line; do + einfo "${line}"; + done < "${FILESDIR}"/README.Gentoo }