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 0C6A01382C5 for ; Sun, 18 Mar 2018 16:53:52 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 137E8E0825; Sun, 18 Mar 2018 16:53:51 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id DA32FE0825 for ; Sun, 18 Mar 2018 16:53:50 +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 CC391335C80 for ; Sun, 18 Mar 2018 16:53:48 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 809C7239 for ; Sun, 18 Mar 2018 16:53:46 +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: <1521392039.8b0a731584fd1276495d8defc12ef23ee9023bb1.nimiux@gentoo> Subject: [gentoo-commits] proj/lisp:master commit in: dev-lisp/uffi/ X-VCS-Repository: proj/lisp X-VCS-Files: dev-lisp/uffi/uffi-2.0.0.ebuild X-VCS-Directories: dev-lisp/uffi/ X-VCS-Committer: nimiux X-VCS-Committer-Name: José María Alonso X-VCS-Revision: 8b0a731584fd1276495d8defc12ef23ee9023bb1 X-VCS-Branch: master Date: Sun, 18 Mar 2018 16:53:46 +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: 8795dc13-ee1c-4cd8-ad2e-2d6395811b9f X-Archives-Hash: 2f768b1969c3968057a6070d468d9a28 commit: 8b0a731584fd1276495d8defc12ef23ee9023bb1 Author: Chema Alonso Josa gentoo org> AuthorDate: Sun Mar 18 16:53:59 2018 +0000 Commit: José María Alonso gentoo org> CommitDate: Sun Mar 18 16:53:59 2018 +0000 URL: https://gitweb.gentoo.org/proj/lisp.git/commit/?id=8b0a7315 dev-lisp/uffi: Drops old version dev-lisp/uffi/uffi-2.0.0.ebuild | 38 -------------------------------------- 1 file changed, 38 deletions(-) diff --git a/dev-lisp/uffi/uffi-2.0.0.ebuild b/dev-lisp/uffi/uffi-2.0.0.ebuild deleted file mode 100644 index 01c81617..00000000 --- a/dev-lisp/uffi/uffi-2.0.0.ebuild +++ /dev/null @@ -1,38 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit common-lisp-3 multilib - -DESCRIPTION="Portable FFI library for Common Lisp." -HOMEPAGE="http://uffi.b9.com/" -SRC_URI="http://files.b9.com/uffi/${P}.tar.gz" - -LICENSE="BSD" -SLOT="0" -KEYWORDS="~amd64 ~ppc ~sparc ~x86" -IUSE="doc" - -src_prepare() { - rm -f tests/*dylib - eapply_user -} - -src_install() { - common-lisp-install-sources src - common-lisp-install-sources -t all tests - common-lisp-install-asdf - - dodoc AUTHORS ChangeLog NEWS README TODO - - if use doc ; then - dodoc doc/uffi.pdf - - tar xfz doc/html.tar.gz -C "${T}" - dohtml "${T}"/html/* - - docinto benchmarks && dodoc benchmarks/*.lisp - docinto examples && dodoc examples/*.{lisp,c} - fi -}