* [gentoo-commits] gentoo-x86 commit in dev-lang/gnu-smalltalk: ChangeLog gnu-smalltalk-3.2.4.ebuild
@ 2011-10-09 23:25 Luis F. Araujo (araujo)
0 siblings, 0 replies; 2+ messages in thread
From: Luis F. Araujo (araujo) @ 2011-10-09 23:25 UTC (permalink / raw
To: gentoo-commits
araujo 11/10/09 23:25:33
Modified: ChangeLog
Added: gnu-smalltalk-3.2.4.ebuild
Log:
Version update. Fix: bug#364731 , bug#364733, bug#381609
(Portage version: 2.1.10.24/cvs/Linux x86_64)
Revision Changes Path
1.47 dev-lang/gnu-smalltalk/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/gnu-smalltalk/ChangeLog?rev=1.47&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/gnu-smalltalk/ChangeLog?rev=1.47&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/gnu-smalltalk/ChangeLog?r1=1.46&r2=1.47
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-lang/gnu-smalltalk/ChangeLog,v
retrieving revision 1.46
retrieving revision 1.47
diff -u -r1.46 -r1.47
--- ChangeLog 21 Dec 2010 01:04:11 -0000 1.46
+++ ChangeLog 9 Oct 2011 23:25:33 -0000 1.47
@@ -1,6 +1,14 @@
# ChangeLog for dev-lang/gnu-smalltalk
-# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-lang/gnu-smalltalk/ChangeLog,v 1.46 2010/12/21 01:04:11 araujo Exp $
+# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-lang/gnu-smalltalk/ChangeLog,v 1.47 2011/10/09 23:25:33 araujo Exp $
+
+*gnu-smalltalk-3.2.4 (09 Oct 2011)
+
+ 09 Oct 2011; <araujo@gentoo.org> +gnu-smalltalk-3.2.4.ebuild,
+ +files/SequenceableCollection-size-3.2.4.patch:
+ Fix: dev-lang/gnu-smalltalk should DEPEND on app-arch/zip (bug#364731).
+ dev-lang/gnu-smalltalk crashes by SequenceableCollection new (bug#364733).
+ dev-lang/gnu-smalltalk-3.2.4 has been released (bug#381609)
*gnu-smalltalk-3.2.3 (21 Dec 2010)
1.1 dev-lang/gnu-smalltalk/gnu-smalltalk-3.2.4.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/gnu-smalltalk/gnu-smalltalk-3.2.4.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/gnu-smalltalk/gnu-smalltalk-3.2.4.ebuild?rev=1.1&content-type=text/plain
Index: gnu-smalltalk-3.2.4.ebuild
===================================================================
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-lang/gnu-smalltalk/gnu-smalltalk-3.2.4.ebuild,v 1.1 2011/10/09 23:25:33 araujo Exp $
EAPI="0"
inherit elisp-common flag-o-matic eutils
DESCRIPTION="GNU Smalltalk"
HOMEPAGE="http://smalltalk.gnu.org"
SRC_URI="http://ftp.gnu.org/gnu/smalltalk/smalltalk-${PV}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="tk readline emacs gtk gmp"
DEPEND="app-arch/zip
sys-libs/gdbm
sys-apps/debianutils
dev-libs/libsigsegv
virtual/libffi
emacs? ( virtual/emacs )
readline? ( sys-libs/readline )
tk? ( dev-lang/tk )
gtk? ( =x11-libs/gtk+-2* )
gmp? ( dev-libs/gmp )"
RDEPEND=""
S="${WORKDIR}/smalltalk-${PV}"
SITEFILE=50gnu-smalltalk-gentoo.el
src_unpack() {
unpack ${A}
cd "${S}"
epatch "${FILESDIR}"/SequenceableCollection-size-3.2.4.patch
}
src_compile() {
replace-flags '-O3' '-O2'
econf \
--libdir=/usr/$(get_libdir) \
--with-system-libsigsegv \
--with-system-libffi \
--with-system-libltdl \
$(use_with emacs emacs) \
$(use_with readline readline) \
$(use_with gmp gmp) \
$(use_with tk tcl /usr/$(get_libdir)) \
$(use_with tk tk /usr/$(get_libdir)) \
$(use_enable gtk gtk)
emake || die "emake failed"
use emacs && elisp-compile *.el
}
src_install() {
emake DESTDIR="${D}" install || die
dodoc AUTHORS COPYING* ChangeLog NEWS README THANKS TODO
if use emacs; then
elisp-install "${PN}" *.el *.elc
elisp-site-file-install "${FILESDIR}/${SITEFILE}"
fi
fperms 0444 /usr/share/smalltalk/packages.xml
}
pkg_postinst() {
use emacs && elisp-site-regen
}
pkg_postrm() {
use emacs && elisp-site-regen
}
^ permalink raw reply [flat|nested] 2+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-lang/gnu-smalltalk: ChangeLog gnu-smalltalk-3.2.4.ebuild
@ 2011-10-10 21:29 Luis F. Araujo (araujo)
0 siblings, 0 replies; 2+ messages in thread
From: Luis F. Araujo (araujo) @ 2011-10-10 21:29 UTC (permalink / raw
To: gentoo-commits
araujo 11/10/10 21:29:46
Modified: ChangeLog gnu-smalltalk-3.2.4.ebuild
Log:
Use EAPI=3. Include src_prepare and src_configure
(Portage version: 2.1.10.25/cvs/Linux x86_64)
Revision Changes Path
1.48 dev-lang/gnu-smalltalk/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/gnu-smalltalk/ChangeLog?rev=1.48&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/gnu-smalltalk/ChangeLog?rev=1.48&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/gnu-smalltalk/ChangeLog?r1=1.47&r2=1.48
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-lang/gnu-smalltalk/ChangeLog,v
retrieving revision 1.47
retrieving revision 1.48
diff -u -r1.47 -r1.48
--- ChangeLog 9 Oct 2011 23:25:33 -0000 1.47
+++ ChangeLog 10 Oct 2011 21:29:46 -0000 1.48
@@ -1,10 +1,13 @@
# ChangeLog for dev-lang/gnu-smalltalk
# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-lang/gnu-smalltalk/ChangeLog,v 1.47 2011/10/09 23:25:33 araujo Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-lang/gnu-smalltalk/ChangeLog,v 1.48 2011/10/10 21:29:46 araujo Exp $
+
+ 10 Oct 2011; Luis F. Araujo <araujo@gentoo.org> gnu-smalltalk-3.2.4.ebuild:
+ Use newer EAPI features. Add EAPI=3
*gnu-smalltalk-3.2.4 (09 Oct 2011)
- 09 Oct 2011; <araujo@gentoo.org> +gnu-smalltalk-3.2.4.ebuild,
+ 09 Oct 2011; Luis F. Araujo <araujo@gentoo.org> +gnu-smalltalk-3.2.4.ebuild,
+files/SequenceableCollection-size-3.2.4.patch:
Fix: dev-lang/gnu-smalltalk should DEPEND on app-arch/zip (bug#364731).
dev-lang/gnu-smalltalk crashes by SequenceableCollection new (bug#364733).
1.2 dev-lang/gnu-smalltalk/gnu-smalltalk-3.2.4.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/gnu-smalltalk/gnu-smalltalk-3.2.4.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/gnu-smalltalk/gnu-smalltalk-3.2.4.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/gnu-smalltalk/gnu-smalltalk-3.2.4.ebuild?r1=1.1&r2=1.2
Index: gnu-smalltalk-3.2.4.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-lang/gnu-smalltalk/gnu-smalltalk-3.2.4.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- gnu-smalltalk-3.2.4.ebuild 9 Oct 2011 23:25:33 -0000 1.1
+++ gnu-smalltalk-3.2.4.ebuild 10 Oct 2011 21:29:46 -0000 1.2
@@ -1,8 +1,8 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-lang/gnu-smalltalk/gnu-smalltalk-3.2.4.ebuild,v 1.1 2011/10/09 23:25:33 araujo Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-lang/gnu-smalltalk/gnu-smalltalk-3.2.4.ebuild,v 1.2 2011/10/10 21:29:46 araujo Exp $
-EAPI="0"
+EAPI="3"
inherit elisp-common flag-o-matic eutils
@@ -30,13 +30,11 @@
SITEFILE=50gnu-smalltalk-gentoo.el
-src_unpack() {
- unpack ${A}
- cd "${S}"
+src_prepare() {
epatch "${FILESDIR}"/SequenceableCollection-size-3.2.4.patch
}
-src_compile() {
+src_configure() {
replace-flags '-O3' '-O2'
econf \
--libdir=/usr/$(get_libdir) \
@@ -49,6 +47,9 @@
$(use_with tk tcl /usr/$(get_libdir)) \
$(use_with tk tk /usr/$(get_libdir)) \
$(use_enable gtk gtk)
+}
+
+src_compile() {
emake || die "emake failed"
use emacs && elisp-compile *.el
}
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2011-10-10 21:29 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-10-10 21:29 [gentoo-commits] gentoo-x86 commit in dev-lang/gnu-smalltalk: ChangeLog gnu-smalltalk-3.2.4.ebuild Luis F. Araujo (araujo)
-- strict thread matches above, loose matches on Subject: below --
2011-10-09 23:25 Luis F. Araujo (araujo)
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox