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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 85703139360 for ; Sat, 14 Aug 2021 08:50:06 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B0A64E0B09; Sat, 14 Aug 2021 08:50:05 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 924E5E0B09 for ; Sat, 14 Aug 2021 08:50:05 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 697693409D8 for ; Sat, 14 Aug 2021 08:50:04 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B05F77A2 for ; Sat, 14 Aug 2021 08:50:01 +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: <1628930961.066658bc325064b6d48f7d1fbc7b3342e870e211.ulm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-lisp/hyperspec/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-lisp/hyperspec/hyperspec-7.0-r3.ebuild X-VCS-Directories: dev-lisp/hyperspec/ X-VCS-Committer: ulm X-VCS-Committer-Name: Ulrich Müller X-VCS-Revision: 066658bc325064b6d48f7d1fbc7b3342e870e211 X-VCS-Branch: master Date: Sat, 14 Aug 2021 08:50:01 +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: 6a8f8297-9c2c-4512-8172-c75362571d7c X-Archives-Hash: ade5d83961c5670be4ddd47e6a4810f4 commit: 066658bc325064b6d48f7d1fbc7b3342e870e211 Author: Ulrich Müller gentoo org> AuthorDate: Sat Aug 14 08:49:04 2021 +0000 Commit: Ulrich Müller gentoo org> CommitDate: Sat Aug 14 08:49:21 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=066658bc dev-lisp/hyperspec: Provide a permanent path Closes: https://bugs.gentoo.org/808078 Package-Manager: Portage-3.0.20, Repoman-3.0.3 Signed-off-by: Ulrich Müller gentoo.org> dev-lisp/hyperspec/hyperspec-7.0-r3.ebuild | 35 ++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) diff --git a/dev-lisp/hyperspec/hyperspec-7.0-r3.ebuild b/dev-lisp/hyperspec/hyperspec-7.0-r3.ebuild new file mode 100644 index 00000000000..75065004708 --- /dev/null +++ b/dev-lisp/hyperspec/hyperspec-7.0-r3.ebuild @@ -0,0 +1,35 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit readme.gentoo-r1 + +MY_PV=${PV/./-} +MY_P=HyperSpec-${MY_PV} + +DESCRIPTION="Common Lisp ANSI-standard Hyperspec" +HOMEPAGE="http://www.lispworks.com/reference/HyperSpec/" +SRC_URI="ftp://ftp.lispworks.com/pub/software_tools/reference/${MY_P}.tar.gz" +S="${WORKDIR}" + +LICENSE="HyperSpec" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~sparc ~x86" + +src_install() { + docinto html + dodoc -r HyperSpec/{Body,Data,Front,Graphics,Issues} + dosym html /usr/share/doc/${PF}/HyperSpec + dosym -r /usr/share/doc/${PF} /usr/share/${PN} + + docinto . + dodoc HyperSpec-{README,Legalese}.text + local DOC_CONTENTS="A permanent link to the HyperSpec documentation + is provided at: ${EPREFIX}/usr/share/${PN}" + readme.gentoo_create_doc +} + +pkg_postinst() { + readme.gentoo_print_elog +}