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/tty-command/
Date: Sun, 29 Sep 2019 09:07:11
Message-Id: 1569748012.13254656dd64d35d8f9f2f28ae9c9606edad898b.graaff@gentoo
1 commit: 13254656dd64d35d8f9f2f28ae9c9606edad898b
2 Author: Hans de Graaff <graaff <AT> gentoo <DOT> org>
3 AuthorDate: Sun Sep 29 06:05:08 2019 +0000
4 Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org>
5 CommitDate: Sun Sep 29 09:06:52 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=13254656
7
8 dev-ruby/tty-command: add 0.9.0
9
10 Package-Manager: Portage-2.3.69, Repoman-2.3.16
11 Signed-off-by: Hans de Graaff <graaff <AT> gentoo.org>
12
13 dev-ruby/tty-command/Manifest | 1 +
14 dev-ruby/tty-command/tty-command-0.9.0.ebuild | 30 +++++++++++++++++++++++++++
15 2 files changed, 31 insertions(+)
16
17 diff --git a/dev-ruby/tty-command/Manifest b/dev-ruby/tty-command/Manifest
18 index b8f21fb3119..32f255fc64c 100644
19 --- a/dev-ruby/tty-command/Manifest
20 +++ b/dev-ruby/tty-command/Manifest
21 @@ -1 +1,2 @@
22 DIST tty-command-0.8.2.tar.gz 30126 BLAKE2B 858b9c60380859bd984295e00638ba93416c62acbe4e5c1d0e33b411862d729c129f00dda236f4ca9943962859a35c9fe1fa2431327fb2e3170366412f8d83e3 SHA512 151af5fe0cf241b4e8004560d04fe967d8fe1d24cf311d64c4fab46d1c11b1fe27849f3925f13d3a73b7b86a55aabacd3e4bbffa9a96c34669c93b29756fe88e
23 +DIST tty-command-0.9.0.tar.gz 30463 BLAKE2B fc0436a80b4b73040a89f085315f50e464efd91d6ee222f7b94eec5b94700089ae22963580febf8296377c859c67f1f21772ecd24d325af76308183df6070e2a SHA512 12c5c238ea34b7236b1c1b3115a7f490ae3986de686359ed390428f766aabdb35de7a1b29363b5be4e09e0fb6888b0c8a30eb466153f64b1d8a77620a657ffac
24
25 diff --git a/dev-ruby/tty-command/tty-command-0.9.0.ebuild b/dev-ruby/tty-command/tty-command-0.9.0.ebuild
26 new file mode 100644
27 index 00000000000..d5da980e918
28 --- /dev/null
29 +++ b/dev-ruby/tty-command/tty-command-0.9.0.ebuild
30 @@ -0,0 +1,30 @@
31 +# Copyright 1999-2019 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=7
35 +USE_RUBY="ruby24 ruby25 ruby26"
36 +
37 +RUBY_FAKEGEM_RECIPE_TEST="rspec3"
38 +
39 +RUBY_FAKEGEM_EXTRADOC="README.md"
40 +
41 +RUBY_FAKEGEM_BINWRAP=""
42 +
43 +RUBY_FAKEGEM_GEMSPEC="${PN}.gemspec"
44 +
45 +inherit ruby-fakegem
46 +
47 +DESCRIPTION="Terminal color capabilities detection"
48 +HOMEPAGE="https://github.com/piotrmurach/tty-command"
49 +SRC_URI="https://github.com/piotrmurach/tty-command/archive/v${PV}.tar.gz -> ${P}.tar.gz"
50 +
51 +LICENSE="MIT"
52 +SLOT="0"
53 +KEYWORDS="~amd64"
54 +IUSE=""
55 +
56 +ruby_add_rdepend "=dev-ruby/pastel-0.7*"
57 +
58 +all_ruby_prepare() {
59 + echo '-rspec_helper' > .rspec || die
60 +}