diff options
author | 2015-03-04 07:10:42 +0000 | |
---|---|---|
committer | 2015-03-04 07:10:42 +0000 | |
commit | 4fb62b204b5b0d0a39b340173307530aa3d4b331 (patch) | |
tree | e9dae89416c8b373f139880dc53a1c9709f6b8d1 /dev-ruby/hiera-eyaml | |
parent | Version bump (bug #540128). Removed old (diff) | |
download | gentoo-2-4fb62b204b5b0d0a39b340173307530aa3d4b331.tar.gz gentoo-2-4fb62b204b5b0d0a39b340173307530aa3d4b331.tar.bz2 gentoo-2-4fb62b204b5b0d0a39b340173307530aa3d4b331.zip |
Version bump. Fix broken tests. Fix broken dependencies.
(Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 0x8883FA56A308A8D7!)
Diffstat (limited to 'dev-ruby/hiera-eyaml')
-rw-r--r-- | dev-ruby/hiera-eyaml/ChangeLog | 7 | ||||
-rw-r--r-- | dev-ruby/hiera-eyaml/hiera-eyaml-2.0.7.ebuild | 38 |
2 files changed, 44 insertions, 1 deletions
diff --git a/dev-ruby/hiera-eyaml/ChangeLog b/dev-ruby/hiera-eyaml/ChangeLog index 28be36dde627..484e35461b44 100644 --- a/dev-ruby/hiera-eyaml/ChangeLog +++ b/dev-ruby/hiera-eyaml/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-ruby/hiera-eyaml # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-ruby/hiera-eyaml/ChangeLog,v 1.2 2015/02/12 05:24:33 patrick Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/hiera-eyaml/ChangeLog,v 1.3 2015/03/04 07:10:42 graaff Exp $ + +*hiera-eyaml-2.0.7 (04 Mar 2015) + + 04 Mar 2015; Hans de Graaff <graaff@gentoo.org> +hiera-eyaml-2.0.7.ebuild: + Version bump. Fix broken tests. Fix broken dependencies. 12 Feb 2015; Patrick Lauer <patrick@gentoo.org> hiera-eyaml-2.0.6.ebuild: Whitespace diff --git a/dev-ruby/hiera-eyaml/hiera-eyaml-2.0.7.ebuild b/dev-ruby/hiera-eyaml/hiera-eyaml-2.0.7.ebuild new file mode 100644 index 000000000000..77412cc43bfd --- /dev/null +++ b/dev-ruby/hiera-eyaml/hiera-eyaml-2.0.7.ebuild @@ -0,0 +1,38 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $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 $ + +EAPI=5 +USE_RUBY="ruby19 ruby20 ruby21" + +RUBY_FAKEGEM_TASK_DOC="" +RUBY_FAKEGEM_EXTRADOC="README.md CHANGES.md PLUGINS.md" + +RUBY_FAKEGEM_GEMSPEC="${PN}.gemspec" + +inherit ruby-fakegem + +DESCRIPTION="Encrypted YAML backend for hiera" +HOMEPAGE="https://github.com/TomPoulton/hiera-eyaml" +SRC_URI="https://github.com/TomPoulton/hiera-eyaml/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="test" + +ruby_add_rdepend ">=dev-ruby/highline-1.6.19" +ruby_add_rdepend "dev-ruby/trollop:2" + +ruby_add_bdepend "test? ( dev-util/cucumber dev-ruby/hiera-eyaml-plaintext )" + +all_ruby_prepare() { + # Fix highline dependency to be compatible with more versions. + sed -i -e '/highline/ s/~>/>=/' \ + -e '/gem.files/d' ${RUBY_FAKEGEM_GEMSPEC} || die + +} + +each_ruby_test() { + ${RUBY} -S cucumber --format progress features || die +} |