Gentoo Archives: gentoo-commits

From: "José María Alonso" <nimiux@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/lisp:master commit in: app-emacs/slime/
Date: Wed, 30 May 2018 18:49:19
Message-Id: 1527706149.fa8ca32fd5c9374b9e5570e90088d5b170c4ea38.nimiux@gentoo
1 commit: fa8ca32fd5c9374b9e5570e90088d5b170c4ea38
2 Author: Chema Alonso Josa <nimiux <AT> gentoo <DOT> org>
3 AuthorDate: Wed May 30 18:49:09 2018 +0000
4 Commit: José María Alonso <nimiux <AT> gentoo <DOT> org>
5 CommitDate: Wed May 30 18:49:09 2018 +0000
6 URL: https://gitweb.gentoo.org/proj/lisp.git/commit/?id=fa8ca32f
7
8 app-emacs/slime: Drop old
9
10 app-emacs/slime/slime-2.20.ebuild | 71 ---------------------------------------
11 1 file changed, 71 deletions(-)
12
13 diff --git a/app-emacs/slime/slime-2.20.ebuild b/app-emacs/slime/slime-2.20.ebuild
14 deleted file mode 100644
15 index d03c14d9..00000000
16 --- a/app-emacs/slime/slime-2.20.ebuild
17 +++ /dev/null
18 @@ -1,71 +0,0 @@
19 -# Copyright 1999-2018 Gentoo Foundation
20 -# Distributed under the terms of the GNU General Public License v2
21 -
22 -EAPI=6
23 -
24 -inherit elisp
25 -
26 -DESCRIPTION="SLIME, the Superior Lisp Interaction Mode (Extended)"
27 -HOMEPAGE="http://common-lisp.net/project/slime/"
28 -SRC_URI="https://github.com/slime/slime/archive/v${PV}.tar.gz -> ${P}.tar.gz"
29 -
30 -LICENSE="GPL-2 xref? ( xref.lisp )"
31 -SLOT="0"
32 -KEYWORDS="amd64 ~ppc ~sparc ~x86"
33 -IUSE="doc xref"
34 -RESTRICT=test # tests fail to contact sbcl
35 -
36 -RDEPEND="virtual/commonlisp
37 - dev-lisp/asdf"
38 -DEPEND="${RDEPEND}
39 - >=sys-apps/texinfo-5.1
40 - doc? ( virtual/texi2dvi )"
41 -
42 -CLPACKAGE=swank
43 -CLSYSTEMS=swank
44 -SITEFILE=70${PN}-gentoo.el
45 -
46 -PATCHES=(
47 - # Should be fixed in >=app-emacs/slime-2.20
48 - "${FILESDIR}/${PN}-2.20-fix-doc-build.patch"
49 -)
50 -
51 -src_prepare() {
52 - default
53 - # Remove xref.lisp (which is non-free) unless USE flag is set
54 - use xref || rm -f xref.lisp
55 -}
56 -
57 -src_compile() {
58 - elisp-compile *.el || die
59 - BYTECOMPFLAGS="${BYTECOMPFLAGS} -L contrib -l slime" \
60 - elisp-compile contrib/*.el lib/*.el || die
61 -
62 - emake -C doc slime.info || die
63 - if use doc ; then
64 - VARTEXFONTS="${T}"/fonts \
65 - emake -C doc all
66 - fi
67 -}
68 -
69 -src_install() {
70 - ## install core
71 - elisp-install ${PN} *.{el,elc,lisp} || die "Cannot install SLIME core"
72 -
73 - ## install contribs
74 - elisp-install ${PN}/contrib/ contrib/*.{el,elc,lisp,scm,goo} \
75 - || die "Cannot install contribs"
76 -
77 - ## install lib
78 - elisp-install ${PN}/lib/ lib/*.{el,elc} || die "Cannot install libs"
79 -
80 - ## install swank
81 - elisp-install ${PN}/swank/ swank/*.lisp || die "Cannot install swank"
82 -
83 - elisp-site-file-install "${FILESDIR}"/${SITEFILE} || die
84 - ## install docs
85 - dodoc README.md CONTRIBUTING.md NEWS PROBLEMS
86 - newdoc contrib/README.md README-contrib.md
87 - doinfo doc/slime.info
88 - use doc && dodoc doc/*.pdf
89 -}