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 82BCF13829C for ; Tue, 7 Jun 2016 21:42:56 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id CB5A421C028; Tue, 7 Jun 2016 21:42:54 +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 6609521C028 for ; Tue, 7 Jun 2016 21:42:54 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id B6CF2340CEA for ; Tue, 7 Jun 2016 21:42:52 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A0B7F17B4 for ; Tue, 7 Jun 2016 21:42:45 +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: <1465335790.d206405ba21aaffd93aff714d31f12be2ac1d9e1.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.17.1.ebuild X-VCS-Directories: dev-lisp/cffi/ X-VCS-Committer: nimiux X-VCS-Committer-Name: José María Alonso X-VCS-Revision: d206405ba21aaffd93aff714d31f12be2ac1d9e1 X-VCS-Branch: master Date: Tue, 7 Jun 2016 21:42:45 +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: 6cdbcef3-6ab7-4b40-9a8e-00d30326b07f X-Archives-Hash: 9b4eaed76d8e7f3df94148f2e0549b01 commit: d206405ba21aaffd93aff714d31f12be2ac1d9e1 Author: Chema Alonso Josa gentoo org> AuthorDate: Tue Jun 7 21:43:10 2016 +0000 Commit: José María Alonso gentoo org> CommitDate: Tue Jun 7 21:43:10 2016 +0000 URL: https://gitweb.gentoo.org/proj/lisp.git/commit/?id=d206405b dev-lisp/cffi: Bump to version 0.17.1 dev-lisp/cffi/cffi-0.17.1.ebuild | 49 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 49 insertions(+) diff --git a/dev-lisp/cffi/cffi-0.17.1.ebuild b/dev-lisp/cffi/cffi-0.17.1.ebuild new file mode 100644 index 0000000..f361fe9 --- /dev/null +++ b/dev-lisp/cffi/cffi-0.17.1.ebuild @@ -0,0 +1,49 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +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.md 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 +}