Gentoo Archives: gentoo-commits

From: Hans de Graaff <graaff@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ruby/term-ansicolor/
Date: Sat, 19 Jan 2019 08:07:56
Message-Id: 1547885245.0790fa6e2281ee56c9dc1ea6d90174ed01089aa4.graaff@gentoo
1 commit: 0790fa6e2281ee56c9dc1ea6d90174ed01089aa4
2 Author: Hans de Graaff <graaff <AT> gentoo <DOT> org>
3 AuthorDate: Sat Jan 19 08:07:25 2019 +0000
4 Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org>
5 CommitDate: Sat Jan 19 08:07:25 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0790fa6e
7
8 dev-ruby/term-ansicolor: add 1.7.1
9
10 Signed-off-by: Hans de Graaff <graaff <AT> gentoo.org>
11 Package-Manager: Portage-2.3.51, Repoman-2.3.11
12
13 dev-ruby/term-ansicolor/Manifest | 1 +
14 .../term-ansicolor/term-ansicolor-1.7.1.ebuild | 34 ++++++++++++++++++++++
15 2 files changed, 35 insertions(+)
16
17 diff --git a/dev-ruby/term-ansicolor/Manifest b/dev-ruby/term-ansicolor/Manifest
18 index d8bb21e23ac..f5b8dfcba7e 100644
19 --- a/dev-ruby/term-ansicolor/Manifest
20 +++ b/dev-ruby/term-ansicolor/Manifest
21 @@ -1,2 +1,3 @@
22 DIST term-ansicolor-1.6.0.gem 43008 BLAKE2B fdfb01a22256e1203947006745c9f632592fa1402188c5f4394f1cc8fef7475ff7e68cc80f5a026b9329de82cb578c7d82457adbd2c9905d0c264bf80c4e0c24 SHA512 574999d67f3fe167aefe9b11c04dc34cb4263c4eb105e147933def3a90b5bd7acccd7033a72a66f54fc33dde50f862037dbd8c53951243a7bd8787bdfd237139
23 DIST term-ansicolor-1.7.0.gem 44544 BLAKE2B 33ecb92a7d48599bb899e82e0db02049c359ca8075e20efb79d0b1de28f2223d11e18724362e8b3755c6aade194df3e6ba4cdaa718cdb66b74afc9072fc3e77f SHA512 98fdb170822171fa4bf1eae5ee2537b76102c707be39882a7aeb7895989a724d1a172304b3a997021bf4d5da7b48c8186579ab3e9925ffd4f0a4bfa4a80da02c
24 +DIST term-ansicolor-1.7.1.gem 44544 BLAKE2B 2c2c2de0a18d1f9a975901f8a7005f740ac81a609c43705d8c184deb26dc9010876deeca411488c787132a3d8b78339c75b0776f3c9bba1ff71efa23ce3671a6 SHA512 d49f8825c31accfaa58a2f34ed5fbdaf503d4b47c23f07c52cc82bbf6cce457bd9371e197da1ec36dc83e32b95e9ea9a349922d9759a827923456ea46f81ff50
25
26 diff --git a/dev-ruby/term-ansicolor/term-ansicolor-1.7.1.ebuild b/dev-ruby/term-ansicolor/term-ansicolor-1.7.1.ebuild
27 new file mode 100644
28 index 00000000000..0b79085ae38
29 --- /dev/null
30 +++ b/dev-ruby/term-ansicolor/term-ansicolor-1.7.1.ebuild
31 @@ -0,0 +1,34 @@
32 +# Copyright 1999-2019 Gentoo Authors
33 +# Distributed under the terms of the GNU General Public License v2
34 +
35 +EAPI=6
36 +USE_RUBY="ruby23 ruby24 ruby25 ruby26"
37 +
38 +RUBY_FAKEGEM_RECIPE_DOC="rdoc"
39 +RUBY_FAKEGEM_RECIPE_TEST="none"
40 +RUBY_FAKEGEM_EXTRADOC="CHANGES README.md"
41 +
42 +RUBY_FAKEGEM_GEMSPEC="term-ansicolor.gemspec"
43 +
44 +inherit ruby-fakegem
45 +
46 +DESCRIPTION="Small Ruby library that colors strings using ANSI escape sequences"
47 +HOMEPAGE="https://flori.github.io/term-ansicolor/"
48 +LICENSE="GPL-2"
49 +
50 +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
51 +SLOT="0"
52 +IUSE=""
53 +
54 +ruby_add_rdepend ">=dev-ruby/tins-1.0"
55 +
56 +each_ruby_test() {
57 + ${RUBY} -Ilib -S testrb-2 tests/*_test.rb || die
58 +}
59 +
60 +all_ruby_install() {
61 + all_fakegem_install
62 +
63 + docinto examples
64 + dodoc examples/*
65 +}