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 C9C191381F3 for ; Wed, 4 Sep 2013 15:30:40 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 2102EE1473; Wed, 4 Sep 2013 15:30:40 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id A62FCE1473 for ; Wed, 4 Sep 2013 15:30:39 +0000 (UTC) Received: from hornbill.gentoo.org (hornbill.gentoo.org [94.100.119.163]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id BF99033EAC8 for ; Wed, 4 Sep 2013 15:30:38 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id 62547E468F for ; Wed, 4 Sep 2013 15:30:37 +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: <1378308658.24fbcbc9048069d74bccbce5550ed989ee3f2a74.nimiux@gentoo> Subject: [gentoo-commits] proj/lisp:master commit in: dev-lisp/cl-ftp/ X-VCS-Repository: proj/lisp X-VCS-Files: dev-lisp/cl-ftp/cl-ftp-1.5.0.ebuild X-VCS-Directories: dev-lisp/cl-ftp/ X-VCS-Committer: nimiux X-VCS-Committer-Name: José María Alonso X-VCS-Revision: 24fbcbc9048069d74bccbce5550ed989ee3f2a74 X-VCS-Branch: master Date: Wed, 4 Sep 2013 15:30:37 +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: 90171e9b-9601-4719-8b19-fd5d42685363 X-Archives-Hash: b8c6c6d59eecb8a656386387032605ed commit: 24fbcbc9048069d74bccbce5550ed989ee3f2a74 Author: Chema Alonso gentoo org> AuthorDate: Wed Sep 4 15:30:58 2013 +0000 Commit: José María Alonso gentoo org> CommitDate: Wed Sep 4 15:30:58 2013 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/lisp.git;a=commit;h=24fbcbc9 dev-lisp/cl-ftp: bump to version 1.5.0 --- dev-lisp/cl-ftp/cl-ftp-1.5.0.ebuild | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/dev-lisp/cl-ftp/cl-ftp-1.5.0.ebuild b/dev-lisp/cl-ftp/cl-ftp-1.5.0.ebuild new file mode 100644 index 0000000..1a7e31f --- /dev/null +++ b/dev-lisp/cl-ftp/cl-ftp-1.5.0.ebuild @@ -0,0 +1,28 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: $ + +EAPI=5 + +inherit common-lisp-3 + +DESCRIPTION="FTP Client Functionality for Common Lisp" +HOMEPAGE="http://code.kepibu.org/cl-ftp/ + http://www.cliki.net/CL-FTP" +SRC_URI="http://code.kepibu.org/cl-ftp/${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~sparc ~x86" +IUSE="" + +RDEPEND="dev-lisp/split-sequence + dev-lisp/usocket" + +S="${WORKDIR}/${PN}" + +src_install() { + common-lisp-install-sources *.lisp + common-lisp-install-asdf + dodoc api.lml +}