From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id E27B31386F3 for ; Thu, 13 Aug 2015 17:54:34 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 5BB1AE086A; Thu, 13 Aug 2015 17:54:34 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 0AB85E086A for ; Thu, 13 Aug 2015 17:54:34 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 3AE3B3408E5 for ; Thu, 13 Aug 2015 17:54:33 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 5ED52147 for ; Thu, 13 Aug 2015 17:54:31 +0000 (UTC) From: "Peter Wilmott" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Peter Wilmott" Message-ID: <1439488433.901ed95dd23594ab82d79ef61106b836b2097918.p8952@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ruby/netrc/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-ruby/netrc/netrc-0.9.0-r1.ebuild X-VCS-Directories: dev-ruby/netrc/ X-VCS-Committer: p8952 X-VCS-Committer-Name: Peter Wilmott X-VCS-Revision: 901ed95dd23594ab82d79ef61106b836b2097918 X-VCS-Branch: master Date: Thu, 13 Aug 2015 17:54:31 +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: 7e536635-3cf6-4137-afb3-c2dcb3ebcd4e X-Archives-Hash: baf23113cccd20433f38f9d94fa686bd commit: 901ed95dd23594ab82d79ef61106b836b2097918 Author: Peter Wilmott gentoo org> AuthorDate: Thu Aug 13 17:47:56 2015 +0000 Commit: Peter Wilmott gentoo org> CommitDate: Thu Aug 13 17:53:53 2015 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=901ed95d dev-ruby/netrc: Add ruby21 Package-Manager: portage-2.2.20.1 dev-ruby/netrc/netrc-0.9.0-r1.ebuild | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/dev-ruby/netrc/netrc-0.9.0-r1.ebuild b/dev-ruby/netrc/netrc-0.9.0-r1.ebuild new file mode 100644 index 0000000..cd39914 --- /dev/null +++ b/dev-ruby/netrc/netrc-0.9.0-r1.ebuild @@ -0,0 +1,28 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 +USE_RUBY="ruby19 ruby20 ruby21" + +RUBY_FAKEGEM_EXTRADOC="changelog.txt Readme.md" + +RUBY_FAKEGEM_RECIPE_DOC="rdoc" + +inherit ruby-fakegem + +DESCRIPTION="This library reads and writes .netrc files" +HOMEPAGE="https://github.com/geemus/netrc" +LICENSE="MIT" + +KEYWORDS="~amd64 ~x86" +SLOT="0" +IUSE="" + +all_ruby_prepare() { + sed -e '/test_encrypted_roundtrip/a skip "depends on external gpg test keys"' -i test/test_netrc.rb || die +} + +each_ruby_test() { + ${RUBY} -S testrb test/test_*.rb || die +}