From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 511E115808B for ; Sat, 2 Apr 2022 15:35:07 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 8772AE0858; Sat, 2 Apr 2022 15:35:00 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 2266FE0858 for ; Sat, 2 Apr 2022 15:35:00 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id D65DF34179D for ; Sat, 2 Apr 2022 15:34:58 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 5008C380 for ; Sat, 2 Apr 2022 15:34:56 +0000 (UTC) From: "Ulrich Müller" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Ulrich Müller" Message-ID: <1648913380.c41235f1fd2356d2d97591eee50f5b3323de0e8b.ulm@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: ulm X-VCS-Committer-Name: Ulrich Müller X-VCS-Revision: c41235f1fd2356d2d97591eee50f5b3323de0e8b X-VCS-Branch: master Date: Sat, 2 Apr 2022 15:34:56 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 1fc7a7e9-f1cc-498e-96a2-dc6de1e5494f X-Archives-Hash: 56e4174995425c5f2000182145686a55 commit: c41235f1fd2356d2d97591eee50f5b3323de0e8b Author: Ulrich Müller gentoo org> AuthorDate: Sat Apr 2 15:29:40 2022 +0000 Commit: Ulrich Müller gentoo 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 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 }