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-sqlite/
Date: Fri, 01 Apr 2022 12:03:56
Message-Id: 1648814497.c41cffb38d03e2a69b7fab06034b3481861f012d.ulm@gentoo
1 commit: c41cffb38d03e2a69b7fab06034b3481861f012d
2 Author: Ulrich Müller <ulm <AT> gentoo <DOT> org>
3 AuthorDate: Fri Apr 1 12:01:37 2022 +0000
4 Commit: Ulrich Müller <ulm <AT> gentoo <DOT> org>
5 CommitDate: Fri Apr 1 12:01:37 2022 +0000
6 URL: https://gitweb.gentoo.org/proj/lisp.git/commit/?id=c41cffb3
7
8 dev-lisp/cl-sqlite: Drop ~sparc because of unkeyworded dependencies
9
10 Minor touchups to the ebuild.
11
12 Signed-off-by: Ulrich Müller <ulm <AT> gentoo.org>
13
14 dev-lisp/cl-sqlite/cl-sqlite-0.2.ebuild | 14 +++++++-------
15 1 file changed, 7 insertions(+), 7 deletions(-)
16
17 diff --git a/dev-lisp/cl-sqlite/cl-sqlite-0.2.ebuild b/dev-lisp/cl-sqlite/cl-sqlite-0.2.ebuild
18 index ab0a673f..cb291192 100644
19 --- a/dev-lisp/cl-sqlite/cl-sqlite-0.2.ebuild
20 +++ b/dev-lisp/cl-sqlite/cl-sqlite-0.2.ebuild
21 @@ -1,18 +1,17 @@
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
28 inherit common-lisp-3
29
30 -DESCRIPTION="A CommonLisp interface to the SQLite embedded relational database engine."
31 -HOMEPAGE="http://common-lisp.net/project/cl-sqlite/"
32 -SRC_URI="http://common-lisp.net/project/${PN}/releases/${P}.tar.gz"
33 +DESCRIPTION="A CommonLisp interface to the SQLite embedded relational database engine"
34 +HOMEPAGE="https://cl-sqlite.common-lisp.dev/"
35 +SRC_URI="https://cl-sqlite.common-lisp.dev/releases/${P}.tar.gz"
36
37 LICENSE="public-domain"
38 SLOT="0"
39 -KEYWORDS="~amd64 ~ppc ~sparc ~x86"
40 -IUSE=""
41 +KEYWORDS="~amd64 ~ppc ~x86"
42
43 RDEPEND="dev-lisp/cffi
44 dev-lisp/iterate
45 @@ -24,5 +23,6 @@ CLSYSTEMS="sqlite sqlite-tests"
46 src_install() {
47 common-lisp-install-sources *.lisp
48 common-lisp-install-asdf
49 - dohtml index.html style.css
50 + docinto html
51 + dodoc index.html style.css
52 }