public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in dev-ruby/rails: ChangeLog rails-2.0.2.ebuild
@ 2007-12-18  7:15 Hans de Graaff (graaff)
  0 siblings, 0 replies; 11+ messages in thread
From: Hans de Graaff (graaff) @ 2007-12-18  7:15 UTC (permalink / raw
  To: gentoo-commits

graaff      07/12/18 07:15:19

  Modified:             ChangeLog
  Added:                rails-2.0.2.ebuild
  Log:
  Version bump for Rails 2.0.2
  (Portage version: 2.1.3.19)

Revision  Changes    Path
1.95                 dev-ruby/rails/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ruby/rails/ChangeLog?rev=1.95&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ruby/rails/ChangeLog?rev=1.95&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ruby/rails/ChangeLog?r1=1.94&r2=1.95

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/rails/ChangeLog,v
retrieving revision 1.94
retrieving revision 1.95
diff -u -r1.94 -r1.95
--- ChangeLog	1 Dec 2007 22:48:48 -0000	1.94
+++ ChangeLog	18 Dec 2007 07:15:18 -0000	1.95
@@ -1,6 +1,11 @@
 # ChangeLog for dev-ruby/rails
 # Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rails/ChangeLog,v 1.94 2007/12/01 22:48:48 angelos Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rails/ChangeLog,v 1.95 2007/12/18 07:15:18 graaff Exp $
+
+*rails-2.0.2 (18 Dec 2007)
+
+  18 Dec 2007; Hans de Graaff <graaff@gentoo.org> +rails-2.0.2.ebuild:
+  Version bump for Rails 2.0.2
 
   01 Dec 2007; Christoph Mende <angelos@gentoo.org> rails-1.2.6.ebuild:
   Stable on amd64 wrt bug #200159



1.1                  dev-ruby/rails/rails-2.0.2.ebuild

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

Index: rails-2.0.2.ebuild
===================================================================
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rails/rails-2.0.2.ebuild,v 1.1 2007/12/18 07:15:18 graaff Exp $

inherit ruby gems

DESCRIPTION="ruby on rails is a web-application and persistance framework"
HOMEPAGE="http://www.rubyonrails.org"

LICENSE="MIT"
SLOT="2"
KEYWORDS="~amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"

IUSE="fastcgi"
DEPEND=">=dev-lang/ruby-1.8.5
	>=app-admin/eselect-rails-0.11
	>=dev-ruby/rake-0.7.2
	=dev-ruby/activerecord-2.0.2
	=dev-ruby/activeresource-2.0.2
	=dev-ruby/activesupport-2.0.2
	=dev-ruby/actionmailer-2.0.2
	=dev-ruby/actionpack-2.0.2
	!<dev-ruby/rails-1.1.6-r1"

RDEPEND="${DEPEND}
	fastcgi? ( >=dev-ruby/ruby-fcgi-0.8.6 )"

src_install() {
	gems_src_install
	# Rename slotted files that may clash so that eselect can handle
	# them
	mv ${D}/usr/bin/rails ${D}/usr/bin/rails-${PV}
	mv ${D}/${GEMSDIR}/bin/rails ${D}/${GEMSDIR}/bin/rails-${PV}
}

pkg_postinst() {
	einfo "To select between slots of rails, use:"
	einfo "\teselect rails"
	# Bring users to rails 2.0.x by default when updating
	eselect rails update 2

	einfo "All database USE flags have been moved to dev-ruby/activerecord"
}

pkg_postrm() {
	# Drop users back to rails 1.2.x when they remove 2.0.x
	eselect rails update 1.2
}



-- 
gentoo-commits@gentoo.org mailing list



^ permalink raw reply	[flat|nested] 11+ messages in thread

* [gentoo-commits] gentoo-x86 commit in dev-ruby/rails: ChangeLog rails-2.0.2.ebuild
@ 2007-12-18  7:18 Hans de Graaff (graaff)
  0 siblings, 0 replies; 11+ messages in thread
From: Hans de Graaff (graaff) @ 2007-12-18  7:18 UTC (permalink / raw
  To: gentoo-commits

graaff      07/12/18 07:18:13

  Modified:             ChangeLog rails-2.0.2.ebuild
  Log:
  Fix quoting; change einfo into ewarn
  (Portage version: 2.1.3.19)

Revision  Changes    Path
1.96                 dev-ruby/rails/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ruby/rails/ChangeLog?rev=1.96&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ruby/rails/ChangeLog?rev=1.96&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ruby/rails/ChangeLog?r1=1.95&r2=1.96

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/rails/ChangeLog,v
retrieving revision 1.95
retrieving revision 1.96
diff -u -r1.95 -r1.96
--- ChangeLog	18 Dec 2007 07:15:18 -0000	1.95
+++ ChangeLog	18 Dec 2007 07:18:13 -0000	1.96
@@ -1,6 +1,10 @@
 # ChangeLog for dev-ruby/rails
 # Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rails/ChangeLog,v 1.95 2007/12/18 07:15:18 graaff Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rails/ChangeLog,v 1.96 2007/12/18 07:18:13 graaff Exp $
+
+  18 Dec 2007; Hans de Graaff <graaff@gentoo.org> rails-2.0.2.ebuild:
+  Fix quoting; database USE flags have moved to dev-ruby/activerecord, make this
+  a warn instead of an info message.
 
 *rails-2.0.2 (18 Dec 2007)
 



1.2                  dev-ruby/rails/rails-2.0.2.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ruby/rails/rails-2.0.2.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ruby/rails/rails-2.0.2.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ruby/rails/rails-2.0.2.ebuild?r1=1.1&r2=1.2

Index: rails-2.0.2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/rails/rails-2.0.2.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- rails-2.0.2.ebuild	18 Dec 2007 07:15:18 -0000	1.1
+++ rails-2.0.2.ebuild	18 Dec 2007 07:18:13 -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-ruby/rails/rails-2.0.2.ebuild,v 1.1 2007/12/18 07:15:18 graaff Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rails/rails-2.0.2.ebuild,v 1.2 2007/12/18 07:18:13 graaff Exp $
 
 inherit ruby gems
 
@@ -29,8 +29,8 @@
 	gems_src_install
 	# Rename slotted files that may clash so that eselect can handle
 	# them
-	mv ${D}/usr/bin/rails ${D}/usr/bin/rails-${PV}
-	mv ${D}/${GEMSDIR}/bin/rails ${D}/${GEMSDIR}/bin/rails-${PV}
+	mv "${D}/usr/bin/rails" "${D}/usr/bin/rails-${PV}"
+	mv "${D}/${GEMSDIR}/bin/rails" "${D}/${GEMSDIR}/bin/rails-${PV}"
 }
 
 pkg_postinst() {
@@ -39,7 +39,7 @@
 	# Bring users to rails 2.0.x by default when updating
 	eselect rails update 2
 
-	einfo "All database USE flags have been moved to dev-ruby/activerecord"
+	ewarn "All database USE flags have been moved to dev-ruby/activerecord"
 }
 
 pkg_postrm() {



-- 
gentoo-commits@gentoo.org mailing list



^ permalink raw reply	[flat|nested] 11+ messages in thread

* [gentoo-commits] gentoo-x86 commit in dev-ruby/rails: ChangeLog rails-2.0.2.ebuild
@ 2008-01-11  2:32 Joshua Nichols (nichoj)
  0 siblings, 0 replies; 11+ messages in thread
From: Joshua Nichols (nichoj) @ 2008-01-11  2:32 UTC (permalink / raw
  To: gentoo-commits

nichoj      08/01/11 02:32:18

  Modified:             ChangeLog rails-2.0.2.ebuild
  Log:
  Updated dependencies not to relay on specific version, and allowing for later revisions (ie change =dev-ruby/activerecord-2.0.2 to ~dev-ruby/activerecord-2.0.2.
  (Portage version: 2.1.3.19)

Revision  Changes    Path
1.97                 dev-ruby/rails/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ruby/rails/ChangeLog?rev=1.97&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ruby/rails/ChangeLog?rev=1.97&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ruby/rails/ChangeLog?r1=1.96&r2=1.97

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/rails/ChangeLog,v
retrieving revision 1.96
retrieving revision 1.97
diff -u -r1.96 -r1.97
--- ChangeLog	18 Dec 2007 07:18:13 -0000	1.96
+++ ChangeLog	11 Jan 2008 02:32:17 -0000	1.97
@@ -1,6 +1,11 @@
 # ChangeLog for dev-ruby/rails
-# Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rails/ChangeLog,v 1.96 2007/12/18 07:18:13 graaff Exp $
+# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rails/ChangeLog,v 1.97 2008/01/11 02:32:17 nichoj Exp $
+
+  04 Jan 2008; <nichoj@gentoo.org> ChangeLog:
+  Updated dependencies not to relay on specific version, and allowing for
+  later revisions (ie change =dev-ruby/activerecord-2.0.2 to
+  ~dev-ruby/activerecord-2.0.2.
 
   18 Dec 2007; Hans de Graaff <graaff@gentoo.org> rails-2.0.2.ebuild:
   Fix quoting; database USE flags have moved to dev-ruby/activerecord, make this



1.3                  dev-ruby/rails/rails-2.0.2.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ruby/rails/rails-2.0.2.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ruby/rails/rails-2.0.2.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ruby/rails/rails-2.0.2.ebuild?r1=1.2&r2=1.3

Index: rails-2.0.2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/rails/rails-2.0.2.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- rails-2.0.2.ebuild	18 Dec 2007 07:18:13 -0000	1.2
+++ rails-2.0.2.ebuild	11 Jan 2008 02:32:17 -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-ruby/rails/rails-2.0.2.ebuild,v 1.2 2007/12/18 07:18:13 graaff Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rails/rails-2.0.2.ebuild,v 1.3 2008/01/11 02:32:17 nichoj Exp $
 
 inherit ruby gems
 
@@ -15,11 +15,11 @@
 DEPEND=">=dev-lang/ruby-1.8.5
 	>=app-admin/eselect-rails-0.11
 	>=dev-ruby/rake-0.7.2
-	=dev-ruby/activerecord-2.0.2
-	=dev-ruby/activeresource-2.0.2
-	=dev-ruby/activesupport-2.0.2
-	=dev-ruby/actionmailer-2.0.2
-	=dev-ruby/actionpack-2.0.2
+	~dev-ruby/activerecord-2.0.2
+	~dev-ruby/activeresource-2.0.2
+	~dev-ruby/activesupport-2.0.2
+	~dev-ruby/actionmailer-2.0.2
+	~dev-ruby/actionpack-2.0.2
 	!<dev-ruby/rails-1.1.6-r1"
 
 RDEPEND="${DEPEND}



-- 
gentoo-commits@lists.gentoo.org mailing list



^ permalink raw reply	[flat|nested] 11+ messages in thread

* [gentoo-commits] gentoo-x86 commit in dev-ruby/rails: ChangeLog rails-2.0.2.ebuild
@ 2008-05-11 12:04 Hans de Graaff (graaff)
  0 siblings, 0 replies; 11+ messages in thread
From: Hans de Graaff (graaff) @ 2008-05-11 12:04 UTC (permalink / raw
  To: gentoo-commits

graaff      08/05/11 12:04:27

  Modified:             ChangeLog rails-2.0.2.ebuild
  Log:
  Stable on amd64, bug #221309
  (Portage version: 2.1.4.4)

Revision  Changes    Path
1.99                 dev-ruby/rails/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ruby/rails/ChangeLog?rev=1.99&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ruby/rails/ChangeLog?rev=1.99&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ruby/rails/ChangeLog?r1=1.98&r2=1.99

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/rails/ChangeLog,v
retrieving revision 1.98
retrieving revision 1.99
diff -u -r1.98 -r1.99
--- ChangeLog	19 Mar 2008 19:44:48 -0000	1.98
+++ ChangeLog	11 May 2008 12:04:27 -0000	1.99
@@ -1,6 +1,9 @@
 # ChangeLog for dev-ruby/rails
 # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rails/ChangeLog,v 1.98 2008/03/19 19:44:48 graaff Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rails/ChangeLog,v 1.99 2008/05/11 12:04:27 graaff Exp $
+
+  11 May 2008; Hans de Graaff <graaff@gentoo.org> rails-2.0.2.ebuild:
+  Stable on amd64, bug #221309
 
   19 Mar 2008; Hans de Graaff <graaff@gentoo.org> Manifest:
   Redigest due to upstream repackaging



1.4                  dev-ruby/rails/rails-2.0.2.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ruby/rails/rails-2.0.2.ebuild?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ruby/rails/rails-2.0.2.ebuild?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ruby/rails/rails-2.0.2.ebuild?r1=1.3&r2=1.4

Index: rails-2.0.2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/rails/rails-2.0.2.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- rails-2.0.2.ebuild	11 Jan 2008 02:32:17 -0000	1.3
+++ rails-2.0.2.ebuild	11 May 2008 12:04:27 -0000	1.4
@@ -1,6 +1,6 @@
-# Copyright 1999-2007 Gentoo Foundation
+# Copyright 1999-2008 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rails/rails-2.0.2.ebuild,v 1.3 2008/01/11 02:32:17 nichoj Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rails/rails-2.0.2.ebuild,v 1.4 2008/05/11 12:04:27 graaff Exp $
 
 inherit ruby gems
 
@@ -9,7 +9,7 @@
 
 LICENSE="MIT"
 SLOT="2"
-KEYWORDS="~amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
+KEYWORDS="amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
 
 IUSE="fastcgi"
 DEPEND=">=dev-lang/ruby-1.8.5



-- 
gentoo-commits@lists.gentoo.org mailing list



^ permalink raw reply	[flat|nested] 11+ messages in thread

* [gentoo-commits] gentoo-x86 commit in dev-ruby/rails: ChangeLog rails-2.0.2.ebuild
@ 2008-05-11 16:15 Markus Meier (maekke)
  0 siblings, 0 replies; 11+ messages in thread
From: Markus Meier (maekke) @ 2008-05-11 16:15 UTC (permalink / raw
  To: gentoo-commits

maekke      08/05/11 16:15:55

  Modified:             ChangeLog rails-2.0.2.ebuild
  Log:
  x86 stable, bug #221309
  (Portage version: 2.1.5_rc10)

Revision  Changes    Path
1.100                dev-ruby/rails/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ruby/rails/ChangeLog?rev=1.100&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ruby/rails/ChangeLog?rev=1.100&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ruby/rails/ChangeLog?r1=1.99&r2=1.100

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/rails/ChangeLog,v
retrieving revision 1.99
retrieving revision 1.100
diff -u -r1.99 -r1.100
--- ChangeLog	11 May 2008 12:04:27 -0000	1.99
+++ ChangeLog	11 May 2008 16:15:55 -0000	1.100
@@ -1,6 +1,9 @@
 # ChangeLog for dev-ruby/rails
 # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rails/ChangeLog,v 1.99 2008/05/11 12:04:27 graaff Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rails/ChangeLog,v 1.100 2008/05/11 16:15:55 maekke Exp $
+
+  11 May 2008; Markus Meier <maekke@gentoo.org> rails-2.0.2.ebuild:
+  x86 stable, bug #221309
 
   11 May 2008; Hans de Graaff <graaff@gentoo.org> rails-2.0.2.ebuild:
   Stable on amd64, bug #221309



1.5                  dev-ruby/rails/rails-2.0.2.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ruby/rails/rails-2.0.2.ebuild?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ruby/rails/rails-2.0.2.ebuild?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ruby/rails/rails-2.0.2.ebuild?r1=1.4&r2=1.5

Index: rails-2.0.2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/rails/rails-2.0.2.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- rails-2.0.2.ebuild	11 May 2008 12:04:27 -0000	1.4
+++ rails-2.0.2.ebuild	11 May 2008 16:15:55 -0000	1.5
@@ -1,6 +1,6 @@
 # Copyright 1999-2008 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rails/rails-2.0.2.ebuild,v 1.4 2008/05/11 12:04:27 graaff Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rails/rails-2.0.2.ebuild,v 1.5 2008/05/11 16:15:55 maekke Exp $
 
 inherit ruby gems
 
@@ -9,7 +9,7 @@
 
 LICENSE="MIT"
 SLOT="2"
-KEYWORDS="amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
+KEYWORDS="amd64 ~ia64 ~ppc ~ppc64 ~sparc x86 ~x86-fbsd"
 
 IUSE="fastcgi"
 DEPEND=">=dev-lang/ruby-1.8.5



-- 
gentoo-commits@lists.gentoo.org mailing list



^ permalink raw reply	[flat|nested] 11+ messages in thread

* [gentoo-commits] gentoo-x86 commit in dev-ruby/rails: ChangeLog rails-2.0.2.ebuild
@ 2008-05-11 17:00 Ferris McCormick (fmccor)
  0 siblings, 0 replies; 11+ messages in thread
From: Ferris McCormick (fmccor) @ 2008-05-11 17:00 UTC (permalink / raw
  To: gentoo-commits

fmccor      08/05/11 17:00:14

  Modified:             ChangeLog rails-2.0.2.ebuild
  Log:
  Sparc stable --- part of Bug #221309 --- Good for about 5 months.
  (Portage version: 2.2_pre6)

Revision  Changes    Path
1.101                dev-ruby/rails/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ruby/rails/ChangeLog?rev=1.101&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ruby/rails/ChangeLog?rev=1.101&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ruby/rails/ChangeLog?r1=1.100&r2=1.101

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/rails/ChangeLog,v
retrieving revision 1.100
retrieving revision 1.101
diff -u -r1.100 -r1.101
--- ChangeLog	11 May 2008 16:15:55 -0000	1.100
+++ ChangeLog	11 May 2008 17:00:14 -0000	1.101
@@ -1,6 +1,9 @@
 # ChangeLog for dev-ruby/rails
 # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rails/ChangeLog,v 1.100 2008/05/11 16:15:55 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rails/ChangeLog,v 1.101 2008/05/11 17:00:14 fmccor Exp $
+
+  11 May 2008; Ferris McCormick <fmccor@gentoo.org> rails-2.0.2.ebuild:
+  Sparc stable --- part of Bug #221309 --- Good for about 5 months.
 
   11 May 2008; Markus Meier <maekke@gentoo.org> rails-2.0.2.ebuild:
   x86 stable, bug #221309



1.6                  dev-ruby/rails/rails-2.0.2.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ruby/rails/rails-2.0.2.ebuild?rev=1.6&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ruby/rails/rails-2.0.2.ebuild?rev=1.6&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ruby/rails/rails-2.0.2.ebuild?r1=1.5&r2=1.6

Index: rails-2.0.2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/rails/rails-2.0.2.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- rails-2.0.2.ebuild	11 May 2008 16:15:55 -0000	1.5
+++ rails-2.0.2.ebuild	11 May 2008 17:00:14 -0000	1.6
@@ -1,6 +1,6 @@
 # Copyright 1999-2008 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rails/rails-2.0.2.ebuild,v 1.5 2008/05/11 16:15:55 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rails/rails-2.0.2.ebuild,v 1.6 2008/05/11 17:00:14 fmccor Exp $
 
 inherit ruby gems
 
@@ -9,7 +9,7 @@
 
 LICENSE="MIT"
 SLOT="2"
-KEYWORDS="amd64 ~ia64 ~ppc ~ppc64 ~sparc x86 ~x86-fbsd"
+KEYWORDS="amd64 ~ia64 ~ppc ~ppc64 sparc x86 ~x86-fbsd"
 
 IUSE="fastcgi"
 DEPEND=">=dev-lang/ruby-1.8.5



-- 
gentoo-commits@lists.gentoo.org mailing list



^ permalink raw reply	[flat|nested] 11+ messages in thread

* [gentoo-commits] gentoo-x86 commit in dev-ruby/rails: ChangeLog rails-2.0.2.ebuild
@ 2008-05-11 17:07 Ferris McCormick (fmccor)
  0 siblings, 0 replies; 11+ messages in thread
From: Ferris McCormick (fmccor) @ 2008-05-11 17:07 UTC (permalink / raw
  To: gentoo-commits

fmccor      08/05/11 17:07:35

  Modified:             ChangeLog rails-2.0.2.ebuild
  Log:
  Back to ~sparc because of Friedrich Oslage's comments in Bug #221309.
  (Portage version: 2.2_pre6)

Revision  Changes    Path
1.102                dev-ruby/rails/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ruby/rails/ChangeLog?rev=1.102&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ruby/rails/ChangeLog?rev=1.102&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ruby/rails/ChangeLog?r1=1.101&r2=1.102

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/rails/ChangeLog,v
retrieving revision 1.101
retrieving revision 1.102
diff -u -r1.101 -r1.102
--- ChangeLog	11 May 2008 17:00:14 -0000	1.101
+++ ChangeLog	11 May 2008 17:07:34 -0000	1.102
@@ -1,6 +1,9 @@
 # ChangeLog for dev-ruby/rails
 # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rails/ChangeLog,v 1.101 2008/05/11 17:00:14 fmccor Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rails/ChangeLog,v 1.102 2008/05/11 17:07:34 fmccor Exp $
+
+  11 May 2008; Ferris McCormick <fmccor@gentoo.org> rails-2.0.2.ebuild:
+  Back to ~sparc because of Friedrich Oslage's comments in Bug #221309.
 
   11 May 2008; Ferris McCormick <fmccor@gentoo.org> rails-2.0.2.ebuild:
   Sparc stable --- part of Bug #221309 --- Good for about 5 months.



1.7                  dev-ruby/rails/rails-2.0.2.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ruby/rails/rails-2.0.2.ebuild?rev=1.7&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ruby/rails/rails-2.0.2.ebuild?rev=1.7&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ruby/rails/rails-2.0.2.ebuild?r1=1.6&r2=1.7

Index: rails-2.0.2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/rails/rails-2.0.2.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- rails-2.0.2.ebuild	11 May 2008 17:00:14 -0000	1.6
+++ rails-2.0.2.ebuild	11 May 2008 17:07:34 -0000	1.7
@@ -1,6 +1,6 @@
 # Copyright 1999-2008 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rails/rails-2.0.2.ebuild,v 1.6 2008/05/11 17:00:14 fmccor Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rails/rails-2.0.2.ebuild,v 1.7 2008/05/11 17:07:34 fmccor Exp $
 
 inherit ruby gems
 
@@ -9,7 +9,7 @@
 
 LICENSE="MIT"
 SLOT="2"
-KEYWORDS="amd64 ~ia64 ~ppc ~ppc64 sparc x86 ~x86-fbsd"
+KEYWORDS="amd64 ~ia64 ~ppc ~ppc64 ~sparc x86 ~x86-fbsd"
 
 IUSE="fastcgi"
 DEPEND=">=dev-lang/ruby-1.8.5



-- 
gentoo-commits@lists.gentoo.org mailing list



^ permalink raw reply	[flat|nested] 11+ messages in thread

* [gentoo-commits] gentoo-x86 commit in dev-ruby/rails: ChangeLog rails-2.0.2.ebuild
@ 2008-05-12 10:05 Markus Rothe (corsair)
  0 siblings, 0 replies; 11+ messages in thread
From: Markus Rothe (corsair) @ 2008-05-12 10:05 UTC (permalink / raw
  To: gentoo-commits

corsair     08/05/12 10:05:32

  Modified:             ChangeLog rails-2.0.2.ebuild
  Log:
  Stable on ppc64; bug #221309
  (Portage version: 2.1.4.4)

Revision  Changes    Path
1.103                dev-ruby/rails/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ruby/rails/ChangeLog?rev=1.103&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ruby/rails/ChangeLog?rev=1.103&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ruby/rails/ChangeLog?r1=1.102&r2=1.103

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/rails/ChangeLog,v
retrieving revision 1.102
retrieving revision 1.103
diff -u -r1.102 -r1.103
--- ChangeLog	11 May 2008 17:07:34 -0000	1.102
+++ ChangeLog	12 May 2008 10:05:31 -0000	1.103
@@ -1,6 +1,9 @@
 # ChangeLog for dev-ruby/rails
 # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rails/ChangeLog,v 1.102 2008/05/11 17:07:34 fmccor Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rails/ChangeLog,v 1.103 2008/05/12 10:05:31 corsair Exp $
+
+  12 May 2008; Markus Rothe <corsair@gentoo.org> rails-2.0.2.ebuild:
+  Stable on ppc64; bug #221309
 
   11 May 2008; Ferris McCormick <fmccor@gentoo.org> rails-2.0.2.ebuild:
   Back to ~sparc because of Friedrich Oslage's comments in Bug #221309.



1.8                  dev-ruby/rails/rails-2.0.2.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ruby/rails/rails-2.0.2.ebuild?rev=1.8&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ruby/rails/rails-2.0.2.ebuild?rev=1.8&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ruby/rails/rails-2.0.2.ebuild?r1=1.7&r2=1.8

Index: rails-2.0.2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/rails/rails-2.0.2.ebuild,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- rails-2.0.2.ebuild	11 May 2008 17:07:34 -0000	1.7
+++ rails-2.0.2.ebuild	12 May 2008 10:05:31 -0000	1.8
@@ -1,6 +1,6 @@
 # Copyright 1999-2008 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rails/rails-2.0.2.ebuild,v 1.7 2008/05/11 17:07:34 fmccor Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rails/rails-2.0.2.ebuild,v 1.8 2008/05/12 10:05:31 corsair Exp $
 
 inherit ruby gems
 
@@ -9,7 +9,7 @@
 
 LICENSE="MIT"
 SLOT="2"
-KEYWORDS="amd64 ~ia64 ~ppc ~ppc64 ~sparc x86 ~x86-fbsd"
+KEYWORDS="amd64 ~ia64 ~ppc ppc64 ~sparc x86 ~x86-fbsd"
 
 IUSE="fastcgi"
 DEPEND=">=dev-lang/ruby-1.8.5



-- 
gentoo-commits@lists.gentoo.org mailing list



^ permalink raw reply	[flat|nested] 11+ messages in thread

* [gentoo-commits] gentoo-x86 commit in dev-ruby/rails: ChangeLog rails-2.0.2.ebuild
@ 2008-05-13 12:54 Ferris McCormick (fmccor)
  0 siblings, 0 replies; 11+ messages in thread
From: Ferris McCormick (fmccor) @ 2008-05-13 12:54 UTC (permalink / raw
  To: gentoo-commits

fmccor      08/05/13 12:54:16

  Modified:             ChangeLog rails-2.0.2.ebuild
  Log:
  Sparc stable (again), following Hans de Graff's comment 7 in Bug #221309.
  RMD160 for rails-2.0.2.gem should now be correct.
  (Portage version: 2.2_pre6)

Revision  Changes    Path
1.104                dev-ruby/rails/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ruby/rails/ChangeLog?rev=1.104&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ruby/rails/ChangeLog?rev=1.104&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ruby/rails/ChangeLog?r1=1.103&r2=1.104

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/rails/ChangeLog,v
retrieving revision 1.103
retrieving revision 1.104
diff -u -r1.103 -r1.104
--- ChangeLog	12 May 2008 10:05:31 -0000	1.103
+++ ChangeLog	13 May 2008 12:54:16 -0000	1.104
@@ -1,6 +1,10 @@
 # ChangeLog for dev-ruby/rails
 # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rails/ChangeLog,v 1.103 2008/05/12 10:05:31 corsair Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rails/ChangeLog,v 1.104 2008/05/13 12:54:16 fmccor Exp $
+
+  13 May 2008; Ferris McCormick <fmccor@gentoo.org> rails-2.0.2.ebuild:
+  Sparc stable (again), following Hans de Graff's comment 7 in Bug #221309.
+  RMD160 for rails-2.0.2.gem should now be correct.
 
   12 May 2008; Markus Rothe <corsair@gentoo.org> rails-2.0.2.ebuild:
   Stable on ppc64; bug #221309



1.9                  dev-ruby/rails/rails-2.0.2.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ruby/rails/rails-2.0.2.ebuild?rev=1.9&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ruby/rails/rails-2.0.2.ebuild?rev=1.9&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ruby/rails/rails-2.0.2.ebuild?r1=1.8&r2=1.9

Index: rails-2.0.2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/rails/rails-2.0.2.ebuild,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- rails-2.0.2.ebuild	12 May 2008 10:05:31 -0000	1.8
+++ rails-2.0.2.ebuild	13 May 2008 12:54:16 -0000	1.9
@@ -1,6 +1,6 @@
 # Copyright 1999-2008 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rails/rails-2.0.2.ebuild,v 1.8 2008/05/12 10:05:31 corsair Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rails/rails-2.0.2.ebuild,v 1.9 2008/05/13 12:54:16 fmccor Exp $
 
 inherit ruby gems
 
@@ -9,7 +9,7 @@
 
 LICENSE="MIT"
 SLOT="2"
-KEYWORDS="amd64 ~ia64 ~ppc ppc64 ~sparc x86 ~x86-fbsd"
+KEYWORDS="amd64 ~ia64 ~ppc ppc64 sparc x86 ~x86-fbsd"
 
 IUSE="fastcgi"
 DEPEND=">=dev-lang/ruby-1.8.5



-- 
gentoo-commits@lists.gentoo.org mailing list



^ permalink raw reply	[flat|nested] 11+ messages in thread

* [gentoo-commits] gentoo-x86 commit in dev-ruby/rails: ChangeLog rails-2.0.2.ebuild
@ 2008-05-13 13:38 Raul Porcel (armin76)
  0 siblings, 0 replies; 11+ messages in thread
From: Raul Porcel (armin76) @ 2008-05-13 13:38 UTC (permalink / raw
  To: gentoo-commits

armin76     08/05/13 13:38:52

  Modified:             ChangeLog rails-2.0.2.ebuild
  Log:
  ia64 stable wrt #221309
  (Portage version: 2.1.4.4)

Revision  Changes    Path
1.105                dev-ruby/rails/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ruby/rails/ChangeLog?rev=1.105&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ruby/rails/ChangeLog?rev=1.105&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ruby/rails/ChangeLog?r1=1.104&r2=1.105

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/rails/ChangeLog,v
retrieving revision 1.104
retrieving revision 1.105
diff -u -r1.104 -r1.105
--- ChangeLog	13 May 2008 12:54:16 -0000	1.104
+++ ChangeLog	13 May 2008 13:38:52 -0000	1.105
@@ -1,6 +1,9 @@
 # ChangeLog for dev-ruby/rails
 # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rails/ChangeLog,v 1.104 2008/05/13 12:54:16 fmccor Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rails/ChangeLog,v 1.105 2008/05/13 13:38:52 armin76 Exp $
+
+  13 May 2008; Raúl Porcel <armin76@gentoo.org> rails-2.0.2.ebuild:
+  ia64 stable wrt #221309
 
   13 May 2008; Ferris McCormick <fmccor@gentoo.org> rails-2.0.2.ebuild:
   Sparc stable (again), following Hans de Graff's comment 7 in Bug #221309.



1.10                 dev-ruby/rails/rails-2.0.2.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ruby/rails/rails-2.0.2.ebuild?rev=1.10&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ruby/rails/rails-2.0.2.ebuild?rev=1.10&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ruby/rails/rails-2.0.2.ebuild?r1=1.9&r2=1.10

Index: rails-2.0.2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/rails/rails-2.0.2.ebuild,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- rails-2.0.2.ebuild	13 May 2008 12:54:16 -0000	1.9
+++ rails-2.0.2.ebuild	13 May 2008 13:38:52 -0000	1.10
@@ -1,6 +1,6 @@
 # Copyright 1999-2008 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rails/rails-2.0.2.ebuild,v 1.9 2008/05/13 12:54:16 fmccor Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rails/rails-2.0.2.ebuild,v 1.10 2008/05/13 13:38:52 armin76 Exp $
 
 inherit ruby gems
 
@@ -9,7 +9,7 @@
 
 LICENSE="MIT"
 SLOT="2"
-KEYWORDS="amd64 ~ia64 ~ppc ppc64 sparc x86 ~x86-fbsd"
+KEYWORDS="amd64 ia64 ~ppc ppc64 sparc x86 ~x86-fbsd"
 
 IUSE="fastcgi"
 DEPEND=">=dev-lang/ruby-1.8.5



-- 
gentoo-commits@lists.gentoo.org mailing list



^ permalink raw reply	[flat|nested] 11+ messages in thread

* [gentoo-commits] gentoo-x86 commit in dev-ruby/rails: ChangeLog rails-2.0.2.ebuild
@ 2008-05-16 17:37 Gysbert Wassenaar (nixnut)
  0 siblings, 0 replies; 11+ messages in thread
From: Gysbert Wassenaar (nixnut) @ 2008-05-16 17:37 UTC (permalink / raw
  To: gentoo-commits

nixnut      08/05/16 17:37:47

  Modified:             ChangeLog rails-2.0.2.ebuild
  Log:
  Stable on ppc wrt bug 221309
  (Portage version: 2.1.4.4)

Revision  Changes    Path
1.106                dev-ruby/rails/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ruby/rails/ChangeLog?rev=1.106&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ruby/rails/ChangeLog?rev=1.106&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ruby/rails/ChangeLog?r1=1.105&r2=1.106

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/rails/ChangeLog,v
retrieving revision 1.105
retrieving revision 1.106
diff -u -r1.105 -r1.106
--- ChangeLog	13 May 2008 13:38:52 -0000	1.105
+++ ChangeLog	16 May 2008 17:37:47 -0000	1.106
@@ -1,6 +1,9 @@
 # ChangeLog for dev-ruby/rails
 # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rails/ChangeLog,v 1.105 2008/05/13 13:38:52 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rails/ChangeLog,v 1.106 2008/05/16 17:37:47 nixnut Exp $
+
+  16 May 2008; nixnut <nixnut@gentoo.org> rails-2.0.2.ebuild:
+  Stable on ppc wrt bug 221309
 
   13 May 2008; Raúl Porcel <armin76@gentoo.org> rails-2.0.2.ebuild:
   ia64 stable wrt #221309



1.11                 dev-ruby/rails/rails-2.0.2.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ruby/rails/rails-2.0.2.ebuild?rev=1.11&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ruby/rails/rails-2.0.2.ebuild?rev=1.11&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ruby/rails/rails-2.0.2.ebuild?r1=1.10&r2=1.11

Index: rails-2.0.2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/rails/rails-2.0.2.ebuild,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -r1.10 -r1.11
--- rails-2.0.2.ebuild	13 May 2008 13:38:52 -0000	1.10
+++ rails-2.0.2.ebuild	16 May 2008 17:37:47 -0000	1.11
@@ -1,6 +1,6 @@
 # Copyright 1999-2008 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rails/rails-2.0.2.ebuild,v 1.10 2008/05/13 13:38:52 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rails/rails-2.0.2.ebuild,v 1.11 2008/05/16 17:37:47 nixnut Exp $
 
 inherit ruby gems
 
@@ -9,7 +9,7 @@
 
 LICENSE="MIT"
 SLOT="2"
-KEYWORDS="amd64 ia64 ~ppc ppc64 sparc x86 ~x86-fbsd"
+KEYWORDS="amd64 ia64 ppc ppc64 sparc x86 ~x86-fbsd"
 
 IUSE="fastcgi"
 DEPEND=">=dev-lang/ruby-1.8.5



-- 
gentoo-commits@lists.gentoo.org mailing list



^ permalink raw reply	[flat|nested] 11+ messages in thread

end of thread, other threads:[~2008-05-16 17:37 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-01-11  2:32 [gentoo-commits] gentoo-x86 commit in dev-ruby/rails: ChangeLog rails-2.0.2.ebuild Joshua Nichols (nichoj)
  -- strict thread matches above, loose matches on Subject: below --
2008-05-16 17:37 Gysbert Wassenaar (nixnut)
2008-05-13 13:38 Raul Porcel (armin76)
2008-05-13 12:54 Ferris McCormick (fmccor)
2008-05-12 10:05 Markus Rothe (corsair)
2008-05-11 17:07 Ferris McCormick (fmccor)
2008-05-11 17:00 Ferris McCormick (fmccor)
2008-05-11 16:15 Markus Meier (maekke)
2008-05-11 12:04 Hans de Graaff (graaff)
2007-12-18  7:18 Hans de Graaff (graaff)
2007-12-18  7:15 Hans de Graaff (graaff)

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