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 34FFB138E20 for ; Fri, 21 Feb 2014 11:06:40 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id AECFDE0BE8; Fri, 21 Feb 2014 11:06:39 +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 3E849E0BE8 for ; Fri, 21 Feb 2014 11:06:39 +0000 (UTC) Received: from spoonbill.gentoo.org (spoonbill.gentoo.org [81.93.255.5]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 6ECA133FCB8 for ; Fri, 21 Feb 2014 11:06:38 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by spoonbill.gentoo.org (Postfix) with ESMTP id 43EC118874 for ; Fri, 21 Feb 2014 11:06:35 +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: <1392980837.8ba2e83e3637d7c629498aa2773d550f0e4765ce.nimiux@gentoo> Subject: [gentoo-commits] proj/lisp:master commit in: dev-lisp/cl-webdav/ X-VCS-Repository: proj/lisp X-VCS-Files: dev-lisp/cl-webdav/cl-webdav-0.2.1.ebuild X-VCS-Directories: dev-lisp/cl-webdav/ X-VCS-Committer: nimiux X-VCS-Committer-Name: José María Alonso X-VCS-Revision: 8ba2e83e3637d7c629498aa2773d550f0e4765ce X-VCS-Branch: master Date: Fri, 21 Feb 2014 11:06:35 +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: 25871084-209c-4faa-af54-6daa51504e39 X-Archives-Hash: d4a6649bba6483c5a6d10c8dce19e1ad commit: 8ba2e83e3637d7c629498aa2773d550f0e4765ce Author: Chema Alonso gentoo org> AuthorDate: Fri Feb 21 11:07:17 2014 +0000 Commit: José María Alonso gentoo org> CommitDate: Fri Feb 21 11:07:17 2014 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/lisp.git;a=commit;h=8ba2e83e dev-lisp: bump to version 0.2.1 --- dev-lisp/cl-webdav/cl-webdav-0.2.1.ebuild | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/dev-lisp/cl-webdav/cl-webdav-0.2.1.ebuild b/dev-lisp/cl-webdav/cl-webdav-0.2.1.ebuild new file mode 100644 index 0000000..32e3bbb --- /dev/null +++ b/dev-lisp/cl-webdav/cl-webdav-0.2.1.ebuild @@ -0,0 +1,28 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: $ + +EAPI=5 + +inherit common-lisp-3 + +MY_P="v${PV}" + +DESCRIPTION="A WebDAV server written in Common Lisp." +HOMEPAGE="http://weitz.de/cl-webdav" +SRC_URI="https://github.com/edicl/cl-webdav/archive/${MY_P}.tar.gz -> ${P}.tar.gz" + +LICENSE="BSD-2" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~sparc ~x86" +IUSE="doc" + +RDEPEND="dev-lisp/cl-fad + dev-lisp/cxml + >=dev-lisp/hunchentoot-1.0.0" + +src_install() { + common-lisp-install-sources *.lisp + common-lisp-install-asdf + use doc && dohtml doc/{index.html,dav.png} +}