diff options
author | Hans de Graaff <graaff@gentoo.org> | 2011-12-25 11:41:08 +0000 |
---|---|---|
committer | Hans de Graaff <graaff@gentoo.org> | 2011-12-25 11:41:08 +0000 |
commit | 17d66a593ba28c7563e2f13983b58878d4829db8 (patch) | |
tree | dfa17b7a15924526174c18516b71014e8f0c9f2b /www-servers/thin | |
parent | [bump] dev-perl/Capture-Tiny-0.150.0 (diff) | |
download | gentoo-2-17d66a593ba28c7563e2f13983b58878d4829db8.tar.gz gentoo-2-17d66a593ba28c7563e2f13983b58878d4829db8.tar.bz2 gentoo-2-17d66a593ba28c7563e2f13983b58878d4829db8.zip |
Remove old version.
(Portage version: 2.1.10.41/cvs/Linux x86_64)
Diffstat (limited to 'www-servers/thin')
-rw-r--r-- | www-servers/thin/ChangeLog | 5 | ||||
-rw-r--r-- | www-servers/thin/thin-1.2.5-r1.ebuild | 60 |
2 files changed, 4 insertions, 61 deletions
diff --git a/www-servers/thin/ChangeLog b/www-servers/thin/ChangeLog index 50032f0edb7b..828c869c6536 100644 --- a/www-servers/thin/ChangeLog +++ b/www-servers/thin/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for www-servers/thin # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/www-servers/thin/ChangeLog,v 1.17 2011/06/12 17:13:51 a3li Exp $ +# $Header: /var/cvsroot/gentoo-x86/www-servers/thin/ChangeLog,v 1.18 2011/12/25 11:41:08 graaff Exp $ + + 25 Dec 2011; Hans de Graaff <graaff@gentoo.org> -thin-1.2.5-r1.ebuild: + Remove old version. *thin-1.2.11 (12 Jun 2011) diff --git a/www-servers/thin/thin-1.2.5-r1.ebuild b/www-servers/thin/thin-1.2.5-r1.ebuild deleted file mode 100644 index 06ec2631cbfe..000000000000 --- a/www-servers/thin/thin-1.2.5-r1.ebuild +++ /dev/null @@ -1,60 +0,0 @@ -# Copyright 1999-2010 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/www-servers/thin/thin-1.2.5-r1.ebuild,v 1.7 2010/08/13 23:38:19 flameeyes Exp $ - -EAPI=2 - -USE_RUBY="ruby18 ree18" - -RUBY_FAKEGEM_TASK_TEST="spec" - -inherit ruby-fakegem - -DESCRIPTION="A fast and very simple Ruby web server" -HOMEPAGE="http://code.macournoyer.com/thin/" - -LICENSE="Ruby" -SLOT="0" -KEYWORDS="~amd64 ~ppc ~ppc64 ~x86" -IUSE="" - -DEPEND="${DEPEND} - dev-util/ragel" -RDEPEND="${RDEPEND}" - -# The runtime dependencies are used at build-time as well since the -# Rakefile loads thin! -mydeps=">=dev-ruby/daemons-1.0.9 - >=dev-ruby/rack-1.0.0 - >=dev-ruby/eventmachine-0.12.6 - virtual/ruby-ssl" - -ruby_add_rdepend "${mydeps}" -ruby_add_bdepend "${mydeps} - dev-ruby/rake-compiler - test? ( dev-ruby/rspec )" - -all_ruby_prepare() { - # Fix Ragel-based parser generation (uses a *very* old syntax that - # is not supported in Gentoo) - sed -i -e 's: | rlgen-cd::' Rakefile || die - - # Fix specs' dependencies so that the extension is not rebuilt - # when running tests - sed -i -e '/:spec =>/s:^:#:' tasks/spec.rake || die - - # Disable a test that is known for freezing the testsuite, - # reported upstream. - sed -i \ - -e '/should force kill process in pid file/,/^ end/ s:^:#:' \ - spec/daemonizing_spec.rb || die - - epatch "${FILESDIR}"/${P}-tests.patch - - # nasty but too complex to fix up for now :( - use test || rm tasks/spec.rake -} - -each_ruby_compile() { - ${RUBY} -S rake compile || die "rake compile failed" -} |