mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-09-24 04:59:14 -07:00
dev-scheme/guile: drop 3.0.8-r1
Signed-off-by: Sam James <sam@gentoo.org>
This commit is contained in:
@@ -1,4 +1,3 @@
|
||||
DIST guile-1.8.8.tar.gz 3956654 BLAKE2B 4820d635ac2c57526c0c03f3e0e6e4ac4276533ea8db15e6d1b759c33edec094a1a4bdc3e09ccae61f1b271d63565063746feea242a90c18cd575775444a42ef SHA512 ede6feb90cd419d8763feb8c5169275490a653919573c4dfced025b74cf591072b3a10ffb9a3f6ee3fe7b0a0956ffcf434e0859b421455c8349cea56bf427db0
|
||||
DIST guile-2.2.7.tar.xz 10881984 BLAKE2B e2b1fe7cb010371beaaf32f8f173397c90fd291ed7d5835b9d976f37fd133254841b4179bd1e1cd02e604c7befcab6c25f85d20ba0850f96978f7c32ca1fe6d8 SHA512 6f60b3489e26f5ff32b55c89316cdcdbf3ec1f4344726006e445f24098c922c50becdc748f1b66d2b271dc002e409ee6210bf85da779cee1f68c9111b3b5c543
|
||||
DIST guile-3.0.8.tar.xz 6200072 BLAKE2B 6ab6bfd18889d0d263e5e06ff1284ec025437e53541eb8e9632bd345fda34e394b2228661e9319e8a4e87fd8c675605184b290d875c5c1bbc20bf8c4d32a92b7 SHA512 5d1d93e3e22c524ea3c2fe28cf3c343ab8ba99bf5c7b8750c4ebcaf556ae21485fb99e5ccc50c4b07037cdc678552557753d67ef2c93d8c1b62603e1809418f6
|
||||
DIST guile-3.0.9.tar.xz 5750636 BLAKE2B 693f189bda52468d989f27c9482b515b8a14ed814d6e4a9a988d7a03d9789903a568b41c5e3ae524b3a51cc635693cd20245b2017efabb9774be59c298823083 SHA512 a1e47a60a654f26edc57b3a34d943e15a055fc85c3cc764e912be23a80d56534b16f3512d7c7bc426f24a0cac1fcc9556802ac248f10c1fbdde51cd1e24afaf2
|
||||
|
||||
@@ -1,32 +0,0 @@
|
||||
https://src.fedoraproject.org/rpms/guile30/c/47f608ff4988547350e722606890698e3ec59e95?branch=rawhide
|
||||
|
||||
Avoid implicit ints in the guile_cv_localtime_cache check. It cause
|
||||
the check to always fail with strict(er) C99 compilers that do not
|
||||
support implicit int.
|
||||
|
||||
Submitted upstream:
|
||||
|
||||
<https://lists.gnu.org/archive/html/bug-guile/2022-12/msg00017.html>
|
||||
<https://debbugs.gnu.org/cgi/bugreport.cgi?bug=60022>
|
||||
|
||||
--- a/configure.ac
|
||||
+++ b/configure.ac
|
||||
@@ -1086,7 +1086,7 @@ AC_RUN_IFELSE([AC_LANG_SOURCE([[#include <time.h>
|
||||
# include <stdlib.h>
|
||||
#endif
|
||||
extern char **environ;
|
||||
-unset_TZ ()
|
||||
+int unset_TZ ()
|
||||
{
|
||||
char **from, **to;
|
||||
for (to = from = environ; (*to = *from); from++)
|
||||
@@ -1095,7 +1095,7 @@ unset_TZ ()
|
||||
}
|
||||
char TZ_GMT0[] = "TZ=GMT0";
|
||||
char TZ_PST8[] = "TZ=PST8";
|
||||
-main()
|
||||
+int main()
|
||||
{
|
||||
time_t now = time ((time_t *) 0);
|
||||
int hour_GMT0, hour_unset;
|
||||
|
||||
@@ -1,90 +0,0 @@
|
||||
# Copyright 1999-2024 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=8
|
||||
|
||||
inherit autotools
|
||||
|
||||
MAJOR="3.0"
|
||||
DESCRIPTION="GNU Ubiquitous Intelligent Language for Extensions"
|
||||
HOMEPAGE="https://www.gnu.org/software/guile/"
|
||||
SRC_URI="mirror://gnu/guile/${P}.tar.xz"
|
||||
|
||||
LICENSE="LGPL-3+"
|
||||
SLOT="12/3.0-1" # libguile-2.2.so.1 => 2.2-1
|
||||
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos"
|
||||
|
||||
IUSE="debug debug-malloc +deprecated +jit +networking +nls +regex +threads" # upstream recommended +networking +nls
|
||||
REQUIRED_USE="regex" # workaround for bug 596322
|
||||
RESTRICT="strip"
|
||||
|
||||
RDEPEND="
|
||||
>=dev-libs/boehm-gc-7.0[threads?]
|
||||
dev-libs/gmp:=
|
||||
dev-libs/libffi:=
|
||||
dev-libs/libatomic_ops
|
||||
dev-libs/libunistring:=
|
||||
sys-libs/ncurses:=
|
||||
sys-libs/readline:=
|
||||
virtual/libcrypt:="
|
||||
DEPEND="${RDEPEND}"
|
||||
BDEPEND="
|
||||
virtual/pkgconfig
|
||||
dev-build/libtool
|
||||
sys-devel/gettext"
|
||||
|
||||
# guile generates ELF files without use of C or machine code
|
||||
# It's false positive. bug #677600
|
||||
QA_PREBUILT='*[.]go'
|
||||
|
||||
DOCS=( GUILE-VERSION HACKING README )
|
||||
|
||||
PATCHES=(
|
||||
"${FILESDIR}/${PN}-2.2.3-gentoo-sandbox.patch"
|
||||
"${FILESDIR}/${P}-configure-clang16.patch"
|
||||
)
|
||||
|
||||
src_prepare() {
|
||||
default
|
||||
|
||||
# Can drop once guile-3.0.8-configure-clang16.patch merged
|
||||
eautoreconf
|
||||
}
|
||||
|
||||
src_configure() {
|
||||
# see bug #676468
|
||||
mv prebuilt/32-bit-big-endian{,.broken} || die
|
||||
|
||||
econf \
|
||||
--disable-error-on-warning \
|
||||
--disable-rpath \
|
||||
--disable-lto \
|
||||
--enable-posix \
|
||||
--without-libgmp-prefix \
|
||||
--without-libiconv-prefix \
|
||||
--without-libintl-prefix \
|
||||
--without-libreadline-prefix \
|
||||
--without-libunistring-prefix \
|
||||
$(use_enable debug guile-debug) \
|
||||
$(use_enable debug-malloc) \
|
||||
$(use_enable deprecated) \
|
||||
$(use_enable jit) \
|
||||
$(use_enable networking) \
|
||||
$(use_enable nls) \
|
||||
$(use_enable regex) \
|
||||
$(use_with threads)
|
||||
}
|
||||
|
||||
src_install() {
|
||||
default
|
||||
|
||||
# From Novell
|
||||
# https://bugzilla.novell.com/show_bug.cgi?id=874028#c0
|
||||
dodir /usr/share/gdb/auto-load/$(get_libdir)
|
||||
mv "${ED}"/usr/$(get_libdir)/libguile-*-gdb.scm "${ED}"/usr/share/gdb/auto-load/$(get_libdir) || die
|
||||
|
||||
# necessary for registering slib, see bug #206896
|
||||
keepdir /usr/share/guile/site
|
||||
|
||||
find "${ED}" -name '*.la' -delete || die
|
||||
}
|
||||
Reference in New Issue
Block a user