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 CA28D138330 for ; Thu, 25 Aug 2016 16:56:09 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 0B773E0B27; Thu, 25 Aug 2016 16:56:08 +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 AD786E0B27 for ; Thu, 25 Aug 2016 16:56:07 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 4914E340A85 for ; Thu, 25 Aug 2016 16:56:06 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A2CC92460 for ; Thu, 25 Aug 2016 16:56:02 +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: <1472144166.42c64d6ccf8a8ec6b8cdde91195803c66a686ae4.nimiux@gentoo> Subject: [gentoo-commits] proj/lisp:master commit in: dev-lisp/cl-fad/ X-VCS-Repository: proj/lisp X-VCS-Files: dev-lisp/cl-fad/cl-fad-0.7.4.ebuild X-VCS-Directories: dev-lisp/cl-fad/ X-VCS-Committer: nimiux X-VCS-Committer-Name: José María Alonso X-VCS-Revision: 42c64d6ccf8a8ec6b8cdde91195803c66a686ae4 X-VCS-Branch: master Date: Thu, 25 Aug 2016 16:56:02 +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: 07a867ae-45b9-4666-82c8-e092bc485527 X-Archives-Hash: c6a37cdfede0067f880c3ed26c1d0a20 commit: 42c64d6ccf8a8ec6b8cdde91195803c66a686ae4 Author: Chema Alonso Josa gentoo org> AuthorDate: Thu Aug 25 16:56:06 2016 +0000 Commit: José María Alonso gentoo org> CommitDate: Thu Aug 25 16:56:06 2016 +0000 URL: https://gitweb.gentoo.org/proj/lisp.git/commit/?id=42c64d6c dev-lisp/cl-fad: Bump to version 0.7.4 dev-lisp/cl-fad/cl-fad-0.7.4.ebuild | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/dev-lisp/cl-fad/cl-fad-0.7.4.ebuild b/dev-lisp/cl-fad/cl-fad-0.7.4.ebuild new file mode 100644 index 0000000..a09149d --- /dev/null +++ b/dev-lisp/cl-fad/cl-fad-0.7.4.ebuild @@ -0,0 +1,28 @@ +# 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="v${PV}" + +DESCRIPTION="CL-FAD is a thin layer atop the Common Lisp's standard pathname functions." +HOMEPAGE="http://weitz.de/cl-fad/" +SRC_URI="https://github.com/edicl/${PN}/archive/${MY_P}.tar.gz -> ${P}.tar.gz" + +LICENSE="BSD-2" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~sparc ~x86" +IUSE="" + +RDEPEND="dev-lisp/alexandria + dev-lisp/bordeaux-threads" + +src_install() { + common-lisp-install-sources *.lisp + common-lisp-install-asdf + dodoc CHANGELOG README + dohtml doc/index.html +}