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-darcs/
Date: Sat, 02 Apr 2022 07:39:35
Message-Id: 1648884221.1079959d5d62b44d633aea5eed310c963ae777e9.ulm@gentoo
1 commit: 1079959d5d62b44d633aea5eed310c963ae777e9
2 Author: Ulrich Müller <ulm <AT> gentoo <DOT> org>
3 AuthorDate: Sat Apr 2 07:23:41 2022 +0000
4 Commit: Ulrich Müller <ulm <AT> gentoo <DOT> org>
5 CommitDate: Sat Apr 2 07:23:41 2022 +0000
6 URL: https://gitweb.gentoo.org/proj/lisp.git/commit/?id=1079959d
7
8 dev-lisp/cl-darcs: Remove package
9
10 SRC_URI is gone.
11
12 Signed-off-by: Ulrich Müller <ulm <AT> gentoo.org>
13
14 dev-lisp/cl-darcs/cl-darcs-0.2_p20080314-r1.ebuild | 45 ----------------------
15 1 file changed, 45 deletions(-)
16
17 diff --git a/dev-lisp/cl-darcs/cl-darcs-0.2_p20080314-r1.ebuild b/dev-lisp/cl-darcs/cl-darcs-0.2_p20080314-r1.ebuild
18 deleted file mode 100644
19 index 321f4322..00000000
20 --- a/dev-lisp/cl-darcs/cl-darcs-0.2_p20080314-r1.ebuild
21 +++ /dev/null
22 @@ -1,45 +0,0 @@
23 -# Copyright 1999-2017 Gentoo Foundation
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 client for the darcs version control system written in Common Lisp."
31 -HOMEPAGE="http://common-lisp.net/project/cl-darcs
32 - http://www.cliki.net/CL-DARCS"
33 -SRC_URI="http://common-lisp.net/~sionescu/files/${P}.tar.bz2"
34 -
35 -LICENSE="GPL-2"
36 -SLOT="0"
37 -KEYWORDS="~amd64 ~ppc ~sparc ~x86"
38 -IUSE="doc"
39 -
40 -DEPEND="sys-apps/texinfo
41 - doc? ( virtual/texi2dvi )"
42 -RDEPEND="dev-lisp/split-sequence
43 - dev-lisp/drakma
44 - dev-lisp/puri
45 - dev-lisp/trivial-gray-streams
46 - dev-lisp/ironclad
47 - dev-lisp/flexi-streams
48 - dev-lisp/cl-fad
49 - dev-lisp/cl-ppcre
50 - dev-lisp/cl-difflib"
51 -
52 -src_compile() {
53 - cd doc || die
54 - makeinfo ${PN}.texi -o ${PN}.info || die "Cannot build info docs"
55 - if use doc ; then
56 - VARTEXFONTS="${T}"/fonts \
57 - texi2pdf ${PN}.texi -o ${PN}.pdf || die "Cannot build PDF docs"
58 - fi
59 -}
60 -
61 -src_install() {
62 - common-lisp-install-sources *.lisp
63 - common-lisp-install-asdf
64 - dodoc README
65 - dodoc doc/${PN}.info
66 - use doc && dodoc doc/${PN}.pdf
67 -}