public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in dev-ruby/activerecord: ChangeLog activerecord-3.0.7.ebuild
@ 2011-04-26 18:05 Hans de Graaff (graaff)
  0 siblings, 0 replies; 3+ messages in thread
From: Hans de Graaff (graaff) @ 2011-04-26 18:05 UTC (permalink / raw
  To: gentoo-commits

graaff      11/04/26 18:05:30

  Modified:             ChangeLog
  Added:                activerecord-3.0.7.ebuild
  Log:
  Version bump for Rails 3.0.7.
  
  (Portage version: 2.1.9.42/cvs/Linux x86_64)

Revision  Changes    Path
1.152                dev-ruby/activerecord/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/activerecord/ChangeLog,v
retrieving revision 1.151
retrieving revision 1.152
diff -u -r1.151 -r1.152
--- ChangeLog	21 Feb 2011 20:11:53 -0000	1.151
+++ ChangeLog	26 Apr 2011 18:05:30 -0000	1.152
@@ -1,6 +1,12 @@
 # ChangeLog for dev-ruby/activerecord
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/activerecord/ChangeLog,v 1.151 2011/02/21 20:11:53 graaff Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/activerecord/ChangeLog,v 1.152 2011/04/26 18:05:30 graaff Exp $
+
+*activerecord-3.0.7 (26 Apr 2011)
+
+  26 Apr 2011; Hans de Graaff <graaff@gentoo.org>
+  +activerecord-3.0.7.ebuild:
+  Version bump for Rails 3.0.7.
 
 *activerecord-2.3.11 (21 Feb 2011)
 



1.1                  dev-ruby/activerecord/activerecord-3.0.7.ebuild

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

Index: activerecord-3.0.7.ebuild
===================================================================
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/activerecord/activerecord-3.0.7.ebuild,v 1.1 2011/04/26 18:05:30 graaff Exp $

EAPI=2
USE_RUBY="ruby18 ree18"

# this is not null so that the dependencies will actually be filled
RUBY_FAKEGEM_TASK_TEST="test"

RUBY_FAKEGEM_TASK_DOC=""
RUBY_FAKEGEM_EXTRADOC="CHANGELOG README.rdoc"

RUBY_FAKEGEM_GEMSPEC="activerecord.gemspec"

inherit ruby-fakegem

DESCRIPTION="Implements the ActiveRecord pattern (Fowler, PoEAA) for ORM"
HOMEPAGE="http://rubyforge.org/projects/activerecord/"
SRC_URI="http://github.com/rails/rails/tarball/v${PV} -> rails-${PV}.tgz"

LICENSE="MIT"
SLOT="3.0"
KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~x64-solaris ~x86-solaris"
IUSE="mysql postgres sqlite3"

S="${WORKDIR}/rails-rails-*/activerecord"

ruby_add_rdepend "~dev-ruby/activesupport-${PV}
	~dev-ruby/activemodel-${PV}
	>=dev-ruby/arel-2.0.2
	>=dev-ruby/tzinfo-0.3.23
	sqlite3? ( dev-ruby/sqlite3-ruby )
	mysql? ( dev-ruby/mysql2 )
	postgres? ( dev-ruby/pg )"

ruby_add_bdepend "
	test? (
		~dev-ruby/actionpack-${PV}
		dev-ruby/sqlite3-ruby
		>=dev-ruby/mocha-0.9.5
		virtual/ruby-test-unit
	)"

all_ruby_prepare() {
	# Set test environment to our hand.
	rm "${S}/../Gemfile" || die "Unable to remove Gemfile"
	sed -i -e '/load_paths/d' test/cases/helper.rb || die "Unable to remove load paths"
}

each_ruby_test() {
	case ${RUBY} in
		*jruby)
			;;
		*)
			if use sqlite3; then
				${RUBY} -S rake test_sqlite3 || die "sqlite3 tests failed"
			fi
			;;
	esac
}






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

* [gentoo-commits] gentoo-x86 commit in dev-ruby/activerecord: ChangeLog activerecord-3.0.7.ebuild
@ 2011-05-08  7:51 Hans de Graaff (graaff)
  0 siblings, 0 replies; 3+ messages in thread
From: Hans de Graaff (graaff) @ 2011-05-08  7:51 UTC (permalink / raw
  To: gentoo-commits

graaff      11/05/08 07:51:45

  Modified:             ChangeLog activerecord-3.0.7.ebuild
  Log:
  Update sqlite3 dependency to a version that we install in the expected path. This fixes bug 361607.
  
  (Portage version: 2.1.9.42/cvs/Linux x86_64)

Revision  Changes    Path
1.154                dev-ruby/activerecord/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/activerecord/ChangeLog,v
retrieving revision 1.153
retrieving revision 1.154
diff -u -r1.153 -r1.154
--- ChangeLog	1 May 2011 14:10:43 -0000	1.153
+++ ChangeLog	8 May 2011 07:51:45 -0000	1.154
@@ -1,6 +1,10 @@
 # ChangeLog for dev-ruby/activerecord
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/activerecord/ChangeLog,v 1.153 2011/05/01 14:10:43 graaff Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/activerecord/ChangeLog,v 1.154 2011/05/08 07:51:45 graaff Exp $
+
+  08 May 2011; Hans de Graaff <graaff@gentoo.org> activerecord-3.0.7.ebuild:
+  Update sqlite3 dependency to a version that we install in the expected path.
+  This fixes bug 361607.
 
   01 May 2011; Hans de Graaff <graaff@gentoo.org>
   -activerecord-2.3.10.ebuild, -activerecord-3.0.3.ebuild:



1.2                  dev-ruby/activerecord/activerecord-3.0.7.ebuild

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

Index: activerecord-3.0.7.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/activerecord/activerecord-3.0.7.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- activerecord-3.0.7.ebuild	26 Apr 2011 18:05:30 -0000	1.1
+++ activerecord-3.0.7.ebuild	8 May 2011 07:51:45 -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/activerecord/activerecord-3.0.7.ebuild,v 1.1 2011/04/26 18:05:30 graaff Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/activerecord/activerecord-3.0.7.ebuild,v 1.2 2011/05/08 07:51:45 graaff Exp $
 
 EAPI=2
 USE_RUBY="ruby18 ree18"
@@ -30,14 +30,14 @@
 	~dev-ruby/activemodel-${PV}
 	>=dev-ruby/arel-2.0.2
 	>=dev-ruby/tzinfo-0.3.23
-	sqlite3? ( dev-ruby/sqlite3-ruby )
+	sqlite3? ( >=dev-ruby/sqlite3-ruby-1.3.3 )
 	mysql? ( dev-ruby/mysql2 )
 	postgres? ( dev-ruby/pg )"
 
 ruby_add_bdepend "
 	test? (
 		~dev-ruby/actionpack-${PV}
-		dev-ruby/sqlite3-ruby
+		>=dev-ruby/sqlite3-ruby-1.3.3
 		>=dev-ruby/mocha-0.9.5
 		virtual/ruby-test-unit
 	)"






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

* [gentoo-commits] gentoo-x86 commit in dev-ruby/activerecord: ChangeLog activerecord-3.0.7.ebuild
@ 2011-06-08 18:48 Hans de Graaff (graaff)
  0 siblings, 0 replies; 3+ messages in thread
From: Hans de Graaff (graaff) @ 2011-06-08 18:48 UTC (permalink / raw
  To: gentoo-commits

graaff      11/06/08 18:48:45

  Modified:             ChangeLog activerecord-3.0.7.ebuild
  Log:
  Depend on slot of mysql2 that is compatible with this version of activerecord.
  
  (Portage version: 2.1.9.42/cvs/Linux x86_64)

Revision  Changes    Path
1.155                dev-ruby/activerecord/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/activerecord/ChangeLog,v
retrieving revision 1.154
retrieving revision 1.155
diff -u -r1.154 -r1.155
--- ChangeLog	8 May 2011 07:51:45 -0000	1.154
+++ ChangeLog	8 Jun 2011 18:48:45 -0000	1.155
@@ -1,6 +1,10 @@
 # ChangeLog for dev-ruby/activerecord
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/activerecord/ChangeLog,v 1.154 2011/05/08 07:51:45 graaff Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/activerecord/ChangeLog,v 1.155 2011/06/08 18:48:45 graaff Exp $
+
+  08 Jun 2011; Hans de Graaff <graaff@gentoo.org> activerecord-3.0.7.ebuild:
+  Depend on slot of mysql2 that is compatible with this version of
+  activerecord.
 
   08 May 2011; Hans de Graaff <graaff@gentoo.org> activerecord-3.0.7.ebuild:
   Update sqlite3 dependency to a version that we install in the expected path.



1.3                  dev-ruby/activerecord/activerecord-3.0.7.ebuild

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

Index: activerecord-3.0.7.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/activerecord/activerecord-3.0.7.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- activerecord-3.0.7.ebuild	8 May 2011 07:51:45 -0000	1.2
+++ activerecord-3.0.7.ebuild	8 Jun 2011 18:48:45 -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/activerecord/activerecord-3.0.7.ebuild,v 1.2 2011/05/08 07:51:45 graaff Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/activerecord/activerecord-3.0.7.ebuild,v 1.3 2011/06/08 18:48:45 graaff Exp $
 
 EAPI=2
 USE_RUBY="ruby18 ree18"
@@ -31,7 +31,7 @@
 	>=dev-ruby/arel-2.0.2
 	>=dev-ruby/tzinfo-0.3.23
 	sqlite3? ( >=dev-ruby/sqlite3-ruby-1.3.3 )
-	mysql? ( dev-ruby/mysql2 )
+	mysql? ( dev-ruby/mysql2:0.2 )
 	postgres? ( dev-ruby/pg )"
 
 ruby_add_bdepend "






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

end of thread, other threads:[~2011-06-08 18:48 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-06-08 18:48 [gentoo-commits] gentoo-x86 commit in dev-ruby/activerecord: ChangeLog activerecord-3.0.7.ebuild Hans de Graaff (graaff)
  -- strict thread matches above, loose matches on Subject: below --
2011-05-08  7:51 Hans de Graaff (graaff)
2011-04-26 18:05 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