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

mrueg       13/10/09 00:37:08

  Modified:             ChangeLog
  Added:                chronic-0.10.2.ebuild
  Log:
  Version bump. Add ruby20 target. Original commit by Peter Wilmott in ruby-overlay.
  
  (Portage version: 2.2.7/cvs/Linux x86_64, signed Manifest commit with key )

Revision  Changes    Path
1.14                 dev-ruby/chronic/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/chronic/ChangeLog,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -r1.13 -r1.14
--- ChangeLog	9 Sep 2013 02:53:05 -0000	1.13
+++ ChangeLog	9 Oct 2013 00:37:08 -0000	1.14
@@ -1,6 +1,12 @@
 # ChangeLog for dev-ruby/chronic
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/chronic/ChangeLog,v 1.13 2013/09/09 02:53:05 mrueg Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/chronic/ChangeLog,v 1.14 2013/10/09 00:37:08 mrueg Exp $
+
+*chronic-0.10.2 (09 Oct 2013)
+
+  09 Oct 2013; Manuel Rüger <mrueg@gentoo.org> +chronic-0.10.2.ebuild:
+  Version bump. Add ruby20 target. Original commit by Peter Wilmott in ruby-
+  overlay.
 
   09 Sep 2013; Manuel Rüger <mrueg@gentoo.org> -chronic-0.6.7.ebuild,
   -chronic-0.7.0.ebuild, -chronic-0.9.0.ebuild:



1.1                  dev-ruby/chronic/chronic-0.10.2.ebuild

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

Index: chronic-0.10.2.ebuild
===================================================================
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/chronic/chronic-0.10.2.ebuild,v 1.1 2013/10/09 00:37:08 mrueg Exp $

EAPI=5
USE_RUBY="ruby18 ruby19 ruby20 jruby"

RUBY_FAKEGEM_TASK_DOC=""
RUBY_FAKEGEM_EXTRADOC="HISTORY.md README.md"

RUBY_FAKEGEM_GEMSPEC="chronic.gemspec"

inherit ruby-fakegem

DESCRIPTION="Chronic is a natural language date/time parser written in pure Ruby."
HOMEPAGE="https://github.com/mojombo/chronic"
LICENSE="MIT"

KEYWORDS="~amd64 ~x86 ~x86-fbsd"
SLOT="0"
IUSE=""

ruby_add_bdepend "test? ( >=dev-ruby/minitest-5 )"

all_ruby_prepare() {
	sed -i -e '/git ls-files/d' chronic.gemspec || die
}

each_ruby_prepare() {
	case ${RUBY} in
		*ruby18)
			# Two tests error when using ruby18, however the library still
			# functions correctly: https://github.com/mojombo/chronic/issues/219
			sed -i -e '/def test_time/,+9d' test/test_chronic.rb || die
			sed -i -e '/def test_handle_generic/,+29d' test/test_parsing.rb || die
			;;
		*jruby)
			# The same tests also fail on jruby1.6
			sed -i -e '/def test_time/,+9d' test/test_chronic.rb || die
			sed -i -e '/def test_handle_generic/,+29d' test/test_parsing.rb || die
			;;
		*)
			;;
	esac
}





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

* [gentoo-commits] gentoo-x86 commit in dev-ruby/chronic: chronic-0.10.2.ebuild ChangeLog
@ 2014-04-24 20:20 Manuel Rueger (mrueg)
  0 siblings, 0 replies; 10+ messages in thread
From: Manuel Rueger (mrueg) @ 2014-04-24 20:20 UTC (permalink / raw
  To: gentoo-commits

mrueg       14/04/24 20:20:03

  Modified:             chronic-0.10.2.ebuild ChangeLog
  Log:
  Remove ruby18 support.
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key )

Revision  Changes    Path
1.2                  dev-ruby/chronic/chronic-0.10.2.ebuild

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

Index: chronic-0.10.2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/chronic/chronic-0.10.2.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- chronic-0.10.2.ebuild	9 Oct 2013 00:37:08 -0000	1.1
+++ chronic-0.10.2.ebuild	24 Apr 2014 20:20:03 -0000	1.2
@@ -1,9 +1,9 @@
-# Copyright 1999-2013 Gentoo Foundation
+# Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/chronic/chronic-0.10.2.ebuild,v 1.1 2013/10/09 00:37:08 mrueg Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/chronic/chronic-0.10.2.ebuild,v 1.2 2014/04/24 20:20:03 mrueg Exp $
 
 EAPI=5
-USE_RUBY="ruby18 ruby19 ruby20 jruby"
+USE_RUBY="ruby19 ruby20 jruby"
 
 RUBY_FAKEGEM_TASK_DOC=""
 RUBY_FAKEGEM_EXTRADOC="HISTORY.md README.md"
@@ -28,13 +28,9 @@
 
 each_ruby_prepare() {
 	case ${RUBY} in
-		*ruby18)
+		*jruby)
 			# Two tests error when using ruby18, however the library still
 			# functions correctly: https://github.com/mojombo/chronic/issues/219
-			sed -i -e '/def test_time/,+9d' test/test_chronic.rb || die
-			sed -i -e '/def test_handle_generic/,+29d' test/test_parsing.rb || die
-			;;
-		*jruby)
 			# The same tests also fail on jruby1.6
 			sed -i -e '/def test_time/,+9d' test/test_chronic.rb || die
 			sed -i -e '/def test_handle_generic/,+29d' test/test_parsing.rb || die



1.16                 dev-ruby/chronic/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/chronic/ChangeLog,v
retrieving revision 1.15
retrieving revision 1.16
diff -u -r1.15 -r1.16
--- ChangeLog	5 Nov 2013 00:19:22 -0000	1.15
+++ ChangeLog	24 Apr 2014 20:20:03 -0000	1.16
@@ -1,6 +1,9 @@
 # ChangeLog for dev-ruby/chronic
-# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/chronic/ChangeLog,v 1.15 2013/11/05 00:19:22 mrueg Exp $
+# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/chronic/ChangeLog,v 1.16 2014/04/24 20:20:03 mrueg Exp $
+
+  24 Apr 2014; Manuel Rüger <mrueg@gentoo.org> chronic-0.10.2.ebuild:
+  Remove ruby18 support.
 
   05 Nov 2013; Manuel Rüger <mrueg@gentoo.org> -chronic-0.9.1.ebuild:
   Cleanup old.





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

* [gentoo-commits] gentoo-x86 commit in dev-ruby/chronic: chronic-0.10.2.ebuild ChangeLog
@ 2014-07-25 13:24 Manuel Rueger (mrueg)
  0 siblings, 0 replies; 10+ messages in thread
From: Manuel Rueger (mrueg) @ 2014-07-25 13:24 UTC (permalink / raw
  To: gentoo-commits

mrueg       14/07/25 13:24:33

  Modified:             chronic-0.10.2.ebuild ChangeLog
  Log:
  Add ruby21 target.
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key )

Revision  Changes    Path
1.3                  dev-ruby/chronic/chronic-0.10.2.ebuild

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

Index: chronic-0.10.2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/chronic/chronic-0.10.2.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- chronic-0.10.2.ebuild	24 Apr 2014 20:20:03 -0000	1.2
+++ chronic-0.10.2.ebuild	25 Jul 2014 13:24:33 -0000	1.3
@@ -1,9 +1,9 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/chronic/chronic-0.10.2.ebuild,v 1.2 2014/04/24 20:20:03 mrueg Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/chronic/chronic-0.10.2.ebuild,v 1.3 2014/07/25 13:24:33 mrueg Exp $
 
 EAPI=5
-USE_RUBY="ruby19 ruby20 jruby"
+USE_RUBY="ruby19 ruby20 ruby21 jruby"
 
 RUBY_FAKEGEM_TASK_DOC=""
 RUBY_FAKEGEM_EXTRADOC="HISTORY.md README.md"



1.17                 dev-ruby/chronic/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/chronic/ChangeLog,v
retrieving revision 1.16
retrieving revision 1.17
diff -u -r1.16 -r1.17
--- ChangeLog	24 Apr 2014 20:20:03 -0000	1.16
+++ ChangeLog	25 Jul 2014 13:24:33 -0000	1.17
@@ -1,6 +1,9 @@
 # ChangeLog for dev-ruby/chronic
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/chronic/ChangeLog,v 1.16 2014/04/24 20:20:03 mrueg Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/chronic/ChangeLog,v 1.17 2014/07/25 13:24:33 mrueg Exp $
+
+  25 Jul 2014; Manuel Rüger <mrueg@gentoo.org> chronic-0.10.2.ebuild:
+  Add ruby21 target.
 
   24 Apr 2014; Manuel Rüger <mrueg@gentoo.org> chronic-0.10.2.ebuild:
   Remove ruby18 support.





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

* [gentoo-commits] gentoo-x86 commit in dev-ruby/chronic: chronic-0.10.2.ebuild ChangeLog
@ 2014-08-05 16:00 Manuel Rueger (mrueg)
  0 siblings, 0 replies; 10+ messages in thread
From: Manuel Rueger (mrueg) @ 2014-08-05 16:00 UTC (permalink / raw
  To: gentoo-commits

mrueg       14/08/05 16:00:28

  Modified:             chronic-0.10.2.ebuild ChangeLog
  Log:
  Remove trailing '.' from DESCRIPTION.
  
  (Portage version: 2.2.11-r1/cvs/Linux x86_64, signed Manifest commit with key )

Revision  Changes    Path
1.4                  dev-ruby/chronic/chronic-0.10.2.ebuild

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

Index: chronic-0.10.2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/chronic/chronic-0.10.2.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- chronic-0.10.2.ebuild	25 Jul 2014 13:24:33 -0000	1.3
+++ chronic-0.10.2.ebuild	5 Aug 2014 16:00:28 -0000	1.4
@@ -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/chronic/chronic-0.10.2.ebuild,v 1.3 2014/07/25 13:24:33 mrueg Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/chronic/chronic-0.10.2.ebuild,v 1.4 2014/08/05 16:00:28 mrueg Exp $
 
 EAPI=5
 USE_RUBY="ruby19 ruby20 ruby21 jruby"
@@ -12,7 +12,7 @@
 
 inherit ruby-fakegem
 
-DESCRIPTION="Chronic is a natural language date/time parser written in pure Ruby."
+DESCRIPTION="Chronic is a natural language date/time parser written in pure Ruby"
 HOMEPAGE="https://github.com/mojombo/chronic"
 LICENSE="MIT"
 



1.18                 dev-ruby/chronic/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/chronic/ChangeLog,v
retrieving revision 1.17
retrieving revision 1.18
diff -u -r1.17 -r1.18
--- ChangeLog	25 Jul 2014 13:24:33 -0000	1.17
+++ ChangeLog	5 Aug 2014 16:00:28 -0000	1.18
@@ -1,6 +1,9 @@
 # ChangeLog for dev-ruby/chronic
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/chronic/ChangeLog,v 1.17 2014/07/25 13:24:33 mrueg Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/chronic/ChangeLog,v 1.18 2014/08/05 16:00:28 mrueg Exp $
+
+  05 Aug 2014; Manuel Rüger <mrueg@gentoo.org> chronic-0.10.2.ebuild:
+  Remove trailing '.' from DESCRIPTION.
 
   25 Jul 2014; Manuel Rüger <mrueg@gentoo.org> chronic-0.10.2.ebuild:
   Add ruby21 target.





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

* [gentoo-commits] gentoo-x86 commit in dev-ruby/chronic: chronic-0.10.2.ebuild ChangeLog
@ 2014-11-25 11:24 Manuel Rueger (mrueg)
  0 siblings, 0 replies; 10+ messages in thread
From: Manuel Rueger (mrueg) @ 2014-11-25 11:24 UTC (permalink / raw
  To: gentoo-commits

mrueg       14/11/25 11:24:58

  Modified:             chronic-0.10.2.ebuild ChangeLog
  Log:
  Drop jruby target.
  
  (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key )

Revision  Changes    Path
1.5                  dev-ruby/chronic/chronic-0.10.2.ebuild

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

Index: chronic-0.10.2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/chronic/chronic-0.10.2.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- chronic-0.10.2.ebuild	5 Aug 2014 16:00:28 -0000	1.4
+++ chronic-0.10.2.ebuild	25 Nov 2014 11:24:58 -0000	1.5
@@ -1,9 +1,9 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/chronic/chronic-0.10.2.ebuild,v 1.4 2014/08/05 16:00:28 mrueg Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/chronic/chronic-0.10.2.ebuild,v 1.5 2014/11/25 11:24:58 mrueg Exp $
 
 EAPI=5
-USE_RUBY="ruby19 ruby20 ruby21 jruby"
+USE_RUBY="ruby19 ruby20 ruby21"
 
 RUBY_FAKEGEM_TASK_DOC=""
 RUBY_FAKEGEM_EXTRADOC="HISTORY.md README.md"
@@ -25,17 +25,3 @@
 all_ruby_prepare() {
 	sed -i -e '/git ls-files/d' chronic.gemspec || die
 }
-
-each_ruby_prepare() {
-	case ${RUBY} in
-		*jruby)
-			# Two tests error when using ruby18, however the library still
-			# functions correctly: https://github.com/mojombo/chronic/issues/219
-			# The same tests also fail on jruby1.6
-			sed -i -e '/def test_time/,+9d' test/test_chronic.rb || die
-			sed -i -e '/def test_handle_generic/,+29d' test/test_parsing.rb || die
-			;;
-		*)
-			;;
-	esac
-}



1.19                 dev-ruby/chronic/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/chronic/ChangeLog,v
retrieving revision 1.18
retrieving revision 1.19
diff -u -r1.18 -r1.19
--- ChangeLog	5 Aug 2014 16:00:28 -0000	1.18
+++ ChangeLog	25 Nov 2014 11:24:58 -0000	1.19
@@ -1,6 +1,9 @@
 # ChangeLog for dev-ruby/chronic
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/chronic/ChangeLog,v 1.18 2014/08/05 16:00:28 mrueg Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/chronic/ChangeLog,v 1.19 2014/11/25 11:24:58 mrueg Exp $
+
+  25 Nov 2014; Manuel Rüger <mrueg@gentoo.org> chronic-0.10.2.ebuild:
+  Drop jruby target.
 
   05 Aug 2014; Manuel Rüger <mrueg@gentoo.org> chronic-0.10.2.ebuild:
   Remove trailing '.' from DESCRIPTION.





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

* [gentoo-commits] gentoo-x86 commit in dev-ruby/chronic: chronic-0.10.2.ebuild ChangeLog
@ 2014-12-28  0:58 Manuel Rueger (mrueg)
  0 siblings, 0 replies; 10+ messages in thread
From: Manuel Rueger (mrueg) @ 2014-12-28  0:58 UTC (permalink / raw
  To: gentoo-commits

mrueg       14/12/28 00:58:36

  Modified:             chronic-0.10.2.ebuild ChangeLog
  Log:
  Add ruby2.2 target.
  
  (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key )

Revision  Changes    Path
1.6                  dev-ruby/chronic/chronic-0.10.2.ebuild

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

Index: chronic-0.10.2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/chronic/chronic-0.10.2.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- chronic-0.10.2.ebuild	25 Nov 2014 11:24:58 -0000	1.5
+++ chronic-0.10.2.ebuild	28 Dec 2014 00:58:36 -0000	1.6
@@ -1,9 +1,9 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/chronic/chronic-0.10.2.ebuild,v 1.5 2014/11/25 11:24:58 mrueg Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/chronic/chronic-0.10.2.ebuild,v 1.6 2014/12/28 00:58:36 mrueg Exp $
 
 EAPI=5
-USE_RUBY="ruby19 ruby20 ruby21"
+USE_RUBY="ruby19 ruby20 ruby21 ruby22"
 
 RUBY_FAKEGEM_TASK_DOC=""
 RUBY_FAKEGEM_EXTRADOC="HISTORY.md README.md"



1.20                 dev-ruby/chronic/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/chronic/ChangeLog,v
retrieving revision 1.19
retrieving revision 1.20
diff -u -r1.19 -r1.20
--- ChangeLog	25 Nov 2014 11:24:58 -0000	1.19
+++ ChangeLog	28 Dec 2014 00:58:36 -0000	1.20
@@ -1,6 +1,9 @@
 # ChangeLog for dev-ruby/chronic
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/chronic/ChangeLog,v 1.19 2014/11/25 11:24:58 mrueg Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/chronic/ChangeLog,v 1.20 2014/12/28 00:58:36 mrueg Exp $
+
+  28 Dec 2014; Manuel Rüger <mrueg@gentoo.org> chronic-0.10.2.ebuild:
+  Add ruby2.2 target.
 
   25 Nov 2014; Manuel Rüger <mrueg@gentoo.org> chronic-0.10.2.ebuild:
   Drop jruby target.





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

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

ago         15/03/11 17:02:53

  Modified:             chronic-0.10.2.ebuild ChangeLog
  Log:
  Add ~ppc, wrt bug #542782
  
  (Portage version: 2.2.14/cvs/Linux x86_64, RepoMan options: --include-arches="~ppc", signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.8                  dev-ruby/chronic/chronic-0.10.2.ebuild

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

Index: chronic-0.10.2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/chronic/chronic-0.10.2.ebuild,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- chronic-0.10.2.ebuild	10 Mar 2015 10:21:08 -0000	1.7
+++ chronic-0.10.2.ebuild	11 Mar 2015 17:02: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/chronic/chronic-0.10.2.ebuild,v 1.7 2015/03/10 10:21:08 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/chronic/chronic-0.10.2.ebuild,v 1.8 2015/03/11 17:02:52 ago Exp $
 
 EAPI=5
 USE_RUBY="ruby19 ruby20 ruby21 ruby22"
@@ -16,7 +16,7 @@
 HOMEPAGE="https://github.com/mojombo/chronic"
 LICENSE="MIT"
 
-KEYWORDS="~amd64 ~hppa ~x86 ~x86-fbsd"
+KEYWORDS="~amd64 ~hppa ~ppc ~x86 ~x86-fbsd"
 SLOT="0"
 IUSE=""
 



1.22                 dev-ruby/chronic/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/chronic/ChangeLog,v
retrieving revision 1.21
retrieving revision 1.22
diff -u -r1.21 -r1.22
--- ChangeLog	10 Mar 2015 10:21:08 -0000	1.21
+++ ChangeLog	11 Mar 2015 17:02:52 -0000	1.22
@@ -1,6 +1,9 @@
 # ChangeLog for dev-ruby/chronic
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/chronic/ChangeLog,v 1.21 2015/03/10 10:21:08 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/chronic/ChangeLog,v 1.22 2015/03/11 17:02:52 ago Exp $
+
+  11 Mar 2015; Agostino Sarubbo <ago@gentoo.org> chronic-0.10.2.ebuild:
+  Add ~ppc, wrt bug #542782
 
   10 Mar 2015; Jeroen Roovers <jer@gentoo.org> chronic-0.10.2.ebuild:
   Marked ~hppa (bug #542782).





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

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

ago         15/03/11 17:03:00

  Modified:             chronic-0.10.2.ebuild ChangeLog
  Log:
  Add ~ppc64, wrt bug #542782
  
  (Portage version: 2.2.14/cvs/Linux x86_64, RepoMan options: --include-arches="~ppc64", signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.9                  dev-ruby/chronic/chronic-0.10.2.ebuild

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

Index: chronic-0.10.2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/chronic/chronic-0.10.2.ebuild,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- chronic-0.10.2.ebuild	11 Mar 2015 17:02:52 -0000	1.8
+++ chronic-0.10.2.ebuild	11 Mar 2015 17:03:00 -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/chronic/chronic-0.10.2.ebuild,v 1.8 2015/03/11 17:02:52 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/chronic/chronic-0.10.2.ebuild,v 1.9 2015/03/11 17:03:00 ago Exp $
 
 EAPI=5
 USE_RUBY="ruby19 ruby20 ruby21 ruby22"
@@ -16,7 +16,7 @@
 HOMEPAGE="https://github.com/mojombo/chronic"
 LICENSE="MIT"
 
-KEYWORDS="~amd64 ~hppa ~ppc ~x86 ~x86-fbsd"
+KEYWORDS="~amd64 ~hppa ~ppc ~ppc64 ~x86 ~x86-fbsd"
 SLOT="0"
 IUSE=""
 



1.23                 dev-ruby/chronic/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/chronic/ChangeLog,v
retrieving revision 1.22
retrieving revision 1.23
diff -u -r1.22 -r1.23
--- ChangeLog	11 Mar 2015 17:02:52 -0000	1.22
+++ ChangeLog	11 Mar 2015 17:03:00 -0000	1.23
@@ -1,6 +1,9 @@
 # ChangeLog for dev-ruby/chronic
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/chronic/ChangeLog,v 1.22 2015/03/11 17:02:52 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/chronic/ChangeLog,v 1.23 2015/03/11 17:03:00 ago Exp $
+
+  11 Mar 2015; Agostino Sarubbo <ago@gentoo.org> chronic-0.10.2.ebuild:
+  Add ~ppc64, wrt bug #542782
 
   11 Mar 2015; Agostino Sarubbo <ago@gentoo.org> chronic-0.10.2.ebuild:
   Add ~ppc, wrt bug #542782





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

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

ago         15/03/13 08:30:34

  Modified:             chronic-0.10.2.ebuild ChangeLog
  Log:
  Add ~ia64, wrt bug #542782
  
  (Portage version: 2.2.14/cvs/Linux x86_64, RepoMan options: --include-arches="~ia64", signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.10                 dev-ruby/chronic/chronic-0.10.2.ebuild

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

Index: chronic-0.10.2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/chronic/chronic-0.10.2.ebuild,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- chronic-0.10.2.ebuild	11 Mar 2015 17:03:00 -0000	1.9
+++ chronic-0.10.2.ebuild	13 Mar 2015 08:30:34 -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/chronic/chronic-0.10.2.ebuild,v 1.9 2015/03/11 17:03:00 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/chronic/chronic-0.10.2.ebuild,v 1.10 2015/03/13 08:30:34 ago Exp $
 
 EAPI=5
 USE_RUBY="ruby19 ruby20 ruby21 ruby22"
@@ -16,7 +16,7 @@
 HOMEPAGE="https://github.com/mojombo/chronic"
 LICENSE="MIT"
 
-KEYWORDS="~amd64 ~hppa ~ppc ~ppc64 ~x86 ~x86-fbsd"
+KEYWORDS="~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~x86 ~x86-fbsd"
 SLOT="0"
 IUSE=""
 



1.24                 dev-ruby/chronic/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/chronic/ChangeLog,v
retrieving revision 1.23
retrieving revision 1.24
diff -u -r1.23 -r1.24
--- ChangeLog	11 Mar 2015 17:03:00 -0000	1.23
+++ ChangeLog	13 Mar 2015 08:30:34 -0000	1.24
@@ -1,6 +1,9 @@
 # ChangeLog for dev-ruby/chronic
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/chronic/ChangeLog,v 1.23 2015/03/11 17:03:00 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/chronic/ChangeLog,v 1.24 2015/03/13 08:30:34 ago Exp $
+
+  13 Mar 2015; Agostino Sarubbo <ago@gentoo.org> chronic-0.10.2.ebuild:
+  Add ~ia64, wrt bug #542782
 
   11 Mar 2015; Agostino Sarubbo <ago@gentoo.org> chronic-0.10.2.ebuild:
   Add ~ppc64, wrt bug #542782





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

* [gentoo-commits] gentoo-x86 commit in dev-ruby/chronic: chronic-0.10.2.ebuild ChangeLog
@ 2015-07-29 18:48 Fabian Groffen (grobian)
  0 siblings, 0 replies; 10+ messages in thread
From: Fabian Groffen (grobian) @ 2015-07-29 18:48 UTC (permalink / raw
  To: gentoo-commits

grobian     15/07/29 18:48:00

  Modified:             chronic-0.10.2.ebuild ChangeLog
  Log:
  Keyworded for *-solaris, *-macos, bug #542782
  
  (Portage version: 2.2.20-prefix/cvs/SunOS i386, signed Manifest commit with key 0x5F75F607C5C74E89)

Revision  Changes    Path
1.11                 dev-ruby/chronic/chronic-0.10.2.ebuild

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

Index: chronic-0.10.2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/chronic/chronic-0.10.2.ebuild,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -r1.10 -r1.11
--- chronic-0.10.2.ebuild	13 Mar 2015 08:30:34 -0000	1.10
+++ chronic-0.10.2.ebuild	29 Jul 2015 18:48:00 -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/chronic/chronic-0.10.2.ebuild,v 1.10 2015/03/13 08:30:34 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/chronic/chronic-0.10.2.ebuild,v 1.11 2015/07/29 18:48:00 grobian Exp $
 
 EAPI=5
 USE_RUBY="ruby19 ruby20 ruby21 ruby22"
@@ -16,7 +16,7 @@
 HOMEPAGE="https://github.com/mojombo/chronic"
 LICENSE="MIT"
 
-KEYWORDS="~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~x86 ~x86-fbsd"
+KEYWORDS="~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~x86 ~x86-fbsd ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 SLOT="0"
 IUSE=""
 



1.26                 dev-ruby/chronic/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/chronic/ChangeLog,v
retrieving revision 1.25
retrieving revision 1.26
diff -u -r1.25 -r1.26
--- ChangeLog	7 Jun 2015 17:25:25 -0000	1.25
+++ ChangeLog	29 Jul 2015 18:48:00 -0000	1.26
@@ -1,6 +1,9 @@
 # ChangeLog for dev-ruby/chronic
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/chronic/ChangeLog,v 1.25 2015/06/07 17:25:25 jlec Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/chronic/ChangeLog,v 1.26 2015/07/29 18:48:00 grobian Exp $
+
+  29 Jul 2015; Fabian Groffen <grobian@gentoo.org> chronic-0.10.2.ebuild:
+  Keyworded for *-solaris, *-macos, bug #542782
 
   07 Jun 2015; Justin Lecher <jlec@gentoo.org> metadata.xml:
   Add github to remote-id in metadata.xml





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

end of thread, other threads:[~2015-07-29 18:48 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-12-28  0:58 [gentoo-commits] gentoo-x86 commit in dev-ruby/chronic: chronic-0.10.2.ebuild ChangeLog Manuel Rueger (mrueg)
  -- strict thread matches above, loose matches on Subject: below --
2015-07-29 18:48 Fabian Groffen (grobian)
2015-03-13  8:30 Agostino Sarubbo (ago)
2015-03-11 17:03 Agostino Sarubbo (ago)
2015-03-11 17:02 Agostino Sarubbo (ago)
2014-11-25 11:24 Manuel Rueger (mrueg)
2014-08-05 16:00 Manuel Rueger (mrueg)
2014-07-25 13:24 Manuel Rueger (mrueg)
2014-04-24 20:20 Manuel Rueger (mrueg)
2013-10-09  0:37 Manuel Rueger (mrueg)

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