Gentoo Archives: gentoo-commits

From: "Hans de Graaff (graaff)" <graaff@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-ruby/hiera-eyaml: ChangeLog hiera-eyaml-2.0.7.ebuild
Date: Wed, 04 Mar 2015 07:10:45
Message-Id: 20150304071042.5F76013017@oystercatcher.gentoo.org
1 graaff 15/03/04 07:10:42
2
3 Modified: ChangeLog
4 Added: hiera-eyaml-2.0.7.ebuild
5 Log:
6 Version bump. Fix broken tests. Fix broken dependencies.
7
8 (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 0x8883FA56A308A8D7!)
9
10 Revision Changes Path
11 1.3 dev-ruby/hiera-eyaml/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/hiera-eyaml/ChangeLog?rev=1.3&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/hiera-eyaml/ChangeLog?rev=1.3&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/hiera-eyaml/ChangeLog?r1=1.2&r2=1.3
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-ruby/hiera-eyaml/ChangeLog,v
20 retrieving revision 1.2
21 retrieving revision 1.3
22 diff -u -r1.2 -r1.3
23 --- ChangeLog 12 Feb 2015 05:24:33 -0000 1.2
24 +++ ChangeLog 4 Mar 2015 07:10:42 -0000 1.3
25 @@ -1,6 +1,11 @@
26 # ChangeLog for dev-ruby/hiera-eyaml
27 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-ruby/hiera-eyaml/ChangeLog,v 1.2 2015/02/12 05:24:33 patrick Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/hiera-eyaml/ChangeLog,v 1.3 2015/03/04 07:10:42 graaff Exp $
30 +
31 +*hiera-eyaml-2.0.7 (04 Mar 2015)
32 +
33 + 04 Mar 2015; Hans de Graaff <graaff@g.o> +hiera-eyaml-2.0.7.ebuild:
34 + Version bump. Fix broken tests. Fix broken dependencies.
35
36 12 Feb 2015; Patrick Lauer <patrick@g.o> hiera-eyaml-2.0.6.ebuild:
37 Whitespace
38
39
40
41 1.1 dev-ruby/hiera-eyaml/hiera-eyaml-2.0.7.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/hiera-eyaml/hiera-eyaml-2.0.7.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/hiera-eyaml/hiera-eyaml-2.0.7.ebuild?rev=1.1&content-type=text/plain
45
46 Index: hiera-eyaml-2.0.7.ebuild
47 ===================================================================
48 # Copyright 1999-2015 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/dev-ruby/hiera-eyaml/hiera-eyaml-2.0.7.ebuild,v 1.1 2015/03/04 07:10:42 graaff Exp $
51
52 EAPI=5
53 USE_RUBY="ruby19 ruby20 ruby21"
54
55 RUBY_FAKEGEM_TASK_DOC=""
56 RUBY_FAKEGEM_EXTRADOC="README.md CHANGES.md PLUGINS.md"
57
58 RUBY_FAKEGEM_GEMSPEC="${PN}.gemspec"
59
60 inherit ruby-fakegem
61
62 DESCRIPTION="Encrypted YAML backend for hiera"
63 HOMEPAGE="https://github.com/TomPoulton/hiera-eyaml"
64 SRC_URI="https://github.com/TomPoulton/hiera-eyaml/archive/v${PV}.tar.gz -> ${P}.tar.gz"
65
66 LICENSE="MIT"
67 SLOT="0"
68 KEYWORDS="~amd64 ~x86"
69 IUSE="test"
70
71 ruby_add_rdepend ">=dev-ruby/highline-1.6.19"
72 ruby_add_rdepend "dev-ruby/trollop:2"
73
74 ruby_add_bdepend "test? ( dev-util/cucumber dev-ruby/hiera-eyaml-plaintext )"
75
76 all_ruby_prepare() {
77 # Fix highline dependency to be compatible with more versions.
78 sed -i -e '/highline/ s/~>/>=/' \
79 -e '/gem.files/d' ${RUBY_FAKEGEM_GEMSPEC} || die
80
81 }
82
83 each_ruby_test() {
84 ${RUBY} -S cucumber --format progress features || die
85 }