From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 304AE138335 for ; Fri, 14 Jun 2019 04:39:49 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 7AE7BE08BF; Fri, 14 Jun 2019 04:39:47 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 5ACC3E08BF for ; Fri, 14 Jun 2019 04:39:47 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 49F7D34608F for ; Fri, 14 Jun 2019 04:39:46 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 3603561F for ; Fri, 14 Jun 2019 04:39:42 +0000 (UTC) From: "Hans de Graaff" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Hans de Graaff" Message-ID: <1560487024.8520ee33101bd78dcf8a841fa17b2d85bcbd0d1c.graaff@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ruby/tty-color/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-ruby/tty-color/Manifest dev-ruby/tty-color/metadata.xml dev-ruby/tty-color/tty-color-0.5.0.ebuild X-VCS-Directories: dev-ruby/tty-color/ X-VCS-Committer: graaff X-VCS-Committer-Name: Hans de Graaff X-VCS-Revision: 8520ee33101bd78dcf8a841fa17b2d85bcbd0d1c X-VCS-Branch: master Date: Fri, 14 Jun 2019 04:39:42 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 8a325da6-c501-4375-ab17-114739de862b X-Archives-Hash: ad3f86e24a6b90e66568e696045f4748 commit: 8520ee33101bd78dcf8a841fa17b2d85bcbd0d1c Author: Hans de Graaff gentoo org> AuthorDate: Fri Jun 14 04:37:04 2019 +0000 Commit: Hans de Graaff gentoo org> CommitDate: Fri Jun 14 04:37:04 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8520ee33 dev-ruby/tty-color: initial import of 0.5.0 Dependency for forthcoming dev-ruby/pastel Signed-off-by: Hans de Graaff gentoo.org> Package-Manager: Portage-2.3.66, Repoman-2.3.11 dev-ruby/tty-color/Manifest | 1 + dev-ruby/tty-color/metadata.xml | 11 +++++++++++ dev-ruby/tty-color/tty-color-0.5.0.ebuild | 24 ++++++++++++++++++++++++ 3 files changed, 36 insertions(+) diff --git a/dev-ruby/tty-color/Manifest b/dev-ruby/tty-color/Manifest new file mode 100644 index 00000000000..ddd86e66b43 --- /dev/null +++ b/dev-ruby/tty-color/Manifest @@ -0,0 +1 @@ +DIST tty-color-0.5.0.gem 11776 BLAKE2B fc22689783c86b5d18bd3134b198b2bdf50563bc14a25b8a02611ac6a46f494c86b17ff1307089a87ad92442d99da3d408b4907b83f3c67f495a66ceaaddc2ee SHA512 998da9196055b011edf8b20595e548447d7a3cda3555a61c2645dac618dcebf8fcd3b257ae8948f93fd7720956f6dc2b554fb5521a8847017c4a2ab2e2b74e73 diff --git a/dev-ruby/tty-color/metadata.xml b/dev-ruby/tty-color/metadata.xml new file mode 100644 index 00000000000..bb1d1133ed4 --- /dev/null +++ b/dev-ruby/tty-color/metadata.xml @@ -0,0 +1,11 @@ + + + + + ruby@gentoo.org + Gentoo Ruby Project + + + piotrmurach/tty-color + + diff --git a/dev-ruby/tty-color/tty-color-0.5.0.ebuild b/dev-ruby/tty-color/tty-color-0.5.0.ebuild new file mode 100644 index 00000000000..af90325690f --- /dev/null +++ b/dev-ruby/tty-color/tty-color-0.5.0.ebuild @@ -0,0 +1,24 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 +USE_RUBY="ruby24 ruby25 ruby26" + +RUBY_FAKEGEM_RECIPE_DOC="rdoc" +RUBY_FAKEGEM_RECIPE_TEST="rspec3" + +RUBY_FAKEGEM_EXTRADOC="README.md" + +inherit ruby-fakegem + +DESCRIPTION="Terminal color capabilities detection" +HOMEPAGE="https://github.com/piotrmurach/tty-color" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64" +IUSE="" + +all_ruby_prepare() { + echo '-rspec_helper' > .rspec || die +}