public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in dev-ruby/gherkin: gherkin-2.12.0-r2.ebuild ChangeLog
@ 2014-05-20 18:49 Hans de Graaff (graaff)
  0 siblings, 0 replies; 11+ messages in thread
From: Hans de Graaff (graaff) @ 2014-05-20 18:49 UTC (permalink / raw
  To: gentoo-commits

graaff      14/05/20 18:49:47

  Modified:             ChangeLog
  Added:                gherkin-2.12.0-r2.ebuild
  Log:
  Add ruby20. Drop arm, ia64 due to bug 510876.
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 0x8883FA56A308A8D7!)

Revision  Changes    Path
1.63                 dev-ruby/gherkin/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/gherkin/ChangeLog,v
retrieving revision 1.62
retrieving revision 1.63
diff -u -r1.62 -r1.63
--- ChangeLog	24 Apr 2014 17:35:33 -0000	1.62
+++ ChangeLog	20 May 2014 18:49:47 -0000	1.63
@@ -1,6 +1,11 @@
 # ChangeLog for dev-ruby/gherkin
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/gherkin/ChangeLog,v 1.62 2014/04/24 17:35:33 mrueg Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/gherkin/ChangeLog,v 1.63 2014/05/20 18:49:47 graaff Exp $
+
+*gherkin-2.12.0-r2 (20 May 2014)
+
+  20 May 2014; Hans de Graaff <graaff@gentoo.org> +gherkin-2.12.0-r2.ebuild:
+  Add ruby20. Drop arm, ia64 due to bug 510876.
 
   24 Apr 2014; Manuel Rüger <mrueg@gentoo.org> -gherkin-2.12.0.ebuild,
   gherkin-2.11.6.ebuild, gherkin-2.12.0-r1.ebuild:



1.1                  dev-ruby/gherkin/gherkin-2.12.0-r2.ebuild

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

Index: gherkin-2.12.0-r2.ebuild
===================================================================
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/gherkin/gherkin-2.12.0-r2.ebuild,v 1.1 2014/05/20 18:49:47 graaff Exp $

EAPI=5
USE_RUBY="ruby19 ruby20"

RUBY_FAKEGEM_TASK_DOC=""
RUBY_FAKEGEM_TASK_TEST=""

RUBY_FAKEGEM_DOCDIR="rdoc"
RUBY_FAKEGEM_EXTRADOC="History.md README.md"

inherit ruby-fakegem

DESCRIPTION="Fast Gherkin lexer and parser based on Ragel."
HOMEPAGE="https://github.com/cucumber/gherkin"
LICENSE="MIT"
SRC_URI="https://github.com/cucumber/gherkin/archive/v${PV}.tar.gz -> ${P}-git.tgz"

KEYWORDS="~amd64 ~hppa ~ppc ~ppc64 ~x86"
SLOT="0"
IUSE="doc test"

DEPEND="${DEPEND} dev-util/ragel"
RDEPEND="${RDEPEND}"

ruby_add_bdepend "
	dev-ruby/rake-compiler
	test? (
		>=dev-ruby/builder-2.1.2
		>=dev-util/cucumber-1.1.3
		>=dev-ruby/rspec-2.6.0
		>=dev-ruby/term-ansicolor-1.0.5
	)
	doc? ( >=dev-ruby/yard-0.8.3 )"

ruby_add_rdepend ">=dev-ruby/multi_json-1.3"

all_ruby_prepare() {
	# Remove Bundler-related things.
	sed -i -e '/[Bb]undler/d' Rakefile spec/spec_helper.rb features/support/env.rb || die
	rm Gemfile || die

	# Don't use compile dependencies to avoid building again for specs.
	sed -i -e '/:compile/d' Rakefile

	# Keep this hardcoded -O0 optimization level since
	# https://github.com/cucumber/gherkin/issues/182#issuecomment-6945009
	# hints at the fact that removing it might cause the mysterious
	# Lexer errors that hapen intermittently.
	# sed -ie -e 's/-O0//' tasks/compile.rake || die

	# Remove feature that depends on direct access to the cucumber
	# source. We could probably set this up by downloading the source
	# and unpacking it, but skipping this now in the interest of time.
	rm features/pretty_formatter.feature || die

	# We need to remove these tasks during bootstrapping since it tries
	# to load cucumber already but we can be sure it isn't installed
	# yet. Also remove other rake tasks for which we may not yet have
	# dependencies.
	if ! use test ; then
		rm tasks/cucumber.rake tasks/rspec.rake || die "Unable to remove rake tasks."
	fi

	# Avoid dependency on yard if USE=-doc
	if ! use doc ; then
		rm tasks/apidoc.rake || die
	fi

	# Avoid implicit dependency on git
	sed -i -e 's/git ls-files/echo/' gherkin.gemspec || die
}

all_ruby_compile() {
	all_fakegem_compile

	if use doc ; then
		yard || die
	fi
}

each_ruby_compile() {
	${RUBY} -I lib -S rake -rrake/clean -f tasks/compile.rake compile || die
}

each_ruby_test() {
	${RUBY} -I lib -S rake spec || die "Specs failed"
	CUCUMBER_HOME="${HOME}" RUBYLIB=lib ${RUBY} -S cucumber features || die "Cucumber features failed"
}





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

* [gentoo-commits] gentoo-x86 commit in dev-ruby/gherkin: gherkin-2.12.0-r2.ebuild ChangeLog
@ 2014-06-15 14:13 Akinori Hattori (hattya)
  0 siblings, 0 replies; 11+ messages in thread
From: Akinori Hattori (hattya) @ 2014-06-15 14:13 UTC (permalink / raw
  To: gentoo-commits

hattya      14/06/15 14:13:07

  Modified:             gherkin-2.12.0-r2.ebuild ChangeLog
  Log:
  keyword ~ia64 wrt bug #510876
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key EC917A6D)

Revision  Changes    Path
1.2                  dev-ruby/gherkin/gherkin-2.12.0-r2.ebuild

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

Index: gherkin-2.12.0-r2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/gherkin/gherkin-2.12.0-r2.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- gherkin-2.12.0-r2.ebuild	20 May 2014 18:49:47 -0000	1.1
+++ gherkin-2.12.0-r2.ebuild	15 Jun 2014 14:13:07 -0000	1.2
@@ -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/gherkin/gherkin-2.12.0-r2.ebuild,v 1.1 2014/05/20 18:49:47 graaff Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/gherkin/gherkin-2.12.0-r2.ebuild,v 1.2 2014/06/15 14:13:07 hattya Exp $
 
 EAPI=5
 USE_RUBY="ruby19 ruby20"
@@ -18,7 +18,7 @@
 LICENSE="MIT"
 SRC_URI="https://github.com/cucumber/gherkin/archive/v${PV}.tar.gz -> ${P}-git.tgz"
 
-KEYWORDS="~amd64 ~hppa ~ppc ~ppc64 ~x86"
+KEYWORDS="~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~x86"
 SLOT="0"
 IUSE="doc test"
 



1.64                 dev-ruby/gherkin/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/gherkin/ChangeLog,v
retrieving revision 1.63
retrieving revision 1.64
diff -u -r1.63 -r1.64
--- ChangeLog	20 May 2014 18:49:47 -0000	1.63
+++ ChangeLog	15 Jun 2014 14:13:07 -0000	1.64
@@ -1,6 +1,9 @@
 # ChangeLog for dev-ruby/gherkin
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/gherkin/ChangeLog,v 1.63 2014/05/20 18:49:47 graaff Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/gherkin/ChangeLog,v 1.64 2014/06/15 14:13:07 hattya Exp $
+
+  15 Jun 2014; Akinori Hattori <hattya@gentoo.org> gherkin-2.12.0-r2.ebuild:
+  keyword ~ia64 wrt bug #510876
 
 *gherkin-2.12.0-r2 (20 May 2014)
 





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

* [gentoo-commits] gentoo-x86 commit in dev-ruby/gherkin: gherkin-2.12.0-r2.ebuild ChangeLog
@ 2014-06-20 16:11 Markus Meier (maekke)
  0 siblings, 0 replies; 11+ messages in thread
From: Markus Meier (maekke) @ 2014-06-20 16:11 UTC (permalink / raw
  To: gentoo-commits

maekke      14/06/20 16:11:31

  Modified:             gherkin-2.12.0-r2.ebuild ChangeLog
  Log:
  add ~arm, bug #510876
  
  (Portage version: 2.2.10/cvs/Linux x86_64, RepoMan options: --include-arches="arm", signed Manifest commit with key 072AD062)

Revision  Changes    Path
1.3                  dev-ruby/gherkin/gherkin-2.12.0-r2.ebuild

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

Index: gherkin-2.12.0-r2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/gherkin/gherkin-2.12.0-r2.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- gherkin-2.12.0-r2.ebuild	15 Jun 2014 14:13:07 -0000	1.2
+++ gherkin-2.12.0-r2.ebuild	20 Jun 2014 16:11:31 -0000	1.3
@@ -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/gherkin/gherkin-2.12.0-r2.ebuild,v 1.2 2014/06/15 14:13:07 hattya Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/gherkin/gherkin-2.12.0-r2.ebuild,v 1.3 2014/06/20 16:11:31 maekke Exp $
 
 EAPI=5
 USE_RUBY="ruby19 ruby20"
@@ -18,7 +18,7 @@
 LICENSE="MIT"
 SRC_URI="https://github.com/cucumber/gherkin/archive/v${PV}.tar.gz -> ${P}-git.tgz"
 
-KEYWORDS="~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~x86"
+KEYWORDS="~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~x86"
 SLOT="0"
 IUSE="doc test"
 



1.65                 dev-ruby/gherkin/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/gherkin/ChangeLog,v
retrieving revision 1.64
retrieving revision 1.65
diff -u -r1.64 -r1.65
--- ChangeLog	15 Jun 2014 14:13:07 -0000	1.64
+++ ChangeLog	20 Jun 2014 16:11:31 -0000	1.65
@@ -1,6 +1,9 @@
 # ChangeLog for dev-ruby/gherkin
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/gherkin/ChangeLog,v 1.64 2014/06/15 14:13:07 hattya Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/gherkin/ChangeLog,v 1.65 2014/06/20 16:11:31 maekke Exp $
+
+  20 Jun 2014; Markus Meier <maekke@gentoo.org> gherkin-2.12.0-r2.ebuild:
+  add ~arm, bug #510876
 
   15 Jun 2014; Akinori Hattori <hattya@gentoo.org> gherkin-2.12.0-r2.ebuild:
   keyword ~ia64 wrt bug #510876





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

* [gentoo-commits] gentoo-x86 commit in dev-ruby/gherkin: gherkin-2.12.0-r2.ebuild ChangeLog
@ 2015-03-13  6:58 Jeroen Roovers (jer)
  0 siblings, 0 replies; 11+ messages in thread
From: Jeroen Roovers (jer) @ 2015-03-13  6:58 UTC (permalink / raw
  To: gentoo-commits

jer         15/03/13 06:58:27

  Modified:             gherkin-2.12.0-r2.ebuild ChangeLog
  Log:
  Stable for HPPA (bug #542574).
  
  (Portage version: 2.2.18/cvs/Linux x86_64, RepoMan options: --ignore-arches, signed Manifest commit with key A792A613)

Revision  Changes    Path
1.7                  dev-ruby/gherkin/gherkin-2.12.0-r2.ebuild

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

Index: gherkin-2.12.0-r2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/gherkin/gherkin-2.12.0-r2.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- gherkin-2.12.0-r2.ebuild	15 Aug 2014 17:01:41 -0000	1.6
+++ gherkin-2.12.0-r2.ebuild	13 Mar 2015 06:58:27 -0000	1.7
@@ -1,6 +1,6 @@
-# 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/gherkin/gherkin-2.12.0-r2.ebuild,v 1.6 2014/08/15 17:01:41 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/gherkin/gherkin-2.12.0-r2.ebuild,v 1.7 2015/03/13 06:58:27 jer Exp $
 
 EAPI=5
 USE_RUBY="ruby19 ruby20"
@@ -18,7 +18,7 @@
 LICENSE="MIT"
 SRC_URI="https://github.com/cucumber/gherkin/archive/v${PV}.tar.gz -> ${P}-git.tgz"
 
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
+KEYWORDS="~alpha ~amd64 ~arm hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
 SLOT="0"
 IUSE="doc test"
 



1.77                 dev-ruby/gherkin/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/gherkin/ChangeLog,v
retrieving revision 1.76
retrieving revision 1.77
diff -u -r1.76 -r1.77
--- ChangeLog	8 Mar 2015 15:29:33 -0000	1.76
+++ ChangeLog	13 Mar 2015 06:58:27 -0000	1.77
@@ -1,6 +1,9 @@
 # ChangeLog for dev-ruby/gherkin
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/gherkin/ChangeLog,v 1.76 2015/03/08 15:29:33 graaff Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/gherkin/ChangeLog,v 1.77 2015/03/13 06:58:27 jer Exp $
+
+  13 Mar 2015; Jeroen Roovers <jer@gentoo.org> gherkin-2.12.0-r2.ebuild:
+  Stable for HPPA (bug #542574).
 
   08 Mar 2015; Hans de Graaff <graaff@gentoo.org> -gherkin-2.12.0-r1.ebuild:
   Cleanup.





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

* [gentoo-commits] gentoo-x86 commit in dev-ruby/gherkin: gherkin-2.12.0-r2.ebuild ChangeLog
@ 2015-03-27 10:13 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 11+ messages in thread
From: Agostino Sarubbo (ago) @ 2015-03-27 10:13 UTC (permalink / raw
  To: gentoo-commits

ago         15/03/27 10:13:52

  Modified:             gherkin-2.12.0-r2.ebuild ChangeLog
  Log:
  Stable for amd64, wrt bug #542574
  
  (Portage version: 2.2.14/cvs/Linux x86_64, RepoMan options: --include-arches="amd64", signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.8                  dev-ruby/gherkin/gherkin-2.12.0-r2.ebuild

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

Index: gherkin-2.12.0-r2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/gherkin/gherkin-2.12.0-r2.ebuild,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- gherkin-2.12.0-r2.ebuild	13 Mar 2015 06:58:27 -0000	1.7
+++ gherkin-2.12.0-r2.ebuild	27 Mar 2015 10:13:52 -0000	1.8
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/gherkin/gherkin-2.12.0-r2.ebuild,v 1.7 2015/03/13 06:58:27 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/gherkin/gherkin-2.12.0-r2.ebuild,v 1.8 2015/03/27 10:13:52 ago Exp $
 
 EAPI=5
 USE_RUBY="ruby19 ruby20"
@@ -18,7 +18,7 @@
 LICENSE="MIT"
 SRC_URI="https://github.com/cucumber/gherkin/archive/v${PV}.tar.gz -> ${P}-git.tgz"
 
-KEYWORDS="~alpha ~amd64 ~arm hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
+KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
 SLOT="0"
 IUSE="doc test"
 



1.78                 dev-ruby/gherkin/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/gherkin/ChangeLog,v
retrieving revision 1.77
retrieving revision 1.78
diff -u -r1.77 -r1.78
--- ChangeLog	13 Mar 2015 06:58:27 -0000	1.77
+++ ChangeLog	27 Mar 2015 10:13:52 -0000	1.78
@@ -1,6 +1,9 @@
 # ChangeLog for dev-ruby/gherkin
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/gherkin/ChangeLog,v 1.77 2015/03/13 06:58:27 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/gherkin/ChangeLog,v 1.78 2015/03/27 10:13:52 ago Exp $
+
+  27 Mar 2015; Agostino Sarubbo <ago@gentoo.org> gherkin-2.12.0-r2.ebuild:
+  Stable for amd64, wrt bug #542574
 
   13 Mar 2015; Jeroen Roovers <jer@gentoo.org> gherkin-2.12.0-r2.ebuild:
   Stable for HPPA (bug #542574).





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

* [gentoo-commits] gentoo-x86 commit in dev-ruby/gherkin: gherkin-2.12.0-r2.ebuild ChangeLog
@ 2015-03-27 10:15 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 11+ messages in thread
From: Agostino Sarubbo (ago) @ 2015-03-27 10:15 UTC (permalink / raw
  To: gentoo-commits

ago         15/03/27 10:15:43

  Modified:             gherkin-2.12.0-r2.ebuild ChangeLog
  Log:
  Stable for x86, wrt bug #542574
  
  (Portage version: 2.2.14/cvs/Linux x86_64, RepoMan options: --include-arches="x86", signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.9                  dev-ruby/gherkin/gherkin-2.12.0-r2.ebuild

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

Index: gherkin-2.12.0-r2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/gherkin/gherkin-2.12.0-r2.ebuild,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- gherkin-2.12.0-r2.ebuild	27 Mar 2015 10:13:52 -0000	1.8
+++ gherkin-2.12.0-r2.ebuild	27 Mar 2015 10:15:43 -0000	1.9
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/gherkin/gherkin-2.12.0-r2.ebuild,v 1.8 2015/03/27 10:13:52 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/gherkin/gherkin-2.12.0-r2.ebuild,v 1.9 2015/03/27 10:15:43 ago Exp $
 
 EAPI=5
 USE_RUBY="ruby19 ruby20"
@@ -18,7 +18,7 @@
 LICENSE="MIT"
 SRC_URI="https://github.com/cucumber/gherkin/archive/v${PV}.tar.gz -> ${P}-git.tgz"
 
-KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
+KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ~ppc ~ppc64 ~sparc x86"
 SLOT="0"
 IUSE="doc test"
 



1.79                 dev-ruby/gherkin/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/gherkin/ChangeLog,v
retrieving revision 1.78
retrieving revision 1.79
diff -u -r1.78 -r1.79
--- ChangeLog	27 Mar 2015 10:13:52 -0000	1.78
+++ ChangeLog	27 Mar 2015 10:15:43 -0000	1.79
@@ -1,6 +1,9 @@
 # ChangeLog for dev-ruby/gherkin
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/gherkin/ChangeLog,v 1.78 2015/03/27 10:13:52 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/gherkin/ChangeLog,v 1.79 2015/03/27 10:15:43 ago Exp $
+
+  27 Mar 2015; Agostino Sarubbo <ago@gentoo.org> gherkin-2.12.0-r2.ebuild:
+  Stable for x86, wrt bug #542574
 
   27 Mar 2015; Agostino Sarubbo <ago@gentoo.org> gherkin-2.12.0-r2.ebuild:
   Stable for amd64, wrt bug #542574





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

* [gentoo-commits] gentoo-x86 commit in dev-ruby/gherkin: gherkin-2.12.0-r2.ebuild ChangeLog
@ 2015-04-13  8:53 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 11+ messages in thread
From: Agostino Sarubbo (ago) @ 2015-04-13  8:53 UTC (permalink / raw
  To: gentoo-commits

ago         15/04/13 08:53:00

  Modified:             gherkin-2.12.0-r2.ebuild ChangeLog
  Log:
  Stable for alpha, wrt bug #542574
  
  (Portage version: 2.2.14/cvs/Linux x86_64, RepoMan options: --include-arches="alpha", signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.10                 dev-ruby/gherkin/gherkin-2.12.0-r2.ebuild

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

Index: gherkin-2.12.0-r2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/gherkin/gherkin-2.12.0-r2.ebuild,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- gherkin-2.12.0-r2.ebuild	27 Mar 2015 10:15:43 -0000	1.9
+++ gherkin-2.12.0-r2.ebuild	13 Apr 2015 08:53:00 -0000	1.10
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/gherkin/gherkin-2.12.0-r2.ebuild,v 1.9 2015/03/27 10:15:43 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/gherkin/gherkin-2.12.0-r2.ebuild,v 1.10 2015/04/13 08:53:00 ago Exp $
 
 EAPI=5
 USE_RUBY="ruby19 ruby20"
@@ -18,7 +18,7 @@
 LICENSE="MIT"
 SRC_URI="https://github.com/cucumber/gherkin/archive/v${PV}.tar.gz -> ${P}-git.tgz"
 
-KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ~ppc ~ppc64 ~sparc x86"
+KEYWORDS="alpha amd64 ~arm hppa ~ia64 ~ppc ~ppc64 ~sparc x86"
 SLOT="0"
 IUSE="doc test"
 



1.80                 dev-ruby/gherkin/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/gherkin/ChangeLog,v
retrieving revision 1.79
retrieving revision 1.80
diff -u -r1.79 -r1.80
--- ChangeLog	27 Mar 2015 10:15:43 -0000	1.79
+++ ChangeLog	13 Apr 2015 08:53:00 -0000	1.80
@@ -1,6 +1,9 @@
 # ChangeLog for dev-ruby/gherkin
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/gherkin/ChangeLog,v 1.79 2015/03/27 10:15:43 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/gherkin/ChangeLog,v 1.80 2015/04/13 08:53:00 ago Exp $
+
+  13 Apr 2015; Agostino Sarubbo <ago@gentoo.org> gherkin-2.12.0-r2.ebuild:
+  Stable for alpha, wrt bug #542574
 
   27 Mar 2015; Agostino Sarubbo <ago@gentoo.org> gherkin-2.12.0-r2.ebuild:
   Stable for x86, wrt bug #542574





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

* [gentoo-commits] gentoo-x86 commit in dev-ruby/gherkin: gherkin-2.12.0-r2.ebuild ChangeLog
@ 2015-04-14 12:19 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 11+ messages in thread
From: Agostino Sarubbo (ago) @ 2015-04-14 12:19 UTC (permalink / raw
  To: gentoo-commits

ago         15/04/14 12:19:13

  Modified:             gherkin-2.12.0-r2.ebuild ChangeLog
  Log:
  Stable for ia64, wrt bug #542574
  
  (Portage version: 2.2.14/cvs/Linux x86_64, RepoMan options: --include-arches="ia64", signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.11                 dev-ruby/gherkin/gherkin-2.12.0-r2.ebuild

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

Index: gherkin-2.12.0-r2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/gherkin/gherkin-2.12.0-r2.ebuild,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -r1.10 -r1.11
--- gherkin-2.12.0-r2.ebuild	13 Apr 2015 08:53:00 -0000	1.10
+++ gherkin-2.12.0-r2.ebuild	14 Apr 2015 12:19:13 -0000	1.11
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/gherkin/gherkin-2.12.0-r2.ebuild,v 1.10 2015/04/13 08:53:00 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/gherkin/gherkin-2.12.0-r2.ebuild,v 1.11 2015/04/14 12:19:13 ago Exp $
 
 EAPI=5
 USE_RUBY="ruby19 ruby20"
@@ -18,7 +18,7 @@
 LICENSE="MIT"
 SRC_URI="https://github.com/cucumber/gherkin/archive/v${PV}.tar.gz -> ${P}-git.tgz"
 
-KEYWORDS="alpha amd64 ~arm hppa ~ia64 ~ppc ~ppc64 ~sparc x86"
+KEYWORDS="alpha amd64 ~arm hppa ia64 ~ppc ~ppc64 ~sparc x86"
 SLOT="0"
 IUSE="doc test"
 



1.81                 dev-ruby/gherkin/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/gherkin/ChangeLog,v
retrieving revision 1.80
retrieving revision 1.81
diff -u -r1.80 -r1.81
--- ChangeLog	13 Apr 2015 08:53:00 -0000	1.80
+++ ChangeLog	14 Apr 2015 12:19:13 -0000	1.81
@@ -1,6 +1,9 @@
 # ChangeLog for dev-ruby/gherkin
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/gherkin/ChangeLog,v 1.80 2015/04/13 08:53:00 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/gherkin/ChangeLog,v 1.81 2015/04/14 12:19:13 ago Exp $
+
+  14 Apr 2015; Agostino Sarubbo <ago@gentoo.org> gherkin-2.12.0-r2.ebuild:
+  Stable for ia64, wrt bug #542574
 
   13 Apr 2015; Agostino Sarubbo <ago@gentoo.org> gherkin-2.12.0-r2.ebuild:
   Stable for alpha, wrt bug #542574





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

* [gentoo-commits] gentoo-x86 commit in dev-ruby/gherkin: gherkin-2.12.0-r2.ebuild ChangeLog
@ 2015-05-03 12:07 Jeroen Roovers (jer)
  0 siblings, 0 replies; 11+ messages in thread
From: Jeroen Roovers (jer) @ 2015-05-03 12:07 UTC (permalink / raw
  To: gentoo-commits

jer         15/05/03 12:07:02

  Modified:             gherkin-2.12.0-r2.ebuild ChangeLog
  Log:
  Stable for PPC64 (bug #542574).
  
  (Portage version: 2.2.18/cvs/Linux x86_64, RepoMan options: --ignore-arches, signed Manifest commit with key A792A613)

Revision  Changes    Path
1.13                 dev-ruby/gherkin/gherkin-2.12.0-r2.ebuild

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

Index: gherkin-2.12.0-r2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/gherkin/gherkin-2.12.0-r2.ebuild,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -r1.12 -r1.13
--- gherkin-2.12.0-r2.ebuild	26 Apr 2015 17:13:14 -0000	1.12
+++ gherkin-2.12.0-r2.ebuild	3 May 2015 12:07:02 -0000	1.13
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/gherkin/gherkin-2.12.0-r2.ebuild,v 1.12 2015/04/26 17:13:14 pacho Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/gherkin/gherkin-2.12.0-r2.ebuild,v 1.13 2015/05/03 12:07:02 jer Exp $
 
 EAPI=5
 USE_RUBY="ruby19 ruby20"
@@ -18,7 +18,7 @@
 LICENSE="MIT"
 SRC_URI="https://github.com/cucumber/gherkin/archive/v${PV}.tar.gz -> ${P}-git.tgz"
 
-KEYWORDS="alpha amd64 ~arm hppa ia64 ppc ~ppc64 ~sparc x86"
+KEYWORDS="alpha amd64 ~arm hppa ia64 ppc ppc64 ~sparc x86"
 SLOT="0"
 IUSE="doc test"
 



1.83                 dev-ruby/gherkin/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/gherkin/ChangeLog,v
retrieving revision 1.82
retrieving revision 1.83
diff -u -r1.82 -r1.83
--- ChangeLog	26 Apr 2015 17:13:14 -0000	1.82
+++ ChangeLog	3 May 2015 12:07:02 -0000	1.83
@@ -1,6 +1,9 @@
 # ChangeLog for dev-ruby/gherkin
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/gherkin/ChangeLog,v 1.82 2015/04/26 17:13:14 pacho Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/gherkin/ChangeLog,v 1.83 2015/05/03 12:07:02 jer Exp $
+
+  03 May 2015; Jeroen Roovers <jer@gentoo.org> gherkin-2.12.0-r2.ebuild:
+  Stable for PPC64 (bug #542574).
 
   26 Apr 2015; Pacho Ramos <pacho@gentoo.org> gherkin-2.12.0-r2.ebuild:
   ppc stable wrt bug #542574





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

* [gentoo-commits] gentoo-x86 commit in dev-ruby/gherkin: gherkin-2.12.0-r2.ebuild ChangeLog
@ 2015-05-31 10:54 Markus Meier (maekke)
  0 siblings, 0 replies; 11+ messages in thread
From: Markus Meier (maekke) @ 2015-05-31 10:54 UTC (permalink / raw
  To: gentoo-commits

maekke      15/05/31 10:54:29

  Modified:             gherkin-2.12.0-r2.ebuild ChangeLog
  Log:
  arm stable, bug #542574
  
  (Portage version: 2.2.19/cvs/Linux x86_64, RepoMan options: --include-arches="arm", signed Manifest commit with key 072AD062)

Revision  Changes    Path
1.14                 dev-ruby/gherkin/gherkin-2.12.0-r2.ebuild

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

Index: gherkin-2.12.0-r2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/gherkin/gherkin-2.12.0-r2.ebuild,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -r1.13 -r1.14
--- gherkin-2.12.0-r2.ebuild	3 May 2015 12:07:02 -0000	1.13
+++ gherkin-2.12.0-r2.ebuild	31 May 2015 10:54:29 -0000	1.14
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/gherkin/gherkin-2.12.0-r2.ebuild,v 1.13 2015/05/03 12:07:02 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/gherkin/gherkin-2.12.0-r2.ebuild,v 1.14 2015/05/31 10:54:29 maekke Exp $
 
 EAPI=5
 USE_RUBY="ruby19 ruby20"
@@ -18,7 +18,7 @@
 LICENSE="MIT"
 SRC_URI="https://github.com/cucumber/gherkin/archive/v${PV}.tar.gz -> ${P}-git.tgz"
 
-KEYWORDS="alpha amd64 ~arm hppa ia64 ppc ppc64 ~sparc x86"
+KEYWORDS="alpha amd64 arm hppa ia64 ppc ppc64 ~sparc x86"
 SLOT="0"
 IUSE="doc test"
 



1.84                 dev-ruby/gherkin/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/gherkin/ChangeLog,v
retrieving revision 1.83
retrieving revision 1.84
diff -u -r1.83 -r1.84
--- ChangeLog	3 May 2015 12:07:02 -0000	1.83
+++ ChangeLog	31 May 2015 10:54:29 -0000	1.84
@@ -1,6 +1,9 @@
 # ChangeLog for dev-ruby/gherkin
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/gherkin/ChangeLog,v 1.83 2015/05/03 12:07:02 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/gherkin/ChangeLog,v 1.84 2015/05/31 10:54:29 maekke Exp $
+
+  31 May 2015; Markus Meier <maekke@gentoo.org> gherkin-2.12.0-r2.ebuild:
+  arm stable, bug #542574
 
   03 May 2015; Jeroen Roovers <jer@gentoo.org> gherkin-2.12.0-r2.ebuild:
   Stable for PPC64 (bug #542574).





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

* [gentoo-commits] gentoo-x86 commit in dev-ruby/gherkin: gherkin-2.12.0-r2.ebuild ChangeLog
@ 2015-07-25 13:11 Mikle Kolyada (zlogene)
  0 siblings, 0 replies; 11+ messages in thread
From: Mikle Kolyada (zlogene) @ 2015-07-25 13:11 UTC (permalink / raw
  To: gentoo-commits

zlogene     15/07/25 13:11:30

  Modified:             gherkin-2.12.0-r2.ebuild ChangeLog
  Log:
  sparc stable wrt bug #542574
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 0x1BDC0E5AC42EB5D6)

Revision  Changes    Path
1.15                 dev-ruby/gherkin/gherkin-2.12.0-r2.ebuild

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

Index: gherkin-2.12.0-r2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/gherkin/gherkin-2.12.0-r2.ebuild,v
retrieving revision 1.14
retrieving revision 1.15
diff -u -r1.14 -r1.15
--- gherkin-2.12.0-r2.ebuild	31 May 2015 10:54:29 -0000	1.14
+++ gherkin-2.12.0-r2.ebuild	25 Jul 2015 13:11:30 -0000	1.15
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/gherkin/gherkin-2.12.0-r2.ebuild,v 1.14 2015/05/31 10:54:29 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/gherkin/gherkin-2.12.0-r2.ebuild,v 1.15 2015/07/25 13:11:30 zlogene Exp $
 
 EAPI=5
 USE_RUBY="ruby19 ruby20"
@@ -18,7 +18,7 @@
 LICENSE="MIT"
 SRC_URI="https://github.com/cucumber/gherkin/archive/v${PV}.tar.gz -> ${P}-git.tgz"
 
-KEYWORDS="alpha amd64 arm hppa ia64 ppc ppc64 ~sparc x86"
+KEYWORDS="alpha amd64 arm hppa ia64 ppc ppc64 sparc x86"
 SLOT="0"
 IUSE="doc test"
 



1.93                 dev-ruby/gherkin/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/gherkin/ChangeLog,v
retrieving revision 1.92
retrieving revision 1.93
diff -u -r1.92 -r1.93
--- ChangeLog	22 Jul 2015 18:28:10 -0000	1.92
+++ ChangeLog	25 Jul 2015 13:11:30 -0000	1.93
@@ -1,6 +1,9 @@
 # ChangeLog for dev-ruby/gherkin
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/gherkin/ChangeLog,v 1.92 2015/07/22 18:28:10 zlogene Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/gherkin/ChangeLog,v 1.93 2015/07/25 13:11:30 zlogene Exp $
+
+  25 Jul 2015; Mikle Kolyada <zlogene@gentoo.org> gherkin-2.12.0-r2.ebuild:
+  sparc stable wrt bug #542574
 
   22 Jul 2015; Mikle Kolyada <zlogene@gentoo.org> gherkin-2.12.2.ebuild:
   add ~x86 keyword wrt bug #553470





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

end of thread, other threads:[~2015-07-25 13:11 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-03-27 10:13 [gentoo-commits] gentoo-x86 commit in dev-ruby/gherkin: gherkin-2.12.0-r2.ebuild ChangeLog Agostino Sarubbo (ago)
  -- strict thread matches above, loose matches on Subject: below --
2015-07-25 13:11 Mikle Kolyada (zlogene)
2015-05-31 10:54 Markus Meier (maekke)
2015-05-03 12:07 Jeroen Roovers (jer)
2015-04-14 12:19 Agostino Sarubbo (ago)
2015-04-13  8:53 Agostino Sarubbo (ago)
2015-03-27 10:15 Agostino Sarubbo (ago)
2015-03-13  6:58 Jeroen Roovers (jer)
2014-06-20 16:11 Markus Meier (maekke)
2014-06-15 14:13 Akinori Hattori (hattya)
2014-05-20 18:49 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