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: app-admin/puppet-lint/
Date: Mon, 26 Mar 2018 05:47:22
Message-Id: 1522043119.f3f1eebf2c53e32fed2b1e06524ec670fec5c563.graaff@gentoo
1 commit: f3f1eebf2c53e32fed2b1e06524ec670fec5c563
2 Author: Hans de Graaff <graaff <AT> gentoo <DOT> org>
3 AuthorDate: Mon Mar 26 05:36:06 2018 +0000
4 Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org>
5 CommitDate: Mon Mar 26 05:45:19 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f3f1eebf
7
8 app-admin/puppet-lint: add 2.3.4
9
10 Package-Manager: Portage-2.3.24, Repoman-2.3.6
11
12 app-admin/puppet-lint/Manifest | 1 +
13 app-admin/puppet-lint/puppet-lint-2.3.4.ebuild | 29 ++++++++++++++++++++++++++
14 2 files changed, 30 insertions(+)
15
16 diff --git a/app-admin/puppet-lint/Manifest b/app-admin/puppet-lint/Manifest
17 index c6dfa2eaa76..491c3200805 100644
18 --- a/app-admin/puppet-lint/Manifest
19 +++ b/app-admin/puppet-lint/Manifest
20 @@ -1 +1,2 @@
21 DIST puppet-lint-2.3.3.gem 84992 BLAKE2B 57b6d6332b7d26daf193ba983ff1e5d560cf4f902f1b476de3b1f7254755851397685d7b435dd7365f81e1427d91ca47ffa889a9d87a14e1c4720e44aa2b7996 SHA512 9203e8d29cb4a5c5abf8279598599db4a9063d33d7b7d6c76f8ebf09c3ba539f6035083b5438bae2b0fda1d16880ffcb69a2776ebce7f54bc1a1430c2ceb0d68
22 +DIST puppet-lint-2.3.4.gem 86016 BLAKE2B 4e7c0da6bb77558312b389be68ee17a75a2dffa795eb0a985101177f45ac362d0a4bf70804198b82f981bcc2023768503f7362799a2853ea2e159071853c5dfc SHA512 27ef230b337ffffeae8395efa2329ad150b7f0a21bfff1b2e5ee4807dd088705723d9887ae3c166eeb8daa61337d2efd5907fcb5c86c6cfb0a42c0fc30dfd7ba
23
24 diff --git a/app-admin/puppet-lint/puppet-lint-2.3.4.ebuild b/app-admin/puppet-lint/puppet-lint-2.3.4.ebuild
25 new file mode 100644
26 index 00000000000..e672004b0fd
27 --- /dev/null
28 +++ b/app-admin/puppet-lint/puppet-lint-2.3.4.ebuild
29 @@ -0,0 +1,29 @@
30 +# Copyright 1999-2018 Gentoo Foundation
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=6
34 +USE_RUBY="ruby22 ruby23 ruby24"
35 +
36 +RUBY_FAKEGEM_RECIPE_TEST="rspec3"
37 +
38 +RUBY_FAKEGEM_RECIPE_DOC="rdoc"
39 +RUBY_FAKEGEM_EXTRADOC="README.md"
40 +
41 +inherit eutils ruby-fakegem
42 +
43 +DESCRIPTION="A linter for puppet DSL"
44 +HOMEPAGE="http://puppet-lint.com/"
45 +
46 +LICENSE="MIT"
47 +SLOT="0"
48 +IUSE=""
49 +KEYWORDS="~amd64 ~x86"
50 +
51 +ruby_add_bdepend "test? (
52 + dev-ruby/rspec-its:1
53 + dev-ruby/rspec-collection_matchers:1
54 + dev-ruby/rspec-json_expectations )"
55 +
56 +all_ruby_prepare() {
57 + sed -i -e '/simplecov/,/^end/ s:^:#:' spec/spec_helper.rb || die
58 +}