diff options
author | Hans de Graaff <graaff@gentoo.org> | 2023-08-22 07:06:55 +0200 |
---|---|---|
committer | Hans de Graaff <graaff@gentoo.org> | 2023-08-22 07:07:22 +0200 |
commit | 1dfa0f0d9e3bbc926aecd637412e6dd6280b4b62 (patch) | |
tree | f90dbd9b2995814a3ebbd5bf132bee7a1076f256 /dev-ruby/timecop/timecop-0.9.8.ebuild | |
parent | dev-ruby/mime-types: add 3.5.1 (diff) | |
download | gentoo-1dfa0f0d9e3bbc926aecd637412e6dd6280b4b62.tar.gz gentoo-1dfa0f0d9e3bbc926aecd637412e6dd6280b4b62.tar.bz2 gentoo-1dfa0f0d9e3bbc926aecd637412e6dd6280b4b62.zip |
dev-ruby/timecop: add 0.9.8
Signed-off-by: Hans de Graaff <graaff@gentoo.org>
Diffstat (limited to 'dev-ruby/timecop/timecop-0.9.8.ebuild')
-rw-r--r-- | dev-ruby/timecop/timecop-0.9.8.ebuild | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/dev-ruby/timecop/timecop-0.9.8.ebuild b/dev-ruby/timecop/timecop-0.9.8.ebuild new file mode 100644 index 000000000000..2f2dec1093c5 --- /dev/null +++ b/dev-ruby/timecop/timecop-0.9.8.ebuild @@ -0,0 +1,40 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +USE_RUBY="ruby31 ruby32" + +RUBY_FAKEGEM_BINWRAP="" +RUBY_FAKEGEM_TASK_TEST="test" + +RUBY_FAKEGEM_TASK_DOC="rdoc" +RUBY_FAKEGEM_DOCDIR="rdoc" +RUBY_FAKEGEM_EXTRADOC="README.markdown" +RUBY_FAKEGEM_GEMSPEC="timecop.gemspec" + +inherit ruby-fakegem + +DESCRIPTION="A gem providing 'time travel' and 'time freezing' capabilities" +HOMEPAGE="https://github.com/travisjeffery/timecop" +SRC_URI="https://github.com/travisjeffery/timecop/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86" +IUSE="" + +ruby_add_bdepend "test? ( dev-ruby/activesupport dev-ruby/mocha )" + +all_ruby_prepare() { + sed -e '/bundler/ s:^:#:' -e '/History.rdoc/d' \ + -i Rakefile test/test_helper.rb test/timecop_with_active_support_test.rb || die + sed -i -e '/rubygems/ a\gem "test-unit"' \ + -e '/minitest\/rg/ s:^:#:' -e '/pry/ s:^:#:' test/test_helper.rb || die +} + +each_ruby_test() { + for f in test/*_test.rb ; do + ${RUBY} -Ilib $f || die + done +} |