commit: 41e93b8832105e8962f295a109cbaf0b75b572f9 Author: Hans de Graaff <graaff <AT> gentoo <DOT> org> AuthorDate: Mon Jan 1 08:15:10 2024 +0000 Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org> CommitDate: Mon Jan 1 09:32:09 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=41e93b88
dev-ruby/pastel: update EAPI 7 -> 8 Signed-off-by: Hans de Graaff <graaff <AT> gentoo.org> dev-ruby/pastel/pastel-0.8.0-r1.ebuild | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) diff --git a/dev-ruby/pastel/pastel-0.8.0-r1.ebuild b/dev-ruby/pastel/pastel-0.8.0-r1.ebuild new file mode 100644 index 000000000000..372c20ae05ff --- /dev/null +++ b/dev-ruby/pastel/pastel-0.8.0-r1.ebuild @@ -0,0 +1,31 @@ +# Copyright 1999-2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 +USE_RUBY="ruby31 ruby32 ruby33" + +RUBY_FAKEGEM_RECIPE_TEST="rspec3" + +RUBY_FAKEGEM_EXTRADOC="README.md" + +RUBY_FAKEGEM_GEMSPEC="pastel.gemspec" + +inherit ruby-fakegem + +DESCRIPTION="Terminal strings styling with intuitive and clean API" +HOMEPAGE="https://github.com/piotrmurach/pastel" +SRC_URI="https://github.com/piotrmurach/pastel/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~ppc ~ppc64 ~riscv ~sparc ~x86" +IUSE="" + +ruby_add_rdepend " + >=dev-ruby/tty-color-0.5:0 +" + +all_ruby_prepare() { + echo '-rspec_helper' > .rspec || die + sed -i -e 's:_relative ": "./:' ${RUBY_FAKEGEM_GEMSPEC} || die +}
