public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in dev-ruby/actionpack: ChangeLog actionpack-2.3.15.ebuild
@ 2013-01-09  7:48 Hans de Graaff (graaff)
  0 siblings, 0 replies; only message in thread
From: Hans de Graaff (graaff) @ 2013-01-09  7:48 UTC (permalink / raw
  To: gentoo-commits

graaff      13/01/09 07:48:02

  Modified:             ChangeLog
  Added:                actionpack-2.3.15.ebuild
  Log:
  Version bump for security bug 450974.
  
  (Portage version: 2.1.11.31/cvs/Linux x86_64, signed Manifest commit with key 0x8883FA56A308A8D7!)

Revision  Changes    Path
1.223                dev-ruby/actionpack/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/actionpack/ChangeLog,v
retrieving revision 1.222
retrieving revision 1.223
diff -u -r1.222 -r1.223
--- ChangeLog	6 Jan 2013 09:57:03 -0000	1.222
+++ ChangeLog	9 Jan 2013 07:48:02 -0000	1.223
@@ -1,6 +1,14 @@
 # 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.222 2013/01/06 09:57:03 graaff Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/actionpack/ChangeLog,v 1.223 2013/01/09 07:48:02 graaff Exp $
+
+  09 Jan 2013; Hans de Graaff <graaff@gentoo.org> +actionpack-2.3.15.ebuild:
+  Version bump for security bug 450974.
+
+*actionpack-2.3.15 (09 Jan 2013)
+
+  09 Jan 2013; Hans de Graaff <graaff@gentoo.org> +actionpack-2.3.15.ebuild:
+  Version bump for security bug 450974.
 
   06 Jan 2013; Hans de Graaff <graaff@gentoo.org> -actionpack-3.0.17.ebuild,
   -actionpack-3.1.8.ebuild, -actionpack-3.2.8.ebuild, -actionpack-3.2.9.ebuild:



1.1                  dev-ruby/actionpack/actionpack-2.3.15.ebuild

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

Index: actionpack-2.3.15.ebuild
===================================================================
# 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.15.ebuild,v 1.1 2013/01/09 07:48:02 graaff Exp $

EAPI=2

USE_RUBY="ruby18 ree18 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

	# Test most likely broken due to new security fixes.
	sed -i -e '/test_post_xml_using_a_disallowed_type_attribute/,/^  end/ s:^:#:' test/controller/webservice_test.rb || die
}





^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2013-01-09  7:48 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-01-09  7:48 [gentoo-commits] gentoo-x86 commit in dev-ruby/actionpack: ChangeLog actionpack-2.3.15.ebuild 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