dev-ruby/term-ansicolor: add 1.11.3

Signed-off-by: Hans de Graaff <graaff@gentoo.org>
This commit is contained in:
Hans de Graaff
2025-09-13 11:24:10 +02:00
parent 5d5398b7c7
commit bc270995ce
2 changed files with 39 additions and 0 deletions

View File

@@ -1 +1,2 @@
DIST term-ansicolor-1.11.2.gem 47616 BLAKE2B 4481e347c23af4e03061bd92df387ad996e99e86c63ab9377c713ae3f70f12a53c3aa8a411fdcf003fabaedf3e9b39275910627ebaff19b963f49b2879c7b895 SHA512 df7384dbfd68e1efe161f2edc186306a40d8492b488bfc9436cadef09d7b961bc29983a40fca93e2e127c1b502272eb01aa65cc65ba7729a81b31b37aaafcd65
DIST term-ansicolor-1.11.3.gem 49152 BLAKE2B 992b3fdbbaa1359809f85a0abf9349b61be220ee82ce3c8a60efb6ad9f01968d7db4d1b80dedd11aafb7405e9a440aef7e0c5536ec4837354800bf8e03533e82 SHA512 610c7f3afd278e5c75903a5c71710b41ab02fa586911e3c8a06e22194c0dc1e0edf6b0fe26839bce562ccece1a260dc413f564db9867df9e8f3882f254a4f5c7

View File

@@ -0,0 +1,38 @@
# Copyright 1999-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
USE_RUBY="ruby32 ruby33 ruby34"
RUBY_FAKEGEM_RECIPE_TEST="none"
RUBY_FAKEGEM_EXTRADOC="CHANGES.md README.md"
RUBY_FAKEGEM_GEMSPEC="term-ansicolor.gemspec"
inherit ruby-fakegem
DESCRIPTION="Small Ruby library that colors strings using ANSI escape sequences"
HOMEPAGE="https://github.com/flori/term-ansicolor"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x64-solaris"
ruby_add_rdepend ">=dev-ruby/tins-1.0"
all_ruby_prepare() {
sed -e '/simplecov/I s:^:#:' \
-i tests/test_helper.rb || die
}
each_ruby_test() {
${RUBY} -Ilib:.:tests -e 'Dir["tests/*_test.rb"].each{|f| require f}' || die
}
all_ruby_install() {
all_fakegem_install
docinto examples
dodoc examples/*
}