diff options
author | Hans de Graaff <graaff@gentoo.org> | 2011-08-17 08:42:30 +0000 |
---|---|---|
committer | Hans de Graaff <graaff@gentoo.org> | 2011-08-17 08:42:30 +0000 |
commit | 03de3604ffc0281cbd8237eb8f1271845f081694 (patch) | |
tree | 7118fc2c7d20928d6cf39a7ed2659599b3e8bdb9 /dev-ruby/actionmailer | |
parent | Version bump. (diff) | |
download | gentoo-2-03de3604ffc0281cbd8237eb8f1271845f081694.tar.gz gentoo-2-03de3604ffc0281cbd8237eb8f1271845f081694.tar.bz2 gentoo-2-03de3604ffc0281cbd8237eb8f1271845f081694.zip |
Version bump.
(Portage version: 2.1.10.3/cvs/Linux x86_64)
Diffstat (limited to 'dev-ruby/actionmailer')
-rw-r--r-- | dev-ruby/actionmailer/ChangeLog | 7 | ||||
-rw-r--r-- | dev-ruby/actionmailer/actionmailer-2.3.14.ebuild | 34 |
2 files changed, 40 insertions, 1 deletions
diff --git a/dev-ruby/actionmailer/ChangeLog b/dev-ruby/actionmailer/ChangeLog index e500870ed24c..0ec0a9953e5e 100644 --- a/dev-ruby/actionmailer/ChangeLog +++ b/dev-ruby/actionmailer/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-ruby/actionmailer # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-ruby/actionmailer/ChangeLog,v 1.165 2011/08/07 18:26:59 armin76 Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/actionmailer/ChangeLog,v 1.166 2011/08/17 08:42:30 graaff Exp $ + +*actionmailer-2.3.14 (17 Aug 2011) + + 17 Aug 2011; Hans de Graaff <graaff@gentoo.org> +actionmailer-2.3.14.ebuild: + Version bump. 07 Aug 2011; Raúl Porcel <armin76@gentoo.org> actionmailer-3.0.9.ebuild: Add ~ia64/~sparc wrt #351835 diff --git a/dev-ruby/actionmailer/actionmailer-2.3.14.ebuild b/dev-ruby/actionmailer/actionmailer-2.3.14.ebuild new file mode 100644 index 000000000000..c581fe8e8cb2 --- /dev/null +++ b/dev-ruby/actionmailer/actionmailer-2.3.14.ebuild @@ -0,0 +1,34 @@ +# Copyright 1999-2011 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/actionmailer/actionmailer-2.3.14.ebuild,v 1.1 2011/08/17 08:42:30 graaff Exp $ + +EAPI=2 +USE_RUBY="ruby18 ree18 jruby" + +RUBY_FAKEGEM_DOCDIR="doc" +RUBY_FAKEGEM_EXTRADOC="CHANGELOG README" + +inherit ruby-fakegem + +DESCRIPTION="Framework for designing email-service layers" +HOMEPAGE="http://rubyforge.org/projects/actionmailer/" + +LICENSE="MIT" +SLOT="2.3" +KEYWORDS="~amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~x64-solaris ~x86-solaris" +IUSE="" + +RUBY_PATCHES=( "${PN}-2.3.10-rails3.patch" ) + +ruby_add_rdepend "~dev-ruby/actionpack-${PV} + >=dev-ruby/text-format-0.6.3 + >=dev-ruby/tmail-1.2.3" +ruby_add_bdepend "test? ( + >=dev-ruby/mocha-0.9.5 + virtual/ruby-test-unit +)" + +all_ruby_prepare() { + # Custom template not found in package + sed -i -e '/horo/d' Rakefile || die +} |