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 A29F9138334 for ; Sat, 15 Jun 2019 09:56:01 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C8B0FE08A5; Sat, 15 Jun 2019 09:56:00 +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 8DB0EE08A5 for ; Sat, 15 Jun 2019 09:56:00 +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 674A6346163 for ; Sat, 15 Jun 2019 09:55:59 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id DE7A9621 for ; Sat, 15 Jun 2019 09:55:54 +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: <1560592539.7a7aa2cd34a9d0a4e3a9b5558d108091248cb098.graaff@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ruby/tty-which/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-ruby/tty-which/Manifest dev-ruby/tty-which/metadata.xml dev-ruby/tty-which/tty-which-0.4.1.ebuild X-VCS-Directories: dev-ruby/tty-which/ X-VCS-Committer: graaff X-VCS-Committer-Name: Hans de Graaff X-VCS-Revision: 7a7aa2cd34a9d0a4e3a9b5558d108091248cb098 X-VCS-Branch: master Date: Sat, 15 Jun 2019 09:55:54 +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: f794eb2b-1dc0-4acb-a80e-a6a1e6ee1420 X-Archives-Hash: 6a62220968a4d8340f1f0ad1ee406de1 commit: 7a7aa2cd34a9d0a4e3a9b5558d108091248cb098 Author: Hans de Graaff gentoo org> AuthorDate: Sat Jun 15 06:17:37 2019 +0000 Commit: Hans de Graaff gentoo org> CommitDate: Sat Jun 15 09:55:39 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7a7aa2cd dev-ruby/tty-which: initial import of 0.4.1 New dependency for www-apps/nanoc Signed-off-by: Hans de Graaff gentoo.org> Package-Manager: Portage-2.3.66, Repoman-2.3.11 dev-ruby/tty-which/Manifest | 1 + dev-ruby/tty-which/metadata.xml | 11 +++++++++++ dev-ruby/tty-which/tty-which-0.4.1.ebuild | 24 ++++++++++++++++++++++++ 3 files changed, 36 insertions(+) diff --git a/dev-ruby/tty-which/Manifest b/dev-ruby/tty-which/Manifest new file mode 100644 index 00000000000..ccb058bc7a0 --- /dev/null +++ b/dev-ruby/tty-which/Manifest @@ -0,0 +1 @@ +DIST tty-which-0.4.1.gem 11264 BLAKE2B 540249aaeaa5458fef3572413cf673e04765c1ad41971ac3f9bd930a42855459db6c6f8f47c90ee1021993161db6a399ba6edd0384da7db91da999550d3e733b SHA512 e48b284abb3e4177b9f04acec5202a70d3fcaa2d477444c5a9d9920ac00eb192656bc48ca33d72c26845b415a0a90e907dab1dd35608b62bc8e4b1b1b25af51c diff --git a/dev-ruby/tty-which/metadata.xml b/dev-ruby/tty-which/metadata.xml new file mode 100644 index 00000000000..5fd42b5104c --- /dev/null +++ b/dev-ruby/tty-which/metadata.xml @@ -0,0 +1,11 @@ + + + + + ruby@gentoo.org + Gentoo Ruby Project + + + piotrmurach/tty-which + + diff --git a/dev-ruby/tty-which/tty-which-0.4.1.ebuild b/dev-ruby/tty-which/tty-which-0.4.1.ebuild new file mode 100644 index 00000000000..74bbc570195 --- /dev/null +++ b/dev-ruby/tty-which/tty-which-0.4.1.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="Platform independent implementation of Unix which command" +HOMEPAGE="https://github.com/piotrmurach/tty-which" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64" +IUSE="" + +all_ruby_prepare() { + echo '-rspec_helper' > .rspec || die +}