public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in dev-ruby/amazon-ec2: amazon-ec2-0.9.17.ebuild ChangeLog
@ 2011-07-21 10:00 Hans de Graaff (graaff)
  0 siblings, 0 replies; 3+ messages in thread
From: Hans de Graaff (graaff) @ 2011-07-21 10:00 UTC (permalink / raw
  To: gentoo-commits

graaff      11/07/21 10:00:37

  Modified:             ChangeLog
  Added:                amazon-ec2-0.9.17.ebuild
  Log:
  Version bump. Fix tests breaking due to missing yard, bug 339261.
  
  (Portage version: 2.1.10.3/cvs/Linux x86_64)

Revision  Changes    Path
1.10                 dev-ruby/amazon-ec2/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/amazon-ec2/ChangeLog,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- ChangeLog	15 Aug 2010 19:14:35 -0000	1.9
+++ ChangeLog	21 Jul 2011 10:00:37 -0000	1.10
@@ -1,6 +1,11 @@
 # ChangeLog for dev-ruby/amazon-ec2
-# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/amazon-ec2/ChangeLog,v 1.9 2010/08/15 19:14:35 flameeyes Exp $
+# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/amazon-ec2/ChangeLog,v 1.10 2011/07/21 10:00:37 graaff Exp $
+
+*amazon-ec2-0.9.17 (21 Jul 2011)
+
+  21 Jul 2011; Hans de Graaff <graaff@gentoo.org> +amazon-ec2-0.9.17.ebuild:
+  Version bump. Fix tests breaking due to missing yard, bug 339261.
 
   15 Aug 2010; Diego E. Pettenò <flameeyes@gentoo.org>
   amazon-ec2-0.9.15.ebuild:



1.1                  dev-ruby/amazon-ec2/amazon-ec2-0.9.17.ebuild

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

Index: amazon-ec2-0.9.17.ebuild
===================================================================
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/amazon-ec2/amazon-ec2-0.9.17.ebuild,v 1.1 2011/07/21 10:00:37 graaff Exp $

EAPI=2

USE_RUBY="ruby18 ruby19 jruby ree18"

RUBY_FAKEGEM_TASK_DOC="yard"
RUBY_FAKEGEM_DOCDIR="doc"
RUBY_FAKEGEM_EXTRADOC="README.rdoc ChangeLog"

RUBY_FAKEGEM_BINWRAP="ec2sh"

inherit ruby-fakegem

DESCRIPTION="Library for accessing the Amazon Web Services EC2 and related"
HOMEPAGE="http://github.com/grempe/amazon-ec2"

LICENSE="Ruby"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""

# We only need yard for Ruby 1.8, as we use it for documentation
# generation. It is however also loaded when we run tests.
USE_RUBY=ruby18 \
	ruby_add_bdepend "doc? ( dev-ruby/yard )"

ruby_add_bdepend "
	test? (
		virtual/ruby-test-unit
		>=dev-ruby/test-spec-0.10.0
		>=dev-ruby/mocha-0.9.8
		dev-ruby/yard
	)"
ruby_add_rdepend '>=dev-ruby/xml-simple-1.0.12'

each_ruby_prepare() {
	case ${RUBY} in
		*ruby19)
			;;
		*)
			# Remove the reference to test-unit gem, since it's only
			# available on Ruby 1.9.
			sed -i -e '/^gem/s:^:#:' test/test_helper.rb || die
			;;
	esac

	rm Gemfile || die
	sed -i -e '/[Bb]undler/d' Rakefile || die
}






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

* [gentoo-commits] gentoo-x86 commit in dev-ruby/amazon-ec2: amazon-ec2-0.9.17.ebuild ChangeLog
@ 2011-08-07  0:14 Diego Petteno (flameeyes)
  0 siblings, 0 replies; 3+ messages in thread
From: Diego Petteno (flameeyes) @ 2011-08-07  0:14 UTC (permalink / raw
  To: gentoo-commits

flameeyes    11/08/07 00:14:46

  Modified:             amazon-ec2-0.9.17.ebuild ChangeLog
  Log:
  Fix building with USE=doc (remove bundler reference from all copies); fix tests with Ruby 1.9.2; add missing ruby-ssl dependency; use test-unit-2 as that's what upstream seems to prefer.
  
  (Portage version: 2.2.0_alpha50/cvs/Linux x86_64)

Revision  Changes    Path
1.2                  dev-ruby/amazon-ec2/amazon-ec2-0.9.17.ebuild

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

Index: amazon-ec2-0.9.17.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/amazon-ec2/amazon-ec2-0.9.17.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- amazon-ec2-0.9.17.ebuild	21 Jul 2011 10:00:37 -0000	1.1
+++ amazon-ec2-0.9.17.ebuild	7 Aug 2011 00:14:46 -0000	1.2
@@ -1,6 +1,6 @@
 # Copyright 1999-2011 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/amazon-ec2/amazon-ec2-0.9.17.ebuild,v 1.1 2011/07/21 10:00:37 graaff Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/amazon-ec2/amazon-ec2-0.9.17.ebuild,v 1.2 2011/08/07 00:14:46 flameeyes Exp $
 
 EAPI=2
 
@@ -29,23 +29,17 @@
 
 ruby_add_bdepend "
 	test? (
-		virtual/ruby-test-unit
+		dev-ruby/test-unit:2
 		>=dev-ruby/test-spec-0.10.0
 		>=dev-ruby/mocha-0.9.8
 		dev-ruby/yard
 	)"
-ruby_add_rdepend '>=dev-ruby/xml-simple-1.0.12'
+ruby_add_rdepend '
+	>=dev-ruby/xml-simple-1.0.12
+	virtual/ruby-ssl'
 
-each_ruby_prepare() {
-	case ${RUBY} in
-		*ruby19)
-			;;
-		*)
-			# Remove the reference to test-unit gem, since it's only
-			# available on Ruby 1.9.
-			sed -i -e '/^gem/s:^:#:' test/test_helper.rb || die
-			;;
-	esac
+all_ruby_prepare() {
+	epatch "${FILESDIR}"/${P}+ruby-1.9.2.patch
 
 	rm Gemfile || die
 	sed -i -e '/[Bb]undler/d' Rakefile || die



1.11                 dev-ruby/amazon-ec2/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/amazon-ec2/ChangeLog,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -r1.10 -r1.11
--- ChangeLog	21 Jul 2011 10:00:37 -0000	1.10
+++ ChangeLog	7 Aug 2011 00:14:46 -0000	1.11
@@ -1,6 +1,12 @@
 # ChangeLog for dev-ruby/amazon-ec2
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/amazon-ec2/ChangeLog,v 1.10 2011/07/21 10:00:37 graaff Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/amazon-ec2/ChangeLog,v 1.11 2011/08/07 00:14:46 flameeyes Exp $
+
+  07 Aug 2011; Diego E. Pettenò <flameeyes@gentoo.org>
+  amazon-ec2-0.9.17.ebuild, +files/amazon-ec2-0.9.17+ruby-1.9.2.patch:
+  Fix building with USE=doc (remove bundler reference from all copies); fix
+  tests with Ruby 1.9.2; add missing ruby-ssl dependency; use test-unit-2 as
+  that's what upstream seems to prefer.
 
 *amazon-ec2-0.9.17 (21 Jul 2011)
 






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

* [gentoo-commits] gentoo-x86 commit in dev-ruby/amazon-ec2: amazon-ec2-0.9.17.ebuild ChangeLog
@ 2013-10-15 19:14 Hans de Graaff (graaff)
  0 siblings, 0 replies; 3+ messages in thread
From: Hans de Graaff (graaff) @ 2013-10-15 19:14 UTC (permalink / raw
  To: gentoo-commits

graaff      13/10/15 19:14:31

  Modified:             amazon-ec2-0.9.17.ebuild ChangeLog
  Log:
  Drop ree18. Drop ruby18-specific limitation for yard. Install awshell script in addition to the deprecated stub ec2sh, fixing bug 487298.
  
  (Portage version: 2.2.1/cvs/Linux x86_64, signed Manifest commit with key 0x8883FA56A308A8D7!)

Revision  Changes    Path
1.3                  dev-ruby/amazon-ec2/amazon-ec2-0.9.17.ebuild

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

Index: amazon-ec2-0.9.17.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/amazon-ec2/amazon-ec2-0.9.17.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- amazon-ec2-0.9.17.ebuild	7 Aug 2011 00:14:46 -0000	1.2
+++ amazon-ec2-0.9.17.ebuild	15 Oct 2013 19:14:31 -0000	1.3
@@ -1,16 +1,16 @@
-# Copyright 1999-2011 Gentoo Foundation
+# Copyright 1999-2013 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/amazon-ec2/amazon-ec2-0.9.17.ebuild,v 1.2 2011/08/07 00:14:46 flameeyes Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/amazon-ec2/amazon-ec2-0.9.17.ebuild,v 1.3 2013/10/15 19:14:31 graaff Exp $
 
 EAPI=2
 
-USE_RUBY="ruby18 ruby19 jruby ree18"
+USE_RUBY="ruby18 ruby19 jruby"
 
 RUBY_FAKEGEM_TASK_DOC="yard"
 RUBY_FAKEGEM_DOCDIR="doc"
 RUBY_FAKEGEM_EXTRADOC="README.rdoc ChangeLog"
 
-RUBY_FAKEGEM_BINWRAP="ec2sh"
+RUBY_FAKEGEM_BINWRAP="awshell ec2sh"
 
 inherit ruby-fakegem
 
@@ -22,11 +22,6 @@
 KEYWORDS="~amd64 ~x86"
 IUSE=""
 
-# We only need yard for Ruby 1.8, as we use it for documentation
-# generation. It is however also loaded when we run tests.
-USE_RUBY=ruby18 \
-	ruby_add_bdepend "doc? ( dev-ruby/yard )"
-
 ruby_add_bdepend "
 	test? (
 		dev-ruby/test-unit:2



1.13                 dev-ruby/amazon-ec2/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/amazon-ec2/ChangeLog,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -r1.12 -r1.13
--- ChangeLog	28 Jul 2012 17:24:44 -0000	1.12
+++ ChangeLog	15 Oct 2013 19:14:31 -0000	1.13
@@ -1,6 +1,10 @@
 # ChangeLog for dev-ruby/amazon-ec2
-# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/amazon-ec2/ChangeLog,v 1.12 2012/07/28 17:24:44 graaff Exp $
+# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/amazon-ec2/ChangeLog,v 1.13 2013/10/15 19:14:31 graaff Exp $
+
+  15 Oct 2013; Hans de Graaff <graaff@gentoo.org> amazon-ec2-0.9.17.ebuild:
+  Drop ree18. Drop ruby18-specific limitation for yard. Install awshell script
+  in addition to the deprecated stub ec2sh, fixing bug 487298.
 
   28 Jul 2012; Hans de Graaff <graaff@gentoo.org> -amazon-ec2-0.9.15.ebuild:
   Cleanup.





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

end of thread, other threads:[~2013-10-15 19:14 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-07-21 10:00 [gentoo-commits] gentoo-x86 commit in dev-ruby/amazon-ec2: amazon-ec2-0.9.17.ebuild ChangeLog Hans de Graaff (graaff)
  -- strict thread matches above, loose matches on Subject: below --
2011-08-07  0:14 Diego Petteno (flameeyes)
2013-10-15 19:14 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