public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Sam James" <sam@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-scheme/guile/
Date: Tue,  8 Jun 2021 03:50:44 +0000 (UTC)	[thread overview]
Message-ID: <1623124231.b7a9bee4c957222fd8e19d636ecc684f18a72566.sam@gentoo> (raw)

commit:     b7a9bee4c957222fd8e19d636ecc684f18a72566
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Tue Jun  8 03:50:31 2021 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Tue Jun  8 03:50:31 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b7a9bee4

dev-scheme/guile: add 3.0.7

Closes: https://bugs.gentoo.org/768915
Signed-off-by: Sam James <sam <AT> gentoo.org>

 dev-scheme/guile/Manifest           |  1 +
 dev-scheme/guile/guile-3.0.7.ebuild | 70 +++++++++++++++++++++++++++++++++++++
 2 files changed, 71 insertions(+)

diff --git a/dev-scheme/guile/Manifest b/dev-scheme/guile/Manifest
index 582ceab3047..bd1f03123ff 100644
--- a/dev-scheme/guile/Manifest
+++ b/dev-scheme/guile/Manifest
@@ -3,3 +3,4 @@ DIST guile-2.0.14.tar.gz 7823099 BLAKE2B e7fa5a4ca19dc4adfcc151350b0ed4e211b8470
 DIST guile-2.2.6.tar.gz 18132818 BLAKE2B 9c2f7737d74d9e56bd9e3f42f287f6b48d9e381dff44ca3ad176ad64adf9b0d200c0b8d34a41e34b15ecf24fa28ddccaa9b033cead25583ff9984b5b7c09ced5 SHA512 6a9264c2e10def5e69a0e755fb28a5f09b98bc202660d742b0ee144d4f486b049dcbce8bcece79c3af9421d43df6eca36adf82798520f75b09303f5e8c2092af
 DIST guile-2.2.7.tar.gz 18129833 BLAKE2B 03c88d753f83e5a797f12808b7b053c9cf6c51f87fb8f3c3db89e54528aafb0e54de2eb951cc622e98fada82a558932bb074a8e739f4175144d4b06ba42f7d60 SHA512 ad11885ffeb7655ef6c8543e67233992dc37bdcf91ed82188e6a144169c6b7d4e31cf7a6d01509c573d00904cb002719b851f71cdf1359a86de401daf613d773
 DIST guile-3.0.4.tar.gz 21619204 BLAKE2B c8639019d8d69618726f40ecd44ed5a5790c34872119e806d4851671c61fd592608d066f4584df4a8db5f971b64ba9089bbbe935176923b413621953202bbc2d SHA512 d707d89ef0f94f74eb4678bcc79dfa99ea068d68a789f47039b5f00c0b8b01ace567a567c0f971fdc0dfc620c11d9536fc003d8d8e049e2cc158ce8b171e1134
+DIST guile-3.0.7.tar.gz 21878396 BLAKE2B 4fae35e21e7f7b47ae9b4cdbafd3b2f660ec4844f838c7eef023b307963b8e92bc30698bd85954523f8fb67edee8de44d19004eb288d3d6656c962e5cb57dc8b SHA512 d7b159e109fd4a08231ef9b961376e71c2872f08d47d82896d96ccac250f5677b35be9a8ce3b9a758bd2ed78d6451e4fdd844408a1baf684256d9bfa09999f3f

diff --git a/dev-scheme/guile/guile-3.0.7.ebuild b/dev-scheme/guile/guile-3.0.7.ebuild
new file mode 100644
index 00000000000..46e23def215
--- /dev/null
+++ b/dev-scheme/guile/guile-3.0.7.ebuild
@@ -0,0 +1,70 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+MAJOR="3.0"
+DESCRIPTION="GNU Ubiquitous Intelligent Language for Extensions"
+HOMEPAGE="https://www.gnu.org/software/guile/"
+SRC_URI="mirror://gnu/guile/${P}.tar.gz"
+
+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/libunistring:0=
+	sys-libs/ncurses:0=
+	sys-libs/readline:0="
+DEPEND="${RDEPEND}"
+BDEPEND="
+	virtual/pkgconfig
+	sys-devel/libtool
+	sys-devel/gettext"
+
+PATCHES=( "${FILESDIR}/${PN}-2.2.3-gentoo-sandbox.patch" )
+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-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 "${D}" -name '*.la' -delete || die
+}


             reply	other threads:[~2021-06-08  3:50 UTC|newest]

Thread overview: 110+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-06-08  3:50 Sam James [this message]
  -- strict thread matches above, loose matches on Subject: below --
2024-09-24  6:32 [gentoo-commits] repo/gentoo:master commit in: dev-scheme/guile/ Sam James
2024-09-24  4:01 Sam James
2024-09-19 18:19 Arsen Arsenović
2024-08-02 18:29 Arsen Arsenović
2024-05-30  2:21 Sam James
2023-02-07 21:49 Maciej Barć
2023-02-07 21:49 Maciej Barć
2023-02-07 21:49 Maciej Barć
2022-10-18  2:47 Sam James
2022-10-18  2:47 Sam James
2022-10-18  2:47 Sam James
2022-05-04  7:07 WANG Xuerui
2022-04-09  2:35 Sam James
2022-02-16 22:38 Maciej Barć
2022-02-16 18:51 Maciej Barć
2022-02-14 20:52 Maciej Barć
2022-02-14  2:07 Sam James
2021-11-19  5:49 Sam James
2021-07-15 22:13 Sergei Trofimovich
2021-06-08  3:52 Sam James
2021-01-06 22:31 Fabian Groffen
2020-12-27 16:32 Fabian Groffen
2020-11-17 19:05 Agostino Sarubbo
2020-11-07 20:37 Sergei Trofimovich
2020-11-07 20:34 Sergei Trofimovich
2020-11-07 20:22 Sergei Trofimovich
2020-11-07  1:23 Sam James
2020-11-06 20:14 Sam James
2020-11-06 20:14 Sam James
2020-10-05 19:06 Sam James
2020-10-05 19:04 Sam James
2020-09-26 21:34 Sergei Trofimovich
2020-09-23 10:32 Agostino Sarubbo
2020-09-23 10:31 Agostino Sarubbo
2020-09-23 10:29 Agostino Sarubbo
2020-09-23 10:24 Agostino Sarubbo
2020-09-20 21:52 Thomas Deutschmann
2020-09-20  4:48 Sam James
2020-09-20  2:46 Sam James
2020-08-06  6:59 Amy Liffey
2020-07-17  7:55 Sergei Trofimovich
2020-03-29 10:27 Sergei Trofimovich
2020-03-15 13:10 Mikle Kolyada
2020-01-27 16:13 Agostino Sarubbo
2019-12-28 12:16 Jeroen Roovers
2019-12-26 14:15 Jeroen Roovers
2019-12-24 14:13 Mikle Kolyada
2019-12-07 19:31 Amy Liffey
2019-11-28 10:58 Agostino Sarubbo
2019-11-28 10:57 Agostino Sarubbo
2019-11-28 10:44 Agostino Sarubbo
2019-11-28 10:42 Agostino Sarubbo
2019-11-26 12:27 Agostino Sarubbo
2019-11-24 15:41 Aaron Bauman
2019-05-05 11:32 Mikle Kolyada
2019-02-02 16:03 Amy Liffey
2018-10-01 12:40 Thomas Deutschmann
2018-08-03 23:23 Mikle Kolyada
2018-06-03 19:48 Mikle Kolyada
2018-05-03  5:49 Mart Raudsepp
2018-04-26  6:07 Jeroen Roovers
2018-04-25 18:49 Matt Turner
2018-04-18 12:38 Amy Liffey
2018-04-16  6:48 Mikle Kolyada
2018-04-15  3:37 Matt Turner
2018-04-08 15:11 Amy Liffey
2018-03-31 17:54 Sergei Trofimovich
2018-03-30 22:04 Sergei Trofimovich
2018-02-13  7:46 Jason Zaman
2018-02-12 20:06 Sergei Trofimovich
2018-02-11 19:13 Thomas Deutschmann
2018-02-10 18:25 Sergei Trofimovich
2018-01-15 11:10 Amy Liffey
2017-08-05 11:51 Amy Liffey
2017-08-05 11:51 Amy Liffey
2017-07-17 11:45 Pacho Ramos
2017-02-27 20:27 Mike Frysinger
2017-02-19 22:17 Sergei Trofimovich
2017-02-19 18:15 Sergei Trofimovich
2017-02-15 13:31 Amy Liffey
2017-01-29 17:28 Fabian Groffen
2016-12-20 10:09 Amy Winston
2016-12-05 11:17 Pacho Ramos
2016-12-04 12:09 Pacho Ramos
2016-11-29 17:40 Markus Meier
2016-11-20 13:45 Agostino Sarubbo
2016-11-17  8:11 Jeroen Roovers
2016-11-14 16:48 Tobias Klausmann
2016-11-07 15:37 Agostino Sarubbo
2016-11-06 19:26 Amy Winston
2016-11-06 19:13 Amy Winston
2016-11-05 13:03 Amy Winston
2016-11-05 12:56 Amy Winston
2016-10-02 20:09 Amy Winston
2016-09-19 13:17 Lars Wendler
2016-08-25  1:41 Benda XU
2016-08-08  6:37 Pacho Ramos
2016-08-05 16:58 Amy Winston
2016-08-05  4:48 Amy Winston
2016-08-04 20:33 Amy Winston
2016-08-04 20:27 Amy Winston
2016-08-04  9:22 Jeroen Roovers
2016-08-04  9:10 Jeroen Roovers
2016-06-12 19:51 Markus Meier
2016-05-30 13:51 Tobias Klausmann
2015-10-12 23:24 Ryan Hill
2015-10-12 23:24 Ryan Hill
2015-10-12 23:24 Ryan Hill
2015-08-16 11:30 Justin Lecher

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1623124231.b7a9bee4c957222fd8e19d636ecc684f18a72566.sam@gentoo \
    --to=sam@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox