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: Fri, 01 Nov 2019 05:40:42
Message-Id: 1572585582.2c0fc61ae80355b57870aee78774ce9f16e9a95e.graaff@gentoo
1 commit: 2c0fc61ae80355b57870aee78774ce9f16e9a95e
2 Author: Hans de Graaff <graaff <AT> gentoo <DOT> org>
3 AuthorDate: Fri Nov 1 05:19:42 2019 +0000
4 Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org>
5 CommitDate: Fri Nov 1 05:19:42 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2c0fc61a
7
8 app-admin/puppet-lint: add 2.4.2
9
10 Package-Manager: Portage-2.3.76, Repoman-2.3.16
11 Signed-off-by: Hans de Graaff <graaff <AT> gentoo.org>
12
13 app-admin/puppet-lint/Manifest | 1 +
14 app-admin/puppet-lint/puppet-lint-2.4.2.ebuild | 28 ++++++++++++++++++++++++++
15 2 files changed, 29 insertions(+)
16
17 diff --git a/app-admin/puppet-lint/Manifest b/app-admin/puppet-lint/Manifest
18 index 3071336f38e..e7e6fcf4258 100644
19 --- a/app-admin/puppet-lint/Manifest
20 +++ b/app-admin/puppet-lint/Manifest
21 @@ -1,2 +1,3 @@
22 DIST puppet-lint-2.3.6.gem 87552 BLAKE2B 0a2f4b9c2ef76c06bc4fb6eb0f737af406bf3949e7c9001685c6522714b550c0f2c5680d5d39f5d3994496a497664e912eadc44bdb7aa4c27635d23b36a90776 SHA512 d162307e66bb5f1dd923f2f9fab55de7b4c5fad6264d7a1bae8df20bd45c5a786b66d9f5b3bd235230fea959c67242462e711212f65807040048f4c0be7122b9
23 DIST puppet-lint-2.4.1.gem 92160 BLAKE2B 5bcdf14cad8cbf90e69c6afaa6935768db3cd9023175a8d5632951c7ff0d5b91362988c0e667c0f852eae705920a6a570f582db394b89436f61eda50f314dc9b SHA512 39d872350ab9ad276c346a7020269f246889dfb00eef020f93a5b53a93e4ae8fd5cf307ac057d6129edf52974ea71af0abcf422e9e0be0ba570d029ffa7011bc
24 +DIST puppet-lint-2.4.2.gem 93184 BLAKE2B 5170bd9c30f6e2f5b30120b6edc74550e697c3243d2f5c7249f27a2d61ca2f5612d96efdc0f6be8d065e7d7a4460b9cf6e6dad13a5b24c4ce100d4e6df2f0425 SHA512 ee846688b13536b7d146ea50c0efe5083babf1ca09b77182437ec93be754ae076d54ac34f8082867a26b6df12a09bcd316e5b1aaa9c98150f9411a0c8b007c71
25
26 diff --git a/app-admin/puppet-lint/puppet-lint-2.4.2.ebuild b/app-admin/puppet-lint/puppet-lint-2.4.2.ebuild
27 new file mode 100644
28 index 00000000000..738798f64b2
29 --- /dev/null
30 +++ b/app-admin/puppet-lint/puppet-lint-2.4.2.ebuild
31 @@ -0,0 +1,28 @@
32 +# Copyright 1999-2019 Gentoo Authors
33 +# Distributed under the terms of the GNU General Public License v2
34 +
35 +EAPI=7
36 +USE_RUBY="ruby24 ruby25 ruby26"
37 +
38 +RUBY_FAKEGEM_RECIPE_TEST="rspec3"
39 +
40 +RUBY_FAKEGEM_EXTRADOC="README.md"
41 +
42 +inherit eutils ruby-fakegem
43 +
44 +DESCRIPTION="A linter for puppet DSL"
45 +HOMEPAGE="http://puppet-lint.com/"
46 +
47 +LICENSE="MIT"
48 +SLOT="0"
49 +IUSE=""
50 +KEYWORDS="~amd64 ~x86"
51 +
52 +ruby_add_bdepend "test? (
53 + dev-ruby/rspec-its:1
54 + dev-ruby/rspec-collection_matchers:1
55 + dev-ruby/rspec-json_expectations )"
56 +
57 +all_ruby_prepare() {
58 + sed -i -e '/simplecov/,/^end/ s:^:#:' spec/spec_helper.rb || die
59 +}