public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in dev-ruby/facter: facter-1.7.5-r1.ebuild ChangeLog
@ 2014-03-02 21:58 Manuel Rueger (mrueg)
  0 siblings, 0 replies; 3+ messages in thread
From: Manuel Rueger (mrueg) @ 2014-03-02 21:58 UTC (permalink / raw
  To: gentoo-commits

mrueg       14/03/02 21:58:44

  Modified:             ChangeLog
  Added:                facter-1.7.5-r1.ebuild
  Log:
  Make tests work.
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key )

Revision  Changes    Path
1.90                 dev-ruby/facter/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/facter/ChangeLog?rev=1.90&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/facter/ChangeLog?rev=1.90&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/facter/ChangeLog?r1=1.89&r2=1.90

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/facter/ChangeLog,v
retrieving revision 1.89
retrieving revision 1.90
diff -u -r1.89 -r1.90
--- ChangeLog	14 Feb 2014 07:10:58 -0000	1.89
+++ ChangeLog	2 Mar 2014 21:58:44 -0000	1.90
@@ -1,6 +1,11 @@
 # ChangeLog for dev-ruby/facter
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/facter/ChangeLog,v 1.89 2014/02/14 07:10:58 prometheanfire Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/facter/ChangeLog,v 1.90 2014/03/02 21:58:44 mrueg Exp $
+
+*facter-1.7.5-r1 (02 Mar 2014)
+
+  02 Mar 2014; Manuel Rüger <mrueg@gentoo.org> +facter-1.7.5-r1.ebuild:
+  Make tests work.
 
 *facter-1.7.5 (14 Feb 2014)
 



1.1                  dev-ruby/facter/facter-1.7.5-r1.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/facter/facter-1.7.5-r1.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/facter/facter-1.7.5-r1.ebuild?rev=1.1&content-type=text/plain

Index: facter-1.7.5-r1.ebuild
===================================================================
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/facter/facter-1.7.5-r1.ebuild,v 1.1 2014/03/02 21:58:44 mrueg Exp $

EAPI=5

USE_RUBY="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 '1igem "mocha", "~>0.10.5"' spec/spec_helper.rb || die

	sed -i -e '1irequire "rspec-expectations"' spec/puppetlabs_spec/matchers.rb || die
}

all_ruby_install() {
	all_fakegem_install

	# Create the directory for custom facts.
	keepdir /etc/facter/facts.d
}





^ permalink raw reply	[flat|nested] 3+ messages in thread

* [gentoo-commits] gentoo-x86 commit in dev-ruby/facter: facter-1.7.5-r1.ebuild ChangeLog
@ 2014-03-02 22:20 Manuel Rueger (mrueg)
  0 siblings, 0 replies; 3+ messages in thread
From: Manuel Rueger (mrueg) @ 2014-03-02 22:20 UTC (permalink / raw
  To: gentoo-commits

mrueg       14/03/02 22:20:58

  Modified:             facter-1.7.5-r1.ebuild ChangeLog
  Log:
  Add test removal back, because not everyone has access to /sys/block
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key )

Revision  Changes    Path
1.2                  dev-ruby/facter/facter-1.7.5-r1.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/facter/facter-1.7.5-r1.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/facter/facter-1.7.5-r1.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/facter/facter-1.7.5-r1.ebuild?r1=1.1&r2=1.2

Index: facter-1.7.5-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/facter/facter-1.7.5-r1.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- facter-1.7.5-r1.ebuild	2 Mar 2014 21:58:44 -0000	1.1
+++ facter-1.7.5-r1.ebuild	2 Mar 2014 22:20:58 -0000	1.2
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/facter/facter-1.7.5-r1.ebuild,v 1.1 2014/03/02 21:58:44 mrueg Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/facter/facter-1.7.5-r1.ebuild,v 1.2 2014/03/02 22:20:58 mrueg Exp $
 
 EAPI=5
 
@@ -41,6 +41,15 @@
 	# Ensure the correct version of mocha is used without using bundler.
 	sed -i -e '1igem "mocha", "~>0.10.5"' spec/spec_helper.rb || die
 
+	#removing because tests try to access outside stuffs
+	#1) Facter::Util::Loader should load facts on the facter search path only once
+	#     Failure/Error: Facter::Util::Loader.new.load_all
+	#     Errno::EACCES:
+	#       Permission denied - /sys/block/
+
+	rm spec/unit/util/loader_spec.rb || die
+
+
 	sed -i -e '1irequire "rspec-expectations"' spec/puppetlabs_spec/matchers.rb || die
 }
 



1.91                 dev-ruby/facter/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/facter/ChangeLog?rev=1.91&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/facter/ChangeLog?rev=1.91&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/facter/ChangeLog?r1=1.90&r2=1.91

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/facter/ChangeLog,v
retrieving revision 1.90
retrieving revision 1.91
diff -u -r1.90 -r1.91
--- ChangeLog	2 Mar 2014 21:58:44 -0000	1.90
+++ ChangeLog	2 Mar 2014 22:20:58 -0000	1.91
@@ -1,6 +1,9 @@
 # ChangeLog for dev-ruby/facter
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/facter/ChangeLog,v 1.90 2014/03/02 21:58:44 mrueg Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/facter/ChangeLog,v 1.91 2014/03/02 22:20:58 mrueg Exp $
+
+  02 Mar 2014; Manuel Rüger <mrueg@gentoo.org> facter-1.7.5-r1.ebuild:
+  Add test removal back, because not everyone has access to /sys/block
 
 *facter-1.7.5-r1 (02 Mar 2014)
 





^ permalink raw reply	[flat|nested] 3+ messages in thread

* [gentoo-commits] gentoo-x86 commit in dev-ruby/facter: facter-1.7.5-r1.ebuild ChangeLog
@ 2014-03-02 23:46 Manuel Rueger (mrueg)
  0 siblings, 0 replies; 3+ messages in thread
From: Manuel Rueger (mrueg) @ 2014-03-02 23:46 UTC (permalink / raw
  To: gentoo-commits

mrueg       14/03/02 23:46:46

  Modified:             facter-1.7.5-r1.ebuild ChangeLog
  Log:
  Add ruby20 support. Fixes bug #503250
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key )

Revision  Changes    Path
1.3                  dev-ruby/facter/facter-1.7.5-r1.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/facter/facter-1.7.5-r1.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/facter/facter-1.7.5-r1.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/facter/facter-1.7.5-r1.ebuild?r1=1.2&r2=1.3

Index: facter-1.7.5-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/facter/facter-1.7.5-r1.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- facter-1.7.5-r1.ebuild	2 Mar 2014 22:20:58 -0000	1.2
+++ facter-1.7.5-r1.ebuild	2 Mar 2014 23:46:46 -0000	1.3
@@ -1,10 +1,10 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/facter/facter-1.7.5-r1.ebuild,v 1.2 2014/03/02 22:20:58 mrueg Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/facter/facter-1.7.5-r1.ebuild,v 1.3 2014/03/02 23:46:46 mrueg Exp $
 
 EAPI=5
 
-USE_RUBY="ruby19 jruby"
+USE_RUBY="ruby19 ruby20 jruby"
 RUBY_FAKEGEM_TASK_DOC=""
 RUBY_FAKEGEM_RECIPE_TEST="rspec"
 RUBY_FAKEGEM_EXTRADOC="README.md"



1.92                 dev-ruby/facter/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/facter/ChangeLog?rev=1.92&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/facter/ChangeLog?rev=1.92&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/facter/ChangeLog?r1=1.91&r2=1.92

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/facter/ChangeLog,v
retrieving revision 1.91
retrieving revision 1.92
diff -u -r1.91 -r1.92
--- ChangeLog	2 Mar 2014 22:20:58 -0000	1.91
+++ ChangeLog	2 Mar 2014 23:46:46 -0000	1.92
@@ -1,6 +1,9 @@
 # ChangeLog for dev-ruby/facter
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/facter/ChangeLog,v 1.91 2014/03/02 22:20:58 mrueg Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/facter/ChangeLog,v 1.92 2014/03/02 23:46:46 mrueg Exp $
+
+  02 Mar 2014; Manuel Rüger <mrueg@gentoo.org> facter-1.7.5-r1.ebuild:
+  Add ruby20 support. Fixes bug #503250
 
   02 Mar 2014; Manuel Rüger <mrueg@gentoo.org> facter-1.7.5-r1.ebuild:
   Add test removal back, because not everyone has access to /sys/block





^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2014-03-02 23:46 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-03-02 22:20 [gentoo-commits] gentoo-x86 commit in dev-ruby/facter: facter-1.7.5-r1.ebuild ChangeLog Manuel Rueger (mrueg)
  -- strict thread matches above, loose matches on Subject: below --
2014-03-02 23:46 Manuel Rueger (mrueg)
2014-03-02 21:58 Manuel Rueger (mrueg)

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox