* [gentoo-commits] gentoo-x86 commit in dev-lang/ruby: ChangeLog ruby-1.8.6_p111.ebuild
@ 2007-12-23 10:37 Richard Brown (rbrown)
0 siblings, 0 replies; 5+ messages in thread
From: Richard Brown (rbrown) @ 2007-12-23 10:37 UTC (permalink / raw
To: gentoo-commits
rbrown 07/12/23 10:37:34
Modified: ChangeLog
Added: ruby-1.8.6_p111.ebuild
Log:
Version bump with patch for bug #199191
(Portage version: 2.1.3.19)
Revision Changes Path
1.311 dev-lang/ruby/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lang/ruby/ChangeLog?rev=1.311&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lang/ruby/ChangeLog?rev=1.311&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lang/ruby/ChangeLog?r1=1.310&r2=1.311
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-lang/ruby/ChangeLog,v
retrieving revision 1.310
retrieving revision 1.311
diff -u -r1.310 -r1.311
--- ChangeLog 14 Dec 2007 10:38:29 -0000 1.310
+++ ChangeLog 23 Dec 2007 10:37:33 -0000 1.311
@@ -1,6 +1,12 @@
# ChangeLog for dev-lang/ruby
# Copyright 2002-2007 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-lang/ruby/ChangeLog,v 1.310 2007/12/14 10:38:29 ulm Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-lang/ruby/ChangeLog,v 1.311 2007/12/23 10:37:33 rbrown Exp $
+
+*ruby-1.8.6_p111 (23 Dec 2007)
+
+ 23 Dec 2007; Richard Brown <rbrown@gentoo.org>
+ +files/ruby-1.8.6_p111-r13657.patch, +ruby-1.8.6_p111.ebuild:
+ Version bump with patch for bug #199191
14 Dec 2007; Ulrich Mueller <ulm@gentoo.org> ruby-1.8.6_p110-r2.ebuild:
Move dependency on (X)Emacs modes to PDEPEND.
1.1 dev-lang/ruby/ruby-1.8.6_p111.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lang/ruby/ruby-1.8.6_p111.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lang/ruby/ruby-1.8.6_p111.ebuild?rev=1.1&content-type=text/plain
Index: ruby-1.8.6_p111.ebuild
===================================================================
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-lang/ruby/ruby-1.8.6_p111.ebuild,v 1.1 2007/12/23 10:37:34 rbrown Exp $
WANT_AUTOCONF="latest"
WANT_AUTOMAKE="latest"
ONIGURUMA="onigd2_5_9"
inherit autotools eutils flag-o-matic multilib versionator
MY_P="${PN}-$(replace_version_separator 3 '-')"
S=${WORKDIR}/${MY_P}
SLOT=$(get_version_component_range 1-2)
MY_SUFFIX=$(delete_version_separator 1 ${SLOT})
DESCRIPTION="An object-oriented scripting language"
HOMEPAGE="http://www.ruby-lang.org/"
SRC_URI="ftp://ftp.ruby-lang.org/pub/ruby/${SLOT}/${MY_P}.tar.bz2
cjk? ( http://www.geocities.jp/kosako3/oniguruma/archive/${ONIGURUMA}.tar.gz )"
LICENSE="Ruby"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~sparc-fbsd ~x86 ~x86-fbsd"
IUSE="cjk debug doc emacs examples ipv6 rubytests socks5 threads tk xemacs"
RDEPEND=">=sys-libs/gdbm-1.8.0
>=sys-libs/readline-4.1
>=sys-libs/ncurses-5.2
socks5? ( >=net-proxy/dante-1.1.13 )
tk? ( dev-lang/tk )
>=dev-ruby/ruby-config-0.3.1
!=dev-lang/ruby-cvs-${SLOT}*
!dev-ruby/rdoc
!dev-ruby/rexml"
DEPEND="${RDEPEND}"
PDEPEND="emacs? ( app-emacs/ruby-mode )
xemacs? ( app-xemacs/ruby-modes )"
PROVIDE="virtual/ruby"
src_unpack() {
unpack ${A}
if use cjk ; then
einfo "Applying ${ONIGURUMA}"
pushd "${WORKDIR}/oniguruma"
econf --with-rubydir="${S}" || die "oniguruma econf failed"
emake $MY_SUFFIX || die "oniguruma emake failed"
popd
fi
cd "${S}/ext/dl"
epatch "${FILESDIR}/${PN}-1.8.6-memory-leak.diff"
cd "${S}"
epatch "${FILESDIR}/${P}-r13657.patch"
# Fix a hardcoded lib path in configure script
sed -i -e "s:\(RUBY_LIB_PREFIX=\"\${prefix}/\)lib:\1$(get_libdir):" \
configure.in || die "sed failed"
eautoreconf
}
src_compile() {
# -fomit-frame-pointer makes ruby segfault, see bug #150413.
filter-flags -fomit-frame-pointer
# In many places aliasing rules are broken; play it safe
# as it's risky with newer compilers to leave it as it is.
append-flags -fno-strict-aliasing
# Socks support via dante
if use socks5 ; then
# Socks support can't be disabled as long as SOCKS_SERVER is
# set and socks library is present, so need to unset
# SOCKS_SERVER in that case.
unset SOCKS_SERVER
fi
# Increase GC_MALLOC_LIMIT if set (default is 8000000)
if [ -n "${RUBY_GC_MALLOC_LIMIT}" ] ; then
append-flags "-DGC_MALLOC_LIMIT=${RUBY_GC_MALLOC_LIMIT}"
fi
econf --program-suffix=$MY_SUFFIX --enable-shared \
$(use_enable socks5 socks) \
$(use_enable doc install-doc) \
$(use_enable threads pthread) \
$(use_enable ipv6) \
$(use_enable debug) \
$(use_with tk) \
${myconf} \
--with-sitedir=/usr/$(get_libdir)/ruby/site_ruby \
|| die "econf failed"
emake EXTLDFLAGS="${LDFLAGS}" || die "emake failed"
}
src_test() {
emake -j1 test || die "make test failed"
elog "Ruby's make test has been run. Ruby also ships with a make check"
elog "that cannot be run until after ruby has been installed."
elog
if use rubytests; then
elog "You have enabled rubytests, so they will be installed to"
elog "/usr/share/${PN}-${SLOT}/test. To run them you must be a user other"
elog "than root, and you must place them into a writeable directory."
elog "Then call: "
elog
elog "ruby -C /location/of/tests runner.rb"
else
elog "Enable the rubytests USE flag to install the make check tests"
fi
}
src_install() {
LD_LIBRARY_PATH="${D}/usr/$(get_libdir)"
RUBYLIB="${S}:${D}/usr/$(get_libdir)/ruby/${SLOT}"
for d in $(find "${S}/ext" -type d) ; do
RUBYLIB="${RUBYLIB}:$d"
done
export LD_LIBRARY_PATH RUBYLIB
emake DESTDIR="${D}" install || die "make install failed"
MINIRUBY=$(echo -e 'include Makefile\ngetminiruby:\n\t@echo $(MINIRUBY)'|make -f - getminiruby)
keepdir $(${MINIRUBY} -rrbconfig -e "print Config::CONFIG['sitelibdir']")
keepdir $(${MINIRUBY} -rrbconfig -e "print Config::CONFIG['sitearchdir']")
if use doc; then
make DESTDIR="${D}" install-doc || die "make install-doc failed"
fi
if use examples; then
dodir /usr/share/doc/${PF}
cp -pPR sample "${D}/usr/share/doc/${PF}"
fi
dosym libruby$MY_SUFFIX$(get_libname ${PV%_*}) /usr/$(get_libdir)/libruby$(get_libname ${PV%.*})
dosym libruby$MY_SUFFIX$(get_libname ${PV%_*}) /usr/$(get_libdir)/libruby$(get_libname ${PV%_*})
dodoc ChangeLog NEWS README* ToDo
if use rubytests; then
dodir /usr/share/${PN}-${SLOT}
cp -pPR test "${D}/usr/share/${PN}-${SLOT}"
fi
}
pkg_postinst() {
ewarn "If you upgrade to >=sys-apps/coreutils-6.7-r1,"
ewarn "you should re-emerge ruby again."
ewarn "See bug #159922 for details"
ewarn
if [[ ! -n $(readlink "${ROOT}"usr/bin/ruby) ]] ; then
"${ROOT}usr/sbin/ruby-config" ruby$MY_SUFFIX
fi
elog
elog "You can change the default ruby interpreter by ${ROOT}usr/sbin/ruby-config"
elog
}
pkg_postrm() {
if [[ ! -n $(readlink "${ROOT}"usr/bin/ruby) ]] ; then
"${ROOT}usr/sbin/ruby-config" ruby$MY_SUFFIX
fi
}
--
gentoo-commits@gentoo.org mailing list
^ permalink raw reply [flat|nested] 5+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-lang/ruby: ChangeLog ruby-1.8.6_p111.ebuild
@ 2007-12-23 13:45 Markus Meier (maekke)
0 siblings, 0 replies; 5+ messages in thread
From: Markus Meier (maekke) @ 2007-12-23 13:45 UTC (permalink / raw
To: gentoo-commits
maekke 07/12/23 13:45:40
Modified: ChangeLog ruby-1.8.6_p111.ebuild
Log:
x86 stable, security bug #199191
(Portage version: 2.1.4_rc11)
Revision Changes Path
1.312 dev-lang/ruby/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lang/ruby/ChangeLog?rev=1.312&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lang/ruby/ChangeLog?rev=1.312&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lang/ruby/ChangeLog?r1=1.311&r2=1.312
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-lang/ruby/ChangeLog,v
retrieving revision 1.311
retrieving revision 1.312
diff -u -r1.311 -r1.312
--- ChangeLog 23 Dec 2007 10:37:33 -0000 1.311
+++ ChangeLog 23 Dec 2007 13:45:40 -0000 1.312
@@ -1,6 +1,9 @@
# ChangeLog for dev-lang/ruby
# Copyright 2002-2007 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-lang/ruby/ChangeLog,v 1.311 2007/12/23 10:37:33 rbrown Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-lang/ruby/ChangeLog,v 1.312 2007/12/23 13:45:40 maekke Exp $
+
+ 23 Dec 2007; Markus Meier <maekke@gentoo.org> ruby-1.8.6_p111.ebuild:
+ x86 stable, security bug #199191
*ruby-1.8.6_p111 (23 Dec 2007)
1.2 dev-lang/ruby/ruby-1.8.6_p111.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lang/ruby/ruby-1.8.6_p111.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lang/ruby/ruby-1.8.6_p111.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lang/ruby/ruby-1.8.6_p111.ebuild?r1=1.1&r2=1.2
Index: ruby-1.8.6_p111.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-lang/ruby/ruby-1.8.6_p111.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- ruby-1.8.6_p111.ebuild 23 Dec 2007 10:37:34 -0000 1.1
+++ ruby-1.8.6_p111.ebuild 23 Dec 2007 13:45:40 -0000 1.2
@@ -1,6 +1,6 @@
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-lang/ruby/ruby-1.8.6_p111.ebuild,v 1.1 2007/12/23 10:37:34 rbrown Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-lang/ruby/ruby-1.8.6_p111.ebuild,v 1.2 2007/12/23 13:45:40 maekke Exp $
WANT_AUTOCONF="latest"
WANT_AUTOMAKE="latest"
@@ -21,7 +21,7 @@
cjk? ( http://www.geocities.jp/kosako3/oniguruma/archive/${ONIGURUMA}.tar.gz )"
LICENSE="Ruby"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~sparc-fbsd ~x86 ~x86-fbsd"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~sparc-fbsd x86 ~x86-fbsd"
IUSE="cjk debug doc emacs examples ipv6 rubytests socks5 threads tk xemacs"
RDEPEND=">=sys-libs/gdbm-1.8.0
--
gentoo-commits@gentoo.org mailing list
^ permalink raw reply [flat|nested] 5+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-lang/ruby: ChangeLog ruby-1.8.6_p111.ebuild
@ 2007-12-23 17:15 Brent Baude (ranger)
0 siblings, 0 replies; 5+ messages in thread
From: Brent Baude (ranger) @ 2007-12-23 17:15 UTC (permalink / raw
To: gentoo-commits
ranger 07/12/23 17:15:53
Modified: ChangeLog ruby-1.8.6_p111.ebuild
Log:
Marking ruby-1.8.6_p111 ppc and ppc64 for bug 199191
(Portage version: 2.1.3.19)
Revision Changes Path
1.313 dev-lang/ruby/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lang/ruby/ChangeLog?rev=1.313&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lang/ruby/ChangeLog?rev=1.313&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lang/ruby/ChangeLog?r1=1.312&r2=1.313
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-lang/ruby/ChangeLog,v
retrieving revision 1.312
retrieving revision 1.313
diff -u -r1.312 -r1.313
--- ChangeLog 23 Dec 2007 13:45:40 -0000 1.312
+++ ChangeLog 23 Dec 2007 17:15:53 -0000 1.313
@@ -1,6 +1,9 @@
# ChangeLog for dev-lang/ruby
# Copyright 2002-2007 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-lang/ruby/ChangeLog,v 1.312 2007/12/23 13:45:40 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-lang/ruby/ChangeLog,v 1.313 2007/12/23 17:15:53 ranger Exp $
+
+ 23 Dec 2007; Brent Baude <ranger@gentoo.org> ruby-1.8.6_p111.ebuild:
+ Marking ruby-1.8.6_p111 ppc and ppc64 for bug 199191
23 Dec 2007; Markus Meier <maekke@gentoo.org> ruby-1.8.6_p111.ebuild:
x86 stable, security bug #199191
1.3 dev-lang/ruby/ruby-1.8.6_p111.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lang/ruby/ruby-1.8.6_p111.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lang/ruby/ruby-1.8.6_p111.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lang/ruby/ruby-1.8.6_p111.ebuild?r1=1.2&r2=1.3
Index: ruby-1.8.6_p111.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-lang/ruby/ruby-1.8.6_p111.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- ruby-1.8.6_p111.ebuild 23 Dec 2007 13:45:40 -0000 1.2
+++ ruby-1.8.6_p111.ebuild 23 Dec 2007 17:15:53 -0000 1.3
@@ -1,6 +1,6 @@
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-lang/ruby/ruby-1.8.6_p111.ebuild,v 1.2 2007/12/23 13:45:40 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-lang/ruby/ruby-1.8.6_p111.ebuild,v 1.3 2007/12/23 17:15:53 ranger Exp $
WANT_AUTOCONF="latest"
WANT_AUTOMAKE="latest"
@@ -21,7 +21,7 @@
cjk? ( http://www.geocities.jp/kosako3/oniguruma/archive/${ONIGURUMA}.tar.gz )"
LICENSE="Ruby"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~sparc-fbsd x86 ~x86-fbsd"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc ~sparc-fbsd x86 ~x86-fbsd"
IUSE="cjk debug doc emacs examples ipv6 rubytests socks5 threads tk xemacs"
RDEPEND=">=sys-libs/gdbm-1.8.0
--
gentoo-commits@gentoo.org mailing list
^ permalink raw reply [flat|nested] 5+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-lang/ruby: ChangeLog ruby-1.8.6_p111.ebuild
@ 2007-12-24 12:13 Raul Porcel (armin76)
0 siblings, 0 replies; 5+ messages in thread
From: Raul Porcel (armin76) @ 2007-12-24 12:13 UTC (permalink / raw
To: gentoo-commits
armin76 07/12/24 12:13:50
Modified: ChangeLog ruby-1.8.6_p111.ebuild
Log:
alpha/ia64/sparc stable wrt #199191
(Portage version: 2.1.3.19)
Revision Changes Path
1.317 dev-lang/ruby/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lang/ruby/ChangeLog?rev=1.317&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lang/ruby/ChangeLog?rev=1.317&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lang/ruby/ChangeLog?r1=1.316&r2=1.317
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-lang/ruby/ChangeLog,v
retrieving revision 1.316
retrieving revision 1.317
diff -u -r1.316 -r1.317
--- ChangeLog 24 Dec 2007 08:37:23 -0000 1.316
+++ ChangeLog 24 Dec 2007 12:13:50 -0000 1.317
@@ -1,6 +1,9 @@
# ChangeLog for dev-lang/ruby
# Copyright 2002-2007 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-lang/ruby/ChangeLog,v 1.316 2007/12/24 08:37:23 graaff Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-lang/ruby/ChangeLog,v 1.317 2007/12/24 12:13:50 armin76 Exp $
+
+ 24 Dec 2007; Raúl Porcel <armin76@gentoo.org> ruby-1.8.6_p111.ebuild:
+ alpha/ia64/sparc stable wrt #199191
24 Dec 2007; Hans de Graaff <graaff@gentoo.org> ruby-1.8.6_p111-r1.ebuild:
Remove now-obsolete warning about coreutils versions, #203156.
1.4 dev-lang/ruby/ruby-1.8.6_p111.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lang/ruby/ruby-1.8.6_p111.ebuild?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lang/ruby/ruby-1.8.6_p111.ebuild?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lang/ruby/ruby-1.8.6_p111.ebuild?r1=1.3&r2=1.4
Index: ruby-1.8.6_p111.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-lang/ruby/ruby-1.8.6_p111.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- ruby-1.8.6_p111.ebuild 23 Dec 2007 17:15:53 -0000 1.3
+++ ruby-1.8.6_p111.ebuild 24 Dec 2007 12:13:50 -0000 1.4
@@ -1,6 +1,6 @@
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-lang/ruby/ruby-1.8.6_p111.ebuild,v 1.3 2007/12/23 17:15:53 ranger Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-lang/ruby/ruby-1.8.6_p111.ebuild,v 1.4 2007/12/24 12:13:50 armin76 Exp $
WANT_AUTOCONF="latest"
WANT_AUTOMAKE="latest"
@@ -21,7 +21,7 @@
cjk? ( http://www.geocities.jp/kosako3/oniguruma/archive/${ONIGURUMA}.tar.gz )"
LICENSE="Ruby"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc ~sparc-fbsd x86 ~x86-fbsd"
+KEYWORDS="alpha ~amd64 ~arm ~hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc ~sparc-fbsd x86 ~x86-fbsd"
IUSE="cjk debug doc emacs examples ipv6 rubytests socks5 threads tk xemacs"
RDEPEND=">=sys-libs/gdbm-1.8.0
--
gentoo-commits@gentoo.org mailing list
^ permalink raw reply [flat|nested] 5+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-lang/ruby: ChangeLog ruby-1.8.6_p111.ebuild
@ 2007-12-26 9:03 Peter Weller (welp)
0 siblings, 0 replies; 5+ messages in thread
From: Peter Weller (welp) @ 2007-12-26 9:03 UTC (permalink / raw
To: gentoo-commits
welp 07/12/26 09:03:07
Modified: ChangeLog ruby-1.8.6_p111.ebuild
Log:
Stable on amd64; bug 199191
(Portage version: 2.1.3.19)
Revision Changes Path
1.318 dev-lang/ruby/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lang/ruby/ChangeLog?rev=1.318&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lang/ruby/ChangeLog?rev=1.318&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lang/ruby/ChangeLog?r1=1.317&r2=1.318
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-lang/ruby/ChangeLog,v
retrieving revision 1.317
retrieving revision 1.318
diff -u -r1.317 -r1.318
--- ChangeLog 24 Dec 2007 12:13:50 -0000 1.317
+++ ChangeLog 26 Dec 2007 09:03:06 -0000 1.318
@@ -1,6 +1,9 @@
# ChangeLog for dev-lang/ruby
# Copyright 2002-2007 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-lang/ruby/ChangeLog,v 1.317 2007/12/24 12:13:50 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-lang/ruby/ChangeLog,v 1.318 2007/12/26 09:03:06 welp Exp $
+
+ 26 Dec 2007; Peter Weller <welp@gentoo.org> ruby-1.8.6_p111.ebuild:
+ Stable on amd64; bug 199191
24 Dec 2007; Raúl Porcel <armin76@gentoo.org> ruby-1.8.6_p111.ebuild:
alpha/ia64/sparc stable wrt #199191
1.5 dev-lang/ruby/ruby-1.8.6_p111.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lang/ruby/ruby-1.8.6_p111.ebuild?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lang/ruby/ruby-1.8.6_p111.ebuild?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lang/ruby/ruby-1.8.6_p111.ebuild?r1=1.4&r2=1.5
Index: ruby-1.8.6_p111.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-lang/ruby/ruby-1.8.6_p111.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- ruby-1.8.6_p111.ebuild 24 Dec 2007 12:13:50 -0000 1.4
+++ ruby-1.8.6_p111.ebuild 26 Dec 2007 09:03:06 -0000 1.5
@@ -1,6 +1,6 @@
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-lang/ruby/ruby-1.8.6_p111.ebuild,v 1.4 2007/12/24 12:13:50 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-lang/ruby/ruby-1.8.6_p111.ebuild,v 1.5 2007/12/26 09:03:06 welp Exp $
WANT_AUTOCONF="latest"
WANT_AUTOMAKE="latest"
@@ -21,7 +21,7 @@
cjk? ( http://www.geocities.jp/kosako3/oniguruma/archive/${ONIGURUMA}.tar.gz )"
LICENSE="Ruby"
-KEYWORDS="alpha ~amd64 ~arm ~hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc ~sparc-fbsd x86 ~x86-fbsd"
+KEYWORDS="alpha amd64 ~arm ~hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc ~sparc-fbsd x86 ~x86-fbsd"
IUSE="cjk debug doc emacs examples ipv6 rubytests socks5 threads tk xemacs"
RDEPEND=">=sys-libs/gdbm-1.8.0
--
gentoo-commits@gentoo.org mailing list
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2007-12-26 9:03 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-12-23 10:37 [gentoo-commits] gentoo-x86 commit in dev-lang/ruby: ChangeLog ruby-1.8.6_p111.ebuild Richard Brown (rbrown)
-- strict thread matches above, loose matches on Subject: below --
2007-12-23 13:45 Markus Meier (maekke)
2007-12-23 17:15 Brent Baude (ranger)
2007-12-24 12:13 Raul Porcel (armin76)
2007-12-26 9:03 Peter Weller (welp)
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox