public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in dev-ruby/rake-compiler: rake-compiler-0.9.2.ebuild ChangeLog
@ 2013-12-17 10:46 Manuel Rueger (mrueg)
  0 siblings, 0 replies; 12+ messages in thread
From: Manuel Rueger (mrueg) @ 2013-12-17 10:46 UTC (permalink / raw
  To: gentoo-commits

mrueg       13/12/17 10:46:54

  Modified:             ChangeLog
  Added:                rake-compiler-0.9.2.ebuild
  Log:
  Version bump.
  
  (Portage version: 2.2.7/cvs/Linux x86_64, signed Manifest commit with key )

Revision  Changes    Path
1.64                 dev-ruby/rake-compiler/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/rake-compiler/ChangeLog?rev=1.64&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/rake-compiler/ChangeLog?rev=1.64&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/rake-compiler/ChangeLog?r1=1.63&r2=1.64

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/rake-compiler/ChangeLog,v
retrieving revision 1.63
retrieving revision 1.64
diff -u -r1.63 -r1.64
--- ChangeLog	6 Oct 2013 09:50:12 -0000	1.63
+++ ChangeLog	17 Dec 2013 10:46:54 -0000	1.64
@@ -1,6 +1,11 @@
 # ChangeLog for dev-ruby/rake-compiler
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rake-compiler/ChangeLog,v 1.63 2013/10/06 09:50:12 graaff Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rake-compiler/ChangeLog,v 1.64 2013/12/17 10:46:54 mrueg Exp $
+
+*rake-compiler-0.9.2 (17 Dec 2013)
+
+  17 Dec 2013; Manuel Rüger <mrueg@gentoo.org> +rake-compiler-0.9.2.ebuild:
+  Version bump.
 
   06 Oct 2013; Hans de Graaff <graaff@gentoo.org> rake-compiler-0.9.1.ebuild:
   Add ruby20.



1.1                  dev-ruby/rake-compiler/rake-compiler-0.9.2.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/rake-compiler/rake-compiler-0.9.2.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/rake-compiler/rake-compiler-0.9.2.ebuild?rev=1.1&content-type=text/plain

Index: rake-compiler-0.9.2.ebuild
===================================================================
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rake-compiler/rake-compiler-0.9.2.ebuild,v 1.1 2013/12/17 10:46:54 mrueg Exp $

EAPI=5
USE_RUBY="ruby18 ruby19 ruby20 jruby"

RUBY_FAKEGEM_RECIPE_TEST="none"

RUBY_FAKEGEM_TASK_DOC=""
RUBY_FAKEGEM_EXTRADOC="History.txt README.rdoc"

inherit ruby-fakegem eutils

DESCRIPTION="Provide a standard and simplified way to build and package Ruby extensions"
HOMEPAGE="http://github.com/luislavena/rake-compiler"
LICENSE="MIT"

SRC_URI="http://github.com/luislavena/${PN}/tarball/v${PV} -> ${P}.tar.gz"
RUBY_S="luislavena-${PN}-*"

KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
SLOT="0"
IUSE=""

ruby_add_rdepend "dev-ruby/rake"
ruby_add_bdepend "test? ( dev-ruby/rspec:2 )"
USE_RUBY="ruby18 ruby19" ruby_add_bdepend "test? ( dev-util/cucumber )"

each_ruby_prepare() {
	case ${RUBY} in
		*ruby19|*jruby)
			# Remove this task so that it won't load on Ruby 1.9 and JRuby
			# that lack the package_task file. It is, though, needed for the
			# tests
			rm tasks/gem.rake || die
			# Remove specs aimed at a C-compiling ruby implementation.
			rm spec/lib/rake/extensiontask_spec.rb || die
			;;
		*)
			;;
	esac
}

each_ruby_test() {
	ruby-ng_rspec

	# Skip cucumber for jruby (not supported) and ruby20 (not ready yet)
	case ${RUBY} in
		*ruby18|*ruby19)
			ruby-ng_cucumber
			;;
	esac
}





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

* [gentoo-commits] gentoo-x86 commit in dev-ruby/rake-compiler: rake-compiler-0.9.2.ebuild ChangeLog
@ 2014-03-21 12:00 Hans de Graaff (graaff)
  0 siblings, 0 replies; 12+ messages in thread
From: Hans de Graaff (graaff) @ 2014-03-21 12:00 UTC (permalink / raw
  To: gentoo-commits

graaff      14/03/21 12:00:57

  Modified:             rake-compiler-0.9.2.ebuild ChangeLog
  Log:
  Add ruby21 and skip tests for it to bootstrap rspec. Remove ruby18.
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 0x8883FA56A308A8D7!)

Revision  Changes    Path
1.5                  dev-ruby/rake-compiler/rake-compiler-0.9.2.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/rake-compiler/rake-compiler-0.9.2.ebuild?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/rake-compiler/rake-compiler-0.9.2.ebuild?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/rake-compiler/rake-compiler-0.9.2.ebuild?r1=1.4&r2=1.5

Index: rake-compiler-0.9.2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/rake-compiler/rake-compiler-0.9.2.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- rake-compiler-0.9.2.ebuild	2 Jan 2014 07:12:21 -0000	1.4
+++ rake-compiler-0.9.2.ebuild	21 Mar 2014 12:00:57 -0000	1.5
@@ -1,9 +1,9 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rake-compiler/rake-compiler-0.9.2.ebuild,v 1.4 2014/01/02 07:12:21 graaff Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rake-compiler/rake-compiler-0.9.2.ebuild,v 1.5 2014/03/21 12:00:57 graaff Exp $
 
 EAPI=5
-USE_RUBY="ruby18 ruby19 ruby20 jruby"
+USE_RUBY="ruby19 ruby20 ruby21 jruby"
 
 RUBY_FAKEGEM_RECIPE_TEST="none"
 
@@ -24,7 +24,7 @@
 IUSE=""
 
 ruby_add_rdepend "dev-ruby/rake"
-ruby_add_bdepend "test? ( dev-ruby/rspec:2 )"
+USE_RUBY="ruby19 ruby20 jruby" ruby_add_bdepend "test? ( dev-ruby/rspec:2 )"
 USE_RUBY="ruby19" ruby_add_bdepend "test? ( dev-util/cucumber )"
 
 each_ruby_prepare() {
@@ -43,12 +43,17 @@
 }
 
 each_ruby_test() {
-	ruby-ng_rspec
-
 	# Skip cucumber for jruby (not supported) and ruby20 (not ready yet)
+	# Skip rspec as well for ruby21 to allow bootstrapping rspec for ruby21
 	case ${RUBY} in
 		*ruby19)
+			ruby-ng_rspec
 			ruby-ng_cucumber
 			;;
+		*ruby21)
+			;;
+		*)
+			ruby-ng_rspec
+			;;
 	esac
 }



1.69                 dev-ruby/rake-compiler/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/rake-compiler/ChangeLog?rev=1.69&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/rake-compiler/ChangeLog?rev=1.69&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/rake-compiler/ChangeLog?r1=1.68&r2=1.69

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/rake-compiler/ChangeLog,v
retrieving revision 1.68
retrieving revision 1.69
diff -u -r1.68 -r1.69
--- ChangeLog	2 Jan 2014 07:12:21 -0000	1.68
+++ ChangeLog	21 Mar 2014 12:00:57 -0000	1.69
@@ -1,6 +1,9 @@
 # ChangeLog for dev-ruby/rake-compiler
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rake-compiler/ChangeLog,v 1.68 2014/01/02 07:12:21 graaff Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rake-compiler/ChangeLog,v 1.69 2014/03/21 12:00:57 graaff Exp $
+
+  21 Mar 2014; Hans de Graaff <graaff@gentoo.org> rake-compiler-0.9.2.ebuild:
+  Add ruby21 and skip tests for it to bootstrap rspec. Remove ruby18.
 
   02 Jan 2014; Hans de Graaff <graaff@gentoo.org> rake-compiler-0.8.1.ebuild,
   rake-compiler-0.8.1-r1.ebuild, rake-compiler-0.8.3.ebuild,





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

* [gentoo-commits] gentoo-x86 commit in dev-ruby/rake-compiler: rake-compiler-0.9.2.ebuild ChangeLog
@ 2014-06-01 12:49 Markus Meier (maekke)
  0 siblings, 0 replies; 12+ messages in thread
From: Markus Meier (maekke) @ 2014-06-01 12:49 UTC (permalink / raw
  To: gentoo-commits

maekke      14/06/01 12:49:19

  Modified:             rake-compiler-0.9.2.ebuild ChangeLog
  Log:
  arm stable, bug #505920
  
  (Portage version: 2.2.10/cvs/Linux x86_64, RepoMan options: --include-arches="arm", signed Manifest commit with key 072AD062)

Revision  Changes    Path
1.7                  dev-ruby/rake-compiler/rake-compiler-0.9.2.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/rake-compiler/rake-compiler-0.9.2.ebuild?rev=1.7&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/rake-compiler/rake-compiler-0.9.2.ebuild?rev=1.7&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/rake-compiler/rake-compiler-0.9.2.ebuild?r1=1.6&r2=1.7

Index: rake-compiler-0.9.2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/rake-compiler/rake-compiler-0.9.2.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- rake-compiler-0.9.2.ebuild	27 Apr 2014 23:49:57 -0000	1.6
+++ rake-compiler-0.9.2.ebuild	1 Jun 2014 12:49:19 -0000	1.7
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rake-compiler/rake-compiler-0.9.2.ebuild,v 1.6 2014/04/27 23:49:57 mrueg Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rake-compiler/rake-compiler-0.9.2.ebuild,v 1.7 2014/06/01 12:49:19 maekke Exp $
 
 EAPI=5
 USE_RUBY="ruby19 ruby20 jruby"
@@ -19,7 +19,7 @@
 SRC_URI="http://github.com/luislavena/${PN}/tarball/v${PV} -> ${P}.tar.gz"
 RUBY_S="luislavena-${PN}-*"
 
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha ~amd64 arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 SLOT="0"
 IUSE=""
 



1.76                 dev-ruby/rake-compiler/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/rake-compiler/ChangeLog?rev=1.76&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/rake-compiler/ChangeLog?rev=1.76&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/rake-compiler/ChangeLog?r1=1.75&r2=1.76

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/rake-compiler/ChangeLog,v
retrieving revision 1.75
retrieving revision 1.76
diff -u -r1.75 -r1.76
--- ChangeLog	27 Apr 2014 23:49:57 -0000	1.75
+++ ChangeLog	1 Jun 2014 12:49:19 -0000	1.76
@@ -1,6 +1,9 @@
 # ChangeLog for dev-ruby/rake-compiler
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rake-compiler/ChangeLog,v 1.75 2014/04/27 23:49:57 mrueg Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rake-compiler/ChangeLog,v 1.76 2014/06/01 12:49:19 maekke Exp $
+
+  01 Jun 2014; Markus Meier <maekke@gentoo.org> rake-compiler-0.9.2.ebuild:
+  arm stable, bug #505920
 
 *rake-compiler-0.9.2-r1 (27 Apr 2014)
 





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

* [gentoo-commits] gentoo-x86 commit in dev-ruby/rake-compiler: rake-compiler-0.9.2.ebuild ChangeLog
@ 2014-06-08 15:23 Akinori Hattori (hattya)
  0 siblings, 0 replies; 12+ messages in thread
From: Akinori Hattori (hattya) @ 2014-06-08 15:23 UTC (permalink / raw
  To: gentoo-commits

hattya      14/06/08 15:23:31

  Modified:             rake-compiler-0.9.2.ebuild ChangeLog
  Log:
  ia64 stable wrt bug #505920
  
  (Portage version: 2.2.8-r1/cvs/Linux i686, signed Manifest commit with key EC917A6D)

Revision  Changes    Path
1.8                  dev-ruby/rake-compiler/rake-compiler-0.9.2.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/rake-compiler/rake-compiler-0.9.2.ebuild?rev=1.8&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/rake-compiler/rake-compiler-0.9.2.ebuild?rev=1.8&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/rake-compiler/rake-compiler-0.9.2.ebuild?r1=1.7&r2=1.8

Index: rake-compiler-0.9.2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/rake-compiler/rake-compiler-0.9.2.ebuild,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- rake-compiler-0.9.2.ebuild	1 Jun 2014 12:49:19 -0000	1.7
+++ rake-compiler-0.9.2.ebuild	8 Jun 2014 15:23:31 -0000	1.8
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rake-compiler/rake-compiler-0.9.2.ebuild,v 1.7 2014/06/01 12:49:19 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rake-compiler/rake-compiler-0.9.2.ebuild,v 1.8 2014/06/08 15:23:31 hattya Exp $
 
 EAPI=5
 USE_RUBY="ruby19 ruby20 jruby"
@@ -19,7 +19,7 @@
 SRC_URI="http://github.com/luislavena/${PN}/tarball/v${PV} -> ${P}.tar.gz"
 RUBY_S="luislavena-${PN}-*"
 
-KEYWORDS="~alpha ~amd64 arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha ~amd64 arm ~hppa ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 SLOT="0"
 IUSE=""
 



1.77                 dev-ruby/rake-compiler/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/rake-compiler/ChangeLog?rev=1.77&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/rake-compiler/ChangeLog?rev=1.77&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/rake-compiler/ChangeLog?r1=1.76&r2=1.77

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/rake-compiler/ChangeLog,v
retrieving revision 1.76
retrieving revision 1.77
diff -u -r1.76 -r1.77
--- ChangeLog	1 Jun 2014 12:49:19 -0000	1.76
+++ ChangeLog	8 Jun 2014 15:23:31 -0000	1.77
@@ -1,6 +1,9 @@
 # ChangeLog for dev-ruby/rake-compiler
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rake-compiler/ChangeLog,v 1.76 2014/06/01 12:49:19 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rake-compiler/ChangeLog,v 1.77 2014/06/08 15:23:31 hattya Exp $
+
+  08 Jun 2014; Akinori Hattori <hattya@gentoo.org> rake-compiler-0.9.2.ebuild:
+  ia64 stable wrt bug #505920
 
   01 Jun 2014; Markus Meier <maekke@gentoo.org> rake-compiler-0.9.2.ebuild:
   arm stable, bug #505920





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

* [gentoo-commits] gentoo-x86 commit in dev-ruby/rake-compiler: rake-compiler-0.9.2.ebuild ChangeLog
@ 2014-06-13 19:18 Jeroen Roovers (jer)
  0 siblings, 0 replies; 12+ messages in thread
From: Jeroen Roovers (jer) @ 2014-06-13 19:18 UTC (permalink / raw
  To: gentoo-commits

jer         14/06/13 19:18:51

  Modified:             rake-compiler-0.9.2.ebuild ChangeLog
  Log:
  Stable for HPPA (bug #510334).
  
  (Portage version: 2.2.10/cvs/Linux x86_64, RepoMan options: --ignore-arches, signed Manifest commit with key A792A613)

Revision  Changes    Path
1.9                  dev-ruby/rake-compiler/rake-compiler-0.9.2.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/rake-compiler/rake-compiler-0.9.2.ebuild?rev=1.9&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/rake-compiler/rake-compiler-0.9.2.ebuild?rev=1.9&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/rake-compiler/rake-compiler-0.9.2.ebuild?r1=1.8&r2=1.9

Index: rake-compiler-0.9.2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/rake-compiler/rake-compiler-0.9.2.ebuild,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- rake-compiler-0.9.2.ebuild	8 Jun 2014 15:23:31 -0000	1.8
+++ rake-compiler-0.9.2.ebuild	13 Jun 2014 19:18:51 -0000	1.9
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rake-compiler/rake-compiler-0.9.2.ebuild,v 1.8 2014/06/08 15:23:31 hattya Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rake-compiler/rake-compiler-0.9.2.ebuild,v 1.9 2014/06/13 19:18:51 jer Exp $
 
 EAPI=5
 USE_RUBY="ruby19 ruby20 jruby"
@@ -19,7 +19,7 @@
 SRC_URI="http://github.com/luislavena/${PN}/tarball/v${PV} -> ${P}.tar.gz"
 RUBY_S="luislavena-${PN}-*"
 
-KEYWORDS="~alpha ~amd64 arm ~hppa ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha ~amd64 arm hppa ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 SLOT="0"
 IUSE=""
 



1.78                 dev-ruby/rake-compiler/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/rake-compiler/ChangeLog?rev=1.78&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/rake-compiler/ChangeLog?rev=1.78&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/rake-compiler/ChangeLog?r1=1.77&r2=1.78

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/rake-compiler/ChangeLog,v
retrieving revision 1.77
retrieving revision 1.78
diff -u -r1.77 -r1.78
--- ChangeLog	8 Jun 2014 15:23:31 -0000	1.77
+++ ChangeLog	13 Jun 2014 19:18:51 -0000	1.78
@@ -1,6 +1,9 @@
 # ChangeLog for dev-ruby/rake-compiler
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rake-compiler/ChangeLog,v 1.77 2014/06/08 15:23:31 hattya Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rake-compiler/ChangeLog,v 1.78 2014/06/13 19:18:51 jer Exp $
+
+  13 Jun 2014; Jeroen Roovers <jer@gentoo.org> rake-compiler-0.9.2.ebuild:
+  Stable for HPPA (bug #510334).
 
   08 Jun 2014; Akinori Hattori <hattya@gentoo.org> rake-compiler-0.9.2.ebuild:
   ia64 stable wrt bug #505920





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

* [gentoo-commits] gentoo-x86 commit in dev-ruby/rake-compiler: rake-compiler-0.9.2.ebuild ChangeLog
@ 2014-07-14 14:05 PaweA Hajdan (phajdan.jr)
  0 siblings, 0 replies; 12+ messages in thread
From: PaweA Hajdan (phajdan.jr) @ 2014-07-14 14:05 UTC (permalink / raw
  To: gentoo-commits

phajdan.jr    14/07/14 14:05:09

  Modified:             rake-compiler-0.9.2.ebuild ChangeLog
  Log:
  x86 stable wrt bug #505920
  
  (Portage version: 2.2.8-r1/cvs/Linux i686, RepoMan options: --ignore-arches, signed Manifest commit with key 0x4F1A2555EA71991D!)

Revision  Changes    Path
1.10                 dev-ruby/rake-compiler/rake-compiler-0.9.2.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/rake-compiler/rake-compiler-0.9.2.ebuild?rev=1.10&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/rake-compiler/rake-compiler-0.9.2.ebuild?rev=1.10&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/rake-compiler/rake-compiler-0.9.2.ebuild?r1=1.9&r2=1.10

Index: rake-compiler-0.9.2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/rake-compiler/rake-compiler-0.9.2.ebuild,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- rake-compiler-0.9.2.ebuild	13 Jun 2014 19:18:51 -0000	1.9
+++ rake-compiler-0.9.2.ebuild	14 Jul 2014 14:05:09 -0000	1.10
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rake-compiler/rake-compiler-0.9.2.ebuild,v 1.9 2014/06/13 19:18:51 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rake-compiler/rake-compiler-0.9.2.ebuild,v 1.10 2014/07/14 14:05:09 phajdan.jr Exp $
 
 EAPI=5
 USE_RUBY="ruby19 ruby20 jruby"
@@ -19,7 +19,7 @@
 SRC_URI="http://github.com/luislavena/${PN}/tarball/v${PV} -> ${P}.tar.gz"
 RUBY_S="luislavena-${PN}-*"
 
-KEYWORDS="~alpha ~amd64 arm hppa ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha ~amd64 arm hppa ia64 ~ppc ~ppc64 ~sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 SLOT="0"
 IUSE=""
 



1.79                 dev-ruby/rake-compiler/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/rake-compiler/ChangeLog?rev=1.79&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/rake-compiler/ChangeLog?rev=1.79&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/rake-compiler/ChangeLog?r1=1.78&r2=1.79

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/rake-compiler/ChangeLog,v
retrieving revision 1.78
retrieving revision 1.79
diff -u -r1.78 -r1.79
--- ChangeLog	13 Jun 2014 19:18:51 -0000	1.78
+++ ChangeLog	14 Jul 2014 14:05:09 -0000	1.79
@@ -1,6 +1,10 @@
 # ChangeLog for dev-ruby/rake-compiler
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rake-compiler/ChangeLog,v 1.78 2014/06/13 19:18:51 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rake-compiler/ChangeLog,v 1.79 2014/07/14 14:05:09 phajdan.jr Exp $
+
+  14 Jul 2014; Pawel Hajdan jr <phajdan.jr@gentoo.org>
+  rake-compiler-0.9.2.ebuild:
+  x86 stable wrt bug #505920
 
   13 Jun 2014; Jeroen Roovers <jer@gentoo.org> rake-compiler-0.9.2.ebuild:
   Stable for HPPA (bug #510334).





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

* [gentoo-commits] gentoo-x86 commit in dev-ruby/rake-compiler: rake-compiler-0.9.2.ebuild ChangeLog
@ 2014-07-21 14:54 Tobias Klausmann (klausman)
  0 siblings, 0 replies; 12+ messages in thread
From: Tobias Klausmann (klausman) @ 2014-07-21 14:54 UTC (permalink / raw
  To: gentoo-commits

klausman    14/07/21 14:54:45

  Modified:             rake-compiler-0.9.2.ebuild ChangeLog
  Log:
  Stable on alpha, bug #505920
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key CE5D54E8)

Revision  Changes    Path
1.11                 dev-ruby/rake-compiler/rake-compiler-0.9.2.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/rake-compiler/rake-compiler-0.9.2.ebuild?rev=1.11&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/rake-compiler/rake-compiler-0.9.2.ebuild?rev=1.11&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/rake-compiler/rake-compiler-0.9.2.ebuild?r1=1.10&r2=1.11

Index: rake-compiler-0.9.2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/rake-compiler/rake-compiler-0.9.2.ebuild,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -r1.10 -r1.11
--- rake-compiler-0.9.2.ebuild	14 Jul 2014 14:05:09 -0000	1.10
+++ rake-compiler-0.9.2.ebuild	21 Jul 2014 14:54:44 -0000	1.11
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rake-compiler/rake-compiler-0.9.2.ebuild,v 1.10 2014/07/14 14:05:09 phajdan.jr Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rake-compiler/rake-compiler-0.9.2.ebuild,v 1.11 2014/07/21 14:54:44 klausman Exp $
 
 EAPI=5
 USE_RUBY="ruby19 ruby20 jruby"
@@ -19,7 +19,7 @@
 SRC_URI="http://github.com/luislavena/${PN}/tarball/v${PV} -> ${P}.tar.gz"
 RUBY_S="luislavena-${PN}-*"
 
-KEYWORDS="~alpha ~amd64 arm hppa ia64 ~ppc ~ppc64 ~sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="alpha ~amd64 arm hppa ia64 ~ppc ~ppc64 ~sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 SLOT="0"
 IUSE=""
 



1.80                 dev-ruby/rake-compiler/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/rake-compiler/ChangeLog?rev=1.80&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/rake-compiler/ChangeLog?rev=1.80&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/rake-compiler/ChangeLog?r1=1.79&r2=1.80

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/rake-compiler/ChangeLog,v
retrieving revision 1.79
retrieving revision 1.80
diff -u -r1.79 -r1.80
--- ChangeLog	14 Jul 2014 14:05:09 -0000	1.79
+++ ChangeLog	21 Jul 2014 14:54:44 -0000	1.80
@@ -1,6 +1,10 @@
 # ChangeLog for dev-ruby/rake-compiler
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rake-compiler/ChangeLog,v 1.79 2014/07/14 14:05:09 phajdan.jr Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rake-compiler/ChangeLog,v 1.80 2014/07/21 14:54:44 klausman Exp $
+
+  21 Jul 2014; Tobias Klausmann <klausman@gentoo.org>
+  rake-compiler-0.9.2.ebuild:
+  Stable on alpha, bug #505920
 
   14 Jul 2014; Pawel Hajdan jr <phajdan.jr@gentoo.org>
   rake-compiler-0.9.2.ebuild:





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

* [gentoo-commits] gentoo-x86 commit in dev-ruby/rake-compiler: rake-compiler-0.9.2.ebuild ChangeLog
@ 2014-08-25 16:01 Manuel Rueger (mrueg)
  0 siblings, 0 replies; 12+ messages in thread
From: Manuel Rueger (mrueg) @ 2014-08-25 16:01 UTC (permalink / raw
  To: gentoo-commits

mrueg       14/08/25 16:01:10

  Modified:             rake-compiler-0.9.2.ebuild ChangeLog
  Log:
  Mark amd64 stable. Bug #505920.
  
  (Portage version: 2.2.12/cvs/Linux x86_64, signed Manifest commit with key )

Revision  Changes    Path
1.12                 dev-ruby/rake-compiler/rake-compiler-0.9.2.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/rake-compiler/rake-compiler-0.9.2.ebuild?rev=1.12&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/rake-compiler/rake-compiler-0.9.2.ebuild?rev=1.12&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/rake-compiler/rake-compiler-0.9.2.ebuild?r1=1.11&r2=1.12

Index: rake-compiler-0.9.2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/rake-compiler/rake-compiler-0.9.2.ebuild,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -r1.11 -r1.12
--- rake-compiler-0.9.2.ebuild	21 Jul 2014 14:54:44 -0000	1.11
+++ rake-compiler-0.9.2.ebuild	25 Aug 2014 16:01:10 -0000	1.12
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rake-compiler/rake-compiler-0.9.2.ebuild,v 1.11 2014/07/21 14:54:44 klausman Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rake-compiler/rake-compiler-0.9.2.ebuild,v 1.12 2014/08/25 16:01:10 mrueg Exp $
 
 EAPI=5
 USE_RUBY="ruby19 ruby20 jruby"
@@ -19,7 +19,7 @@
 SRC_URI="http://github.com/luislavena/${PN}/tarball/v${PV} -> ${P}.tar.gz"
 RUBY_S="luislavena-${PN}-*"
 
-KEYWORDS="alpha ~amd64 arm hppa ia64 ~ppc ~ppc64 ~sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="alpha amd64 arm hppa ia64 ~ppc ~ppc64 ~sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 SLOT="0"
 IUSE=""
 



1.84                 dev-ruby/rake-compiler/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/rake-compiler/ChangeLog?rev=1.84&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/rake-compiler/ChangeLog?rev=1.84&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/rake-compiler/ChangeLog?r1=1.83&r2=1.84

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/rake-compiler/ChangeLog,v
retrieving revision 1.83
retrieving revision 1.84
diff -u -r1.83 -r1.84
--- ChangeLog	15 Aug 2014 17:15:48 -0000	1.83
+++ ChangeLog	25 Aug 2014 16:01:10 -0000	1.84
@@ -1,6 +1,9 @@
 # ChangeLog for dev-ruby/rake-compiler
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rake-compiler/ChangeLog,v 1.83 2014/08/15 17:15:48 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rake-compiler/ChangeLog,v 1.84 2014/08/25 16:01:10 mrueg Exp $
+
+  25 Aug 2014; Manuel Rüger <mrueg@gentoo.org> rake-compiler-0.9.2.ebuild:
+  Mark amd64 stable. Bug #505920.
 
   15 Aug 2014; Raúl Porcel <armin76@gentoo.org> rake-compiler-0.9.3.ebuild:
   Add ~sparc wrt #465948





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

* [gentoo-commits] gentoo-x86 commit in dev-ruby/rake-compiler: rake-compiler-0.9.2.ebuild ChangeLog
@ 2014-11-18 11:43 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 12+ messages in thread
From: Agostino Sarubbo (ago) @ 2014-11-18 11:43 UTC (permalink / raw
  To: gentoo-commits

ago         14/11/18 11:43:46

  Modified:             rake-compiler-0.9.2.ebuild ChangeLog
  Log:
  Stable for ppc, wrt bug #505920
  
  (Portage version: 2.2.8-r2/cvs/Linux x86_64, RepoMan options: --include-arches="ppc", signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.13                 dev-ruby/rake-compiler/rake-compiler-0.9.2.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/rake-compiler/rake-compiler-0.9.2.ebuild?rev=1.13&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/rake-compiler/rake-compiler-0.9.2.ebuild?rev=1.13&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/rake-compiler/rake-compiler-0.9.2.ebuild?r1=1.12&r2=1.13

Index: rake-compiler-0.9.2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/rake-compiler/rake-compiler-0.9.2.ebuild,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -r1.12 -r1.13
--- rake-compiler-0.9.2.ebuild	25 Aug 2014 16:01:10 -0000	1.12
+++ rake-compiler-0.9.2.ebuild	18 Nov 2014 11:43:46 -0000	1.13
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rake-compiler/rake-compiler-0.9.2.ebuild,v 1.12 2014/08/25 16:01:10 mrueg Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rake-compiler/rake-compiler-0.9.2.ebuild,v 1.13 2014/11/18 11:43:46 ago Exp $
 
 EAPI=5
 USE_RUBY="ruby19 ruby20 jruby"
@@ -19,7 +19,7 @@
 SRC_URI="http://github.com/luislavena/${PN}/tarball/v${PV} -> ${P}.tar.gz"
 RUBY_S="luislavena-${PN}-*"
 
-KEYWORDS="alpha amd64 arm hppa ia64 ~ppc ~ppc64 ~sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="alpha amd64 arm hppa ia64 ppc ~ppc64 ~sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 SLOT="0"
 IUSE=""
 



1.85                 dev-ruby/rake-compiler/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/rake-compiler/ChangeLog?rev=1.85&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/rake-compiler/ChangeLog?rev=1.85&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/rake-compiler/ChangeLog?r1=1.84&r2=1.85

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/rake-compiler/ChangeLog,v
retrieving revision 1.84
retrieving revision 1.85
diff -u -r1.84 -r1.85
--- ChangeLog	25 Aug 2014 16:01:10 -0000	1.84
+++ ChangeLog	18 Nov 2014 11:43:46 -0000	1.85
@@ -1,6 +1,9 @@
 # ChangeLog for dev-ruby/rake-compiler
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rake-compiler/ChangeLog,v 1.84 2014/08/25 16:01:10 mrueg Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rake-compiler/ChangeLog,v 1.85 2014/11/18 11:43:46 ago Exp $
+
+  18 Nov 2014; Agostino Sarubbo <ago@gentoo.org> rake-compiler-0.9.2.ebuild:
+  Stable for ppc, wrt bug #505920
 
   25 Aug 2014; Manuel Rüger <mrueg@gentoo.org> rake-compiler-0.9.2.ebuild:
   Mark amd64 stable. Bug #505920.





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

* [gentoo-commits] gentoo-x86 commit in dev-ruby/rake-compiler: rake-compiler-0.9.2.ebuild ChangeLog
@ 2014-11-18 11:45 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 12+ messages in thread
From: Agostino Sarubbo (ago) @ 2014-11-18 11:45 UTC (permalink / raw
  To: gentoo-commits

ago         14/11/18 11:45:24

  Modified:             rake-compiler-0.9.2.ebuild ChangeLog
  Log:
  Stable for ppc64, wrt bug #505920
  
  (Portage version: 2.2.8-r2/cvs/Linux x86_64, RepoMan options: --include-arches="ppc64", signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.14                 dev-ruby/rake-compiler/rake-compiler-0.9.2.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/rake-compiler/rake-compiler-0.9.2.ebuild?rev=1.14&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/rake-compiler/rake-compiler-0.9.2.ebuild?rev=1.14&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/rake-compiler/rake-compiler-0.9.2.ebuild?r1=1.13&r2=1.14

Index: rake-compiler-0.9.2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/rake-compiler/rake-compiler-0.9.2.ebuild,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -r1.13 -r1.14
--- rake-compiler-0.9.2.ebuild	18 Nov 2014 11:43:46 -0000	1.13
+++ rake-compiler-0.9.2.ebuild	18 Nov 2014 11:45:24 -0000	1.14
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rake-compiler/rake-compiler-0.9.2.ebuild,v 1.13 2014/11/18 11:43:46 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rake-compiler/rake-compiler-0.9.2.ebuild,v 1.14 2014/11/18 11:45:24 ago Exp $
 
 EAPI=5
 USE_RUBY="ruby19 ruby20 jruby"
@@ -19,7 +19,7 @@
 SRC_URI="http://github.com/luislavena/${PN}/tarball/v${PV} -> ${P}.tar.gz"
 RUBY_S="luislavena-${PN}-*"
 
-KEYWORDS="alpha amd64 arm hppa ia64 ppc ~ppc64 ~sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="alpha amd64 arm hppa ia64 ppc ppc64 ~sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 SLOT="0"
 IUSE=""
 



1.86                 dev-ruby/rake-compiler/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/rake-compiler/ChangeLog?rev=1.86&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/rake-compiler/ChangeLog?rev=1.86&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/rake-compiler/ChangeLog?r1=1.85&r2=1.86

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/rake-compiler/ChangeLog,v
retrieving revision 1.85
retrieving revision 1.86
diff -u -r1.85 -r1.86
--- ChangeLog	18 Nov 2014 11:43:46 -0000	1.85
+++ ChangeLog	18 Nov 2014 11:45:24 -0000	1.86
@@ -1,6 +1,9 @@
 # ChangeLog for dev-ruby/rake-compiler
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rake-compiler/ChangeLog,v 1.85 2014/11/18 11:43:46 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rake-compiler/ChangeLog,v 1.86 2014/11/18 11:45:24 ago Exp $
+
+  18 Nov 2014; Agostino Sarubbo <ago@gentoo.org> rake-compiler-0.9.2.ebuild:
+  Stable for ppc64, wrt bug #505920
 
   18 Nov 2014; Agostino Sarubbo <ago@gentoo.org> rake-compiler-0.9.2.ebuild:
   Stable for ppc, wrt bug #505920





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

* [gentoo-commits] gentoo-x86 commit in dev-ruby/rake-compiler: rake-compiler-0.9.2.ebuild ChangeLog
@ 2014-11-18 11:46 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 12+ messages in thread
From: Agostino Sarubbo (ago) @ 2014-11-18 11:46 UTC (permalink / raw
  To: gentoo-commits

ago         14/11/18 11:46:53

  Modified:             rake-compiler-0.9.2.ebuild ChangeLog
  Log:
  Stable for sparc, wrt bug #505920
  
  (Portage version: 2.2.8-r2/cvs/Linux x86_64, RepoMan options: --include-arches="sparc", signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.15                 dev-ruby/rake-compiler/rake-compiler-0.9.2.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/rake-compiler/rake-compiler-0.9.2.ebuild?rev=1.15&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/rake-compiler/rake-compiler-0.9.2.ebuild?rev=1.15&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/rake-compiler/rake-compiler-0.9.2.ebuild?r1=1.14&r2=1.15

Index: rake-compiler-0.9.2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/rake-compiler/rake-compiler-0.9.2.ebuild,v
retrieving revision 1.14
retrieving revision 1.15
diff -u -r1.14 -r1.15
--- rake-compiler-0.9.2.ebuild	18 Nov 2014 11:45:24 -0000	1.14
+++ rake-compiler-0.9.2.ebuild	18 Nov 2014 11:46:53 -0000	1.15
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rake-compiler/rake-compiler-0.9.2.ebuild,v 1.14 2014/11/18 11:45:24 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rake-compiler/rake-compiler-0.9.2.ebuild,v 1.15 2014/11/18 11:46:53 ago Exp $
 
 EAPI=5
 USE_RUBY="ruby19 ruby20 jruby"
@@ -19,7 +19,7 @@
 SRC_URI="http://github.com/luislavena/${PN}/tarball/v${PV} -> ${P}.tar.gz"
 RUBY_S="luislavena-${PN}-*"
 
-KEYWORDS="alpha amd64 arm hppa ia64 ppc ppc64 ~sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="alpha amd64 arm hppa ia64 ppc ppc64 sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 SLOT="0"
 IUSE=""
 



1.87                 dev-ruby/rake-compiler/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/rake-compiler/ChangeLog?rev=1.87&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/rake-compiler/ChangeLog?rev=1.87&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/rake-compiler/ChangeLog?r1=1.86&r2=1.87

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/rake-compiler/ChangeLog,v
retrieving revision 1.86
retrieving revision 1.87
diff -u -r1.86 -r1.87
--- ChangeLog	18 Nov 2014 11:45:24 -0000	1.86
+++ ChangeLog	18 Nov 2014 11:46:53 -0000	1.87
@@ -1,6 +1,9 @@
 # ChangeLog for dev-ruby/rake-compiler
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rake-compiler/ChangeLog,v 1.86 2014/11/18 11:45:24 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rake-compiler/ChangeLog,v 1.87 2014/11/18 11:46:53 ago Exp $
+
+  18 Nov 2014; Agostino Sarubbo <ago@gentoo.org> rake-compiler-0.9.2.ebuild:
+  Stable for sparc, wrt bug #505920
 
   18 Nov 2014; Agostino Sarubbo <ago@gentoo.org> rake-compiler-0.9.2.ebuild:
   Stable for ppc64, wrt bug #505920





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

* [gentoo-commits] gentoo-x86 commit in dev-ruby/rake-compiler: rake-compiler-0.9.2.ebuild ChangeLog
@ 2015-04-19 18:25 Hans de Graaff (graaff)
  0 siblings, 0 replies; 12+ messages in thread
From: Hans de Graaff (graaff) @ 2015-04-19 18:25 UTC (permalink / raw
  To: gentoo-commits

graaff      15/04/19 18:25:29

  Modified:             rake-compiler-0.9.2.ebuild ChangeLog
  Log:
  Drop jruby.
  
  (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 0x8883FA56A308A8D7!)

Revision  Changes    Path
1.16                 dev-ruby/rake-compiler/rake-compiler-0.9.2.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/rake-compiler/rake-compiler-0.9.2.ebuild?rev=1.16&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/rake-compiler/rake-compiler-0.9.2.ebuild?rev=1.16&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/rake-compiler/rake-compiler-0.9.2.ebuild?r1=1.15&r2=1.16

Index: rake-compiler-0.9.2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/rake-compiler/rake-compiler-0.9.2.ebuild,v
retrieving revision 1.15
retrieving revision 1.16
diff -u -r1.15 -r1.16
--- rake-compiler-0.9.2.ebuild	18 Nov 2014 11:46:53 -0000	1.15
+++ rake-compiler-0.9.2.ebuild	19 Apr 2015 18:25:29 -0000	1.16
@@ -1,9 +1,9 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rake-compiler/rake-compiler-0.9.2.ebuild,v 1.15 2014/11/18 11:46:53 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rake-compiler/rake-compiler-0.9.2.ebuild,v 1.16 2015/04/19 18:25:29 graaff Exp $
 
 EAPI=5
-USE_RUBY="ruby19 ruby20 jruby"
+USE_RUBY="ruby19 ruby20"
 
 RUBY_FAKEGEM_RECIPE_TEST="none"
 
@@ -24,7 +24,7 @@
 IUSE=""
 
 ruby_add_rdepend "dev-ruby/rake"
-USE_RUBY="ruby19 ruby20 jruby" ruby_add_bdepend "test? ( dev-ruby/rspec:2 )"
+USE_RUBY="ruby19 ruby20" ruby_add_bdepend "test? ( dev-ruby/rspec:2 )"
 USE_RUBY="ruby19" ruby_add_bdepend "test? ( dev-util/cucumber )"
 
 each_ruby_prepare() {



1.94                 dev-ruby/rake-compiler/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/rake-compiler/ChangeLog?rev=1.94&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/rake-compiler/ChangeLog?rev=1.94&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/rake-compiler/ChangeLog?r1=1.93&r2=1.94

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/rake-compiler/ChangeLog,v
retrieving revision 1.93
retrieving revision 1.94
diff -u -r1.93 -r1.94
--- ChangeLog	19 Apr 2015 18:24:49 -0000	1.93
+++ ChangeLog	19 Apr 2015 18:25:29 -0000	1.94
@@ -1,6 +1,9 @@
 # ChangeLog for dev-ruby/rake-compiler
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rake-compiler/ChangeLog,v 1.93 2015/04/19 18:24:49 graaff Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rake-compiler/ChangeLog,v 1.94 2015/04/19 18:25:29 graaff Exp $
+
+  19 Apr 2015; Hans de Graaff <graaff@gentoo.org> rake-compiler-0.9.2.ebuild:
+  Drop jruby.
 
   19 Apr 2015; Hans de Graaff <graaff@gentoo.org> -rake-compiler-0.9.4.ebuild:
   Cleanup.





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

end of thread, other threads:[~2015-04-19 18:25 UTC | newest]

Thread overview: 12+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-06-08 15:23 [gentoo-commits] gentoo-x86 commit in dev-ruby/rake-compiler: rake-compiler-0.9.2.ebuild ChangeLog Akinori Hattori (hattya)
  -- strict thread matches above, loose matches on Subject: below --
2015-04-19 18:25 Hans de Graaff (graaff)
2014-11-18 11:46 Agostino Sarubbo (ago)
2014-11-18 11:45 Agostino Sarubbo (ago)
2014-11-18 11:43 Agostino Sarubbo (ago)
2014-08-25 16:01 Manuel Rueger (mrueg)
2014-07-21 14:54 Tobias Klausmann (klausman)
2014-07-14 14:05 PaweA Hajdan (phajdan.jr)
2014-06-13 19:18 Jeroen Roovers (jer)
2014-06-01 12:49 Markus Meier (maekke)
2014-03-21 12:00 Hans de Graaff (graaff)
2013-12-17 10:46 Manuel Rueger (mrueg)

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