diff options
author | Hans de Graaff <graaff@gentoo.org> | 2012-04-30 06:45:55 +0000 |
---|---|---|
committer | Hans de Graaff <graaff@gentoo.org> | 2012-04-30 06:45:55 +0000 |
commit | abbb045c53595b9955dca7ee39f09fa990fd5ef9 (patch) | |
tree | 8f30b147ca24dc9796de3f7869480aad21521715 /www-servers | |
parent | Security bump. (diff) | |
download | gentoo-2-abbb045c53595b9955dca7ee39f09fa990fd5ef9.tar.gz gentoo-2-abbb045c53595b9955dca7ee39f09fa990fd5ef9.tar.bz2 gentoo-2-abbb045c53595b9955dca7ee39f09fa990fd5ef9.zip |
Remove old version.
(Portage version: 2.1.10.49/cvs/Linux x86_64)
Diffstat (limited to 'www-servers')
-rw-r--r-- | www-servers/mongrel/ChangeLog | 7 | ||||
-rw-r--r-- | www-servers/mongrel/mongrel-1.1.5-r2.ebuild | 68 |
2 files changed, 5 insertions, 70 deletions
diff --git a/www-servers/mongrel/ChangeLog b/www-servers/mongrel/ChangeLog index 622b3c69e56e..77c81cde1a12 100644 --- a/www-servers/mongrel/ChangeLog +++ b/www-servers/mongrel/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for www-servers/mongrel -# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/www-servers/mongrel/ChangeLog,v 1.46 2011/08/07 14:50:31 armin76 Exp $ +# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/www-servers/mongrel/ChangeLog,v 1.47 2012/04/30 06:45:55 graaff Exp $ + + 30 Apr 2012; Hans de Graaff <graaff@gentoo.org> -mongrel-1.1.5-r2.ebuild: + Remove old version. 07 Aug 2011; Raúl Porcel <armin76@gentoo.org> mongrel-1.1.5-r2.ebuild, mongrel-1.1.5-r3.ebuild: diff --git a/www-servers/mongrel/mongrel-1.1.5-r2.ebuild b/www-servers/mongrel/mongrel-1.1.5-r2.ebuild deleted file mode 100644 index 56a2596c9c22..000000000000 --- a/www-servers/mongrel/mongrel-1.1.5-r2.ebuild +++ /dev/null @@ -1,68 +0,0 @@ -# Copyright 1999-2011 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/www-servers/mongrel/mongrel-1.1.5-r2.ebuild,v 1.8 2011/08/07 14:50:31 armin76 Exp $ - -EAPI="2" - -# ruby19 → extension does not build, so there is no way to get this to -# work for now -USE_RUBY="ruby18 jruby" - -RUBY_FAKEGEM_TASK_DOC="" -RUBY_FAKEGEM_TASK_TEST="" - -RUBY_FAKEGEM_EXTRADOC="CHANGELOG README TODO" - -inherit multilib ruby-fakegem - -DESCRIPTION="A small fast HTTP library and server that runs Rails, Camping, and Nitro apps" -HOMEPAGE="http://mongrel.rubyforge.org/" - -LICENSE="|| ( mongrel GPL-2 )" -SLOT="0" -KEYWORDS="amd64 ppc ppc64 x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris ~x86-solaris" -IUSE="" - -RDEPEND="" -DEPEND="ruby_targets_jruby? ( >=virtual/jdk-1.5 )" - -ruby_add_rdepend ">=dev-ruby/daemons-1.0.3 - >=dev-ruby/gem_plugin-0.2.3" - -# Only useful with Ruby 1.8 as it's not used/useful with Ruby 1.9 or JRuby -USE_RUBY=ruby18 ruby_add_rdepend ">=dev-ruby/fastthread-1.0.1" - -ruby_add_bdepend test virtual/ruby-test-unit - -each_ruby_compile() { - case ${RUBY} in - *jruby) - # There is no script to build the JRuby extension so we're - # going to do it manually :( - pushd ext/http11_java &>/dev/null - find . -name '*.java' | xargs javac -source 1.5 -target 1.5 -cp $(java-config -d -p jruby) \ - || die "failed to build java source" - find . -name '*.class' | xargs jar cf http11.jar \ - || die "failed to create http11.jar" - popd &>/dev/null - - # Move it here to avoid special-casing the test and - # install phases. - cp ext/http11_java/http11.jar lib/ || die "unable to copy http11.jar" - ;; - *) - pushd ext/http11 &>/dev/null - ${RUBY} extconf.rb || die "extconf failed" - emake || die "emake failed" - popd &>/dev/null - - # Move it here to avoid special-casing the test and - # install phases. - cp ext/http11/http11$(get_modname) lib/ || die "unable to copy http11 shared object" - ;; - esac -} - -each_ruby_test() { - ${RUBY} -S testrb -I lib:ext/http11_java -a test -x test_command || die "tests failed" -} |