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 AE5B6139085 for ; Sat, 24 Dec 2016 14:12:24 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 6A3EEE0D12; Sat, 24 Dec 2016 14:12:22 +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 48199E0D12 for ; Sat, 24 Dec 2016 14:12:22 +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 08C2533E142 for ; Sat, 24 Dec 2016 14:12:21 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 894379D8 for ; Sat, 24 Dec 2016 14:12:16 +0000 (UTC) From: "Manuel Rüger" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Manuel Rüger" Message-ID: <1482588723.5e7b2705955b490bbe5661ef5a486cdfd3354c78.mrueg@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ruby/shoulda/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-ruby/shoulda/shoulda-3.5.0-r3.ebuild X-VCS-Directories: dev-ruby/shoulda/ X-VCS-Committer: mrueg X-VCS-Committer-Name: Manuel Rüger X-VCS-Revision: 5e7b2705955b490bbe5661ef5a486cdfd3354c78 X-VCS-Branch: master Date: Sat, 24 Dec 2016 14:12:16 +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: cb731b29-a6b6-4cae-9217-63eb7ee2f33e X-Archives-Hash: c3c3416285b1f1ba5de79369d592e84f commit: 5e7b2705955b490bbe5661ef5a486cdfd3354c78 Author: Manuel Rüger gentoo org> AuthorDate: Sat Dec 24 14:12:03 2016 +0000 Commit: Manuel Rüger gentoo org> CommitDate: Sat Dec 24 14:12:03 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5e7b2705 dev-ruby/shoulda: Add ruby23 Package-Manager: portage-2.3.3 dev-ruby/shoulda/shoulda-3.5.0-r3.ebuild | 34 ++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) diff --git a/dev-ruby/shoulda/shoulda-3.5.0-r3.ebuild b/dev-ruby/shoulda/shoulda-3.5.0-r3.ebuild new file mode 100644 index 00000000..aaa0e46 --- /dev/null +++ b/dev-ruby/shoulda/shoulda-3.5.0-r3.ebuild @@ -0,0 +1,34 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 + +USE_RUBY="ruby21 ruby22 ruby23" + +RUBY_FAKEGEM_TASK_DOC="" +RUBY_FAKEGEM_EXTRADOC="README.md" + +RUBY_FAKEGEM_GEMSPEC="${PN}.gemspec" + +inherit ruby-fakegem + +DESCRIPTION="Making tests easy on the fingers and eyes" +HOMEPAGE="http://thoughtbot.com/projects/shoulda" +SRC_URI="https://github.com/thoughtbot/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="MIT" +SLOT="3" +KEYWORDS="~amd64 ~arm ~hppa" +IUSE="" + +# This now more or less a meta-gem and it only contains features for +# integration tests using Appraisals, which we don't currently package. +RESTRICT=test + +ruby_add_rdepend ">=dev-ruby/shoulda-context-1.0.1 + >=dev-ruby/shoulda-matchers-1.4.1:0" + +all_ruby_prepare() { + sed -e '/git ls-files/d' -i ${RUBY_FAKEGEM_GEMSPEC} || die +}