public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in dev-ruby/i18n: ChangeLog i18n-0.4.2.ebuild
@ 2010-12-24 10:20 Hans de Graaff (graaff)
  0 siblings, 0 replies; 8+ messages in thread
From: Hans de Graaff (graaff) @ 2010-12-24 10:20 UTC (permalink / raw
  To: gentoo-commits

graaff      10/12/24 10:20:04

  Modified:             ChangeLog
  Added:                i18n-0.4.2.ebuild
  Log:
  Version bump. Fixes bug 349546, thanks to matsuu for providing patches.
  
  (Portage version: 2.1.9.25/cvs/Linux x86_64)

Revision  Changes    Path
1.25                 dev-ruby/i18n/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/i18n/ChangeLog,v
retrieving revision 1.24
retrieving revision 1.25
diff -u -r1.24 -r1.25
--- ChangeLog	4 Dec 2010 16:41:36 -0000	1.24
+++ ChangeLog	24 Dec 2010 10:20:04 -0000	1.25
@@ -1,6 +1,11 @@
 # ChangeLog for dev-ruby/i18n
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/i18n/ChangeLog,v 1.24 2010/12/04 16:41:36 grobian Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/i18n/ChangeLog,v 1.25 2010/12/24 10:20:04 graaff Exp $
+
+*i18n-0.4.2 (24 Dec 2010)
+
+  24 Dec 2010; Hans de Graaff <graaff@gentoo.org> +i18n-0.4.2.ebuild:
+  Version bump. Fixes bug 349546, thanks to matsuu for providing patches.
 
   04 Dec 2010; Fabian Groffen <grobian@gentoo.org> i18n-0.5.0.ebuild:
   Added Prefix keywords



1.1                  dev-ruby/i18n/i18n-0.4.2.ebuild

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

Index: i18n-0.4.2.ebuild
===================================================================
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/i18n/i18n-0.4.2.ebuild,v 1.1 2010/12/24 10:20:04 graaff Exp $

EAPI=2

USE_RUBY="ruby18 jruby ree18"

# doc regeneration seem to need Jeweler, which is not currently
# available
RUBY_FAKEGEM_TASK_DOC=""

RUBY_FAKEGEM_EXTRADOC="README.textile CHANGELOG.textile"

inherit ruby-fakegem versionator

DESCRIPTION="Add Internationalization support to your Ruby application."
HOMEPAGE="http://rails-i18n.org/"

SRC_URI="http://github.com/svenfuchs/${PN}/tarball/v${PV} -> ${PN}-git-${PV}.tgz"
S="${WORKDIR}/svenfuchs-${PN}-*"

LICENSE="MIT"
SLOT="$(get_version_component_range 1-2)"
KEYWORDS="~amd64 ~hppa ~ia64 ~sparc ~x86 ~ppc-macos ~x64-solaris ~x86-solaris"
IUSE=""

DEPEND=""
RDEPEND="${DEPEND}"

# The testsuite uses the activerecord gem to run some tests; they
# require sqlite3-ruby, and that is not available on JRuby.
USE_RUBY="${USE_RUBY/jruby/}" \
	ruby_add_bdepend "
			test? (
				dev-ruby/activerecord
				dev-ruby/sqlite3-ruby
				dev-ruby/ruby2ruby
			)"

# mocha is optionally used by the testsuite, try to increase coverage
# of testing by depending on it; when mocha is used, though,
# test-unit:2 cannot be merged at the same time (mocha problem?)
#
# One further test dependency would be ruby-cldr
# (http://rubygems.org/gems/ruby-cldr) but we don't have it in tree
# yet.
ruby_add_bdepend "
	test? (
		dev-ruby/mocha
		!!dev-ruby/test-unit:2
	)"

all_ruby_prepare() {
	sed -i '/bundler/d' test/test_setup/bundle.rb || die "Unable to remove Bundler support"
}

src_compile() {
	# permissions need to be stricter for Ruby-Inline to work properly.
	chmod 0755 "${HOME}" || die "Failed to fix permissions on home"
	ruby-ng_src_compile
}

src_test() {
	# permissions need to be stricter for Ruby-Inline to work properly.
	chmod 0755 "${HOME}" || die "Failed to fix permissions on home"
	ruby-ng_src_test
}

each_ruby_test() {
	# Make sure the optional activerecord tests are not run for jruby
	# because we don't ship a compatible sqlite3
	case ${RUBY} in
		*jruby)
			;;
		*)
			each_fakegem_test
	esac
}






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

* [gentoo-commits] gentoo-x86 commit in dev-ruby/i18n: ChangeLog i18n-0.4.2.ebuild
@ 2011-01-10 18:24 Hans de Graaff (graaff)
  0 siblings, 0 replies; 8+ messages in thread
From: Hans de Graaff (graaff) @ 2011-01-10 18:24 UTC (permalink / raw
  To: gentoo-commits

graaff      11/01/10 18:24:58

  Modified:             ChangeLog i18n-0.4.2.ebuild
  Log:
  Keyword ~x86-macos.
  
  (Portage version: 2.1.9.25/cvs/Linux x86_64)

Revision  Changes    Path
1.27                 dev-ruby/i18n/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/i18n/ChangeLog,v
retrieving revision 1.26
retrieving revision 1.27
diff -u -r1.26 -r1.27
--- ChangeLog	7 Jan 2011 09:19:11 -0000	1.26
+++ ChangeLog	10 Jan 2011 18:24:58 -0000	1.27
@@ -1,6 +1,9 @@
 # ChangeLog for dev-ruby/i18n
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/i18n/ChangeLog,v 1.26 2011/01/07 09:19:11 graaff Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/i18n/ChangeLog,v 1.27 2011/01/10 18:24:58 graaff Exp $
+
+  10 Jan 2011; Hans de Graaff <graaff@gentoo.org> i18n-0.4.2.ebuild:
+  Keyword ~x86-macos.
 
   07 Jan 2011; Hans de Graaff <graaff@gentoo.org> i18n-0.4.1.ebuild,
   i18n-0.4.2.ebuild:



1.3                  dev-ruby/i18n/i18n-0.4.2.ebuild

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

Index: i18n-0.4.2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/i18n/i18n-0.4.2.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- i18n-0.4.2.ebuild	7 Jan 2011 09:19:11 -0000	1.2
+++ i18n-0.4.2.ebuild	10 Jan 2011 18:24:58 -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/i18n/i18n-0.4.2.ebuild,v 1.2 2011/01/07 09:19:11 graaff Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/i18n/i18n-0.4.2.ebuild,v 1.3 2011/01/10 18:24:58 graaff Exp $
 
 EAPI=2
 
@@ -22,7 +22,7 @@
 
 LICENSE="MIT"
 SLOT="$(get_version_component_range 1-2)"
-KEYWORDS="~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~ppc-macos ~x64-solaris ~x86-solaris"
+KEYWORDS="~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~ppc-macos ~x86-macos ~x64-solaris ~x86-solaris"
 IUSE=""
 
 DEPEND=""






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

* [gentoo-commits] gentoo-x86 commit in dev-ruby/i18n: ChangeLog i18n-0.4.2.ebuild
@ 2011-01-23  8:40 Hans de Graaff (graaff)
  0 siblings, 0 replies; 8+ messages in thread
From: Hans de Graaff (graaff) @ 2011-01-23  8:40 UTC (permalink / raw
  To: gentoo-commits

graaff      11/01/23 08:40:39

  Modified:             ChangeLog i18n-0.4.2.ebuild
  Log:
  Remove broken blocker on test-unit:2 since this no longer appears to be a problem.
  
  (Portage version: 2.1.9.25/cvs/Linux x86_64)

Revision  Changes    Path
1.29                 dev-ruby/i18n/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/i18n/ChangeLog,v
retrieving revision 1.28
retrieving revision 1.29
diff -u -r1.28 -r1.29
--- ChangeLog	22 Jan 2011 15:17:26 -0000	1.28
+++ ChangeLog	23 Jan 2011 08:40:38 -0000	1.29
@@ -1,6 +1,10 @@
 # ChangeLog for dev-ruby/i18n
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/i18n/ChangeLog,v 1.28 2011/01/22 15:17:26 graaff Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/i18n/ChangeLog,v 1.29 2011/01/23 08:40:38 graaff Exp $
+
+  23 Jan 2011; Hans de Graaff <graaff@gentoo.org> i18n-0.4.2.ebuild:
+  Remove broken blocker on test-unit:2 since this no longer appears to be a
+  problem.
 
   22 Jan 2011; Hans de Graaff <graaff@gentoo.org> -i18n-0.3.3.ebuild,
   -i18n-0.4.1.ebuild:



1.4                  dev-ruby/i18n/i18n-0.4.2.ebuild

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

Index: i18n-0.4.2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/i18n/i18n-0.4.2.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- i18n-0.4.2.ebuild	10 Jan 2011 18:24:58 -0000	1.3
+++ i18n-0.4.2.ebuild	23 Jan 2011 08:40:38 -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/i18n/i18n-0.4.2.ebuild,v 1.3 2011/01/10 18:24:58 graaff Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/i18n/i18n-0.4.2.ebuild,v 1.4 2011/01/23 08:40:38 graaff Exp $
 
 EAPI=2
 
@@ -39,17 +39,12 @@
 			)"
 
 # mocha is optionally used by the testsuite, try to increase coverage
-# of testing by depending on it; when mocha is used, though,
-# test-unit:2 cannot be merged at the same time (mocha problem?)
+# of testing by depending on it.
 #
 # One further test dependency would be ruby-cldr
 # (http://rubygems.org/gems/ruby-cldr) but we don't have it in tree
 # yet.
-ruby_add_bdepend "
-	test? (
-		dev-ruby/mocha
-		!!dev-ruby/test-unit:2
-	)"
+ruby_add_bdepend "test? ( dev-ruby/mocha )"
 
 all_ruby_prepare() {
 	sed -i '/bundler/d' test/test_setup/bundle.rb || die "Unable to remove Bundler support"






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

* [gentoo-commits] gentoo-x86 commit in dev-ruby/i18n: ChangeLog i18n-0.4.2.ebuild
@ 2011-07-07 19:07 Markos Chandras (hwoarang)
  0 siblings, 0 replies; 8+ messages in thread
From: Markos Chandras (hwoarang) @ 2011-07-07 19:07 UTC (permalink / raw
  To: gentoo-commits

hwoarang    11/07/07 19:07:20

  Modified:             ChangeLog i18n-0.4.2.ebuild
  Log:
  Stable on amd64 wrt bug #372391
  
  (Portage version: 2.2.0_alpha43/cvs/Linux x86_64)

Revision  Changes    Path
1.34                 dev-ruby/i18n/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/i18n/ChangeLog,v
retrieving revision 1.33
retrieving revision 1.34
diff -u -r1.33 -r1.34
--- ChangeLog	17 Jun 2011 18:10:28 -0000	1.33
+++ ChangeLog	7 Jul 2011 19:07:19 -0000	1.34
@@ -1,6 +1,9 @@
 # ChangeLog for dev-ruby/i18n
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/i18n/ChangeLog,v 1.33 2011/06/17 18:10:28 graaff Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/i18n/ChangeLog,v 1.34 2011/07/07 19:07:19 hwoarang Exp $
+
+  07 Jul 2011; Markos Chandras <hwoarang@gentoo.org> i18n-0.4.2.ebuild:
+  Stable on amd64 wrt bug #372391
 
 *i18n-0.6.0 (17 Jun 2011)
 



1.5                  dev-ruby/i18n/i18n-0.4.2.ebuild

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

Index: i18n-0.4.2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/i18n/i18n-0.4.2.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- i18n-0.4.2.ebuild	23 Jan 2011 08:40:38 -0000	1.4
+++ i18n-0.4.2.ebuild	7 Jul 2011 19:07:19 -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/i18n/i18n-0.4.2.ebuild,v 1.4 2011/01/23 08:40:38 graaff Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/i18n/i18n-0.4.2.ebuild,v 1.5 2011/07/07 19:07:19 hwoarang Exp $
 
 EAPI=2
 
@@ -22,7 +22,7 @@
 
 LICENSE="MIT"
 SLOT="$(get_version_component_range 1-2)"
-KEYWORDS="~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~ppc-macos ~x86-macos ~x64-solaris ~x86-solaris"
+KEYWORDS="amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~ppc-macos ~x86-macos ~x64-solaris ~x86-solaris"
 IUSE=""
 
 DEPEND=""






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

* [gentoo-commits] gentoo-x86 commit in dev-ruby/i18n: ChangeLog i18n-0.4.2.ebuild
@ 2011-07-13 20:57 Markus Meier (maekke)
  0 siblings, 0 replies; 8+ messages in thread
From: Markus Meier (maekke) @ 2011-07-13 20:57 UTC (permalink / raw
  To: gentoo-commits

maekke      11/07/13 20:57:15

  Modified:             ChangeLog i18n-0.4.2.ebuild
  Log:
  x86 stable, bug #372391
  
  (Portage version: 2.1.10.4/cvs/Linux x86_64)

Revision  Changes    Path
1.35                 dev-ruby/i18n/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/i18n/ChangeLog,v
retrieving revision 1.34
retrieving revision 1.35
diff -u -r1.34 -r1.35
--- ChangeLog	7 Jul 2011 19:07:19 -0000	1.34
+++ ChangeLog	13 Jul 2011 20:57:15 -0000	1.35
@@ -1,6 +1,9 @@
 # ChangeLog for dev-ruby/i18n
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/i18n/ChangeLog,v 1.34 2011/07/07 19:07:19 hwoarang Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/i18n/ChangeLog,v 1.35 2011/07/13 20:57:15 maekke Exp $
+
+  13 Jul 2011; Markus Meier <maekke@gentoo.org> i18n-0.4.2.ebuild:
+  x86 stable, bug #372391
 
   07 Jul 2011; Markos Chandras <hwoarang@gentoo.org> i18n-0.4.2.ebuild:
   Stable on amd64 wrt bug #372391



1.6                  dev-ruby/i18n/i18n-0.4.2.ebuild

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

Index: i18n-0.4.2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/i18n/i18n-0.4.2.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- i18n-0.4.2.ebuild	7 Jul 2011 19:07:19 -0000	1.5
+++ i18n-0.4.2.ebuild	13 Jul 2011 20:57:15 -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/i18n/i18n-0.4.2.ebuild,v 1.5 2011/07/07 19:07:19 hwoarang Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/i18n/i18n-0.4.2.ebuild,v 1.6 2011/07/13 20:57:15 maekke Exp $
 
 EAPI=2
 
@@ -22,7 +22,7 @@
 
 LICENSE="MIT"
 SLOT="$(get_version_component_range 1-2)"
-KEYWORDS="amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~ppc-macos ~x86-macos ~x64-solaris ~x86-solaris"
+KEYWORDS="amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc x86 ~ppc-macos ~x86-macos ~x64-solaris ~x86-solaris"
 IUSE=""
 
 DEPEND=""






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

* [gentoo-commits] gentoo-x86 commit in dev-ruby/i18n: ChangeLog i18n-0.4.2.ebuild
@ 2011-07-23 13:11 Kacper Kowalik (xarthisius)
  0 siblings, 0 replies; 8+ messages in thread
From: Kacper Kowalik (xarthisius) @ 2011-07-23 13:11 UTC (permalink / raw
  To: gentoo-commits

xarthisius    11/07/23 13:11:11

  Modified:             ChangeLog i18n-0.4.2.ebuild
  Log:
  ppc/ppc64 stable wrt #372391
  
  (Portage version: 2.2.0_alpha46/cvs/Linux x86_64)

Revision  Changes    Path
1.36                 dev-ruby/i18n/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/i18n/ChangeLog,v
retrieving revision 1.35
retrieving revision 1.36
diff -u -r1.35 -r1.36
--- ChangeLog	13 Jul 2011 20:57:15 -0000	1.35
+++ ChangeLog	23 Jul 2011 13:11:11 -0000	1.36
@@ -1,6 +1,9 @@
 # ChangeLog for dev-ruby/i18n
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/i18n/ChangeLog,v 1.35 2011/07/13 20:57:15 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/i18n/ChangeLog,v 1.36 2011/07/23 13:11:11 xarthisius Exp $
+
+  23 Jul 2011; Kacper Kowalik <xarthisius@gentoo.org> i18n-0.4.2.ebuild:
+  ppc/ppc64 stable wrt #372391
 
   13 Jul 2011; Markus Meier <maekke@gentoo.org> i18n-0.4.2.ebuild:
   x86 stable, bug #372391



1.7                  dev-ruby/i18n/i18n-0.4.2.ebuild

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

Index: i18n-0.4.2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/i18n/i18n-0.4.2.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- i18n-0.4.2.ebuild	13 Jul 2011 20:57:15 -0000	1.6
+++ i18n-0.4.2.ebuild	23 Jul 2011 13:11:11 -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/i18n/i18n-0.4.2.ebuild,v 1.6 2011/07/13 20:57:15 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/i18n/i18n-0.4.2.ebuild,v 1.7 2011/07/23 13:11:11 xarthisius Exp $
 
 EAPI=2
 
@@ -22,7 +22,7 @@
 
 LICENSE="MIT"
 SLOT="$(get_version_component_range 1-2)"
-KEYWORDS="amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc x86 ~ppc-macos ~x86-macos ~x64-solaris ~x86-solaris"
+KEYWORDS="amd64 ~hppa ~ia64 ppc ppc64 ~sparc x86 ~ppc-macos ~x86-macos ~x64-solaris ~x86-solaris"
 IUSE=""
 
 DEPEND=""






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

* [gentoo-commits] gentoo-x86 commit in dev-ruby/i18n: ChangeLog i18n-0.4.2.ebuild
@ 2011-07-24 17:26 Raul Porcel (armin76)
  0 siblings, 0 replies; 8+ messages in thread
From: Raul Porcel (armin76) @ 2011-07-24 17:26 UTC (permalink / raw
  To: gentoo-commits

armin76     11/07/24 17:26:57

  Modified:             ChangeLog i18n-0.4.2.ebuild
  Log:
  ia64/sparc stable wrt #372391
  
  (Portage version: 2.1.10.7/cvs/Linux ia64)

Revision  Changes    Path
1.38                 dev-ruby/i18n/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/i18n/ChangeLog,v
retrieving revision 1.37
retrieving revision 1.38
diff -u -r1.37 -r1.38
--- ChangeLog	24 Jul 2011 09:45:09 -0000	1.37
+++ ChangeLog	24 Jul 2011 17:26:57 -0000	1.38
@@ -1,6 +1,9 @@
 # ChangeLog for dev-ruby/i18n
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/i18n/ChangeLog,v 1.37 2011/07/24 09:45:09 xarthisius Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/i18n/ChangeLog,v 1.38 2011/07/24 17:26:57 armin76 Exp $
+
+  24 Jul 2011; Raúl Porcel <armin76@gentoo.org> i18n-0.4.2.ebuild:
+  ia64/sparc stable wrt #372391
 
   24 Jul 2011; Kacper Kowalik <xarthisius@gentoo.org> i18n-0.5.0-r1.ebuild:
   Marked ~ppc/~ppc64 wrt #351835



1.8                  dev-ruby/i18n/i18n-0.4.2.ebuild

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

Index: i18n-0.4.2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/i18n/i18n-0.4.2.ebuild,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- i18n-0.4.2.ebuild	23 Jul 2011 13:11:11 -0000	1.7
+++ i18n-0.4.2.ebuild	24 Jul 2011 17:26:57 -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/i18n/i18n-0.4.2.ebuild,v 1.7 2011/07/23 13:11:11 xarthisius Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/i18n/i18n-0.4.2.ebuild,v 1.8 2011/07/24 17:26:57 armin76 Exp $
 
 EAPI=2
 
@@ -22,7 +22,7 @@
 
 LICENSE="MIT"
 SLOT="$(get_version_component_range 1-2)"
-KEYWORDS="amd64 ~hppa ~ia64 ppc ppc64 ~sparc x86 ~ppc-macos ~x86-macos ~x64-solaris ~x86-solaris"
+KEYWORDS="amd64 ~hppa ia64 ppc ppc64 sparc x86 ~ppc-macos ~x86-macos ~x64-solaris ~x86-solaris"
 IUSE=""
 
 DEPEND=""






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

* [gentoo-commits] gentoo-x86 commit in dev-ruby/i18n: ChangeLog i18n-0.4.2.ebuild
@ 2014-01-18  9:57 Hans de Graaff (graaff)
  0 siblings, 0 replies; 8+ messages in thread
From: Hans de Graaff (graaff) @ 2014-01-18  9:57 UTC (permalink / raw
  To: gentoo-commits

graaff      14/01/18 09:57:00

  Modified:             ChangeLog
  Removed:              i18n-0.4.2.ebuild
  Log:
  Remove masked version.
  
  (Portage version: 2.2.7/cvs/Linux x86_64, signed Manifest commit with key 0x8883FA56A308A8D7!)

Revision  Changes    Path
1.59                 dev-ruby/i18n/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/i18n/ChangeLog,v
retrieving revision 1.58
retrieving revision 1.59
diff -u -r1.58 -r1.59
--- ChangeLog	25 Dec 2013 09:43:34 -0000	1.58
+++ ChangeLog	18 Jan 2014 09:57:00 -0000	1.59
@@ -1,6 +1,9 @@
 # ChangeLog for dev-ruby/i18n
-# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/i18n/ChangeLog,v 1.58 2013/12/25 09:43:34 graaff Exp $
+# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/i18n/ChangeLog,v 1.59 2014/01/18 09:57:00 graaff Exp $
+
+  18 Jan 2014; Hans de Graaff <graaff@gentoo.org> -i18n-0.4.2.ebuild:
+  Remove masked version.
 
 *i18n-0.6.9-r1 (25 Dec 2013)
 





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

end of thread, other threads:[~2014-01-18  9:57 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-01-18  9:57 [gentoo-commits] gentoo-x86 commit in dev-ruby/i18n: ChangeLog i18n-0.4.2.ebuild Hans de Graaff (graaff)
  -- strict thread matches above, loose matches on Subject: below --
2011-07-24 17:26 Raul Porcel (armin76)
2011-07-23 13:11 Kacper Kowalik (xarthisius)
2011-07-13 20:57 Markus Meier (maekke)
2011-07-07 19:07 Markos Chandras (hwoarang)
2011-01-23  8:40 Hans de Graaff (graaff)
2011-01-10 18:24 Hans de Graaff (graaff)
2010-12-24 10:20 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