diff options
author | Hans de Graaff <graaff@gentoo.org> | 2012-01-25 07:21:51 +0000 |
---|---|---|
committer | Hans de Graaff <graaff@gentoo.org> | 2012-01-25 07:21:51 +0000 |
commit | 40d2ccaa3760232c782acc31b31347c8282f029a (patch) | |
tree | 6c90971c8180b57d6373aca56da755107fd198fd /dev-ruby/webrobots | |
parent | Fix for bug #400595 / CVE-2012-0029. (diff) | |
download | gentoo-2-40d2ccaa3760232c782acc31b31347c8282f029a.tar.gz gentoo-2-40d2ccaa3760232c782acc31b31347c8282f029a.tar.bz2 gentoo-2-40d2ccaa3760232c782acc31b31347c8282f029a.zip |
Version bump.
(Portage version: 2.1.10.41/cvs/Linux x86_64)
Diffstat (limited to 'dev-ruby/webrobots')
-rw-r--r-- | dev-ruby/webrobots/ChangeLog | 9 | ||||
-rw-r--r-- | dev-ruby/webrobots/webrobots-0.0.13.ebuild | 30 |
2 files changed, 37 insertions, 2 deletions
diff --git a/dev-ruby/webrobots/ChangeLog b/dev-ruby/webrobots/ChangeLog index 880bc8a48118..95770286a179 100644 --- a/dev-ruby/webrobots/ChangeLog +++ b/dev-ruby/webrobots/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-ruby/webrobots -# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-ruby/webrobots/ChangeLog,v 1.4 2011/10/31 06:58:58 graaff Exp $ +# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/webrobots/ChangeLog,v 1.5 2012/01/25 07:21:51 graaff Exp $ + +*webrobots-0.0.13 (25 Jan 2012) + + 25 Jan 2012; Hans de Graaff <graaff@gentoo.org> +webrobots-0.0.13.ebuild: + Version bump. *webrobots-0.0.12 (31 Oct 2011) diff --git a/dev-ruby/webrobots/webrobots-0.0.13.ebuild b/dev-ruby/webrobots/webrobots-0.0.13.ebuild new file mode 100644 index 000000000000..8dfa4d607774 --- /dev/null +++ b/dev-ruby/webrobots/webrobots-0.0.13.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/webrobots/webrobots-0.0.13.ebuild,v 1.1 2012/01/25 07:21:51 graaff Exp $ + +EAPI=4 +USE_RUBY="ruby18 ree18 ruby19" + +RUBY_FAKEGEM_DOCDIR="rdoc" +RUBY_FAKEGEM_EXTRADOC="README.rdoc" + +inherit ruby-fakegem + +DESCRIPTION="A library to help write robots.txt compliant web robots." +HOMEPAGE="http://rubygems.org/gems/webrobots" + +LICENSE="BSD-2" +SLOT="0" +KEYWORDS="~amd64" +IUSE="" + +ruby_add_rdepend ">=dev-ruby/nokogiri-1.4.4" + +ruby_add_bdepend "test? ( dev-ruby/shoulda )" + +all_ruby_prepare() { + rm Gemfile || die + sed -i -e '/bundler/,/end/d' Rakefile test/helper.rb || die + sed -i -e '/rcovtask/,/end/d' \ + -e '/jeweler/,/RubygemsDotOrgTasks/d' Rakefile || die +} |