diff options
author | Manuel Rüger <mrueg@gentoo.org> | 2013-11-17 21:15:49 +0000 |
---|---|---|
committer | Manuel Rüger <mrueg@gentoo.org> | 2013-11-17 21:15:49 +0000 |
commit | ae33627768f2932c916c98e76e25fd52abcadd7f (patch) | |
tree | c7b8e5099533b353592e7417807570f6ae3442b8 /dev-ruby/fakefs | |
parent | Add ruby20 target. (diff) | |
download | gentoo-2-ae33627768f2932c916c98e76e25fd52abcadd7f.tar.gz gentoo-2-ae33627768f2932c916c98e76e25fd52abcadd7f.tar.bz2 gentoo-2-ae33627768f2932c916c98e76e25fd52abcadd7f.zip |
Cleanup old.
(Portage version: 2.2.7/cvs/Linux x86_64, signed Manifest commit with key )
Diffstat (limited to 'dev-ruby/fakefs')
-rw-r--r-- | dev-ruby/fakefs/ChangeLog | 5 | ||||
-rw-r--r-- | dev-ruby/fakefs/fakefs-0.4.3.ebuild | 52 |
2 files changed, 4 insertions, 53 deletions
diff --git a/dev-ruby/fakefs/ChangeLog b/dev-ruby/fakefs/ChangeLog index c565346ce86b..32e91364ba51 100644 --- a/dev-ruby/fakefs/ChangeLog +++ b/dev-ruby/fakefs/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for dev-ruby/fakefs # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-ruby/fakefs/ChangeLog,v 1.41 2013/10/06 12:07:31 mrueg Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/fakefs/ChangeLog,v 1.42 2013/11/17 21:15:49 mrueg Exp $ + + 17 Nov 2013; Manuel Rüger <mrueg@gentoo.org> -fakefs-0.4.3.ebuild: + Cleanup old. *fakefs-0.4.3-r1 (06 Oct 2013) diff --git a/dev-ruby/fakefs/fakefs-0.4.3.ebuild b/dev-ruby/fakefs/fakefs-0.4.3.ebuild deleted file mode 100644 index a56aeadf452f..000000000000 --- a/dev-ruby/fakefs/fakefs-0.4.3.ebuild +++ /dev/null @@ -1,52 +0,0 @@ -# Copyright 1999-2013 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-ruby/fakefs/fakefs-0.4.3.ebuild,v 1.1 2013/09/07 11:23:34 mrueg Exp $ - -EAPI=5 - -USE_RUBY="ruby18 ruby19 jruby" - -RUBY_FAKEGEM_RECIPE_TEST="none" - -# requires sdoc -RUBY_FAKEGEM_TASK_DOC="" - -RUBY_FAKEGEM_EXTRADOC="CONTRIBUTORS README.markdown" - -inherit ruby-fakegem eutils - -DESCRIPTION="A fake filesystem. Use it in your tests." -HOMEPAGE="http://github.com/defunkt/fakefs" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris" -IUSE="" - -ruby_add_bdepend " - test? ( - dev-ruby/rspec:2 - >=dev-ruby/test-unit-2.5.1-r1 - )" - -all_ruby_prepare() { - # Remove bundler - rm Gemfile || die -} - -each_ruby_prepare() { - case ${RUBY} in - *jruby) - # Ignore failing tests: upstream is aware and doing the same - # on Travis. - rm test/fakefs_test.rb test/file/stat_test.rb || die - ;; - *) - ;; - esac -} - -each_ruby_test() { - ruby-ng_rspec - ruby-ng_testrb-2 -Ilib:test test/**/*_test.rb -} |