commit:     7df4aaeb4d02b0c7e225c8194a5962c5d46507ee
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sat Nov 30 14:06:47 2024 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sat Nov 30 14:06:47 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7df4aaeb

dev-scheme/guile: drop 1.8.8-r5, 2.2.7-r1, 2.2.7-r2, 3.0.10

Signed-off-by: Sam James <sam <AT> gentoo.org>

 dev-scheme/guile/guile-1.8.8-r5.ebuild | 129 ---------------------------------
 dev-scheme/guile/guile-2.2.7-r1.ebuild |  80 --------------------
 dev-scheme/guile/guile-2.2.7-r2.ebuild |  89 -----------------------
 dev-scheme/guile/guile-3.0.10.ebuild   |  81 ---------------------
 4 files changed, 379 deletions(-)

diff --git a/dev-scheme/guile/guile-1.8.8-r5.ebuild 
b/dev-scheme/guile/guile-1.8.8-r5.ebuild
deleted file mode 100644
index 2bb5c4af7553..000000000000
--- a/dev-scheme/guile/guile-1.8.8-r5.ebuild
+++ /dev/null
@@ -1,129 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-MAJOR="1.8"
-
-inherit autotools flag-o-matic elisp-common
-
-DESCRIPTION="GNU Ubiquitous Intelligent Language for Extensions"
-HOMEPAGE="https://www.gnu.org/software/guile/";
-SRC_URI="mirror://gnu/guile/${P}.tar.gz"
-
-LICENSE="LGPL-2.1"
-KEYWORDS="~alpha amd64 arm arm64 hppa ~m68k ~mips ppc ppc64 ~s390 sparc x86 
~amd64-linux ~x86-linux ~ppc-macos ~x64-macos"
-IUSE="debug debug-freelist debug-malloc +deprecated discouraged emacs 
networking nls readline +regex +threads"
-RESTRICT="!regex? ( test )"
-
-# Guile seems to contain some slotting support, /usr/share/guile/ is slotted,
-# but there are lots of collisions. Most in /usr/share/libguile. Therefore
-# I'm slotting this in the same slot as guile-1.6* for now.
-SLOT="12/8"
-
-RDEPEND="
-       >=dev-libs/gmp-4.1:0=
-       dev-libs/libltdl:0=
-       sys-devel/gettext
-       sys-libs/ncurses:0=
-       virtual/libcrypt:=
-       readline? ( sys-libs/readline:0= )
-"
-DEPEND="${RDEPEND}"
-BDEPEND="
-       sys-apps/texinfo
-       dev-build/libtool
-       emacs? ( >=app-editors/emacs-23.1:* )
-"
-
-PATCHES=(
-       "${FILESDIR}"/${P}-fix_guile-config.patch
-       "${FILESDIR}"/${P}-gcc46.patch
-       "${FILESDIR}"/${P}-gcc5.patch
-       "${FILESDIR}"/${P}-makeinfo-5.patch
-       "${FILESDIR}"/${P}-gtexinfo-5.patch
-       "${FILESDIR}"/${P}-readline.patch
-       "${FILESDIR}"/${P}-tinfo.patch
-       "${FILESDIR}"/${P}-sandbox.patch
-       "${FILESDIR}"/${P}-mkdir-mask.patch
-       "${FILESDIR}"/${PN}-1.8.8-texinfo-6.7.patch
-)
-
-DOCS=( AUTHORS ChangeLog GUILE-VERSION HACKING NEWS README THANKS )
-
-src_prepare() {
-       default
-
-       sed \
-               -e "s/AM_CONFIG_HEADER/AC_CONFIG_HEADERS/g" \
-               -e "/AM_PROG_CC_STDC/d" \
-               -i guile-readline/configure.in || die
-
-       mv "${S}"/configure.{in,ac} || die
-       mv "${S}"/guile-readline/configure.{in,ac} || die
-
-       eautoreconf
-}
-
-src_configure() {
-       # See bug #178499.  filter-flags no longer works since the compiler
-       # will vectorize by default when optimizing.
-       append-flags -fno-tree-vectorize -fno-strict-aliasing
-
-       #will fail for me if posix is disabled or without modules -- hkBst
-       myconf=(
-               --disable-error-on-warning
-               --disable-static
-               --enable-posix
-               $(use_enable networking)
-               $(use_enable readline)
-               $(use_enable regex)
-               $(use deprecated || use_enable discouraged)
-               $(use_enable deprecated)
-               $(use_enable emacs elisp)
-               $(use_enable nls)
-               --disable-rpath
-               $(use_enable debug-freelist)
-               $(use_enable debug-malloc)
-               $(use_enable debug guile-debug)
-               $(use_with threads)
-               --with-modules
-       )
-       econf "${myconf[@]}" EMACS=no
-}
-
-src_compile() {
-       emake
-
-       # Above we have disabled the build system's Emacs support;
-       # for USE=emacs we compile (and install) the files manually
-       if use emacs; then
-               cd emacs || die
-               elisp-compile *.el || die
-       fi
-}
-
-src_install() {
-       default
-
-       # texmacs needs this, closing bug #23493
-       dodir /etc/env.d
-       echo "GUILE_LOAD_PATH=\"${EPREFIX}/usr/share/guile/${MAJOR}\"" \
-                > "${ED}"/etc/env.d/50guile || die
-
-       # necessary for registering slib, see bug 206896
-       keepdir /usr/share/guile/site
-
-       if use emacs; then
-               elisp-install ${PN} emacs/*.{el,elc}
-               elisp-make-site-file "50${PN}-gentoo.el"
-       fi
-}
-
-pkg_postinst() {
-       use emacs && elisp-site-regen
-}
-
-pkg_postrm() {
-       use emacs && elisp-site-regen
-}

diff --git a/dev-scheme/guile/guile-2.2.7-r1.ebuild 
b/dev-scheme/guile/guile-2.2.7-r1.ebuild
deleted file mode 100644
index 4de74c077b6e..000000000000
--- a/dev-scheme/guile/guile-2.2.7-r1.ebuild
+++ /dev/null
@@ -1,80 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-MAJOR="2.2"
-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/2.2-1" # libguile-2.2.so.1 => 2.2-1
-KEYWORDS="~alpha amd64 arm arm64 hppa ~loong ~m68k ~mips ppc ppc64 ~riscv 
~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos"
-IUSE="debug debug-malloc +deprecated +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/libltdl:=
-       dev-libs/libunistring:0=
-       sys-libs/ncurses:0=
-       sys-libs/readline:0=
-       virtual/libcrypt:="
-DEPEND="${RDEPEND}"
-BDEPEND="
-       virtual/pkgconfig
-       dev-build/libtool
-       sys-devel/gettext"
-
-PATCHES=(
-       "${FILESDIR}/${PN}-2.2.3-gentoo-sandbox.patch"
-       "${FILESDIR}/${PN}-2.2.7-stack-up.patch"
-)
-
-# guile generates ELF files without use of C or machine code
-# It's a portage's false positive. bug #677600
-QA_PREBUILT='*[.]go'
-
-DOCS=( GUILE-VERSION HACKING README )
-
-src_configure() {
-       # see bug #676468
-       mv prebuilt/32-bit-big-endian{,.broken} || die
-
-       econf \
-               --disable-error-on-warning \
-               --disable-rpath \
-               --disable-static \
-               --enable-posix \
-               --without-libgmp-prefix \
-               --without-libiconv-prefix \
-               --without-libintl-prefix \
-               --without-libltdl-prefix \
-               --without-libreadline-prefix \
-               --without-libunistring-prefix \
-               $(use_enable debug guile-debug) \
-               $(use_enable debug-malloc) \
-               $(use_enable deprecated) \
-               $(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 "${D}" -name '*.la' -delete || die
-}

diff --git a/dev-scheme/guile/guile-2.2.7-r2.ebuild 
b/dev-scheme/guile/guile-2.2.7-r2.ebuild
deleted file mode 100644
index f628bba43bbf..000000000000
--- a/dev-scheme/guile/guile-2.2.7-r2.ebuild
+++ /dev/null
@@ -1,89 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit autotools
-
-MAJOR="2.2"
-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/2.2-1" # libguile-2.2.so.1 => 2.2-1
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~m68k ~mips ~ppc ~ppc64 
~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos"
-IUSE="debug debug-malloc +deprecated +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/libltdl:=
-       dev-libs/libunistring:0=
-       sys-libs/ncurses:0=
-       sys-libs/readline:0=
-       virtual/libcrypt:="
-DEPEND="${RDEPEND}"
-BDEPEND="
-       virtual/pkgconfig
-       dev-build/libtool
-       sys-devel/gettext"
-
-PATCHES=(
-       "${FILESDIR}/${PN}-2.2.3-gentoo-sandbox.patch"
-       "${FILESDIR}/${PN}-2.2.7-stack-up.patch"
-       # Modern C bug in round.m4
-       # /bin/sh bug in timegm.m4
-       "${FILESDIR}"/${PN}-2.2.7-fix-buggy-gnulib.patch
-)
-
-# guile generates ELF files without use of C or machine code
-# It's a portage's false positive. bug #677600
-QA_PREBUILT='*[.]go'
-
-DOCS=( GUILE-VERSION HACKING README )
-
-src_prepare() {
-       default
-       eautoreconf
-}
-
-src_configure() {
-       # see bug #676468
-       mv prebuilt/32-bit-big-endian{,.broken} || die
-
-       econf \
-               --disable-error-on-warning \
-               --disable-rpath \
-               --enable-posix \
-               --without-libgmp-prefix \
-               --without-libiconv-prefix \
-               --without-libintl-prefix \
-               --without-libltdl-prefix \
-               --without-libreadline-prefix \
-               --without-libunistring-prefix \
-               $(use_enable debug guile-debug) \
-               $(use_enable debug-malloc) \
-               $(use_enable deprecated) \
-               $(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 "${D}" -name '*.la' -delete || die
-}

diff --git a/dev-scheme/guile/guile-3.0.10.ebuild 
b/dev-scheme/guile/guile-3.0.10.ebuild
deleted file mode 100644
index 206623bcb015..000000000000
--- a/dev-scheme/guile/guile-3.0.10.ebuild
+++ /dev/null
@@ -1,81 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-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 ~loong ~m68k ~mips ~ppc ~ppc64 
~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~arm64-macos ~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=( ABOUT-NLS AUTHORS ChangeLog GUILE-VERSION HACKING NEWS README THANKS )
-
-PATCHES=( "${FILESDIR}"/${PN}-2.2.3-gentoo-sandbox.patch )
-
-src_configure() {
-       # see bug #676468
-       mv prebuilt/32-bit-big-endian{,.broken} || die
-
-       local -a myconf=(
-               --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)
-       )
-       econf "${myconf[@]}"
-}
-
-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
-}

Reply via email to