Gentoo Archives: gentoo-commits

From: Hans de Graaff <graaff@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ruby/shoulda-matchers/
Date: Sat, 20 Apr 2019 23:26:11
Message-Id: 1555742196.baa644c746a588f755f2db6dae55cf12792c77c4.graaff@gentoo
1 commit: baa644c746a588f755f2db6dae55cf12792c77c4
2 Author: Hans de Graaff <graaff <AT> gentoo <DOT> org>
3 AuthorDate: Sat Apr 20 06:32:51 2019 +0000
4 Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org>
5 CommitDate: Sat Apr 20 06:36:36 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=baa644c7
7
8 dev-ruby/shoulda-matchers: add 4.0.1
9
10 Signed-off-by: Hans de Graaff <graaff <AT> gentoo.org>
11 Package-Manager: Portage-2.3.62, Repoman-2.3.11
12
13 dev-ruby/shoulda-matchers/Manifest | 1 +
14 .../shoulda-matchers/shoulda-matchers-4.0.1.ebuild | 31 ++++++++++++++++++++++
15 2 files changed, 32 insertions(+)
16
17 diff --git a/dev-ruby/shoulda-matchers/Manifest b/dev-ruby/shoulda-matchers/Manifest
18 index 499638670f8..d958d1fef71 100644
19 --- a/dev-ruby/shoulda-matchers/Manifest
20 +++ b/dev-ruby/shoulda-matchers/Manifest
21 @@ -1,2 +1,3 @@
22 DIST shoulda-matchers-2.8.0.gem 153600 BLAKE2B 49ddfe686bbd80665cde74019a046564b6863bca1ae81517ef1ee8c9f91e3f5d58a5d25e7640b1a5e3cb9c99367f9bf5672f63b9632427eba91c40aa4d2bd2ef SHA512 7b40220811a11cf57cfa38457eaab612ec9f6db5b660df21bd142b3df30d3691d3b7b3b4f931eed1e186c5afe4b576eee2c86f6f8f491d46955598f1441a9027
23 DIST shoulda-matchers-3.1.3.gem 208384 BLAKE2B 0ce7cb91ec8a311ecd4872ca45b178686fedb126fd5a05d55cc8654f5a40d1ed7e0a1da2b2c47c34ce3e5ed13a302a1d309f4afa67bafb37d5ed8a724945e97f SHA512 c61397d20724f3048172a8a20ef8abaeafdba3a1d5d4b923b1b11480b25c70820fd372eb2851c6eb307894bc0b7e1aae515e23a3581a83db1b65a2c778b22d67
24 +DIST shoulda-matchers-4.0.1.tar.gz 222637 BLAKE2B 70d1aaa08f7670716f9ad385a22cbca709827f2de276d2a82ea8306ea43c44e99f9a2e698813a8c99036568a1f451a7c39d06dc5effd438d2bd31dcab32df8a8 SHA512 c2d8b80d4a0fa8d607b62f56c2718fc9922459f85ffb8a56b0c933c60fc258ce3fe75b7676fee1b178c56d1e35e28356abd855e2e7046b82268f743010c9b273
25
26 diff --git a/dev-ruby/shoulda-matchers/shoulda-matchers-4.0.1.ebuild b/dev-ruby/shoulda-matchers/shoulda-matchers-4.0.1.ebuild
27 new file mode 100644
28 index 00000000000..62b2570700c
29 --- /dev/null
30 +++ b/dev-ruby/shoulda-matchers/shoulda-matchers-4.0.1.ebuild
31 @@ -0,0 +1,31 @@
32 +# Copyright 1999-2019 Gentoo Authors
33 +# Distributed under the terms of the GNU General Public License v2
34 +
35 +EAPI=6
36 +
37 +USE_RUBY="ruby24 ruby25 ruby26"
38 +
39 +RUBY_FAKEGEM_RECIPE_DOC="rdoc"
40 +
41 +RUBY_FAKEGEM_RECIPE_TEST="none"
42 +
43 +RUBY_FAKEGEM_EXTRAINSTALL="NEWS.md README.md"
44 +
45 +RUBY_FAKEGEM_GEMSPEC="${PN}.gemspec"
46 +
47 +inherit ruby-fakegem
48 +
49 +DESCRIPTION="Making tests easy on the fingers and eyes"
50 +HOMEPAGE="https://github.com/thoughtbot/shoulda-matchers"
51 +SRC_URI="https://github.com/thoughtbot/shoulda-matchers/archive/v${PV}.tar.gz -> ${P}.tar.gz"
52 +
53 +LICENSE="MIT"
54 +SLOT="3"
55 +KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86"
56 +IUSE=""
57 +
58 +ruby_add_rdepend ">=dev-ruby/activesupport-4.2.0:*"
59 +
60 +all_ruby_prepare() {
61 + sed -i -e '/pry/ s:^:#:' spec/spec_helper.rb || die
62 +}