diff options
author | Hans de Graaff <graaff@gentoo.org> | 2013-03-30 09:32:29 +0000 |
---|---|---|
committer | Hans de Graaff <graaff@gentoo.org> | 2013-03-30 09:32:29 +0000 |
commit | f5de34181d077385adcf453108ccbc8a6637cb6f (patch) | |
tree | 0e7ee1dfd135aaef1b3461deb89f1aa7f4c83954 /dev-ruby/actionpack | |
parent | Version bump for security bug 462452. (diff) | |
download | gentoo-2-f5de34181d077385adcf453108ccbc8a6637cb6f.tar.gz gentoo-2-f5de34181d077385adcf453108ccbc8a6637cb6f.tar.bz2 gentoo-2-f5de34181d077385adcf453108ccbc8a6637cb6f.zip |
Version bump for security bug 462452.
(Portage version: 2.1.11.55/cvs/Linux x86_64, signed Manifest commit with key 0x8883FA56A308A8D7!)
Diffstat (limited to 'dev-ruby/actionpack')
-rw-r--r-- | dev-ruby/actionpack/ChangeLog | 7 | ||||
-rw-r--r-- | dev-ruby/actionpack/actionpack-2.3.18.ebuild | 64 |
2 files changed, 70 insertions, 1 deletions
diff --git a/dev-ruby/actionpack/ChangeLog b/dev-ruby/actionpack/ChangeLog index 6c066094aec4..0fe72edafd6b 100644 --- a/dev-ruby/actionpack/ChangeLog +++ b/dev-ruby/actionpack/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-ruby/actionpack # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-ruby/actionpack/ChangeLog,v 1.247 2013/03/27 13:37:32 moult Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/actionpack/ChangeLog,v 1.248 2013/03/30 09:32:29 graaff Exp $ + +*actionpack-2.3.18 (30 Mar 2013) + + 30 Mar 2013; Hans de Graaff <graaff@gentoo.org> +actionpack-2.3.18.ebuild: + Version bump for security bug 462452. 27 Mar 2013; Dion Moult <moult@gentoo.org> -actionpack-3.0.20.ebuild: Remove dev-ruby/actionpack:3.0 due to lack of upstream support. diff --git a/dev-ruby/actionpack/actionpack-2.3.18.ebuild b/dev-ruby/actionpack/actionpack-2.3.18.ebuild new file mode 100644 index 000000000000..9891b1c36a9a --- /dev/null +++ b/dev-ruby/actionpack/actionpack-2.3.18.ebuild @@ -0,0 +1,64 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/actionpack/actionpack-2.3.18.ebuild,v 1.1 2013/03/30 09:32:29 graaff Exp $ + +EAPI=2 + +USE_RUBY="ruby18 jruby" + +# The default test task tries to test activerecord with SQLite as well. +RUBY_FAKEGEM_TASK_TEST="test_action_pack" + +RUBY_FAKEGEM_DOCDIR="doc" +RUBY_FAKEGEM_EXTRADOC="CHANGELOG README" + +inherit ruby-fakegem + +DESCRIPTION="Eases web-request routing, handling, and response." +HOMEPAGE="http://rubyforge.org/projects/actionpack/" + +LICENSE="MIT" +SLOT="2.3" +KEYWORDS="~amd64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~x64-solaris ~x86-solaris" +IUSE="" + +RUBY_PATCHES=( "${PN}-2.3.11-rails3.patch" "${PN}-2.3.10-i18n-0.4.2.patch" ) + +ruby_add_rdepend "~dev-ruby/activesupport-${PV} + >=dev-ruby/rack-1.1.0:0" + +ruby_add_bdepend " + test? ( + >=dev-ruby/mocha-0.9.7 + dev-ruby/activerecord:${SLOT} + ~dev-ruby/actionmailer-${PV} + )" + +all_ruby_prepare() { + # Custom template not found in package + sed -i -e '/horo/d' Rakefile || die + + # This tries to load a “vendorized” copy of activerecord that we + # will never have. It can now also use a normally installed + # version but these tests fail. + sed -i -e '/PATH_TO_AR/s:^:#:' -e 's/self.able_to_connect = true/self.able_to_connect = false/' test/active_record_unit.rb || die + + # Fix the testsuite, the symlink is not present in the gem for + # some reason + ln -s ../../symlink_parent test/fixtures/layout_tests/layouts/symlinked + + # MemCacheStore tests no longer fail gracefully, and it's unlikely for + # someone to have them running anyway, so remove them for now. + rm test/controller/session/mem_cache_store_test.rb || die + + # Fix tests when run against i18n 0.4.2 which ignores locale + # definitions with an empty data section. + sed -i -e 's/, {}/, {:test => "test"}/' test/template/render_test.rb || die + + # Test now broken on a whitespace difference. + sed -i -e '/test_multiple_cookies/,/end/ s:^:#:' test/controller/cookie_test.rb + + # Skip failing tests in the interest of security updates. + sed -i -e '/test_rescue_action_locally/,/^ end/ s:^:#:' test/controller/rescue_test.rb || die + sed -i -e '/test_should_sanitize_neverending_attribute/,/^ end/ s:^:#:' test/controller/html-scanner/sanitizer_test.rb || die +} |