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 099D81395E2 for ; Sat, 3 Dec 2016 06:16:03 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 00688E095B; Sat, 3 Dec 2016 06:16:01 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id D0D88E0925 for ; Sat, 3 Dec 2016 06:16: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-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id B0AD53411FB for ; Sat, 3 Dec 2016 06:15:59 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 10AF624A2 for ; Sat, 3 Dec 2016 06:15:57 +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: <1480745478.0a8f88c5b5eb8783c36bbe3268f603ad0aae9924.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.4.1.ebuild X-VCS-Directories: dev-ruby/commander/ X-VCS-Committer: graaff X-VCS-Committer-Name: Hans de Graaff X-VCS-Revision: 0a8f88c5b5eb8783c36bbe3268f603ad0aae9924 X-VCS-Branch: master Date: Sat, 3 Dec 2016 06:15:57 +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-Archives-Salt: 13dd199f-9d4c-4dac-b2c1-bd29c47dac6e X-Archives-Hash: a553315f24231f72f8c4ffb3413be8a5 commit: 0a8f88c5b5eb8783c36bbe3268f603ad0aae9924 Author: Hans de Graaff gentoo org> AuthorDate: Sat Dec 3 06:11:18 2016 +0000 Commit: Hans de Graaff gentoo org> CommitDate: Sat Dec 3 06:11:18 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0a8f88c5 dev-ruby/commander: add 4.4.1 Package-Manager: portage-2.3.0 dev-ruby/commander/Manifest | 1 + dev-ruby/commander/commander-4.4.1.ebuild | 26 ++++++++++++++++++++++++++ 2 files changed, 27 insertions(+) diff --git a/dev-ruby/commander/Manifest b/dev-ruby/commander/Manifest index d1d6874..dd0210f 100644 --- a/dev-ruby/commander/Manifest +++ b/dev-ruby/commander/Manifest @@ -1 +1,2 @@ DIST commander-4.4.0.gem 35840 SHA256 358ae12110faed47683633bdf0e71d6782a0f3eccdbaea4e76b375d260490a56 SHA512 e417c68c83041a088ec8d7e5202ac733b2a80699d1e15ca1612a904327833dce9ad788a9523ebe2c83f4e509001e93283745378ab5ca5aee15072690ca51d530 WHIRLPOOL 95f05cae077bbbd6091658ede341894d53e9a4c8dca52b0039daad443507ff999727e042000e349b7098c9012daa4f1d715ea6cb6f359b54b67c655ff8779a8d +DIST commander-4.4.1.gem 35840 SHA256 306be67f96793359bca344e470d759e138d8a86db01ba82f1b18ed73e5a2cd70 SHA512 e5a3dcebc1fd28ae1ba5a61c99de3cfd5039e1562f8266a5ad96387a87009ea3ecfc17f0bb536caac95d262ec20fcbddc97203ba3176b55ed5d3c10cea280f19 WHIRLPOOL cfa3230cb248025e2d8921b0520a6d673b3affde5a2c870bbb12f6bd7d208699c4be558141e40834f5e02a35bb59425854f4f2e3a468428fa3835404ab9ee307 diff --git a/dev-ruby/commander/commander-4.4.1.ebuild b/dev-ruby/commander/commander-4.4.1.ebuild new file mode 100644 index 00000000..d052dbc --- /dev/null +++ b/dev-ruby/commander/commander-4.4.1.ebuild @@ -0,0 +1,26 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 +USE_RUBY="ruby20 ruby21 ruby22" + +RUBY_FAKEGEM_EXTRADOC="History.rdoc README.md" +RUBY_FAKEGEM_RECIPE_TEST="rspec3" +RUBY_FAKEGEM_RECIPE_DOC="rdoc" + +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-1.7.2 =dev-ruby/highline-1.7*" + +all_ruby_prepare() { + sed -i -e "/simplecov/,/end/ s:^:#:" spec/spec_helper.rb || die +}