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-scheme/guile/
Date: Fri, 01 Apr 2022 11:12:52
Message-Id: 1648807354.ff38794019c2b79a003abeccbb2952c7809f1ddb.ulm@gentoo
1 commit: ff38794019c2b79a003abeccbb2952c7809f1ddb
2 Author: Ulrich Müller <ulm <AT> gentoo <DOT> org>
3 AuthorDate: Fri Apr 1 10:02:34 2022 +0000
4 Commit: Ulrich Müller <ulm <AT> gentoo <DOT> org>
5 CommitDate: Fri Apr 1 10:02:34 2022 +0000
6 URL: https://gitweb.gentoo.org/proj/lisp.git/commit/?id=ff387940
7
8 dev-scheme/guile: Drop 2.9.4
9
10 Signed-off-by: Ulrich Müller <ulm <AT> gentoo.org>
11
12 dev-scheme/guile/guile-2.9.4.ebuild | 87 -------------------------------------
13 1 file changed, 87 deletions(-)
14
15 diff --git a/dev-scheme/guile/guile-2.9.4.ebuild b/dev-scheme/guile/guile-2.9.4.ebuild
16 deleted file mode 100644
17 index 7868f439..00000000
18 --- a/dev-scheme/guile/guile-2.9.4.ebuild
19 +++ /dev/null
20 @@ -1,87 +0,0 @@
21 -# Copyright 1999-2021 Gentoo Authors
22 -# Distributed under the terms of the GNU General Public License v2
23 -
24 -EAPI=7
25 -
26 -inherit autotools flag-o-matic
27 -
28 -MAJOR="3.0"
29 -DESCRIPTION="GNU Ubiquitous Intelligent Language for Extensions"
30 -HOMEPAGE="https://www.gnu.org/software/guile/"
31 -SRC_URI="mirror://gnu-alpha/guile/${P}.tar.gz"
32 -
33 -LICENSE="LGPL-3+"
34 -SLOT="3.0"
35 -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos"
36 -IUSE="debug debug-malloc +deprecated +networking +regex +threads" # upstream recommended +networking
37 -REQUIRED_USE="regex" # workaround for bug 596322
38 -RESTRICT="strip"
39 -
40 -RDEPEND="
41 - >=dev-libs/boehm-gc-7.2:=[threads?]
42 - >=dev-libs/gmp-4.2:=
43 - dev-libs/libffi:=
44 - >=dev-libs/libltdl-1.5.6:=
45 - >=dev-libs/libunistring-0.9.3:0=
46 - sys-libs/ncurses:0=
47 - sys-libs/readline:0="
48 -DEPEND="${RDEPEND}"
49 -BDEPEND="
50 - virtual/pkgconfig
51 - sys-devel/libtool
52 - sys-devel/gettext"
53 -
54 -PATCHES=(
55 - "${FILESDIR}/${PN}-2.2.3-gentoo-sandbox.patch"
56 - "${FILESDIR}/${PN}-2.2.6-tests-00-repl-server.patch"
57 -)
58 -DOCS=( GUILE-VERSION HACKING README )
59 -
60 -src_prepare() {
61 - default
62 - eautoreconf
63 -}
64 -
65 -src_configure() {
66 - # see bug #178499
67 - filter-flags -ftree-vectorize
68 - # see bug #598986
69 - append-cflags $(test-flags-CC -fno-fast-math)
70 -
71 - econf \
72 - --program-suffix="-${MAJOR}" \
73 - --infodir="${EPREFIX}"/usr/share/info/guile-${MAJOR} \
74 - --disable-error-on-warning \
75 - --disable-rpath \
76 - --disable-static \
77 - --enable-posix \
78 - --without-libgmp-prefix \
79 - --without-libiconv-prefix \
80 - --without-libintl-prefix \
81 - --without-libltdl-prefix \
82 - --without-libreadline-prefix \
83 - --without-libunistring-prefix \
84 - $(use_enable debug guile-debug) \
85 - $(use_enable debug-malloc) \
86 - $(use_enable deprecated) \
87 - $(use_enable networking) \
88 - $(use_enable regex) \
89 - $(use_with threads)
90 -}
91 -
92 -src_install() {
93 - default
94 -
95 - # The guile.m4 macro files conflicts with other slots
96 - mv "${ED}"/usr/share/aclocal/guile.m4 "${ED}"/usr/share/aclocal/guile-${MAJOR}.m4 || die "rename of guile.m4 failed"
97 -
98 - # From Novell
99 - # https://bugzilla.novell.com/show_bug.cgi?id=874028#c0
100 - dodir /usr/share/gdb/auto-load/$(get_libdir)
101 - mv "${ED}"/usr/$(get_libdir)/libguile-*-gdb.scm "${ED}"/usr/share/gdb/auto-load/$(get_libdir) || die
102 -
103 - # necessary for registering slib, see bug 206896
104 - keepdir /usr/share/guile/site
105 -
106 - find "${D}" -name '*.la' -delete || die
107 -}