diff options
author | Matthew Thode <prometheanfire@gentoo.org> | 2013-09-17 06:00:28 +0000 |
---|---|---|
committer | Matthew Thode <prometheanfire@gentoo.org> | 2013-09-17 06:00:28 +0000 |
commit | dc7c19a9298936a64bbc219dc6c2b95b69ec103d (patch) | |
tree | 31d7e32d7d1f35e1f7d15744f49d509468c428ea /dev-ruby | |
parent | Cleanup tests for distutils-r1 wrappers (diff) | |
download | gentoo-2-dc7c19a9298936a64bbc219dc6c2b95b69ec103d.tar.gz gentoo-2-dc7c19a9298936a64bbc219dc6c2b95b69ec103d.tar.bz2 gentoo-2-dc7c19a9298936a64bbc219dc6c2b95b69ec103d.zip |
I accidently removed a stable facter, readding....
(Portage version: 2.1.12.2/cvs/Linux x86_64, RepoMan options: --force, signed Manifest commit with key 0x2471eb3e40ac5ac3)
Diffstat (limited to 'dev-ruby')
-rw-r--r-- | dev-ruby/facter/ChangeLog | 8 | ||||
-rw-r--r-- | dev-ruby/facter/facter-1.7.1-r1.ebuild | 43 |
2 files changed, 50 insertions, 1 deletions
diff --git a/dev-ruby/facter/ChangeLog b/dev-ruby/facter/ChangeLog index 3efbf278f63b..dccc37453fae 100644 --- a/dev-ruby/facter/ChangeLog +++ b/dev-ruby/facter/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for dev-ruby/facter # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-ruby/facter/ChangeLog,v 1.85 2013/09/16 06:26:39 prometheanfire Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/facter/ChangeLog,v 1.86 2013/09/17 06:00:28 prometheanfire Exp $ + +*facter-1.7.1-r1 (17 Sep 2013) + + 17 Sep 2013; Matthew Thode <prometheanfire@gentoo.org> + +facter-1.7.1-r1.ebuild: + I accidently removed a stable facter, readding.... *facter-1.6.18 (16 Sep 2013) diff --git a/dev-ruby/facter/facter-1.7.1-r1.ebuild b/dev-ruby/facter/facter-1.7.1-r1.ebuild new file mode 100644 index 000000000000..1bacd8b3445a --- /dev/null +++ b/dev-ruby/facter/facter-1.7.1-r1.ebuild @@ -0,0 +1,43 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/facter/facter-1.7.1-r1.ebuild,v 1.8 2013/09/17 06:00:28 prometheanfire Exp $ + +EAPI=5 + +USE_RUBY="ruby18 ruby19 jruby" +RUBY_FAKEGEM_TASK_DOC="" +RUBY_FAKEGEM_RECIPE_TEST="rspec" +RUBY_FAKEGEM_EXTRADOC="README.md" +RUBY_FAKEGEM_BINWRAP="facter" + +inherit ruby-fakegem + +DESCRIPTION="A cross-platform Ruby library for retrieving facts from operating systems" +HOMEPAGE="http://www.puppetlabs.com/puppet/related-projects/facter/" + +LICENSE="Apache-2.0" +SLOT="0" +IUSE="+dmi +pciutils" +KEYWORDS="amd64 hppa ppc ~ppc64 sparc x86" + +CDEPEND=" + sys-apps/net-tools + sys-apps/lsb-release + dmi? ( sys-apps/dmidecode ) + pciutils? ( sys-apps/pciutils )" + +RDEPEND+=" ${CDEPEND}" +DEPEND+=" test? ( ${CDEPEND} )" + +RUBY_PATCHES=( ${P}-fix-proc-self-status.patch ) + +ruby_add_bdepend "test? ( >=dev-ruby/mocha-0.10.5:0.10 )" + +all_ruby_prepare() { + # Provide explicit path since /sbin is not in the default PATH on + # Gentoo. + sed -i -e 's:arp -an:/sbin/arp -an:' lib/facter/util/ec2.rb spec/unit/util/ec2_spec.rb || die + + # Ensure the correct version of mocha is used without using bundler. + sed -i -e '9igem "mocha", "~>0.10.5"' spec/spec_helper.rb || die +} |