Gentoo Archives: gentoo-commits

From: "Ulrich Müller" <ulm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/lisp:master commit in: dev-lisp/cl-webdav/
Date: Sat, 02 Apr 2022 15:35:07
Message-Id: 1648913380.c41235f1fd2356d2d97591eee50f5b3323de0e8b.ulm@gentoo
1 commit: c41235f1fd2356d2d97591eee50f5b3323de0e8b
2 Author: Ulrich Müller <ulm <AT> gentoo <DOT> org>
3 AuthorDate: Sat Apr 2 15:29:40 2022 +0000
4 Commit: Ulrich Müller <ulm <AT> gentoo <DOT> org>
5 CommitDate: Sat Apr 2 15:29:40 2022 +0000
6 URL: https://gitweb.gentoo.org/proj/lisp.git/commit/?id=c41235f1
7
8 dev-lisp/cl-webdav: Drop ~sparc because of unkeyworded dependencies
9
10 Update HOMEPAGE. Use dodoc instead of dohtml.
11
12 Signed-off-by: Ulrich Müller <ulm <AT> gentoo.org>
13
14 dev-lisp/cl-webdav/cl-webdav-0.2.1.ebuild | 13 ++++++++-----
15 1 file changed, 8 insertions(+), 5 deletions(-)
16
17 diff --git a/dev-lisp/cl-webdav/cl-webdav-0.2.1.ebuild b/dev-lisp/cl-webdav/cl-webdav-0.2.1.ebuild
18 index 167671ac..c0889ab1 100644
19 --- a/dev-lisp/cl-webdav/cl-webdav-0.2.1.ebuild
20 +++ b/dev-lisp/cl-webdav/cl-webdav-0.2.1.ebuild
21 @@ -1,4 +1,4 @@
22 -# Copyright 1999-2017 Gentoo Foundation
23 +# Copyright 1999-2022 Gentoo Authors
24 # Distributed under the terms of the GNU General Public License v2
25
26 EAPI=6
27 @@ -7,13 +7,13 @@ inherit common-lisp-3
28
29 MY_P="v${PV}"
30
31 -DESCRIPTION="A WebDAV server written in Common Lisp."
32 -HOMEPAGE="http://weitz.de/cl-webdav"
33 +DESCRIPTION="A WebDAV server written in Common Lisp"
34 +HOMEPAGE="https://edicl.github.io/cl-webdav/"
35 SRC_URI="https://github.com/edicl/cl-webdav/archive/${MY_P}.tar.gz -> ${P}.tar.gz"
36
37 LICENSE="BSD-2"
38 SLOT="0"
39 -KEYWORDS="~amd64 ~ppc ~sparc ~x86"
40 +KEYWORDS="~amd64 ~ppc ~x86"
41 IUSE="doc"
42
43 RDEPEND="dev-lisp/cl-fad
44 @@ -23,5 +23,8 @@ RDEPEND="dev-lisp/cl-fad
45 src_install() {
46 common-lisp-install-sources *.lisp
47 common-lisp-install-asdf
48 - use doc && dohtml doc/{index.html,dav.png}
49 + if use doc; then
50 + docinto html
51 + dodoc doc/{index.html,dav.png}
52 + fi
53 }