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 91E5F1384B4 for ; Tue, 22 Dec 2015 12:07:39 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id EB74F21C040; Tue, 22 Dec 2015 12:07:27 +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 4B46621C040 for ; Tue, 22 Dec 2015 12:07:27 +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 8C64D3407E6 for ; Tue, 22 Dec 2015 12:07:26 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 42A73C7E for ; Tue, 22 Dec 2015 12:07:25 +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: <1450786220.fc9679e06fa3f86e087b28579df3f0c4d0b9d8a7.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.3.ebuild X-VCS-Directories: dev-lisp/cl-fad/ X-VCS-Committer: nimiux X-VCS-Committer-Name: José María Alonso X-VCS-Revision: fc9679e06fa3f86e087b28579df3f0c4d0b9d8a7 X-VCS-Branch: master Date: Tue, 22 Dec 2015 12:07:25 +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: cb70ef4e-cd4e-4d6c-8ea5-6201ca81e86a X-Archives-Hash: 922f73e94e998ff343d244663369c3d5 commit: fc9679e06fa3f86e087b28579df3f0c4d0b9d8a7 Author: Chema Alonso Josa gentoo org> AuthorDate: Tue Dec 22 12:10:20 2015 +0000 Commit: José María Alonso gentoo org> CommitDate: Tue Dec 22 12:10:20 2015 +0000 URL: https://gitweb.gentoo.org/proj/lisp.git/commit/?id=fc9679e0 dev-lisp/cl-fad: bump to version 0.7.3 dev-lisp/cl-fad/cl-fad-0.7.3.ebuild | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/dev-lisp/cl-fad/cl-fad-0.7.3.ebuild b/dev-lisp/cl-fad/cl-fad-0.7.3.ebuild new file mode 100644 index 0000000..d5a50cb --- /dev/null +++ b/dev-lisp/cl-fad/cl-fad-0.7.3.ebuild @@ -0,0 +1,28 @@ +# Copyright 1999-2015 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 portability layer atop the Common Lisp 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 +}