diff options
author | Marijn Schouten <hkbst@gentoo.org> | 2007-10-17 10:42:44 +0000 |
---|---|---|
committer | Marijn Schouten <hkbst@gentoo.org> | 2007-10-17 10:42:44 +0000 |
commit | 85ee07e636b520a9adade6e8d97167285bbe5f40 (patch) | |
tree | 40171583b68609960a13e4841184e60be7dd47d2 /dev-scheme | |
parent | Stable on amd64 wrt bug #195932 (diff) | |
download | gentoo-2-85ee07e636b520a9adade6e8d97167285bbe5f40.tar.gz gentoo-2-85ee07e636b520a9adade6e8d97167285bbe5f40.tar.bz2 gentoo-2-85ee07e636b520a9adade6e8d97167285bbe5f40.zip |
Add bugfix release 1.8.3
(Portage version: 2.1.3.13)
Diffstat (limited to 'dev-scheme')
-rw-r--r-- | dev-scheme/guile/ChangeLog | 26 | ||||
-rw-r--r-- | dev-scheme/guile/files/digest-guile-1.8.3 | 3 | ||||
-rw-r--r-- | dev-scheme/guile/guile-1.8.3.ebuild | 63 |
3 files changed, 91 insertions, 1 deletions
diff --git a/dev-scheme/guile/ChangeLog b/dev-scheme/guile/ChangeLog index 68d56c35340b..002286743731 100644 --- a/dev-scheme/guile/ChangeLog +++ b/dev-scheme/guile/ChangeLog @@ -1,6 +1,30 @@ # ChangeLog for dev-scheme/guile # Copyright 2002-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-scheme/guile/ChangeLog,v 1.28 2007/10/15 14:25:25 corsair Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-scheme/guile/ChangeLog,v 1.29 2007/10/17 10:42:43 hkbst Exp $ + +*guile-1.8.3 (17 Oct 2007) + + 17 Oct 2007; Marijn Schouten <hkBst@gentoo.org> +guile-1.8.3.ebuild: + Add bugfix release 1.8.3: + - New modules (see the manual for details) + + - `(srfi srfi-35)' + - `(srfi srfi-37)' + + - Bugs fixed + + - The `(ice-9 slib)' module now works as expected + - Expressions like "(set! 'x #t)" no longer yield a crash + - Warnings about duplicate bindings now go to stderr + - A memory leak in `make-socket-address' was fixed + - Alignment issues (e.g., on SPARC) in network routines were fixed + - A threading issue that showed up at least on NetBSD was fixed + - Build problems on Solaris and IRIX fixed + + - Implementation improvements + + - The reader is now faster, which reduces startup time + - Procedures returned by `record-accessor' and `record-modifier' are faster 15 Oct 2007; Markus Rothe <corsair@gentoo.org> guile-1.8.2.ebuild: Stable on ppc64 diff --git a/dev-scheme/guile/files/digest-guile-1.8.3 b/dev-scheme/guile/files/digest-guile-1.8.3 new file mode 100644 index 000000000000..0af9cf12e8d9 --- /dev/null +++ b/dev-scheme/guile/files/digest-guile-1.8.3 @@ -0,0 +1,3 @@ +MD5 7fd016924e1bc3e273f4009a080942de guile-1.8.3.tar.gz 3871450 +RMD160 6255e99dbd175700dba6b861aaa64631c5bd6d49 guile-1.8.3.tar.gz 3871450 +SHA256 2ab59099cf2d46f57cf5421c9b84aa85f61961640046e8066c6b321257517796 guile-1.8.3.tar.gz 3871450 diff --git a/dev-scheme/guile/guile-1.8.3.ebuild b/dev-scheme/guile/guile-1.8.3.ebuild new file mode 100644 index 000000000000..f66908b63c5a --- /dev/null +++ b/dev-scheme/guile/guile-1.8.3.ebuild @@ -0,0 +1,63 @@ +# Copyright 1999-2007 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-scheme/guile/guile-1.8.3.ebuild,v 1.1 2007/10/17 10:42:43 hkbst Exp $ + +inherit eutils autotools flag-o-matic + +DESCRIPTION="Scheme interpreter" +HOMEPAGE="http://www.gnu.org/software/guile/" +SRC_URI="mirror://gnu/guile/${P}.tar.gz" + +LICENSE="GPL-2" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd" + +DEPEND=">=dev-libs/gmp-4.1 >=sys-devel/libtool-1.5.6 sys-devel/gettext" + +# 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" +MAJOR="1.8" + +IUSE="networking regex discouraged deprecated elisp nls debug-freelist debug-malloc debug threads" + +src_unpack() { + unpack ${A} + + sed "s_sleep 999_sleep 1_" -i "${S}"/test-suite/tests/popen.test +} + +src_compile() { + # see bug #178499 + filter-flags -ftree-vectorize + +#will fail for me if posix is disabled or without modules -- hkBst + econf \ + --disable-error-on-warning \ + --disable-static \ + --enable-posix \ + $(use_enable networking) \ + $(use_enable regex) \ + $(use deprecated || use_enable discouraged) \ + $(use_enable deprecated) \ + $(use_enable elisp) \ + $(use_enable nls) \ + --disable-rpath \ + $(use_enable debug-freelist) \ + $(use_enable debug-malloc) \ + $(use_enable debug guile-debug) \ + $(use_with threads) \ + --with-modules + + emake || die "make failed" +} + +src_install() { + einstall || die "install failed" + + dodoc AUTHORS ChangeLog GUILE-VERSION HACKING NEWS README SNAPSHOTS THANKS + + # texmacs needs this, closing bug #23493 + dodir /etc/env.d + echo "GUILE_LOAD_PATH=\"/usr/share/guile/${MAJOR}\"" > "${D}"/etc/env.d/50guile +} |