public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in dev-scheme/guile: ChangeLog guile-1.8.3.ebuild
@ 2007-10-17 10:42 Marijn Schouten (hkbst)
  0 siblings, 0 replies; only message in thread
From: Marijn Schouten (hkbst) @ 2007-10-17 10:42 UTC (permalink / raw
  To: gentoo-commits

hkbst       07/10/17 10:42:44

  Modified:             ChangeLog
  Added:                guile-1.8.3.ebuild
  Log:
  Add bugfix release 1.8.3
  (Portage version: 2.1.3.13)

Revision  Changes    Path
1.29                 dev-scheme/guile/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-scheme/guile/ChangeLog?rev=1.29&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-scheme/guile/ChangeLog?rev=1.29&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-scheme/guile/ChangeLog?r1=1.28&r2=1.29

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-scheme/guile/ChangeLog,v
retrieving revision 1.28
retrieving revision 1.29
diff -u -r1.28 -r1.29
--- ChangeLog	15 Oct 2007 14:25:25 -0000	1.28
+++ ChangeLog	17 Oct 2007 10:42:43 -0000	1.29
@@ -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



1.1                  dev-scheme/guile/guile-1.8.3.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-scheme/guile/guile-1.8.3.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-scheme/guile/guile-1.8.3.ebuild?rev=1.1&content-type=text/plain

Index: guile-1.8.3.ebuild
===================================================================
# 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
}



-- 
gentoo-commits@gentoo.org mailing list



^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2007-10-17 10:53 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-10-17 10:42 [gentoo-commits] gentoo-x86 commit in dev-scheme/guile: ChangeLog guile-1.8.3.ebuild Marijn Schouten (hkbst)

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox