commit: c41235f1fd2356d2d97591eee50f5b3323de0e8b
Author: Ulrich Müller <ulm <AT> gentoo <DOT> org>
AuthorDate: Sat Apr 2 15:29:40 2022 +0000
Commit: Ulrich Müller <ulm <AT> gentoo <DOT> org>
CommitDate: Sat Apr 2 15:29:40 2022 +0000
URL: https://gitweb.gentoo.org/proj/lisp.git/commit/?id=c41235f1
dev-lisp/cl-webdav: Drop ~sparc because of unkeyworded dependencies
Update HOMEPAGE. Use dodoc instead of dohtml.
Signed-off-by: Ulrich Müller <ulm <AT> gentoo.org>
dev-lisp/cl-webdav/cl-webdav-0.2.1.ebuild | 13 ++++++++-----
1 file changed, 8 insertions(+), 5 deletions(-)
diff --git a/dev-lisp/cl-webdav/cl-webdav-0.2.1.ebuild
b/dev-lisp/cl-webdav/cl-webdav-0.2.1.ebuild
index 167671ac..c0889ab1 100644
--- a/dev-lisp/cl-webdav/cl-webdav-0.2.1.ebuild
+++ b/dev-lisp/cl-webdav/cl-webdav-0.2.1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=6
@@ -7,13 +7,13 @@ inherit common-lisp-3
MY_P="v${PV}"
-DESCRIPTION="A WebDAV server written in Common Lisp."
-HOMEPAGE="http://weitz.de/cl-webdav"
+DESCRIPTION="A WebDAV server written in Common Lisp"
+HOMEPAGE="https://edicl.github.io/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"
+KEYWORDS="~amd64 ~ppc ~x86"
IUSE="doc"
RDEPEND="dev-lisp/cl-fad
@@ -23,5 +23,8 @@ RDEPEND="dev-lisp/cl-fad
src_install() {
common-lisp-install-sources *.lisp
common-lisp-install-asdf
- use doc && dohtml doc/{index.html,dav.png}
+ if use doc; then
+ docinto html
+ dodoc doc/{index.html,dav.png}
+ fi
}