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/hiera-eyaml/
Date: Mon, 14 Sep 2020 06:10:03
Message-Id: 1600063768.ba7c5502b6bbe57c7ea9b9405f12c22b1a869311.graaff@gentoo
1 commit: ba7c5502b6bbe57c7ea9b9405f12c22b1a869311
2 Author: Hans de Graaff <graaff <AT> gentoo <DOT> org>
3 AuthorDate: Sun Sep 13 06:58:40 2020 +0000
4 Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org>
5 CommitDate: Mon Sep 14 06:09:28 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ba7c5502
7
8 dev-ruby/hiera-eyaml: cleanup
9
10 Package-Manager: Portage-3.0.4, Repoman-3.0.1
11 Signed-off-by: Hans de Graaff <graaff <AT> gentoo.org>
12
13 dev-ruby/hiera-eyaml/Manifest | 2 --
14 dev-ruby/hiera-eyaml/hiera-eyaml-3.0.0.ebuild | 48 ---------------------------
15 dev-ruby/hiera-eyaml/hiera-eyaml-3.1.0.ebuild | 48 ---------------------------
16 3 files changed, 98 deletions(-)
17
18 diff --git a/dev-ruby/hiera-eyaml/Manifest b/dev-ruby/hiera-eyaml/Manifest
19 index 73f441d2b82..6a445bbcdf7 100644
20 --- a/dev-ruby/hiera-eyaml/Manifest
21 +++ b/dev-ruby/hiera-eyaml/Manifest
22 @@ -1,3 +1 @@
23 -DIST hiera-eyaml-3.0.0.tar.gz 54416 BLAKE2B 75587799b228562ae89ab4e46fdd5d4a256f66403df0a2c0761aadec17fb3fa95c1207aee5a4663bcbd843c7d6e0594ce2c0edf6973184b64522a987d628b549 SHA512 805496478d0fe142ea1661345d92e5ad2ad4c18c98bb83c8f799031b784a997e1aee2a11b46600a8ddbe0b147072ea0f83fbfa100df5b5fc534d7489850d9827
24 -DIST hiera-eyaml-3.1.0.tar.gz 55857 BLAKE2B 6038798c86f6c7cfb56ed2519961bcdb7937d16e0376ba426c5ae4a892cef9863e6728368af8da31359abc956d78ab38d379bca5ba8cbf567c2c812ee33929fe SHA512 970aa0dd696acd77062ac5c289c9ac0e5992c58acc4df379500978904e58a2054801fa7c36fa3b156dd1b635ef19522cc9886bd91c83e8fda6d00058b18ab9d9
25 DIST hiera-eyaml-3.1.1.tar.gz 54848 BLAKE2B 8daa4925bf1fb945ddb5ce7a485c3bf2bfca8747eb0cf00530eb91307d18d3f5c73699a30631b80e7825baac3a8b0c1695bd0313906bc8c7aba9c3c00d69b9cc SHA512 3bc93ca31af96383401f28644490f5540a70cf719e47d340794daf6c8bcc7fe9800d1d1e6ba99aba344831966f8d15f1a1fd9d1522696457f0bdec79dd45a108
26
27 diff --git a/dev-ruby/hiera-eyaml/hiera-eyaml-3.0.0.ebuild b/dev-ruby/hiera-eyaml/hiera-eyaml-3.0.0.ebuild
28 deleted file mode 100644
29 index 744e6a1d5e2..00000000000
30 --- a/dev-ruby/hiera-eyaml/hiera-eyaml-3.0.0.ebuild
31 +++ /dev/null
32 @@ -1,48 +0,0 @@
33 -# Copyright 1999-2019 Gentoo Authors
34 -# Distributed under the terms of the GNU General Public License v2
35 -
36 -EAPI=6
37 -USE_RUBY="ruby23 ruby24 ruby25 ruby26"
38 -
39 -RUBY_FAKEGEM_TASK_DOC=""
40 -RUBY_FAKEGEM_EXTRADOC="README.md CHANGELOG.md PLUGINS.md"
41 -
42 -RUBY_FAKEGEM_GEMSPEC="${PN}.gemspec"
43 -
44 -inherit ruby-fakegem
45 -
46 -DESCRIPTION="Encrypted YAML backend for hiera"
47 -HOMEPAGE="https://github.com/TomPoulton/hiera-eyaml"
48 -SRC_URI="https://github.com/TomPoulton/hiera-eyaml/archive/v${PV}.tar.gz -> ${P}.tar.gz"
49 -
50 -LICENSE="MIT"
51 -SLOT="3"
52 -KEYWORDS="~amd64 ~x86"
53 -IUSE="test"
54 -
55 -ruby_add_rdepend ">=dev-ruby/highline-1.6.19:*"
56 -ruby_add_rdepend "dev-ruby/optimist"
57 -ruby_add_rdepend "!!dev-ruby/hiera-eyaml:0" # both install the /usr/bin/eyaml binary
58 -
59 -ruby_add_bdepend "test? ( dev-util/cucumber ~dev-util/aruba-0.6.2 <app-admin/puppet-6 dev-ruby/hiera-eyaml-plaintext )"
60 -
61 -all_ruby_prepare() {
62 - # Fix highline dependency to be compatible with more versions.
63 - sed -i -e '/highline/ s/~>/>=/' \
64 - -e '/gem.files/d' ${RUBY_FAKEGEM_GEMSPEC} || die
65 -
66 - sed -i -e 's:/tmp:'${T}':' \
67 - features/sandbox/puppet/environments/local/modules/test/manifests/run.pp \
68 - features/sandbox/puppet-hiera-merge/environments/local/modules/test/manifests/run.pp \
69 - features/puppet.feature
70 -}
71 -
72 -each_ruby_prepare() {
73 - # Run tests with the correct ruby interpreter
74 - sed -i -e 's:I run `eyaml:I run `'${RUBY}' '${S}'/bin/eyaml:' features/*.feature || die
75 -
76 -}
77 -
78 -each_ruby_test() {
79 - ${RUBY} -S cucumber --format progress features || die
80 -}
81
82 diff --git a/dev-ruby/hiera-eyaml/hiera-eyaml-3.1.0.ebuild b/dev-ruby/hiera-eyaml/hiera-eyaml-3.1.0.ebuild
83 deleted file mode 100644
84 index 863a4be4abb..00000000000
85 --- a/dev-ruby/hiera-eyaml/hiera-eyaml-3.1.0.ebuild
86 +++ /dev/null
87 @@ -1,48 +0,0 @@
88 -# Copyright 1999-2019 Gentoo Authors
89 -# Distributed under the terms of the GNU General Public License v2
90 -
91 -EAPI=7
92 -USE_RUBY="ruby24 ruby25 ruby26"
93 -
94 -RUBY_FAKEGEM_TASK_DOC=""
95 -RUBY_FAKEGEM_EXTRADOC="README.md CHANGELOG.md PLUGINS.md"
96 -
97 -RUBY_FAKEGEM_GEMSPEC="${PN}.gemspec"
98 -
99 -inherit ruby-fakegem
100 -
101 -DESCRIPTION="Encrypted YAML backend for hiera"
102 -HOMEPAGE="https://github.com/TomPoulton/hiera-eyaml"
103 -SRC_URI="https://github.com/TomPoulton/hiera-eyaml/archive/v${PV}.tar.gz -> ${P}.tar.gz"
104 -
105 -LICENSE="MIT"
106 -SLOT="3"
107 -KEYWORDS="~amd64 ~x86"
108 -IUSE="test"
109 -
110 -ruby_add_rdepend ">=dev-ruby/highline-1.6.19:*"
111 -ruby_add_rdepend "dev-ruby/optimist"
112 -ruby_add_rdepend "!!dev-ruby/hiera-eyaml:0" # both install the /usr/bin/eyaml binary
113 -
114 -ruby_add_bdepend "test? ( dev-util/cucumber ~dev-util/aruba-0.6.2 <app-admin/puppet-6 dev-ruby/hiera-eyaml-plaintext )"
115 -
116 -all_ruby_prepare() {
117 - # Fix highline dependency to be compatible with more versions.
118 - sed -i -e '/highline/ s/~>/>=/' \
119 - -e '/gem.files/d' ${RUBY_FAKEGEM_GEMSPEC} || die
120 -
121 - sed -i -e 's:/tmp:'${T}':' \
122 - features/sandbox/puppet/environments/local/modules/test/manifests/run.pp \
123 - features/sandbox/puppet-hiera-merge/environments/local/modules/test/manifests/run.pp \
124 - features/puppet.feature
125 -}
126 -
127 -each_ruby_prepare() {
128 - # Run tests with the correct ruby interpreter
129 - sed -i -e 's:I run `eyaml:I run `'${RUBY}' '${S}'/bin/eyaml:' features/*.feature || die
130 -
131 -}
132 -
133 -each_ruby_test() {
134 - ${RUBY} -S cucumber --format progress features || die
135 -}