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 400BA139694 for ; Sun, 2 Jul 2017 20:55:53 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 90420E084F; Sun, 2 Jul 2017 20:55:52 +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 6F0E3E084F for ; Sun, 2 Jul 2017 20:55:52 +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 AB60C34190A for ; Sun, 2 Jul 2017 20:55:51 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 256F8747D for ; Sun, 2 Jul 2017 20:55:50 +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: <1499028945.dd2a8702abc2d71a511cf3b083005e286f91db09.nimiux@gentoo> Subject: [gentoo-commits] proj/lisp:master commit in: dev-lisp/cl-containers/ X-VCS-Repository: proj/lisp X-VCS-Files: dev-lisp/cl-containers/cl-containers-0.11.5.ebuild X-VCS-Directories: dev-lisp/cl-containers/ X-VCS-Committer: nimiux X-VCS-Committer-Name: José María Alonso X-VCS-Revision: dd2a8702abc2d71a511cf3b083005e286f91db09 X-VCS-Branch: master Date: Sun, 2 Jul 2017 20:55:50 +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: 3cca7c04-98f9-40ae-bf00-7ed89a1d6a6e X-Archives-Hash: 67da18df5c47e336bb8c341bf62a2ca3 commit: dd2a8702abc2d71a511cf3b083005e286f91db09 Author: Chema Alonso Josa gentoo org> AuthorDate: Sun Jul 2 20:55:45 2017 +0000 Commit: José María Alonso gentoo org> CommitDate: Sun Jul 2 20:55:45 2017 +0000 URL: https://gitweb.gentoo.org/proj/lisp.git/commit/?id=dd2a8702 dev-lisp/cl-containers: Updates to common-lisp-3.eclass. dev-lisp/cl-containers/cl-containers-0.11.5.ebuild | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/dev-lisp/cl-containers/cl-containers-0.11.5.ebuild b/dev-lisp/cl-containers/cl-containers-0.11.5.ebuild index 9a598ecd..4f543344 100644 --- a/dev-lisp/cl-containers/cl-containers-0.11.5.ebuild +++ b/dev-lisp/cl-containers/cl-containers-0.11.5.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 DESCRIPTION="Adds trees, sparse arrays, and other useful containers to CommonLisp." HOMEPAGE="http://common-lisp.net/project/cl-containers/" @@ -20,7 +21,7 @@ RDEPEND="dev-lisp/asdf-system-connections CLSYSTEMS="${PN} ${PN}-test" src_install() { - common-lisp-install *.asd {dev,tests}/*.lisp - common-lisp-symlink-asdf + common-lisp-install-sources {dev,tests}/*.lisp + common-lisp-install-asdf dodoc *.config doc/introduction-to-cl-containers.pdf }