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 79B60139694 for ; Thu, 6 Jul 2017 19:48:03 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id DB4D02340EA; Thu, 6 Jul 2017 19:48:02 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.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 B9CA02340EA for ; Thu, 6 Jul 2017 19:48:02 +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 D465234188D for ; Thu, 6 Jul 2017 19:48:01 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A15487466 for ; Thu, 6 Jul 2017 19:48:00 +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: <1499370488.97d262f67c4c5f74defe55a6eeaaf341851a5464.nimiux@gentoo> Subject: [gentoo-commits] proj/lisp:master commit in: dev-lisp/cxml-rng/ X-VCS-Repository: proj/lisp X-VCS-Files: dev-lisp/cxml-rng/cxml-rng-20081130.ebuild X-VCS-Directories: dev-lisp/cxml-rng/ X-VCS-Committer: nimiux X-VCS-Committer-Name: José María Alonso X-VCS-Revision: 97d262f67c4c5f74defe55a6eeaaf341851a5464 X-VCS-Branch: master Date: Thu, 6 Jul 2017 19:48:00 +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: 2e52f127-5665-4bdd-bec5-b408b35c91fb X-Archives-Hash: 691abb34df7d2341121d4d09762d0d77 commit: 97d262f67c4c5f74defe55a6eeaaf341851a5464 Author: Chema Alonso Josa gentoo org> AuthorDate: Thu Jul 6 19:48:08 2017 +0000 Commit: José María Alonso gentoo org> CommitDate: Thu Jul 6 19:48:08 2017 +0000 URL: https://gitweb.gentoo.org/proj/lisp.git/commit/?id=97d262f6 dev-lisp/cxml-rng: Updates to common-lisp-3 eclass dev-lisp/cxml-rng/cxml-rng-20081130.ebuild | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/dev-lisp/cxml-rng/cxml-rng-20081130.ebuild b/dev-lisp/cxml-rng/cxml-rng-20081130.ebuild index b6e82b89..b5a5dfd3 100644 --- a/dev-lisp/cxml-rng/cxml-rng-20081130.ebuild +++ b/dev-lisp/cxml-rng/cxml-rng-20081130.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 +EAPI=6 + +inherit common-lisp-3 MY_PV=${PV:0:4}-${PV:4:2}-${PV:6:2} @@ -25,13 +26,15 @@ S="${WORKDIR}"/${PN}-${MY_PV} src_unpack() { unpack ${A} && cd "${S}" +} +src_prepare() { rm "${S}"/GNUmakefile } src_install() { - common-lisp-install *.{lisp,asd,rng,rnc} - common-lisp-symlink-asdf + common-lisp-install-sources *.{lisp,rng,rnc} + common-lisp-install-asdf dodoc README NEWS NIST *TEST dohtml -r doc/* || die "Cannot install HTML documentation" }