public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in dev-ruby/rspec-core: rspec-core-2.6.4.ebuild ChangeLog
@ 2011-06-17 18:26 Hans de Graaff (graaff)
  0 siblings, 0 replies; 9+ messages in thread
From: Hans de Graaff (graaff) @ 2011-06-17 18:26 UTC (permalink / raw
  To: gentoo-commits

graaff      11/06/17 18:26:33

  Modified:             ChangeLog
  Added:                rspec-core-2.6.4.ebuild
  Log:
  Version bump.
  
  (Portage version: 2.1.9.42/cvs/Linux x86_64)

Revision  Changes    Path
1.11                 dev-ruby/rspec-core/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/rspec-core/ChangeLog,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -r1.10 -r1.11
--- ChangeLog	31 May 2011 19:21:35 -0000	1.10
+++ ChangeLog	17 Jun 2011 18:26:33 -0000	1.11
@@ -1,6 +1,11 @@
 # ChangeLog for dev-ruby/rspec-core
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rspec-core/ChangeLog,v 1.10 2011/05/31 19:21:35 graaff Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rspec-core/ChangeLog,v 1.11 2011/06/17 18:26:33 graaff Exp $
+
+*rspec-core-2.6.4 (17 Jun 2011)
+
+  17 Jun 2011; Hans de Graaff <graaff@gentoo.org> +rspec-core-2.6.4.ebuild:
+  Version bump.
 
   31 May 2011; Hans de Graaff <graaff@gentoo.org> rspec-core-2.5.1.ebuild:
   Drop ruby19 to create a stable candidate.



1.1                  dev-ruby/rspec-core/rspec-core-2.6.4.ebuild

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

Index: rspec-core-2.6.4.ebuild
===================================================================
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rspec-core/rspec-core-2.6.4.ebuild,v 1.1 2011/06/17 18:26:33 graaff Exp $

EAPI=2
USE_RUBY="ruby18 ree18 ruby19 jruby"

RUBY_FAKEGEM_TASK_TEST="none"
RUBY_FAKEGEM_TASK_DOC="none"

RUBY_FAKEGEM_EXTRADOC="README.md"

inherit ruby-fakegem

DESCRIPTION="A Behaviour Driven Development (BDD) framework for Ruby"
HOMEPAGE="http://rspec.rubyforge.org/"

LICENSE="MIT"
SLOT="2"
KEYWORDS="~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~x64-solaris ~x86-solaris"
IUSE=""

RDEPEND="${RDEPEND} !<dev-ruby/rspec-1.3.1-r1"

ruby_add_bdepend "test? (
		dev-ruby/syntax
		>=dev-ruby/zentest-4.4.1
		dev-ruby/rspec-expectations:2
		dev-ruby/rspec-mocks:2
	)"

#	>=dev-ruby/cucumber-0.5.3
#	>=dev-ruby/autotest-4.2.9 -> zentest-4.4.1
#	dev-ruby/aruba"

all_ruby_prepare() {
	# Don't set up bundler: it doesn't understand our setup.
	sed -i -e '/[Bb]undler/d' Rakefile || die

	# Remove the Gemfile to avoid running through 'bundle exec'
	rm Gemfile || die

	# Also clean the /usr/lib/rubyee path (which is our own invention).
	sed -i -e 's#lib\\d\*\\/ruby\\/#lib\\d*\\/ruby(ee|)\\/#' lib/rspec/core/configuration.rb || die

	# Remove jruby-specific comparison documents since for us the normal
	# version passes.
	cp spec/rspec/core/formatters/html_formatted-1.8.7.html spec/rspec/core/formatters/html_formatted-1.8.7-jruby.html|| die
	cp spec/rspec/core/formatters/text_mate_formatted-1.8.7.html spec/rspec/core/formatters/text_mate_formatted-1.8.7-jruby.html|| die
}

all_ruby_compile() {
	if use doc ; then
		RUBYLIB="${S}/lib" rake rdoc || die "Unable to create documentation."
	fi
}

each_ruby_test() {
	case ${RUBY} in
		*jruby)
			# Run jruby's tests with the installed rspec script since
			# otherwise files can't be found for some unknown reason.
			RUBYLIB=${S}/lib ${RUBY} -S rspec --color spec || die "Tests failed."
			;;
		*)
			PATH="${S}/bin:${PATH}" RUBYLIB="${S}/lib" ${RUBY} -S rake spec || die "Tests failed."
			;;
	esac

	# There are features but it seems as if these only work against a
	# fully installed version.
}






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

* [gentoo-commits] gentoo-x86 commit in dev-ruby/rspec-core: rspec-core-2.6.4.ebuild ChangeLog
@ 2011-07-23 14:36 Kacper Kowalik (xarthisius)
  0 siblings, 0 replies; 9+ messages in thread
From: Kacper Kowalik (xarthisius) @ 2011-07-23 14:36 UTC (permalink / raw
  To: gentoo-commits

xarthisius    11/07/23 14:36:52

  Modified:             rspec-core-2.6.4.ebuild ChangeLog
  Log:
  ppc stable wrt #369573
  
  (Portage version: 2.2.0_alpha46/cvs/Linux x86_64)

Revision  Changes    Path
1.2                  dev-ruby/rspec-core/rspec-core-2.6.4.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/rspec-core/rspec-core-2.6.4.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/rspec-core/rspec-core-2.6.4.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/rspec-core/rspec-core-2.6.4.ebuild?r1=1.1&r2=1.2

Index: rspec-core-2.6.4.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/rspec-core/rspec-core-2.6.4.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- rspec-core-2.6.4.ebuild	17 Jun 2011 18:26:33 -0000	1.1
+++ rspec-core-2.6.4.ebuild	23 Jul 2011 14:36:52 -0000	1.2
@@ -1,6 +1,6 @@
 # Copyright 1999-2011 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rspec-core/rspec-core-2.6.4.ebuild,v 1.1 2011/06/17 18:26:33 graaff Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rspec-core/rspec-core-2.6.4.ebuild,v 1.2 2011/07/23 14:36:52 xarthisius Exp $
 
 EAPI=2
 USE_RUBY="ruby18 ree18 ruby19 jruby"
@@ -17,7 +17,7 @@
 
 LICENSE="MIT"
 SLOT="2"
-KEYWORDS="~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~x64-solaris ~x86-solaris"
+KEYWORDS="~amd64 ~hppa ~ia64 ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~x64-solaris ~x86-solaris"
 IUSE=""
 
 RDEPEND="${RDEPEND} !<dev-ruby/rspec-1.3.1-r1"



1.13                 dev-ruby/rspec-core/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/rspec-core/ChangeLog,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -r1.12 -r1.13
--- ChangeLog	17 Jul 2011 09:33:44 -0000	1.12
+++ ChangeLog	23 Jul 2011 14:36:52 -0000	1.13
@@ -1,6 +1,9 @@
 # ChangeLog for dev-ruby/rspec-core
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rspec-core/ChangeLog,v 1.12 2011/07/17 09:33:44 graaff Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rspec-core/ChangeLog,v 1.13 2011/07/23 14:36:52 xarthisius Exp $
+
+  23 Jul 2011; Kacper Kowalik <xarthisius@gentoo.org> rspec-core-2.6.4.ebuild:
+  ppc stable wrt #369573
 
   17 Jul 2011; Hans de Graaff <graaff@gentoo.org> -rspec-core-2.6.0.ebuild:
   Remove old version.






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

* [gentoo-commits] gentoo-x86 commit in dev-ruby/rspec-core: rspec-core-2.6.4.ebuild ChangeLog
@ 2011-08-02 16:39 Markos Chandras (hwoarang)
  0 siblings, 0 replies; 9+ messages in thread
From: Markos Chandras (hwoarang) @ 2011-08-02 16:39 UTC (permalink / raw
  To: gentoo-commits

hwoarang    11/08/02 16:39:17

  Modified:             rspec-core-2.6.4.ebuild ChangeLog
  Log:
  Stable on amd64 wrt bug #369573
  
  (Portage version: 2.2.0_alpha46/cvs/Linux x86_64)

Revision  Changes    Path
1.3                  dev-ruby/rspec-core/rspec-core-2.6.4.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/rspec-core/rspec-core-2.6.4.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/rspec-core/rspec-core-2.6.4.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/rspec-core/rspec-core-2.6.4.ebuild?r1=1.2&r2=1.3

Index: rspec-core-2.6.4.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/rspec-core/rspec-core-2.6.4.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- rspec-core-2.6.4.ebuild	23 Jul 2011 14:36:52 -0000	1.2
+++ rspec-core-2.6.4.ebuild	2 Aug 2011 16:39:16 -0000	1.3
@@ -1,6 +1,6 @@
 # Copyright 1999-2011 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rspec-core/rspec-core-2.6.4.ebuild,v 1.2 2011/07/23 14:36:52 xarthisius Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rspec-core/rspec-core-2.6.4.ebuild,v 1.3 2011/08/02 16:39:16 hwoarang Exp $
 
 EAPI=2
 USE_RUBY="ruby18 ree18 ruby19 jruby"
@@ -17,7 +17,7 @@
 
 LICENSE="MIT"
 SLOT="2"
-KEYWORDS="~amd64 ~hppa ~ia64 ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~x64-solaris ~x86-solaris"
+KEYWORDS="amd64 ~hppa ~ia64 ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~x64-solaris ~x86-solaris"
 IUSE=""
 
 RDEPEND="${RDEPEND} !<dev-ruby/rspec-1.3.1-r1"



1.14                 dev-ruby/rspec-core/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/rspec-core/ChangeLog,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -r1.13 -r1.14
--- ChangeLog	23 Jul 2011 14:36:52 -0000	1.13
+++ ChangeLog	2 Aug 2011 16:39:16 -0000	1.14
@@ -1,6 +1,9 @@
 # ChangeLog for dev-ruby/rspec-core
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rspec-core/ChangeLog,v 1.13 2011/07/23 14:36:52 xarthisius Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rspec-core/ChangeLog,v 1.14 2011/08/02 16:39:16 hwoarang Exp $
+
+  02 Aug 2011; Markos Chandras <hwoarang@gentoo.org> rspec-core-2.6.4.ebuild:
+  Stable on amd64 wrt bug #369573
 
   23 Jul 2011; Kacper Kowalik <xarthisius@gentoo.org> rspec-core-2.6.4.ebuild:
   ppc stable wrt #369573






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

* [gentoo-commits] gentoo-x86 commit in dev-ruby/rspec-core: rspec-core-2.6.4.ebuild ChangeLog
@ 2011-08-25 13:31 Hans de Graaff (graaff)
  0 siblings, 0 replies; 9+ messages in thread
From: Hans de Graaff (graaff) @ 2011-08-25 13:31 UTC (permalink / raw
  To: gentoo-commits

graaff      11/08/25 13:31:36

  Modified:             rspec-core-2.6.4.ebuild ChangeLog
  Log:
  Add missing nokogiri dependency, bug 369573.
  
  (Portage version: 2.1.10.3/cvs/Linux x86_64)

Revision  Changes    Path
1.4                  dev-ruby/rspec-core/rspec-core-2.6.4.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/rspec-core/rspec-core-2.6.4.ebuild?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/rspec-core/rspec-core-2.6.4.ebuild?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/rspec-core/rspec-core-2.6.4.ebuild?r1=1.3&r2=1.4

Index: rspec-core-2.6.4.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/rspec-core/rspec-core-2.6.4.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- rspec-core-2.6.4.ebuild	2 Aug 2011 16:39:16 -0000	1.3
+++ rspec-core-2.6.4.ebuild	25 Aug 2011 13:31:35 -0000	1.4
@@ -1,6 +1,6 @@
 # Copyright 1999-2011 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rspec-core/rspec-core-2.6.4.ebuild,v 1.3 2011/08/02 16:39:16 hwoarang Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rspec-core/rspec-core-2.6.4.ebuild,v 1.4 2011/08/25 13:31:35 graaff Exp $
 
 EAPI=2
 USE_RUBY="ruby18 ree18 ruby19 jruby"
@@ -23,6 +23,7 @@
 RDEPEND="${RDEPEND} !<dev-ruby/rspec-1.3.1-r1"
 
 ruby_add_bdepend "test? (
+		dev-ruby/nokogiri
 		dev-ruby/syntax
 		>=dev-ruby/zentest-4.4.1
 		dev-ruby/rspec-expectations:2



1.15                 dev-ruby/rspec-core/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/rspec-core/ChangeLog,v
retrieving revision 1.14
retrieving revision 1.15
diff -u -r1.14 -r1.15
--- ChangeLog	2 Aug 2011 16:39:16 -0000	1.14
+++ ChangeLog	25 Aug 2011 13:31:35 -0000	1.15
@@ -1,6 +1,9 @@
 # ChangeLog for dev-ruby/rspec-core
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rspec-core/ChangeLog,v 1.14 2011/08/02 16:39:16 hwoarang Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rspec-core/ChangeLog,v 1.15 2011/08/25 13:31:35 graaff Exp $
+
+  25 Aug 2011; Hans de Graaff <graaff@gentoo.org> rspec-core-2.6.4.ebuild:
+  Add missing nokogiri dependency, bug 369573.
 
   02 Aug 2011; Markos Chandras <hwoarang@gentoo.org> rspec-core-2.6.4.ebuild:
   Stable on amd64 wrt bug #369573






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

* [gentoo-commits] gentoo-x86 commit in dev-ruby/rspec-core: rspec-core-2.6.4.ebuild ChangeLog
@ 2011-08-27  9:47 Fabian Groffen (grobian)
  0 siblings, 0 replies; 9+ messages in thread
From: Fabian Groffen (grobian) @ 2011-08-27  9:47 UTC (permalink / raw
  To: gentoo-commits

grobian     11/08/27 09:47:24

  Modified:             rspec-core-2.6.4.ebuild ChangeLog
  Log:
  Marked ~x64-macos
  
  (Portage version: 2.2.01.19074-prefix/cvs/Darwin i386)

Revision  Changes    Path
1.5                  dev-ruby/rspec-core/rspec-core-2.6.4.ebuild

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

Index: rspec-core-2.6.4.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/rspec-core/rspec-core-2.6.4.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- rspec-core-2.6.4.ebuild	25 Aug 2011 13:31:35 -0000	1.4
+++ rspec-core-2.6.4.ebuild	27 Aug 2011 09:47:24 -0000	1.5
@@ -1,6 +1,6 @@
 # Copyright 1999-2011 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rspec-core/rspec-core-2.6.4.ebuild,v 1.4 2011/08/25 13:31:35 graaff Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rspec-core/rspec-core-2.6.4.ebuild,v 1.5 2011/08/27 09:47:24 grobian Exp $
 
 EAPI=2
 USE_RUBY="ruby18 ree18 ruby19 jruby"
@@ -17,7 +17,7 @@
 
 LICENSE="MIT"
 SLOT="2"
-KEYWORDS="amd64 ~hppa ~ia64 ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~x64-solaris ~x86-solaris"
+KEYWORDS="amd64 ~hppa ~ia64 ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris"
 IUSE=""
 
 RDEPEND="${RDEPEND} !<dev-ruby/rspec-1.3.1-r1"



1.16                 dev-ruby/rspec-core/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/rspec-core/ChangeLog,v
retrieving revision 1.15
retrieving revision 1.16
diff -u -r1.15 -r1.16
--- ChangeLog	25 Aug 2011 13:31:35 -0000	1.15
+++ ChangeLog	27 Aug 2011 09:47:24 -0000	1.16
@@ -1,6 +1,9 @@
 # ChangeLog for dev-ruby/rspec-core
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rspec-core/ChangeLog,v 1.15 2011/08/25 13:31:35 graaff Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rspec-core/ChangeLog,v 1.16 2011/08/27 09:47:24 grobian Exp $
+
+  27 Aug 2011; Fabian Groffen <grobian@gentoo.org> rspec-core-2.6.4.ebuild:
+  Marked ~x64-macos
 
   25 Aug 2011; Hans de Graaff <graaff@gentoo.org> rspec-core-2.6.4.ebuild:
   Add missing nokogiri dependency, bug 369573.






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

* [gentoo-commits] gentoo-x86 commit in dev-ruby/rspec-core: rspec-core-2.6.4.ebuild ChangeLog
@ 2011-09-14 17:19 Jeroen Roovers (jer)
  0 siblings, 0 replies; 9+ messages in thread
From: Jeroen Roovers (jer) @ 2011-09-14 17:19 UTC (permalink / raw
  To: gentoo-commits

jer         11/09/14 17:19:02

  Modified:             rspec-core-2.6.4.ebuild ChangeLog
  Log:
  Stable for HPPA (bug #369573).
  
  (Portage version: 2.2.0_alpha56/cvs/Linux x86_64)

Revision  Changes    Path
1.6                  dev-ruby/rspec-core/rspec-core-2.6.4.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/rspec-core/rspec-core-2.6.4.ebuild?rev=1.6&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/rspec-core/rspec-core-2.6.4.ebuild?rev=1.6&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/rspec-core/rspec-core-2.6.4.ebuild?r1=1.5&r2=1.6

Index: rspec-core-2.6.4.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/rspec-core/rspec-core-2.6.4.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- rspec-core-2.6.4.ebuild	27 Aug 2011 09:47:24 -0000	1.5
+++ rspec-core-2.6.4.ebuild	14 Sep 2011 17:19:02 -0000	1.6
@@ -1,6 +1,6 @@
 # Copyright 1999-2011 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rspec-core/rspec-core-2.6.4.ebuild,v 1.5 2011/08/27 09:47:24 grobian Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rspec-core/rspec-core-2.6.4.ebuild,v 1.6 2011/09/14 17:19:02 jer Exp $
 
 EAPI=2
 USE_RUBY="ruby18 ree18 ruby19 jruby"
@@ -17,7 +17,7 @@
 
 LICENSE="MIT"
 SLOT="2"
-KEYWORDS="amd64 ~hppa ~ia64 ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris"
+KEYWORDS="amd64 hppa ~ia64 ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris"
 IUSE=""
 
 RDEPEND="${RDEPEND} !<dev-ruby/rspec-1.3.1-r1"



1.17                 dev-ruby/rspec-core/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/rspec-core/ChangeLog?rev=1.17&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/rspec-core/ChangeLog?rev=1.17&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/rspec-core/ChangeLog?r1=1.16&r2=1.17

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/rspec-core/ChangeLog,v
retrieving revision 1.16
retrieving revision 1.17
diff -u -r1.16 -r1.17
--- ChangeLog	27 Aug 2011 09:47:24 -0000	1.16
+++ ChangeLog	14 Sep 2011 17:19:02 -0000	1.17
@@ -1,6 +1,9 @@
 # ChangeLog for dev-ruby/rspec-core
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rspec-core/ChangeLog,v 1.16 2011/08/27 09:47:24 grobian Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rspec-core/ChangeLog,v 1.17 2011/09/14 17:19:02 jer Exp $
+
+  14 Sep 2011; Jeroen Roovers <jer@gentoo.org> rspec-core-2.6.4.ebuild:
+  Stable for HPPA (bug #369573).
 
   27 Aug 2011; Fabian Groffen <grobian@gentoo.org> rspec-core-2.6.4.ebuild:
   Marked ~x64-macos






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

* [gentoo-commits] gentoo-x86 commit in dev-ruby/rspec-core: rspec-core-2.6.4.ebuild ChangeLog
@ 2011-09-19 21:49 Markus Meier (maekke)
  0 siblings, 0 replies; 9+ messages in thread
From: Markus Meier (maekke) @ 2011-09-19 21:49 UTC (permalink / raw
  To: gentoo-commits

maekke      11/09/19 21:49:53

  Modified:             rspec-core-2.6.4.ebuild ChangeLog
  Log:
  x86 stable, bug #369573
  
  (Portage version: 2.1.10.18/cvs/Linux x86_64)

Revision  Changes    Path
1.7                  dev-ruby/rspec-core/rspec-core-2.6.4.ebuild

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

Index: rspec-core-2.6.4.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/rspec-core/rspec-core-2.6.4.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- rspec-core-2.6.4.ebuild	14 Sep 2011 17:19:02 -0000	1.6
+++ rspec-core-2.6.4.ebuild	19 Sep 2011 21:49:53 -0000	1.7
@@ -1,6 +1,6 @@
 # Copyright 1999-2011 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rspec-core/rspec-core-2.6.4.ebuild,v 1.6 2011/09/14 17:19:02 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rspec-core/rspec-core-2.6.4.ebuild,v 1.7 2011/09/19 21:49:53 maekke Exp $
 
 EAPI=2
 USE_RUBY="ruby18 ree18 ruby19 jruby"
@@ -17,7 +17,7 @@
 
 LICENSE="MIT"
 SLOT="2"
-KEYWORDS="amd64 hppa ~ia64 ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris"
+KEYWORDS="amd64 hppa ~ia64 ppc ~ppc64 ~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris"
 IUSE=""
 
 RDEPEND="${RDEPEND} !<dev-ruby/rspec-1.3.1-r1"



1.19                 dev-ruby/rspec-core/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/rspec-core/ChangeLog?rev=1.19&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/rspec-core/ChangeLog?rev=1.19&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/rspec-core/ChangeLog?r1=1.18&r2=1.19

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/rspec-core/ChangeLog,v
retrieving revision 1.18
retrieving revision 1.19
diff -u -r1.18 -r1.19
--- ChangeLog	19 Sep 2011 19:02:22 -0000	1.18
+++ ChangeLog	19 Sep 2011 21:49:53 -0000	1.19
@@ -1,6 +1,9 @@
 # ChangeLog for dev-ruby/rspec-core
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rspec-core/ChangeLog,v 1.18 2011/09/19 19:02:22 graaff Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rspec-core/ChangeLog,v 1.19 2011/09/19 21:49:53 maekke Exp $
+
+  19 Sep 2011; Markus Meier <maekke@gentoo.org> rspec-core-2.6.4.ebuild:
+  x86 stable, bug #369573
 
   19 Sep 2011; Hans de Graaff <graaff@gentoo.org> -rspec-core-2.5.1.ebuild:
   Remove old version.






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

* [gentoo-commits] gentoo-x86 commit in dev-ruby/rspec-core: rspec-core-2.6.4.ebuild ChangeLog
@ 2011-10-02 17:05 Raul Porcel (armin76)
  0 siblings, 0 replies; 9+ messages in thread
From: Raul Porcel (armin76) @ 2011-10-02 17:05 UTC (permalink / raw
  To: gentoo-commits

armin76     11/10/02 17:05:37

  Modified:             rspec-core-2.6.4.ebuild ChangeLog
  Log:
  ia64/sparc stable wrt #369573
  
  (Portage version: 2.1.10.11/cvs/Linux ia64)

Revision  Changes    Path
1.8                  dev-ruby/rspec-core/rspec-core-2.6.4.ebuild

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

Index: rspec-core-2.6.4.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/rspec-core/rspec-core-2.6.4.ebuild,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- rspec-core-2.6.4.ebuild	19 Sep 2011 21:49:53 -0000	1.7
+++ rspec-core-2.6.4.ebuild	2 Oct 2011 17:05:37 -0000	1.8
@@ -1,6 +1,6 @@
 # Copyright 1999-2011 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rspec-core/rspec-core-2.6.4.ebuild,v 1.7 2011/09/19 21:49:53 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rspec-core/rspec-core-2.6.4.ebuild,v 1.8 2011/10/02 17:05:37 armin76 Exp $
 
 EAPI=2
 USE_RUBY="ruby18 ree18 ruby19 jruby"
@@ -17,7 +17,7 @@
 
 LICENSE="MIT"
 SLOT="2"
-KEYWORDS="amd64 hppa ~ia64 ppc ~ppc64 ~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris"
+KEYWORDS="amd64 hppa ia64 ppc ~ppc64 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris"
 IUSE=""
 
 RDEPEND="${RDEPEND} !<dev-ruby/rspec-1.3.1-r1"



1.20                 dev-ruby/rspec-core/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/rspec-core/ChangeLog?rev=1.20&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/rspec-core/ChangeLog?rev=1.20&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/rspec-core/ChangeLog?r1=1.19&r2=1.20

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/rspec-core/ChangeLog,v
retrieving revision 1.19
retrieving revision 1.20
diff -u -r1.19 -r1.20
--- ChangeLog	19 Sep 2011 21:49:53 -0000	1.19
+++ ChangeLog	2 Oct 2011 17:05:37 -0000	1.20
@@ -1,6 +1,9 @@
 # ChangeLog for dev-ruby/rspec-core
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rspec-core/ChangeLog,v 1.19 2011/09/19 21:49:53 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rspec-core/ChangeLog,v 1.20 2011/10/02 17:05:37 armin76 Exp $
+
+  02 Oct 2011; Raúl Porcel <armin76@gentoo.org> rspec-core-2.6.4.ebuild:
+  ia64/sparc stable wrt #369573
 
   19 Sep 2011; Markus Meier <maekke@gentoo.org> rspec-core-2.6.4.ebuild:
   x86 stable, bug #369573






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

* [gentoo-commits] gentoo-x86 commit in dev-ruby/rspec-core: rspec-core-2.6.4.ebuild ChangeLog
@ 2012-05-06 15:17 Kacper Kowalik (xarthisius)
  0 siblings, 0 replies; 9+ messages in thread
From: Kacper Kowalik (xarthisius) @ 2012-05-06 15:17 UTC (permalink / raw
  To: gentoo-commits

xarthisius    12/05/06 15:17:47

  Modified:             rspec-core-2.6.4.ebuild ChangeLog
  Log:
  ppc64 stable wrt #369573
  
  (Portage version: 2.2.0_alpha100/cvs/Linux x86_64)

Revision  Changes    Path
1.10                 dev-ruby/rspec-core/rspec-core-2.6.4.ebuild

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

Index: rspec-core-2.6.4.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/rspec-core/rspec-core-2.6.4.ebuild,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- rspec-core-2.6.4.ebuild	28 Dec 2011 08:22:50 -0000	1.9
+++ rspec-core-2.6.4.ebuild	6 May 2012 15:17:47 -0000	1.10
@@ -1,6 +1,6 @@
-# Copyright 1999-2011 Gentoo Foundation
+# Copyright 1999-2012 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rspec-core/rspec-core-2.6.4.ebuild,v 1.9 2011/12/28 08:22:50 graaff Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rspec-core/rspec-core-2.6.4.ebuild,v 1.10 2012/05/06 15:17:47 xarthisius Exp $
 
 EAPI=2
 USE_RUBY="ruby18 ree18 jruby"
@@ -17,7 +17,7 @@
 
 LICENSE="MIT"
 SLOT="2"
-KEYWORDS="amd64 hppa ia64 ppc ~ppc64 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris"
+KEYWORDS="amd64 hppa ia64 ppc ppc64 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris"
 IUSE=""
 
 RDEPEND="${RDEPEND} !<dev-ruby/rspec-1.3.1-r1"



1.24                 dev-ruby/rspec-core/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/rspec-core/ChangeLog?rev=1.24&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/rspec-core/ChangeLog?rev=1.24&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/rspec-core/ChangeLog?r1=1.23&r2=1.24

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/rspec-core/ChangeLog,v
retrieving revision 1.23
retrieving revision 1.24
diff -u -r1.23 -r1.24
--- ChangeLog	2 Mar 2012 11:12:00 -0000	1.23
+++ ChangeLog	6 May 2012 15:17:47 -0000	1.24
@@ -1,6 +1,9 @@
 # ChangeLog for dev-ruby/rspec-core
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rspec-core/ChangeLog,v 1.23 2012/03/02 11:12:00 naota Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rspec-core/ChangeLog,v 1.24 2012/05/06 15:17:47 xarthisius Exp $
+
+  06 May 2012; Kacper Kowalik <xarthisius@gentoo.org> rspec-core-2.6.4.ebuild:
+  ppc64 stable wrt #369573
 
   02 Mar 2012; Naohiro Aota <naota@gentoo.org> rspec-core-2.6.4-r1.ebuild:
   Add ~x86-fbsd






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

end of thread, other threads:[~2012-05-06 15:18 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-05-06 15:17 [gentoo-commits] gentoo-x86 commit in dev-ruby/rspec-core: rspec-core-2.6.4.ebuild ChangeLog Kacper Kowalik (xarthisius)
  -- strict thread matches above, loose matches on Subject: below --
2011-10-02 17:05 Raul Porcel (armin76)
2011-09-19 21:49 Markus Meier (maekke)
2011-09-14 17:19 Jeroen Roovers (jer)
2011-08-27  9:47 Fabian Groffen (grobian)
2011-08-25 13:31 Hans de Graaff (graaff)
2011-08-02 16:39 Markos Chandras (hwoarang)
2011-07-23 14:36 Kacper Kowalik (xarthisius)
2011-06-17 18:26 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