commit: 551eb2c797010c30f15f2a6ae7df52b21bf76b59 Author: Hans de Graaff <graaff <AT> gentoo <DOT> org> AuthorDate: Sun Jan 10 07:50:40 2021 +0000 Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org> CommitDate: Sun Jan 10 07:51:21 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=551eb2c7
dev-ruby/paramesan: add 1.0.1 Package-Manager: Portage-3.0.12, Repoman-3.0.2 Signed-off-by: Hans de Graaff <graaff <AT> gentoo.org> dev-ruby/paramesan/Manifest | 1 + dev-ruby/paramesan/paramesan-1.0.1.ebuild | 28 ++++++++++++++++++++++++++++ 2 files changed, 29 insertions(+) diff --git a/dev-ruby/paramesan/Manifest b/dev-ruby/paramesan/Manifest index 00177c3f5ff..f8cf0d87bf5 100644 --- a/dev-ruby/paramesan/Manifest +++ b/dev-ruby/paramesan/Manifest @@ -1 +1,2 @@ DIST paramesan-0.1.1.tgz 4064 BLAKE2B f6c0e8b0df885e9dda4d5c2a3f0226703a94237707b877a7b82d5b8b0fdc812fcf289019a1ed550640a7f99a59a0b0389407857bc0e21987c7dd734734d32c0d SHA512 927595ed9686fb8833beaabf4421cb2c4908bf6e2e1c656034a79c839c292b503ca0ae211f8bdd3916501a281eb2f0b374fc5f4c90615629170e1ba767f0e7fc +DIST paramesan-1.0.1.tgz 4981 BLAKE2B 3447281084a1d79d46f2a8b80c9b6d2ee63d9ef245e07ef07799a2ab2c730a1f99075bfb5c632c409fe412e277cfe354c8e59e99ffd38c2f1d671b7db3ace34a SHA512 6353006a26e8a7d4790d8bee88e4968df6d79ebca1f0855262eee1679789dfe1404fc345f6965377d5eadf03b88b9b8e1764a84065dde312d29fc0bae323b8a0 diff --git a/dev-ruby/paramesan/paramesan-1.0.1.ebuild b/dev-ruby/paramesan/paramesan-1.0.1.ebuild new file mode 100644 index 00000000000..e375f431d29 --- /dev/null +++ b/dev-ruby/paramesan/paramesan-1.0.1.ebuild @@ -0,0 +1,28 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 +USE_RUBY="ruby25 ruby26 ruby27 ruby30" + +RUBY_FAKEGEM_EXTRADOC="README.md" + +RUBY_FAKEGEM_BINWRAP="" + +RUBY_FAKEGEM_GEMSPEC="paramesan.gemspec" + +inherit ruby-fakegem + +DESCRIPTION="Parameterized tests in Ruby" +HOMEPAGE="https://github.com/jpace/paramesan" + +SRC_URI="https://github.com/jpace/paramesan/archive/v${PV}.tar.gz -> ${P}.tgz" + +LICENSE="MIT" +SLOT="$(ver_cut 1)" +KEYWORDS="~amd64 ~hppa ~ppc ~sparc ~x86" +IUSE="" + +all_ruby_prepare() { + sed -i -e 's/git ls-files -z/find . -print0/' ${RUBY_FAKEGEM_GEMSPEC} || die + sed -i -e '/bundler/ s:^:#:' Rakefile || die +}