public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in dev-ruby/tzinfo: tzinfo-0.3.13.ebuild ChangeLog
@ 2009-04-17 12:02 Diego Petteno (flameeyes)
  0 siblings, 0 replies; 7+ messages in thread
From: Diego Petteno (flameeyes) @ 2009-04-17 12:02 UTC (permalink / raw
  To: gentoo-commits

flameeyes    09/04/17 12:02:39

  Modified:             ChangeLog
  Added:                tzinfo-0.3.13.ebuild
  Log:
  Version bump, although with an hack because one test fails when ran in Portage.
  (Portage version: 2.2_rc30/cvs/Linux x86_64)

Revision  Changes    Path
1.26                 dev-ruby/tzinfo/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/tzinfo/ChangeLog,v
retrieving revision 1.25
retrieving revision 1.26
diff -u -r1.25 -r1.26
--- ChangeLog	12 Dec 2008 19:39:01 -0000	1.25
+++ ChangeLog	17 Apr 2009 12:02:39 -0000	1.26
@@ -1,6 +1,13 @@
 # ChangeLog for dev-ruby/tzinfo
-# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/tzinfo/ChangeLog,v 1.25 2008/12/12 19:39:01 flameeyes Exp $
+# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/tzinfo/ChangeLog,v 1.26 2009/04/17 12:02:39 flameeyes Exp $
+
+*tzinfo-0.3.13 (17 Apr 2009)
+
+  17 Apr 2009; Diego E. Pettenò <flameeyes@gentoo.org>
+  +tzinfo-0.3.13.ebuild:
+  Version bump, although with an hack because one test fails when ran in
+  Portage.
 
 *tzinfo-0.3.12-r1 (12 Dec 2008)
 



1.1                  dev-ruby/tzinfo/tzinfo-0.3.13.ebuild

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

Index: tzinfo-0.3.13.ebuild
===================================================================
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/tzinfo/tzinfo-0.3.13.ebuild,v 1.1 2009/04/17 12:02:39 flameeyes Exp $

inherit ruby

DESCRIPTION="Library to provide daylight-savings aware transformations between timezones"
HOMEPAGE="http://tzinfo.rubyforge.org/"
SRC_URI="mirror://rubyforge/${PN}/${P}.tar.gz"

LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~sparc ~x86 ~x86-fbsd"
IUSE="doc test"

RDEPEND=""
DEPEND="doc? ( dev-ruby/rake )
	test? ( dev-ruby/rake )"

USE_RUBY="ruby18"

src_unpack() {
	unpack ${A}

	# The package has all the files executable, probably coming from
	# Windows.
	find "${S}" -type f -perm +111 -exec chmod -x {} +

	# With rubygems 1.3.1 we get the following warning
	# warning: Insecure world writable dir /var/tmp in LOAD_PATH, mode 041777
	# when running the test_get_tainted_not_loaded test.
	[[ "${PV}" != "0.3.13" ]] && die "Hey you still got a 0.3.13-specific hack!"
	sed -i -e '138,146s:^:#:' "${S}"/test/tc_timezone.rb || die "unable to sed out the test"
}

src_compile() {
	if use doc; then
		rake rerdoc || die "rake rerdoc failed"
	fi
}

src_test() {
	rake test || die "rake test failed"
}

src_install() {
	cd "${S}"/lib
	doruby -r * || die "doruby failed"

	if use doc; then
		dohtml -r "${S}"/doc/* || die "dohtml failed"
	fi

	dodoc "${S}"/CHANGES "${S}"/README || die "dodoc failed"
}






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

* [gentoo-commits] gentoo-x86 commit in dev-ruby/tzinfo: tzinfo-0.3.13.ebuild ChangeLog
@ 2009-04-20  0:33 Diego Petteno (flameeyes)
  0 siblings, 0 replies; 7+ messages in thread
From: Diego Petteno (flameeyes) @ 2009-04-20  0:33 UTC (permalink / raw
  To: gentoo-commits

flameeyes    09/04/20 00:33:13

  Modified:             tzinfo-0.3.13.ebuild ChangeLog
  Log:
  Install for Ruby 1.9 too, add tests for both versions, install a fake gemspec for both versions.
  (Portage version: 2.2_rc30/cvs/Linux x86_64)

Revision  Changes    Path
1.2                  dev-ruby/tzinfo/tzinfo-0.3.13.ebuild

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

Index: tzinfo-0.3.13.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/tzinfo/tzinfo-0.3.13.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- tzinfo-0.3.13.ebuild	17 Apr 2009 12:02:39 -0000	1.1
+++ tzinfo-0.3.13.ebuild	20 Apr 2009 00:33:13 -0000	1.2
@@ -1,6 +1,6 @@
 # Copyright 1999-2009 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/tzinfo/tzinfo-0.3.13.ebuild,v 1.1 2009/04/17 12:02:39 flameeyes Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/tzinfo/tzinfo-0.3.13.ebuild,v 1.2 2009/04/20 00:33:13 flameeyes Exp $
 
 inherit ruby
 
@@ -17,7 +17,7 @@
 DEPEND="doc? ( dev-ruby/rake )
 	test? ( dev-ruby/rake )"
 
-USE_RUBY="ruby18"
+USE_RUBY="ruby18 ruby19"
 
 src_unpack() {
 	unpack ${A}
@@ -40,7 +40,9 @@
 }
 
 src_test() {
-	rake test || die "rake test failed"
+	for ruby in $USE_RUBY; do
+		[[ -n `type -p $ruby` ]] && $ruby $(type -p rake) test || die "testsuite failed"
+	done
 }
 
 src_install() {
@@ -52,4 +54,8 @@
 	fi
 
 	dodoc "${S}"/CHANGES "${S}"/README || die "dodoc failed"
+
+	insinto $(${RUBY} -r rbconfig -e 'print Config::CONFIG["vendorlibdir"]' | sed -e 's:vendor_ruby:gems:')/specifications
+	sed -e "s:@VERSION@:${PV}:" "${FILESDIR}"/${PN}.gemspec > "${T}"/${P}.gemspec
+	doins "${T}"/${P}.gemspec || die "Unable to install fake gemspec"
 }



1.30                 dev-ruby/tzinfo/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/tzinfo/ChangeLog,v
retrieving revision 1.29
retrieving revision 1.30
diff -u -r1.29 -r1.30
--- ChangeLog	19 Apr 2009 19:03:09 -0000	1.29
+++ ChangeLog	20 Apr 2009 00:33:13 -0000	1.30
@@ -1,6 +1,11 @@
 # ChangeLog for dev-ruby/tzinfo
 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/tzinfo/ChangeLog,v 1.29 2009/04/19 19:03:09 tcunha Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/tzinfo/ChangeLog,v 1.30 2009/04/20 00:33:13 flameeyes Exp $
+
+  20 Apr 2009; Diego E. Pettenò <flameeyes@gentoo.org>
+  +files/tzinfo.gemspec, tzinfo-0.3.13:
+  Install for Ruby 1.9 too, add tests for both versions, install a fake
+  gemspec for both versions.
 
   19 Apr 2009; Tiago Cunha <tcunha@gentoo.org> tzinfo-0.3.12-r1.ebuild:
   stable sparc, bug 266520






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

* [gentoo-commits] gentoo-x86 commit in dev-ruby/tzinfo: tzinfo-0.3.13.ebuild ChangeLog
@ 2009-05-04 11:53 Diego Petteno (flameeyes)
  0 siblings, 0 replies; 7+ messages in thread
From: Diego Petteno (flameeyes) @ 2009-05-04 11:53 UTC (permalink / raw
  To: gentoo-commits

flameeyes    09/05/04 11:53:32

  Modified:             tzinfo-0.3.13.ebuild ChangeLog
  Log:
  Fix src_test when Ruby 1.9 is not present.
  (Portage version: 2.2_rc33/cvs/Linux x86_64)

Revision  Changes    Path
1.3                  dev-ruby/tzinfo/tzinfo-0.3.13.ebuild

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

Index: tzinfo-0.3.13.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/tzinfo/tzinfo-0.3.13.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- tzinfo-0.3.13.ebuild	20 Apr 2009 00:33:13 -0000	1.2
+++ tzinfo-0.3.13.ebuild	4 May 2009 11:53:32 -0000	1.3
@@ -1,6 +1,6 @@
 # Copyright 1999-2009 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/tzinfo/tzinfo-0.3.13.ebuild,v 1.2 2009/04/20 00:33:13 flameeyes Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/tzinfo/tzinfo-0.3.13.ebuild,v 1.3 2009/05/04 11:53:32 flameeyes Exp $
 
 inherit ruby
 
@@ -41,7 +41,8 @@
 
 src_test() {
 	for ruby in $USE_RUBY; do
-		[[ -n `type -p $ruby` ]] && $ruby $(type -p rake) test || die "testsuite failed"
+		[[ -n `type -p $ruby` ]] || continue
+		$ruby $(type -p rake) test || die "testsuite failed"
 	done
 }
 



1.33                 dev-ruby/tzinfo/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/tzinfo/ChangeLog,v
retrieving revision 1.32
retrieving revision 1.33
diff -u -r1.32 -r1.33
--- ChangeLog	20 Apr 2009 20:06:26 -0000	1.32
+++ ChangeLog	4 May 2009 11:53:32 -0000	1.33
@@ -1,6 +1,10 @@
 # ChangeLog for dev-ruby/tzinfo
 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/tzinfo/ChangeLog,v 1.32 2009/04/20 20:06:26 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/tzinfo/ChangeLog,v 1.33 2009/05/04 11:53:32 flameeyes Exp $
+
+  04 May 2009; Diego E. Pettenò <flameeyes@gentoo.org>
+  tzinfo-0.3.13.ebuild:
+  Fix src_test when Ruby 1.9 is not present.
 
   20 Apr 2009; Markus Meier <maekke@gentoo.org> tzinfo-0.3.12-r1:
   x86 stable, bug #266520






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

* [gentoo-commits] gentoo-x86 commit in dev-ruby/tzinfo: tzinfo-0.3.13.ebuild ChangeLog
@ 2009-05-19 21:05 Brent Baude (ranger)
  0 siblings, 0 replies; 7+ messages in thread
From: Brent Baude (ranger) @ 2009-05-19 21:05 UTC (permalink / raw
  To: gentoo-commits

ranger      09/05/19 21:05:02

  Modified:             tzinfo-0.3.13.ebuild ChangeLog
  Log:
  keyworded ~arch for ppc64, bug 270420
  (Portage version: 2.1.6.13/cvs/Linux ppc64)

Revision  Changes    Path
1.4                  dev-ruby/tzinfo/tzinfo-0.3.13.ebuild

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

Index: tzinfo-0.3.13.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/tzinfo/tzinfo-0.3.13.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- tzinfo-0.3.13.ebuild	4 May 2009 11:53:32 -0000	1.3
+++ tzinfo-0.3.13.ebuild	19 May 2009 21:05:02 -0000	1.4
@@ -1,6 +1,6 @@
 # Copyright 1999-2009 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/tzinfo/tzinfo-0.3.13.ebuild,v 1.3 2009/05/04 11:53:32 flameeyes Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/tzinfo/tzinfo-0.3.13.ebuild,v 1.4 2009/05/19 21:05:02 ranger Exp $
 
 inherit ruby
 
@@ -10,7 +10,7 @@
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~ppc ~sparc ~x86 ~x86-fbsd"
+KEYWORDS="~amd64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
 IUSE="doc test"
 
 RDEPEND=""



1.34                 dev-ruby/tzinfo/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/tzinfo/ChangeLog,v
retrieving revision 1.33
retrieving revision 1.34
diff -u -r1.33 -r1.34
--- ChangeLog	4 May 2009 11:53:32 -0000	1.33
+++ ChangeLog	19 May 2009 21:05:02 -0000	1.34
@@ -1,6 +1,9 @@
 # ChangeLog for dev-ruby/tzinfo
 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/tzinfo/ChangeLog,v 1.33 2009/05/04 11:53:32 flameeyes Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/tzinfo/ChangeLog,v 1.34 2009/05/19 21:05:02 ranger Exp $
+
+  19 May 2009; Brent Baude <ranger@gentoo.org> tzinfo-0.3.13.ebuild:
+  keyworded ~arch for ppc64, bug 270420
 
   04 May 2009; Diego E. Pettenò <flameeyes@gentoo.org>
   tzinfo-0.3.13.ebuild:






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

* [gentoo-commits] gentoo-x86 commit in dev-ruby/tzinfo: tzinfo-0.3.13.ebuild ChangeLog
@ 2009-08-29 20:00 Gysbert Wassenaar (nixnut)
  0 siblings, 0 replies; 7+ messages in thread
From: Gysbert Wassenaar (nixnut) @ 2009-08-29 20:00 UTC (permalink / raw
  To: gentoo-commits

nixnut      09/08/29 20:00:08

  Modified:             tzinfo-0.3.13.ebuild ChangeLog
  Log:
  ppc stable #282207
  (Portage version: 2.1.6.13/cvs/Linux ppc)

Revision  Changes    Path
1.6                  dev-ruby/tzinfo/tzinfo-0.3.13.ebuild

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

Index: tzinfo-0.3.13.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/tzinfo/tzinfo-0.3.13.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- tzinfo-0.3.13.ebuild	13 Jun 2009 10:46:26 -0000	1.5
+++ tzinfo-0.3.13.ebuild	29 Aug 2009 20:00:08 -0000	1.6
@@ -1,6 +1,6 @@
 # Copyright 1999-2009 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/tzinfo/tzinfo-0.3.13.ebuild,v 1.5 2009/06/13 10:46:26 graaff Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/tzinfo/tzinfo-0.3.13.ebuild,v 1.6 2009/08/29 20:00:08 nixnut Exp $
 
 inherit ruby
 
@@ -10,7 +10,7 @@
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
+KEYWORDS="~alpha ~amd64 ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
 IUSE="doc test"
 
 RDEPEND=""



1.37                 dev-ruby/tzinfo/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/tzinfo/ChangeLog,v
retrieving revision 1.36
retrieving revision 1.37
diff -u -r1.36 -r1.37
--- ChangeLog	21 Aug 2009 17:55:01 -0000	1.36
+++ ChangeLog	29 Aug 2009 20:00:08 -0000	1.37
@@ -1,6 +1,9 @@
 # ChangeLog for dev-ruby/tzinfo
 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/tzinfo/ChangeLog,v 1.36 2009/08/21 17:55:01 flameeyes Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/tzinfo/ChangeLog,v 1.37 2009/08/29 20:00:08 nixnut Exp $
+
+  29 Aug 2009; nixnut <nixnut@gentoo.org> tzinfo-0.3.13.ebuild:
+  ppc stable #282207
 
 *tzinfo-0.3.14 (21 Aug 2009)
 






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

* [gentoo-commits] gentoo-x86 commit in dev-ruby/tzinfo: tzinfo-0.3.13.ebuild ChangeLog
@ 2009-10-25 11:51 Markus Meier (maekke)
  0 siblings, 0 replies; 7+ messages in thread
From: Markus Meier (maekke) @ 2009-10-25 11:51 UTC (permalink / raw
  To: gentoo-commits

maekke      09/10/25 11:51:47

  Modified:             tzinfo-0.3.13.ebuild ChangeLog
  Log:
  amd64/x86 stable, bug #282207
  (Portage version: 2.2_rc46/cvs/Linux x86_64)

Revision  Changes    Path
1.7                  dev-ruby/tzinfo/tzinfo-0.3.13.ebuild

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

Index: tzinfo-0.3.13.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/tzinfo/tzinfo-0.3.13.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- tzinfo-0.3.13.ebuild	29 Aug 2009 20:00:08 -0000	1.6
+++ tzinfo-0.3.13.ebuild	25 Oct 2009 11:51:47 -0000	1.7
@@ -1,6 +1,6 @@
 # Copyright 1999-2009 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/tzinfo/tzinfo-0.3.13.ebuild,v 1.6 2009/08/29 20:00:08 nixnut Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/tzinfo/tzinfo-0.3.13.ebuild,v 1.7 2009/10/25 11:51:47 maekke Exp $
 
 inherit ruby
 
@@ -10,7 +10,7 @@
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
+KEYWORDS="~alpha amd64 ppc ~ppc64 ~sparc x86 ~x86-fbsd"
 IUSE="doc test"
 
 RDEPEND=""



1.38                 dev-ruby/tzinfo/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/tzinfo/ChangeLog,v
retrieving revision 1.37
retrieving revision 1.38
diff -u -r1.37 -r1.38
--- ChangeLog	29 Aug 2009 20:00:08 -0000	1.37
+++ ChangeLog	25 Oct 2009 11:51:47 -0000	1.38
@@ -1,6 +1,9 @@
 # ChangeLog for dev-ruby/tzinfo
 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/tzinfo/ChangeLog,v 1.37 2009/08/29 20:00:08 nixnut Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/tzinfo/ChangeLog,v 1.38 2009/10/25 11:51:47 maekke Exp $
+
+  25 Oct 2009; Markus Meier <maekke@gentoo.org> tzinfo-0.3.13.ebuild:
+  amd64/x86 stable, bug #282207
 
   29 Aug 2009; nixnut <nixnut@gentoo.org> tzinfo-0.3.13.ebuild:
   ppc stable #282207






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

* [gentoo-commits] gentoo-x86 commit in dev-ruby/tzinfo: tzinfo-0.3.13.ebuild ChangeLog
@ 2009-11-11  3:13 Tiago Cunha (tcunha)
  0 siblings, 0 replies; 7+ messages in thread
From: Tiago Cunha (tcunha) @ 2009-11-11  3:13 UTC (permalink / raw
  To: gentoo-commits

tcunha      09/11/11 03:13:18

  Modified:             tzinfo-0.3.13.ebuild ChangeLog
  Log:
  stable sparc, bug 282207
  (Portage version: 2.1.6.13/cvs/Linux x86_64)

Revision  Changes    Path
1.8                  dev-ruby/tzinfo/tzinfo-0.3.13.ebuild

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

Index: tzinfo-0.3.13.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/tzinfo/tzinfo-0.3.13.ebuild,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- tzinfo-0.3.13.ebuild	25 Oct 2009 11:51:47 -0000	1.7
+++ tzinfo-0.3.13.ebuild	11 Nov 2009 03:13:17 -0000	1.8
@@ -1,6 +1,6 @@
 # Copyright 1999-2009 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/tzinfo/tzinfo-0.3.13.ebuild,v 1.7 2009/10/25 11:51:47 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/tzinfo/tzinfo-0.3.13.ebuild,v 1.8 2009/11/11 03:13:17 tcunha Exp $
 
 inherit ruby
 
@@ -10,7 +10,7 @@
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha amd64 ppc ~ppc64 ~sparc x86 ~x86-fbsd"
+KEYWORDS="~alpha amd64 ppc ~ppc64 sparc x86 ~x86-fbsd"
 IUSE="doc test"
 
 RDEPEND=""



1.40                 dev-ruby/tzinfo/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/tzinfo/ChangeLog,v
retrieving revision 1.39
retrieving revision 1.40
diff -u -r1.39 -r1.40
--- ChangeLog	27 Oct 2009 10:06:35 -0000	1.39
+++ ChangeLog	11 Nov 2009 03:13:17 -0000	1.40
@@ -1,6 +1,9 @@
 # ChangeLog for dev-ruby/tzinfo
 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/tzinfo/ChangeLog,v 1.39 2009/10/27 10:06:35 flameeyes Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/tzinfo/ChangeLog,v 1.40 2009/11/11 03:13:17 tcunha Exp $
+
+  11 Nov 2009; Tiago Cunha <tcunha@gentoo.org> tzinfo-0.3.13.ebuild:
+  stable sparc, bug 282207
 
 *tzinfo-0.3.15 (27 Oct 2009)
 






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

end of thread, other threads:[~2009-11-11  3:13 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-08-29 20:00 [gentoo-commits] gentoo-x86 commit in dev-ruby/tzinfo: tzinfo-0.3.13.ebuild ChangeLog Gysbert Wassenaar (nixnut)
  -- strict thread matches above, loose matches on Subject: below --
2009-11-11  3:13 Tiago Cunha (tcunha)
2009-10-25 11:51 Markus Meier (maekke)
2009-05-19 21:05 Brent Baude (ranger)
2009-05-04 11:53 Diego Petteno (flameeyes)
2009-04-20  0:33 Diego Petteno (flameeyes)
2009-04-17 12:02 Diego Petteno (flameeyes)

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