diff options
author | Hans de Graaff <graaff@gentoo.org> | 2010-10-15 07:59:13 +0000 |
---|---|---|
committer | Hans de Graaff <graaff@gentoo.org> | 2010-10-15 07:59:13 +0000 |
commit | 71a6df3454cb0206dd8f8f2c23bbbc6485a27b5a (patch) | |
tree | 4a955df10edf571aeceef00d28d5cef240c374ba /dev-ruby/activerecord | |
parent | Remove vulnerable version. (diff) | |
download | gentoo-2-71a6df3454cb0206dd8f8f2c23bbbc6485a27b5a.tar.gz gentoo-2-71a6df3454cb0206dd8f8f2c23bbbc6485a27b5a.tar.bz2 gentoo-2-71a6df3454cb0206dd8f8f2c23bbbc6485a27b5a.zip |
Remove vulnerable version.
(Portage version: 2.1.8.3/cvs/Linux x86_64)
Diffstat (limited to 'dev-ruby/activerecord')
-rw-r--r-- | dev-ruby/activerecord/ChangeLog | 6 | ||||
-rw-r--r-- | dev-ruby/activerecord/activerecord-2.3.9.ebuild | 61 |
2 files changed, 5 insertions, 62 deletions
diff --git a/dev-ruby/activerecord/ChangeLog b/dev-ruby/activerecord/ChangeLog index 0448e08385d0..e0465b0dc52b 100644 --- a/dev-ruby/activerecord/ChangeLog +++ b/dev-ruby/activerecord/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for dev-ruby/activerecord # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-ruby/activerecord/ChangeLog,v 1.141 2010/10/15 07:51:55 graaff Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/activerecord/ChangeLog,v 1.142 2010/10/15 07:59:13 graaff Exp $ + + 15 Oct 2010; Hans de Graaff <graaff@gentoo.org> + -activerecord-2.3.9.ebuild: + Remove vulnerable version. *activerecord-2.3.10 (15 Oct 2010) diff --git a/dev-ruby/activerecord/activerecord-2.3.9.ebuild b/dev-ruby/activerecord/activerecord-2.3.9.ebuild deleted file mode 100644 index e95c976b8117..000000000000 --- a/dev-ruby/activerecord/activerecord-2.3.9.ebuild +++ /dev/null @@ -1,61 +0,0 @@ -# Copyright 1999-2010 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-ruby/activerecord/activerecord-2.3.9.ebuild,v 1.1 2010/09/05 09:18:15 graaff Exp $ - -EAPI=2 -USE_RUBY="ruby18 ree18 jruby" - -# this is not null so that the dependencies will actually be filled -RUBY_FAKEGEM_TASK_TEST="none" - -RUBY_FAKEGEM_DOCDIR="doc" -RUBY_FAKEGEM_EXTRADOC="CHANGELOG README" - -inherit ruby-fakegem - -DESCRIPTION="Implements the ActiveRecord pattern (Fowler, PoEAA) for ORM" -HOMEPAGE="http://rubyforge.org/projects/activerecord/" - -LICENSE="MIT" -SLOT="2.3" -KEYWORDS="~amd64 ~ia64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~x64-solaris ~x86-solaris" -IUSE="mysql postgres sqlite3" #sqlite - -ruby_add_rdepend "~dev-ruby/activesupport-${PV}" - -#ruby_add_rdepend sqlite ">=dev-ruby/sqlite-ruby-2.2.2" -USE_RUBY=ruby18 \ - ruby_add_rdepend " - sqlite3? ( dev-ruby/sqlite3-ruby ) - mysql? ( >=dev-ruby/mysql-ruby-2.7 ) - postgres? ( dev-ruby/pg )" - -ruby_add_bdepend " - test? ( - >=dev-ruby/mocha-0.9.5 - virtual/ruby-test-unit - !dev-ruby/test-unit:2 - )" - -all_ruby_prepare() { - # Custom template not found in package - sed -i -e '/horo/d' Rakefile || die - - epatch "${FILESDIR}/${PN}-2.3.8-add-index-with-symbol.patch" -} - -each_ruby_test() { - case ${RUBY} in - *jruby) - ;; - *) - if use sqlite3; then - ${RUBY} -S rake test_sqlite3 || die "sqlite3 tests failed" - fi - ;; - esac -# -# if use sqlite; then -# ${RUBY} -S rake test_sqlite || die "sqlite3 tests failed" -# fi -} |