From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id CC7B01387FD for ; Fri, 13 Jun 2014 18:30:29 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 6C2B9E07EB; Fri, 13 Jun 2014 18:30:29 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 05475E07EB for ; Fri, 13 Jun 2014 18:30:28 +0000 (UTC) Received: from spoonbill.gentoo.org (spoonbill.gentoo.org [81.93.255.5]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 3069A33F900 for ; Fri, 13 Jun 2014 18:30:28 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by spoonbill.gentoo.org (Postfix) with ESMTP id EA06E181A9 for ; Fri, 13 Jun 2014 18:30:26 +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: <1402684280.d86c62b615a4a1be946fc268bf8fec231502a380.nimiux@gentoo> Subject: [gentoo-commits] proj/lisp:master commit in: dev-lisp/cl-yacc/ X-VCS-Repository: proj/lisp X-VCS-Files: dev-lisp/cl-yacc/cl-yacc-0.3.ebuild X-VCS-Directories: dev-lisp/cl-yacc/ X-VCS-Committer: nimiux X-VCS-Committer-Name: José María Alonso X-VCS-Revision: d86c62b615a4a1be946fc268bf8fec231502a380 X-VCS-Branch: master Date: Fri, 13 Jun 2014 18:30:26 +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: 2b88986f-f578-40b6-8574-cafda6ebe3e1 X-Archives-Hash: ea7aa0e909876904adbe6f862f9fcad3 commit: d86c62b615a4a1be946fc268bf8fec231502a380 Author: Chema Alonso gentoo org> AuthorDate: Fri Jun 13 18:31:20 2014 +0000 Commit: José María Alonso gentoo org> CommitDate: Fri Jun 13 18:31:20 2014 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/lisp.git;a=commit;h=d86c62b6 dev-lisp/cl-yacc: moved to EAPI 5 and common-lisp-3 --- dev-lisp/cl-yacc/cl-yacc-0.3.ebuild | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/dev-lisp/cl-yacc/cl-yacc-0.3.ebuild b/dev-lisp/cl-yacc/cl-yacc-0.3.ebuild index 374b02f..60833f8 100644 --- a/dev-lisp/cl-yacc/cl-yacc-0.3.ebuild +++ b/dev-lisp/cl-yacc/cl-yacc-0.3.ebuild @@ -1,8 +1,10 @@ -# Copyright 1999-2010 Gentoo Foundation +# Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: $ -inherit common-lisp-2 +EAPI=5 + +inherit common-lisp-3 DESCRIPTION="CL-YACC is a LALR(1) parser generator for Common Lisp" HOMEPAGE="http://www.pps.jussieu.fr/~jch/software/cl-yacc/ @@ -17,8 +19,6 @@ IUSE="doc" DEPEND="sys-apps/texinfo doc? ( virtual/texi2dvi )" -CLSYSTEMS="yacc" - src_compile() { makeinfo ${PN}.texi -o ${PN}.info || die "Cannot build info docs" if use doc ; then @@ -28,8 +28,8 @@ src_compile() { } src_install() { - common-lisp-install yacc{,-tests}.lisp yacc.asd - common-lisp-symlink-asdf + common-lisp-install-sources yacc{,-tests}.lisp + common-lisp-install-asdf dodoc CHANGES README doinfo ${PN}.info use doc && dodoc ${PN}.pdf