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 41563138CA4 for ; Sun, 3 May 2015 20:52:59 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id DF910E0841; Sun, 3 May 2015 20:52:56 +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 8FC48E0841 for ; Sun, 3 May 2015 20:52:56 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 6D0C23407ED for ; Sun, 3 May 2015 20:52:55 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C94A2993 for ; Sun, 3 May 2015 20:52:51 +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: <1430686361.c435b69ffddf6fde85e1fb06303d2b15d3901823.nimiux@gentoo> Subject: [gentoo-commits] proj/lisp:master commit in: dev-lisp/cffi/ X-VCS-Repository: proj/lisp X-VCS-Files: dev-lisp/cffi/cffi-0.14.0.ebuild X-VCS-Directories: dev-lisp/cffi/ X-VCS-Committer: nimiux X-VCS-Committer-Name: José María Alonso X-VCS-Revision: c435b69ffddf6fde85e1fb06303d2b15d3901823 X-VCS-Branch: master Date: Sun, 3 May 2015 20:52:51 +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: 85006d29-b929-4003-899a-8b8061a103fe X-Archives-Hash: e5aa2284985286313fe473a7077d382e commit: c435b69ffddf6fde85e1fb06303d2b15d3901823 Author: Chema Alonso gentoo org> AuthorDate: Sun May 3 20:52:41 2015 +0000 Commit: José María Alonso gentoo org> CommitDate: Sun May 3 20:52:41 2015 +0000 URL: https://gitweb.gentoo.org/proj/lisp.git/commit/?id=c435b69f dev-lisp/cffi: bump to version 0.14.0 dev-lisp/cffi/cffi-0.14.0.ebuild | 49 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 49 insertions(+) diff --git a/dev-lisp/cffi/cffi-0.14.0.ebuild b/dev-lisp/cffi/cffi-0.14.0.ebuild new file mode 100644 index 0000000..95c8477 --- /dev/null +++ b/dev-lisp/cffi/cffi-0.14.0.ebuild @@ -0,0 +1,49 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: $ + +EAPI=5 + +inherit common-lisp-3 + +MY_P=${PN}_${PV} + +DESCRIPTION="The Common Foreign Function Interface (CFFI)" +HOMEPAGE="http://common-lisp.net/project/cffi/" +SRC_URI="http://common-lisp.net/project/${PN}/releases/${MY_P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~sparc ~x86" +IUSE="doc" + +DEPEND="doc? ( dev-lisp/sbcl virtual/texi2dvi )" +RDEPEND="!dev-lisp/cl-${PN} + dev-lisp/alexandria + dev-lisp/babel + dev-lisp/trivial-features" + +CLSYSTEMS="cffi.asd cffi-tests.asd cffi-examples.asd cffi-grovel.asd \ + cffi-uffi-compat.asd" + +S="${WORKDIR}"/${MY_P} + +src_compile() { + if use doc ; then + VARTEXFONTS="${T}"/fonts \ + make -C doc manual spec || die "Cannot build docs" + fi +} + +src_install() { + common-lisp-install-sources examples/ src/ uffi-compat/ + common-lisp-install-sources -t all grovel/ tests/ + common-lisp-install-asdf + dodoc README TODO doc/*.txt + if use doc; then + doinfo doc/*.info + rm doc/{spec,manual}/cffi* + insinto /usr/share/doc/${PF}/html + doins -r doc/{spec,manual} + fi +}