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 B0B3E1382C5 for ; Sat, 10 Apr 2021 06:17:32 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C8A42E083D; Sat, 10 Apr 2021 06:17:31 +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 7476FE083D for ; Sat, 10 Apr 2021 06:17:31 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 097B9335CCF for ; Sat, 10 Apr 2021 06:17:30 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 63E7B645 for ; Sat, 10 Apr 2021 06:17:28 +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: <1618034424.e4f12242ac87529183093aa77da89487c5a1be9c.graaff@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ruby/commander/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-ruby/commander/Manifest dev-ruby/commander/commander-4.6.0.ebuild X-VCS-Directories: dev-ruby/commander/ X-VCS-Committer: graaff X-VCS-Committer-Name: Hans de Graaff X-VCS-Revision: e4f12242ac87529183093aa77da89487c5a1be9c X-VCS-Branch: master Date: Sat, 10 Apr 2021 06:17:28 +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: d8e7ab11-8cf4-41f8-9599-d950c49f3f35 X-Archives-Hash: ab04c14554c26210f9609aa1d734d24b commit: e4f12242ac87529183093aa77da89487c5a1be9c Author: Hans de Graaff gentoo org> AuthorDate: Sat Apr 10 06:00:24 2021 +0000 Commit: Hans de Graaff gentoo org> CommitDate: Sat Apr 10 06:00:24 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e4f12242 dev-ruby/commander: add 4.6.0 Package-Manager: Portage-3.0.17, Repoman-3.0.2 Signed-off-by: Hans de Graaff gentoo.org> dev-ruby/commander/Manifest | 1 + dev-ruby/commander/commander-4.6.0.ebuild | 24 ++++++++++++++++++++++++ 2 files changed, 25 insertions(+) diff --git a/dev-ruby/commander/Manifest b/dev-ruby/commander/Manifest index 0e03074d94e..23d645370cb 100644 --- a/dev-ruby/commander/Manifest +++ b/dev-ruby/commander/Manifest @@ -1 +1,2 @@ DIST commander-4.5.2.gem 37888 BLAKE2B e78e009a414e432d24a820dea6e85c9240e3a661eb15a17d71c152616dfd32fb02eea1e513a487ae90b8dc81e6ebc208d0bf432c37dc5a116c03c9df12ed057f SHA512 22ea0a5c88d4ec03658ca8e0fe12801a5a5918bc09031400e1cde2883bf061b85feb6d77448b256bc21f5ddee00e4afb2c08b99132cd7862f00c7cad13588564 +DIST commander-4.6.0.gem 38400 BLAKE2B c4adf5b58fe679378012a893526cb00ee71c4cda5686d397ee93aeb11dcf1b32a4aa8c4e6b77c2ed07af75bf2492da65591cf49b2e05a658e753e78a9a12736a SHA512 01e7d4076b6ff632f6852e15bf995033034a71d6320c5b3b41751e86894f5eca35b408311e757c555334d220a9a811a0d60c0fc993414961f1050d948cb9f5c7 diff --git a/dev-ruby/commander/commander-4.6.0.ebuild b/dev-ruby/commander/commander-4.6.0.ebuild new file mode 100644 index 00000000000..542600a4b74 --- /dev/null +++ b/dev-ruby/commander/commander-4.6.0.ebuild @@ -0,0 +1,24 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 +USE_RUBY="ruby25 ruby26 ruby27" + +RUBY_FAKEGEM_EXTRADOC="History.rdoc README.md" +RUBY_FAKEGEM_RECIPE_TEST="rspec3" + +inherit ruby-fakegem + +DESCRIPTION="The complete solution for Ruby command-line executables" +HOMEPAGE="https://visionmedia.github.com/commander/" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64" +IUSE="" + +ruby_add_rdepend "dev-ruby/highline:2" + +all_ruby_prepare() { + sed -i -e "/simplecov/,/end/ s:^:#:" spec/spec_helper.rb || die +}