Gentoo Archives: gentoo-commits

From: "Ulrich Müller" <ulm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-lisp/ecls/
Date: Fri, 05 Nov 2021 10:05:10
Message-Id: 1636097893.38cf3f51fbb7a50015921ced976be2a318d81697.ulm@gentoo
1 commit: 38cf3f51fbb7a50015921ced976be2a318d81697
2 Author: Ulrich Müller <ulm <AT> gentoo <DOT> org>
3 AuthorDate: Fri Nov 5 07:35:20 2021 +0000
4 Commit: Ulrich Müller <ulm <AT> gentoo <DOT> org>
5 CommitDate: Fri Nov 5 07:38:13 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=38cf3f51
7
8 dev-lisp/ecls: Remove old
9
10 Package-Manager: Portage-3.0.28, Repoman-3.0.3
11 Signed-off-by: Ulrich Müller <ulm <AT> gentoo.org>
12
13 dev-lisp/ecls/ecls-21.2.1-r2.ebuild | 87 -------------------------------------
14 1 file changed, 87 deletions(-)
15
16 diff --git a/dev-lisp/ecls/ecls-21.2.1-r2.ebuild b/dev-lisp/ecls/ecls-21.2.1-r2.ebuild
17 deleted file mode 100644
18 index 2c6120e14ed..00000000000
19 --- a/dev-lisp/ecls/ecls-21.2.1-r2.ebuild
20 +++ /dev/null
21 @@ -1,87 +0,0 @@
22 -# Copyright 1999-2021 Gentoo Authors
23 -# Distributed under the terms of the GNU General Public License v2
24 -
25 -EAPI=6
26 -
27 -inherit multilib
28 -
29 -# test phase only works if ecls already installed #516876
30 -RESTRICT="test"
31 -
32 -MY_P=ecl-${PV}
33 -
34 -DESCRIPTION="ECL is an embeddable Common Lisp implementation"
35 -HOMEPAGE="https://common-lisp.net/project/ecl/"
36 -SRC_URI="https://common-lisp.net/project/ecl/static/files/release/${MY_P}.tgz"
37 -
38 -LICENSE="BSD-2 LGPL-2.1+"
39 -SLOT="0/${PV}"
40 -KEYWORDS="~amd64 ~ppc ~sparc ~x86 ~amd64-linux"
41 -IUSE="cxx debug emacs gengc precisegc cpu_flags_x86_sse +threads +unicode +libatomic X"
42 -
43 -CDEPEND="dev-libs/gmp:0=
44 - dev-libs/libffi:=
45 - libatomic? ( dev-libs/libatomic_ops )
46 - >=dev-libs/boehm-gc-7.1[threads?]
47 - >=dev-lisp/asdf-2.33-r3:="
48 -DEPEND="${CDEPEND}
49 - app-text/texi2html
50 - emacs? ( >=app-editors/emacs-23.1:* >=app-eselect/eselect-emacs-1.12 )"
51 -RDEPEND="${CDEPEND}"
52 -
53 -S="${WORKDIR}"/${MY_P}
54 -
55 -PATCHES=(
56 - "${FILESDIR}/${PN}-16.1.3-headers-gentoo.patch"
57 - "${FILESDIR}/${PN}-16.1.3-build.patch"
58 -)
59 -
60 -src_prepare() {
61 - default
62 - cp "${EPREFIX}"/usr/share/common-lisp/source/asdf/build/asdf.lisp contrib/asdf/ || die
63 -}
64 -
65 -src_configure() {
66 - econf \
67 - --with-system-gmp \
68 - --enable-boehm=system \
69 - --enable-longdouble=yes \
70 - --with-dffi \
71 - $(use_with cxx) \
72 - $(use_enable gengc) \
73 - $(use_enable precisegc) \
74 - $(use_with debug debug-cflags) \
75 - $(use_enable libatomic libatomic system) \
76 - $(use_with cpu_flags_x86_sse sse) \
77 - $(use_enable threads) \
78 - $(use_with threads __thread) \
79 - $(use_enable unicode) \
80 - $(use_with unicode unicode-names) \
81 - $(use_with X x)
82 -}
83 -
84 -src_compile() {
85 - if use emacs; then
86 - local ETAGS=$(eselect --brief etags list | sed -ne '/emacs/{p;q}')
87 - [[ -n ${ETAGS} ]] || die "No etags implementation found"
88 - pushd build > /dev/null || die
89 - emake ETAGS=${ETAGS} TAGS
90 - popd > /dev/null
91 - else
92 - touch build/TAGS
93 - fi
94 -
95 - #parallel make fails
96 - emake -j1
97 -}
98 -
99 -src_install() {
100 - emake DESTDIR="${D}" install
101 -
102 - dodoc README.md CHANGELOG
103 - dodoc "${FILESDIR}"/README.Gentoo
104 - pushd build/doc
105 - newman ecl.man ecl.1
106 - newman ecl-config.man ecl-config.1
107 - popd
108 -}