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 517FE138335 for ; Sun, 16 Jun 2019 06:38:44 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 0A1CAE088A; Sun, 16 Jun 2019 06:38:43 +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 DD3B5E088C for ; Sun, 16 Jun 2019 06:38:42 +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 6DB0334620D for ; Sun, 16 Jun 2019 06:38:41 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id CB73E61C for ; Sun, 16 Jun 2019 06:38:38 +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: <1560667074.61d90c18ff3d9cb6c202841cac10473da8b1f9e7.graaff@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ruby/tty-cursor/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-ruby/tty-cursor/Manifest dev-ruby/tty-cursor/metadata.xml dev-ruby/tty-cursor/tty-cursor-0.7.0.ebuild X-VCS-Directories: dev-ruby/tty-cursor/ X-VCS-Committer: graaff X-VCS-Committer-Name: Hans de Graaff X-VCS-Revision: 61d90c18ff3d9cb6c202841cac10473da8b1f9e7 X-VCS-Branch: master Date: Sun, 16 Jun 2019 06:38:38 +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: f40d7fc4-ee2d-463e-a1fd-6e63f6964912 X-Archives-Hash: 27e9a5ac7fc6ba9b2b99bfcb8f0818f0 commit: 61d90c18ff3d9cb6c202841cac10473da8b1f9e7 Author: Hans de Graaff gentoo org> AuthorDate: Sun Jun 16 05:10:04 2019 +0000 Commit: Hans de Graaff gentoo org> CommitDate: Sun Jun 16 06:37:54 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=61d90c18 dev-ruby/tty-cursor: initial import of 0.7.0 Dependency for forthcoming dev-ruby/tty-reader Signed-off-by: Hans de Graaff gentoo.org> Package-Manager: Portage-2.3.66, Repoman-2.3.11 dev-ruby/tty-cursor/Manifest | 1 + dev-ruby/tty-cursor/metadata.xml | 11 +++++++++++ dev-ruby/tty-cursor/tty-cursor-0.7.0.ebuild | 24 ++++++++++++++++++++++++ 3 files changed, 36 insertions(+) diff --git a/dev-ruby/tty-cursor/Manifest b/dev-ruby/tty-cursor/Manifest new file mode 100644 index 00000000000..301fca50f93 --- /dev/null +++ b/dev-ruby/tty-cursor/Manifest @@ -0,0 +1 @@ +DIST tty-cursor-0.7.0.gem 11776 BLAKE2B 5dea8f2bde63f803639b4300bf3a8b22a89de7a20530ede38f75bdae7fbb522fe70adb0c78e20cc45e8001dba9fb378722f9fce6d26a68c0af00b7bc98a62a96 SHA512 00de195ba183174ebd10da7f1fdbb436a17fe9befc6eacb2d4cf4b1505be2c7d0719c0dc32d75a82900b2252ffbed00219ce31836c442b63c267e26dad40da63 diff --git a/dev-ruby/tty-cursor/metadata.xml b/dev-ruby/tty-cursor/metadata.xml new file mode 100644 index 00000000000..87a04500289 --- /dev/null +++ b/dev-ruby/tty-cursor/metadata.xml @@ -0,0 +1,11 @@ + + + + + ruby@gentoo.org + Gentoo Ruby Project + + + piotrmurach/tty-cursor + + diff --git a/dev-ruby/tty-cursor/tty-cursor-0.7.0.ebuild b/dev-ruby/tty-cursor/tty-cursor-0.7.0.ebuild new file mode 100644 index 00000000000..560f169fc10 --- /dev/null +++ b/dev-ruby/tty-cursor/tty-cursor-0.7.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="Move the terminal cursor around and manipulate text using intuitive method calls" +HOMEPAGE="https://github.com/piotrmurach/tty-cursor" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64" +IUSE="" + +all_ruby_prepare() { + echo '-rspec_helper' > .rspec || die +}