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 463BC138334 for ; Mon, 23 Jul 2018 05:17:27 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id DAD4DE08D6; Mon, 23 Jul 2018 05:17:25 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 AA05FE08D6 for ; Mon, 23 Jul 2018 05:17:25 +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 500E9335D39 for ; Mon, 23 Jul 2018 05:17:22 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C3D7B2E0 for ; Mon, 23 Jul 2018 05:17:20 +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: <1532322262.f29f386f26063eac69359a354fa9e43c9b63ad9b.graaff@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ruby/pundit/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-ruby/pundit/Manifest dev-ruby/pundit/pundit-2.0.0.ebuild X-VCS-Directories: dev-ruby/pundit/ X-VCS-Committer: graaff X-VCS-Committer-Name: Hans de Graaff X-VCS-Revision: f29f386f26063eac69359a354fa9e43c9b63ad9b X-VCS-Branch: master Date: Mon, 23 Jul 2018 05:17:20 +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: 6770b05e-ffcc-4c9d-b3b7-887879ac23cb X-Archives-Hash: 72aa1daa6c930795659f7bc2dcf0fda0 commit: f29f386f26063eac69359a354fa9e43c9b63ad9b Author: Hans de Graaff gentoo org> AuthorDate: Mon Jul 23 05:04:22 2018 +0000 Commit: Hans de Graaff gentoo org> CommitDate: Mon Jul 23 05:04:22 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f29f386f dev-ruby/pundit: add 2.0.0 Package-Manager: Portage-2.3.40, Repoman-2.3.9 dev-ruby/pundit/Manifest | 1 + dev-ruby/pundit/pundit-2.0.0.ebuild | 28 ++++++++++++++++++++++++++++ 2 files changed, 29 insertions(+) diff --git a/dev-ruby/pundit/Manifest b/dev-ruby/pundit/Manifest index c8735694dfb..1f9b33f2f7f 100644 --- a/dev-ruby/pundit/Manifest +++ b/dev-ruby/pundit/Manifest @@ -1 +1,2 @@ DIST pundit-1.1.0.gem 22016 BLAKE2B 912f359cb4530c4f65622c3a7bee48a7d84757e4c8327398dbb4e4e170a35f4811c018224aac752b6c2ae54bc93e65b5e0b46f0bb191da57355b55ea0e8d0eaa SHA512 ea7e8ef9e4b280f451810ba193dc5b27a75ecfb050eed674246034ebb687e8302aee8826c022090553b643b41c85adec4d3234f545ab2a59ececa461fe4e4b3a +DIST pundit-2.0.0.gem 25088 BLAKE2B 8fc4e0d40a56fa05f04b7a79e33039d08987a0df3b150f77c7428cdc10fb847477f1a04e7cd7772c86063d3095904202207e11e87a01766bc643e7befaee9957 SHA512 e6b37896e107a14fe40380a3a4e00f90fe7ef4f62bab252b4cb8b9854e5cba062d0d9680f9c9cb224384dc186f9ff3d5acca367d93a1cea297d63b422da689eb diff --git a/dev-ruby/pundit/pundit-2.0.0.ebuild b/dev-ruby/pundit/pundit-2.0.0.ebuild new file mode 100644 index 00000000000..f26d3265c8b --- /dev/null +++ b/dev-ruby/pundit/pundit-2.0.0.ebuild @@ -0,0 +1,28 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +USE_RUBY="ruby23 ruby24 ruby25" + +RUBY_FAKEGEM_RECIPE_TEST="rspec3" +RUBY_FAKEGEM_RECIPE_DOC="doc" + +inherit ruby-fakegem + +DESCRIPTION="Object oriented authorization for Rails applications" +HOMEPAGE="https://github.com/elabs/pundit https://rubygems.org/gems/pundit" + +LICENSE="MIT" +SLOT="2" +KEYWORDS="~amd64" +IUSE="" + +ruby_add_rdepend ">=dev-ruby/activesupport-3.0.0:*" + +ruby_add_bdepend "test? ( >=dev-ruby/actionpack-3.0.0 + >=dev-ruby/activemodel-3.0.0 )" + +all_ruby_prepare() { + sed -i -e "/pry/d" spec/spec_helper.rb || die +}