forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Package-Manager: portage-2.2.28
- Loading branch information
Showing
2 changed files
with
36 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
DIST term-ansicolor-1.2.2.gem 889856 SHA256 b9534713ba4c2a48f2291fadf9ce2edae9f2dc96157ee812fe8fe16a70c081ac SHA512 c1ad873f47d2d0d0677d9c9229531cc341ab1650acf5b9a7704a4739796c9b7dfa6357ce60708b3e0efeb342837d9f23acc178005c4eae6b077a27f20a69eb15 WHIRLPOOL 5842abfa00a8a79f11fe6ebcee154fb2730c75786e45414ca382db946ce3d65652d6c5c8164988231f982100fc02e22612206eeb7cfe1e3e2985343316e12e0c | ||
DIST term-ansicolor-1.3.0.gem 890368 SHA256 8b5caf6839a0c1bbf7a55a9d2fbd3c172f623fa05c427f9b3ea5d75bdfe14fa8 SHA512 ee039f4b5ecf8646b5c12c8d50f01c85b0dff0ab61f37199213407e29c4b4026cf44e5b12043a74a26a597a0a2572a282adcea21f5b8d2c5bb822fca4dfbdc1e WHIRLPOOL 1cdd9cfe7726415a890dc179f3c14b26fd61ccc81621a17c57e62821cc71daf783cdc93bf40a33da9705eb80615ec7dfbe67c30d61d6bcd492b9b83478f632c5 | ||
DIST term-ansicolor-1.3.2.gem 890368 SHA256 da7ba80ae2dad077736a48dac18ae9d859990e9ed6b952a276e79659a55fab79 SHA512 97617f3477f08e5ebbe70b5e8531031346d3639343c6a73fd802eb45777fbbba22649980f8968e2bba0394e470d5bb03bcd5b9374c36200c29a256016ed4cd29 WHIRLPOOL b8b1b6cb3d8f7d65665d3416da846412f3d2f2b609b52f2744492635b300f9c341d2f5528870ff70a3ec6401edb165741cca5916d417e15d8e1f407480f3ce46 | ||
DIST term-ansicolor-1.4.0.gem 890880 SHA256 6a510f88287c68e6d439695cbd2416399c9189c7e6c501b55cfb98d34d0627bc SHA512 7f2c18d5879a35cc69e5f0064e98d6783e50d08bc51c3b5c97242a886847cd09c37acaca77428a1930673bdd448f26aefa5e0152afbc6b2dbb6e0a67e29a2de5 WHIRLPOOL 3a6086eb45b152a97967cb1f3929371d7548a46b8934142e1dc338ff5ae1336e49357f18bed9475edf7e78e61b185dfda44712e0eb125ea5ccfb997628fdb899 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
# Copyright 1999-2016 Gentoo Foundation | ||
# Distributed under the terms of the GNU General Public License v2 | ||
# $Id$ | ||
|
||
EAPI=5 | ||
USE_RUBY="ruby20 ruby21 ruby22 ruby23" | ||
|
||
RUBY_FAKEGEM_RECIPE_DOC="rdoc" | ||
RUBY_FAKEGEM_RECIPE_TEST="none" | ||
RUBY_FAKEGEM_EXTRADOC="CHANGES README.rdoc" | ||
|
||
RUBY_FAKEGEM_GEMSPEC="term-ansicolor.gemspec" | ||
|
||
inherit ruby-fakegem | ||
|
||
DESCRIPTION="Small Ruby library that colors strings using ANSI escape sequences" | ||
HOMEPAGE="https://flori.github.io/term-ansicolor/" | ||
LICENSE="GPL-2" | ||
|
||
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" | ||
SLOT="0" | ||
IUSE="" | ||
|
||
ruby_add_rdepend ">=dev-ruby/tins-1.0" | ||
|
||
each_ruby_test() { | ||
${RUBY} -Ilib -S testrb tests/*_test.rb || die | ||
} | ||
|
||
all_ruby_install() { | ||
all_fakegem_install | ||
|
||
docinto examples | ||
dodoc examples/* | ||
} |