commit facter for openSUSE:Factory

2014-10-13 Thread h_root
Hello community,

here is the log from the commit of package facter for openSUSE:Factory checked 
in at 2014-10-14 07:12:16

Comparing /work/SRC/openSUSE:Factory/facter (Old)
 and  /work/SRC/openSUSE:Factory/.facter.new (New)


Package is facter

Changes:

--- /work/SRC/openSUSE:Factory/facter/facter.changes2014-06-27 
06:53:21.0 +0200
+++ /work/SRC/openSUSE:Factory/.facter.new/facter.changes   2014-10-14 
07:13:04.0 +0200
@@ -1,0 +2,6 @@
+Mon Oct  6 16:18:33 UTC 2014 - kstreit...@suse.com
+
+- use ip link instead of ifconfig for retrieving interface names
+  (facter-ip-interface.patch, fixes bnc#878129) 
+
+---

New:

  facter-ip-interface.patch



Other differences:
--
++ facter.spec ++
--- /var/tmp/diff_new_pack.rfZpV2/_old  2014-10-14 07:13:05.0 +0200
+++ /var/tmp/diff_new_pack.rfZpV2/_new  2014-10-14 07:13:05.0 +0200
@@ -25,9 +25,12 @@
 Url:http://puppetlabs.com/puppet/related-projects/facter/
 Source: 
http://downloads.puppetlabs.com/facter/%{name}-%{version}.tar.gz
 Source1:facter.1
+# PATCH-FIX-UPSTREAM -- bnc#878129 -- use ip link instead of ifconfig for 
interface names
+Patch0: facter-ip-interface.patch
 BuildRequires:  ruby
 BuildRequires:  ruby-devel  1.8.4
 Requires:   ruby
+Requires:   iproute2
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
 %description
@@ -39,6 +42,7 @@
 
 %prep
 %setup -q
+%patch0 -p1
 
 %build
 

++ facter-ip-interface.patch ++
Index: facter-2.0.2/lib/facter/util/ip.rb
===
--- facter-2.0.2.orig/lib/facter/util/ip.rb
+++ facter-2.0.2/lib/facter/util/ip.rb
@@ -73,7 +73,10 @@ module Facter::Util::IP
 
   def self.get_all_interface_output
 case Facter.value(:kernel)
-when 'Linux', 'OpenBSD', 'NetBSD', 'FreeBSD', 'Darwin', 'GNU/kFreeBSD', 
'DragonFly'
+when 'Linux'
+  output = Facter::Util::IP.exec_ip([link])
+  output.gsub!(/^\d+:\s*/, ) # delete 
leading number
+when 'OpenBSD', 'NetBSD', 'FreeBSD', 'Darwin', 'GNU/kFreeBSD', 'DragonFly'
   output = Facter::Util::IP.exec_ifconfig([-a,2/dev/null])
 when 'SunOS'
   output = Facter::Util::IP.exec_ifconfig([-a])
@@ -92,6 +95,13 @@ module Facter::Util::IP
 
 
   ##
+  # exec_ip uses the Linux ip command
+  #
+  # @return [String] the output of `ip #{arguments} 2/dev/null` or nil
+  def self.exec_ip(additional_arguments=[])
+Facter::Core::Execution.exec(/bin/ip #{additional_arguments.join(' ')})
+  end
+  ##
   # exec_ifconfig uses the ifconfig command
   #
   # @return [String] the output of `ifconfig #{arguments} 2/dev/null` or nil
-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit facter for openSUSE:Factory

2014-06-26 Thread h_root
Hello community,

here is the log from the commit of package facter for openSUSE:Factory checked 
in at 2014-06-27 06:53:18

Comparing /work/SRC/openSUSE:Factory/facter (Old)
 and  /work/SRC/openSUSE:Factory/.facter.new (New)


Package is facter

Changes:

--- /work/SRC/openSUSE:Factory/facter/facter.changes2014-05-17 
21:43:38.0 +0200
+++ /work/SRC/openSUSE:Factory/.facter.new/facter.changes   2014-06-27 
06:53:21.0 +0200
@@ -1,0 +2,7 @@
+Thu Jun 26 13:47:03 UTC 2014 - vdziewie...@suse.com
+
+- Update to 2.0.2: fix CVE-2014-3248 (An attacker could convince
+an administrator to unknowingly execute malicious code on platforms
+with Ruby 1.9.1 and earlier) 
+
+---

Old:

  facter-2.0.1.tar.gz

New:

  facter-2.0.2.tar.gz



Other differences:
--
++ facter.spec ++
--- /var/tmp/diff_new_pack.B9jL32/_old  2014-06-27 06:53:22.0 +0200
+++ /var/tmp/diff_new_pack.B9jL32/_new  2014-06-27 06:53:22.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   facter
-Version:2.0.1
+Version:2.0.2
 Release:0
 Summary:A cross-platform Ruby library for retrieving facts from 
operating systems
 License:Apache-2.0

++ facter-2.0.1.tar.gz - facter-2.0.2.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/facter-2.0.1/bin/facter new/facter-2.0.2/bin/facter
--- old/facter-2.0.1/bin/facter 2014-04-01 19:23:03.0 +0200
+++ new/facter-2.0.2/bin/facter 2014-06-06 20:02:18.0 +0200
@@ -1,5 +1,9 @@
 #!/usr/bin/env ruby
 
+# For security reasons, ensure that '.' is not on the load path
+# This is primarily for 1.8.7 since 1.9.2+ doesn't put '.' on the load path
+$LOAD_PATH.delete '.'
+
 # Bundler and rubygems maintain a set of directories from which to
 # load gems. If Bundler is loaded, let it determine what can be
 # loaded. If it's not loaded, then use rubygems. But do this before
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/facter-2.0.1/ext/build_defaults.yaml 
new/facter-2.0.2/ext/build_defaults.yaml
--- old/facter-2.0.1/ext/build_defaults.yaml2014-04-01 19:23:03.0 
+0200
+++ new/facter-2.0.2/ext/build_defaults.yaml2014-06-06 20:02:18.0 
+0200
@@ -2,7 +2,7 @@
 packaging_url: 'git://github.com/puppetlabs/packaging.git --branch=master'
 packaging_repo: 'packaging'
 default_cow: 'base-squeeze-i386.cow'
-cows: 'base-lucid-i386.cow base-lucid-amd64.cow base-precise-i386.cow 
base-precise-amd64.cow base-quantal-i386.cow base-quantal-amd64.cow 
base-raring-i386.cow base-raring-amd64.cow base-saucy-i386.cow 
base-saucy-amd64.cow base-sid-i386.cow base-sid-amd64.cow base-squeeze-i386.cow 
base-squeeze-amd64.cow base-stable-i386.cow base-stable-amd64.cow 
base-testing-i386.cow base-testing-amd64.cow base-trusty-i386.cow 
base-trusty-amd64.cow base-unstable-i386.cow base-unstable-amd64.cow 
base-wheezy-i386.cow base-wheezy-amd64.cow'
+cows: 'base-lucid-i386.cow base-lucid-amd64.cow base-precise-i386.cow 
base-precise-amd64.cow base-quantal-i386.cow base-quantal-amd64.cow 
base-saucy-i386.cow base-saucy-amd64.cow base-sid-i386.cow base-sid-amd64.cow 
base-squeeze-i386.cow base-squeeze-amd64.cow base-stable-i386.cow 
base-stable-amd64.cow base-testing-i386.cow base-testing-amd64.cow 
base-trusty-i386.cow base-trusty-amd64.cow base-unstable-i386.cow 
base-unstable-amd64.cow base-wheezy-i386.cow base-wheezy-amd64.cow'
 pbuild_conf: '/etc/pbuilderrc'
 packager: 'puppetlabs'
 gpg_name: 'i...@puppetlabs.com'
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/facter-2.0.1/ext/debian/changelog 
new/facter-2.0.2/ext/debian/changelog
--- old/facter-2.0.1/ext/debian/changelog   2014-04-01 19:23:07.0 
+0200
+++ new/facter-2.0.2/ext/debian/changelog   2014-06-06 20:02:21.0 
+0200
@@ -1,8 +1,8 @@
-facter (2.0.1-1puppetlabs1) lucid unstable sid wheezy lucid squeeze precise 
quantal raring; urgency=low
+facter (2.0.2-1puppetlabs1) lucid unstable sid wheezy lucid squeeze precise 
quantal raring; urgency=low
 
   * Update to version 
 
- -- Puppet Labs Release i...@puppetlabs.com  Tue, 01 Apr 2014 10:23:07 -0700
+ -- Puppet Labs Release i...@puppetlabs.com  Fri, 06 Jun 2014 11:02:21 -0700
 
 facter (1.7.2-1puppetlabs2) lucid unstable sid wheezy lucid squeeze precise; 
urgency=low
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/facter-2.0.1/ext/ips/facter.p5m 
new/facter-2.0.2/ext/ips/facter.p5m
--- old/facter-2.0.1/ext/ips/facter.p5m 2014-04-01 19:23:07.0 +0200
+++ new/facter-2.0.2/ext/ips/facter.p5m 2014-06-06 

commit facter for openSUSE:Factory

2014-05-17 Thread h_root
Hello community,

here is the log from the commit of package facter for openSUSE:Factory checked 
in at 2014-05-17 21:43:37

Comparing /work/SRC/openSUSE:Factory/facter (Old)
 and  /work/SRC/openSUSE:Factory/.facter.new (New)


Package is facter

Changes:

--- /work/SRC/openSUSE:Factory/facter/facter.changes2013-10-30 
15:29:10.0 +0100
+++ /work/SRC/openSUSE:Factory/.facter.new/facter.changes   2014-05-17 
21:43:38.0 +0200
@@ -1,0 +2,13 @@
+Wed Apr  9 15:15:07 CEST 2014 - mhruse...@suse.cz
+
+- Facter is now building back from tarballl
+- Update to version 2.0.1, see
+  * http://docs.puppetlabs.com/facter/1.7/release_notes.html
+  * http://docs.puppetlabs.com/facter/2.0/release_notes.html
+
+---
+Thu Nov  7 15:58:07 UTC 2013 - vdziewie...@suse.com
+
+- Facter now builds from a rubygem. 
+
+---

Old:

  facter-1.7.3.tar.gz

New:

  facter-2.0.1.tar.gz



Other differences:
--
++ facter.spec ++
--- /var/tmp/diff_new_pack.vLtLY9/_old  2014-05-17 21:43:39.0 +0200
+++ /var/tmp/diff_new_pack.vLtLY9/_new  2014-05-17 21:43:39.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   facter
-Version:1.7.3
+Version:2.0.1
 Release:0
 Summary:A cross-platform Ruby library for retrieving facts from 
operating systems
 License:Apache-2.0

++ facter-1.7.3.tar.gz - facter-2.0.1.tar.gz ++
 14747 lines of diff (skipped)

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit facter for openSUSE:Factory

2013-10-30 Thread h_root
Hello community,

here is the log from the commit of package facter for openSUSE:Factory checked 
in at 2013-10-30 15:29:08

Comparing /work/SRC/openSUSE:Factory/facter (Old)
 and  /work/SRC/openSUSE:Factory/.facter.new (New)


Package is facter

Changes:

--- /work/SRC/openSUSE:Factory/facter/facter.changes2013-08-04 
16:48:42.0 +0200
+++ /work/SRC/openSUSE:Factory/.facter.new/facter.changes   2013-10-30 
15:29:10.0 +0100
@@ -1,0 +2,55 @@
+Thu Oct 24 13:36:05 UTC 2013 - mrueck...@suse.de
+
+- update to 1.7.3
+  Merge pull request #520 from 
joshcooper/ticket/stable/12116_first_non_nil_dnsdomain
+  (#12116) Don't break on the first interface
+  Merge remote-tracking branch 'rob/fix/stable/12116_domain_errors_windows' 
into stable
+  (#12116) Windows domain/fqdn error when no domain
+  Merge pull request #515 from 
melissaanne/maint/stable/re-144_rm-hardcoded-dependencies
+  (Bug #22163) remove hardcoded hostname dependencies
+  Merge pull request #508 from ferventcoder/fix/21738/win_external_facts
+  maint: Refactor Key Value Output Parsers
+  (#21738) Add .cmd / Update PowerShell parser
+  (#21738) Revert (#2157) Remove support for executable external facts on 
Windows
+  Maint: Clear memory facts now that they are loaded earlier
+  Maint: Don't output No facts loaded from during tests
+  Merge branch 'ticket/stable/16668-wmi-ipaddress-facts' into stable
+  (#16668) Backport WMI changes to per-interface facts
+  (#16668) Ipv6 remove warning
+  (#16668) Only consider NICs that have a binding entry
+  maint: adding lib to spec path in spec helper
+  (#16668) added windows network spec helper
+  Maint: Update yardocs
+  (#16668) Support IPv6 adapter binding order
+  Maint: Simplify how interfaces are enumerated
+  (#16665) Remove references to netsh
+  (#21518) Use WMI to collect per-interface facts
+  (#16668) Use WMI to collect IPv6 address
+  (#16668) Use WMI to collect macaddress fact
+  (#16668) Use WMI to collect netmask fact
+  (#16668) Use WMI to collect IPv4 address
+  Maint: Don't load facts twice during specs
+  Merge branch 'pull-476' into stable
+  (maint) Stub extraneous facts when testing ifconfig
+  (refactor) Simplify ipaddress fact specs
+  ip address fact that return full ifconfig output
+  Merge pull request #480 from melissaanne/maint/stable/re-47_f19-updates
+  (Bug #21762) Update facter to support F19
+  Merge pull request #490 from haus/remove_createpackage_sh
+  (packaging) Remove PackageInfo.plist, it is no longer used by packaging.
+  Merge pull request #492 from ferventcoder/maint/stable/ignore_gemfile_local
+  (Maint) Ignore Gemfile.local
+  (packaging) Remove createpackage.sh from facter
+  Merge pull request #477 from haus/maint/stable/packaging_fixes
+  (packaging) Update changelog template with currently supported debian/ubuntu 
dists.
+  (maint) Remove openssl dependencies from debian/control file
+  (maint) Clean up install.rb dependencies
+  Merge pull request #470 from joshcooper/ticket/stable/21533-facter-stderr
+  Merge pull request #475 from 
jpartlow/maint/stable/virtual_and_facter_spec_order_fix
+  Merge branch 'pull-468' into stable
+  (#21533) Convert network data to string before access
+  (maint) Update README with a little bit of spec info.
+  (maint) Rakefile loads all the libraries it can.
+  (maint) Fix mocha expectations crashing facter_spec
+
+---

Old:

  facter-1.7.2.tar.gz

New:

  facter-1.7.3.tar.gz



Other differences:
--
++ facter.spec ++
--- /var/tmp/diff_new_pack.KwdAhS/_old  2013-10-30 15:29:10.0 +0100
+++ /var/tmp/diff_new_pack.KwdAhS/_new  2013-10-30 15:29:10.0 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   facter
-Version:1.7.2
+Version:1.7.3
 Release:0
 Summary:A cross-platform Ruby library for retrieving facts from 
operating systems
 License:Apache-2.0

++ facter-1.7.2.tar.gz - facter-1.7.3.tar.gz ++
 2491 lines of diff (skipped)

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit facter for openSUSE:Factory

2013-05-06 Thread h_root
Hello community,

here is the log from the commit of package facter for openSUSE:Factory checked 
in at 2013-05-06 09:03:39

Comparing /work/SRC/openSUSE:Factory/facter (Old)
 and  /work/SRC/openSUSE:Factory/.facter.new (New)


Package is facter

Changes:

--- /work/SRC/openSUSE:Factory/facter/facter.changes2013-01-07 
15:07:57.0 +0100
+++ /work/SRC/openSUSE:Factory/.facter.new/facter.changes   2013-05-06 
09:03:42.0 +0200
@@ -1,0 +2,12 @@
+Wed Mar 27 18:06:10 UTC 2013 - bo...@steki.net
+
+- updatet to latest upstream version 1.6.18
+- bugfixes:
+  * Unify ifconfig usage and lookup ifconfig path to fix
+support for recent net-tools
+  * Add missing require for macaddress
+  * Call correct function on IP in NetMask
+  ** more information at
+ http://projects.puppetlabs.com/projects/facter/wiki#Facter-1618
+
+---

Old:

  facter-1.6.17.tar.gz

New:

  facter-1.6.18.tar.gz



Other differences:
--
++ facter.spec ++
--- /var/tmp/diff_new_pack.Kk5bSA/_old  2013-05-06 09:03:43.0 +0200
+++ /var/tmp/diff_new_pack.Kk5bSA/_new  2013-05-06 09:03:43.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   facter
-Version:1.6.17
+Version:1.6.18
 Release:0
 Summary:A cross-platform Ruby library for retrieving facts from 
operating systems
 License:Apache-2.0

++ facter-1.6.17.tar.gz - facter-1.6.18.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/facter-1.6.17/Gemfile new/facter-1.6.18/Gemfile
--- old/facter-1.6.17/Gemfile   2012-09-20 20:54:17.0 +0200
+++ new/facter-1.6.18/Gemfile   2013-03-13 19:17:44.0 +0100
@@ -1,14 +1,20 @@
-source :rubygems
+source https://rubygems.org;
 
-gemspec
+group :development do
+  gem 'watchr'
+end
 
-group(:development, :test) do
-  gem rspec, ~ 2.10.0, :require = false
-  gem mocha, ~ 0.10.5, :require = false
+group :development, :test do
+  gem 'rake'
+  gem 'facter', = 1.0.0, :path = File.expand_path(.., __FILE__), 
:require = false
+  gem 'rspec', ~ 2.11.0, :require = false
+  gem 'mocha', ~ 0.10.5, :require = false
+  gem 'json', ~ 1.7, :require = false
+  gem 'puppetlabs_spec_helper', :require = false
 end
 
 if File.exists? #{__FILE__}.local
   eval(File.read(#{__FILE__}.local), binding)
 end
 
-# vim:filetype=ruby
+# vim:ft=ruby
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/facter-1.6.17/Gemfile.lock 
new/facter-1.6.18/Gemfile.lock
--- old/facter-1.6.17/Gemfile.lock  2012-09-20 20:54:17.0 +0200
+++ new/facter-1.6.18/Gemfile.lock  1970-01-01 01:00:00.0 +0100
@@ -1,28 +0,0 @@
-PATH
-  remote: .
-  specs:
-facter (1.6.11)
-
-GEM
-  remote: http://rubygems.org/
-  specs:
-diff-lcs (1.1.3)
-metaclass (0.0.1)
-mocha (0.10.5)
-  metaclass (~ 0.0.1)
-rspec (2.10.0)
-  rspec-core (~ 2.10.0)
-  rspec-expectations (~ 2.10.0)
-  rspec-mocks (~ 2.10.0)
-rspec-core (2.10.1)
-rspec-expectations (2.10.0)
-  diff-lcs (~ 1.1.3)
-rspec-mocks (2.10.1)
-
-PLATFORMS
-  ruby
-
-DEPENDENCIES
-  facter!
-  mocha (~ 0.10.5)
-  rspec (~ 2.10.0)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/facter-1.6.17/README.md new/facter-1.6.18/README.md
--- old/facter-1.6.17/README.md 2012-12-27 19:05:11.0 +0100
+++ new/facter-1.6.18/README.md 2013-03-13 19:17:44.0 +0100
@@ -11,12 +11,14 @@
 Running Facter
 --
 
-Run the `facter` binary on the command for a full list of facts supported on 
your host.
+Run the `facter` binary on the command for a full list of facts supported on
+your host.
 
 Adding your own facts
 -
 
-See the [Adding Facts](http://docs.puppetlabs.com/guides/custom_facts.html) 
page for details of how to add your own custom facts to Facter.
+See the [Adding Facts](http://docs.puppetlabs.com/guides/custom_facts.html)
+page for details of how to add your own custom facts to Facter.
 
 Further Information
 ---
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/facter-1.6.17/ext/build_defaults.yaml 
new/facter-1.6.18/ext/build_defaults.yaml
--- old/facter-1.6.17/ext/build_defaults.yaml   2012-12-27 19:04:04.0 
+0100
+++ new/facter-1.6.18/ext/build_defaults.yaml   2013-03-13 19:17:44.0 
+0100
@@ -2,15 +2,14 @@
 packaging_url: 'git://github.com/puppetlabs/packaging.git --branch=master'
 packaging_repo: 'packaging'
 default_cow: 'base-squeeze-i386.cow'
-cows: 'base-lucid-i386.cow base-natty-i386.cow base-oneiric-i386.cow 
base-precise-i386.cow 

commit facter for openSUSE:Factory

2013-01-07 Thread h_root
Hello community,

here is the log from the commit of package facter for openSUSE:Factory checked 
in at 2013-01-07 15:07:54

Comparing /work/SRC/openSUSE:Factory/facter (Old)
 and  /work/SRC/openSUSE:Factory/.facter.new (New)


Package is facter, Maintainer is vci...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/facter/facter.changes2012-11-12 
11:41:57.0 +0100
+++ /work/SRC/openSUSE:Factory/.facter.new/facter.changes   2013-01-07 
15:07:57.0 +0100
@@ -1,0 +2,10 @@
+Sat Jan  5 14:19:34 UTC 2013 - bo...@steki.net
+
+- updated to latest upstream version 1.6.17
+  * Use enum_cpuinfo for x86 archUse enum_cpuinfo for x86 arch
+  * ifconfig regex will optionally match 'addr:'
+  * Fix ec2_userdata: 404 Not Found Error
+  * Fix handling of bonded Linux interfaces
+  ** read more here http://projects.puppetlabs.com/projects/facter/wiki
+
+---

Old:

  facter-1.6.14.tar.gz

New:

  facter-1.6.17.tar.gz



Other differences:
--
++ facter.spec ++
--- /var/tmp/diff_new_pack.vLXjn1/_old  2013-01-07 15:07:58.0 +0100
+++ /var/tmp/diff_new_pack.vLXjn1/_new  2013-01-07 15:07:58.0 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   facter
-Version:1.6.14
+Version:1.6.17
 Release:0
 Summary:A cross-platform Ruby library for retrieving facts from 
operating systems
 License:Apache-2.0

++ facter-1.6.14.tar.gz - facter-1.6.17.tar.gz ++
 4030 lines of diff (skipped)

++ facter.1 ++
--- /var/tmp/diff_new_pack.vLXjn1/_old  2013-01-07 15:07:58.0 +0100
+++ /var/tmp/diff_new_pack.vLXjn1/_new  2013-01-07 15:07:58.0 +0100
@@ -1,4 +1,4 @@
-.TH FACTER 1 September 2012  User Commands
+.TH FACTER 1   User Commands
 .SH NAME
 facter \- manual page for facter 
 .

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit facter for openSUSE:Factory

2012-11-12 Thread h_root
Hello community,

here is the log from the commit of package facter for openSUSE:Factory checked 
in at 2012-11-12 11:41:47

Comparing /work/SRC/openSUSE:Factory/facter (Old)
 and  /work/SRC/openSUSE:Factory/.facter.new (New)


Package is facter, Maintainer is vci...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/facter/facter.changes2012-10-29 
20:02:37.0 +0100
+++ /work/SRC/openSUSE:Factory/.facter.new/facter.changes   2012-11-12 
11:41:57.0 +0100
@@ -1,0 +2,7 @@
+Sat Nov  3 18:26:43 UTC 2012 - abo...@gmail.com
+
+- Updated to latest upstream 1.6.14
+  * maintenance release in the 1.6.x branch with bug fixes.
+- Updated the man 1 page changed year
+
+---

Old:

  facter-1.6.13.tar.gz

New:

  facter-1.6.14.tar.gz



Other differences:
--
++ facter.spec ++
--- /var/tmp/diff_new_pack.t6wh6T/_old  2012-11-12 11:41:58.0 +0100
+++ /var/tmp/diff_new_pack.t6wh6T/_new  2012-11-12 11:41:58.0 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   facter
-Version:1.6.13
+Version:1.6.14
 Release:0
 Summary:A cross-platform Ruby library for retrieving facts from 
operating systems
 License:Apache-2.0

++ facter-1.6.13.tar.gz - facter-1.6.14.tar.gz ++
 1758 lines of diff (skipped)

++ facter.1 ++
--- /var/tmp/diff_new_pack.t6wh6T/_old  2012-11-12 11:41:58.0 +0100
+++ /var/tmp/diff_new_pack.t6wh6T/_new  2012-11-12 11:41:58.0 +0100
@@ -1,6 +1,7 @@
-.TH FACTER 1 September 2011  User Commands
+.TH FACTER 1 September 2012  User Commands
 .SH NAME
 facter \- manual page for facter 
+.
 .SH SYNOPSYS
 Collect and display facts about the system.
 .SH USAGE

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit facter for openSUSE:Factory

2012-08-12 Thread h_root
Hello community,

here is the log from the commit of package facter for openSUSE:Factory checked 
in at 2012-08-12 15:24:34

Comparing /work/SRC/openSUSE:Factory/facter (Old)
 and  /work/SRC/openSUSE:Factory/.facter.new (New)


Package is facter, Maintainer is vci...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/facter/facter.changes2012-06-26 
15:18:44.0 +0200
+++ /work/SRC/openSUSE:Factory/.facter.new/facter.changes   2012-08-12 
15:24:43.0 +0200
@@ -1,0 +2,16 @@
+Wed Aug  8 22:17:55 UTC 2012 - bo...@steki.net
+
+- Updated to latest upstream 1.6.11
+  * Add build-requires of ruby-rdoc for manpage generation
+  * Selinux: Test for policyvers before reading it
+  * Return only one selinuxfs path as string from mounts
+  * Update version nos to match Facter development
+  * Modify facter spec to work with Ruby 1.9
+ 
+
+---
+Tue Jul  3 18:47:23 UTC 2012 - ja...@suse.de
+
+- Copy package from devel:openSUSE:Factory
+
+---

Old:

  facter-1.6.10.tar.gz

New:

  facter-1.6.11.tar.gz



Other differences:
--
++ facter.spec ++
--- /var/tmp/diff_new_pack.H6gu24/_old  2012-08-12 15:24:47.0 +0200
+++ /var/tmp/diff_new_pack.H6gu24/_new  2012-08-12 15:24:47.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   facter
-Version:1.6.10
+Version:1.6.11
 Release:0
 Summary:A cross-platform Ruby library for retrieving facts from 
operating systems
 License:Apache-2.0

++ facter-1.6.10.tar.gz - facter-1.6.11.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/facter-1.6.10/CHANGELOG new/facter-1.6.11/CHANGELOG
--- old/facter-1.6.10/CHANGELOG 2012-06-14 02:06:32.0 +0200
+++ new/facter-1.6.11/CHANGELOG 2012-08-08 23:40:13.0 +0200
@@ -1,3 +1,12 @@
+1.6.11
+===
+f75e46e Add build-requires of ruby-rdoc for manpage generation
+e9e084f (Maint) Update CONTRIBUTING.md to match Puppet
+841b99a (#15687) Selinux: Test for policyvers before reading it
+10aa3aa (#15049) Return only one selinuxfs path as string from mounts
+f7f90e4 Update version nos to match Facter development
+ab87a2c Modify facter spec to work with Ruby 1.9
+
 1.6.10
 ===
 35067dc Bump Facter epoch to 1
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/facter-1.6.10/CONTRIBUTING.md 
new/facter-1.6.11/CONTRIBUTING.md
--- old/facter-1.6.10/CONTRIBUTING.md   2012-06-14 02:06:32.0 +0200
+++ new/facter-1.6.11/CONTRIBUTING.md   2012-08-08 23:40:13.0 +0200
@@ -1,88 +1,84 @@
-Checklist (and a short version for the impatient)
+Checklist/Outline (The short version)
 =
 
-  * Commits:
-
-- Make commits of logical units.
-
-- Check for unnecessary whitespace with git diff --check before
-  committing.
-
-- Commit using Unix line endings (check the settings around crlf in
-  git-config(1)).
-
-- Do not check in commented out code or unneeded files.
-
-- The first line of the commit message should be a short
-  description (50 characters is the soft limit, excluding ticket
-  number(s)), and should skip the full stop.
-
-- If there is an associated Redmine ticket then the first line
-  should include the ticket number in the form (#) Rest of
-  message.
-
-- The body should provide a meaningful commit message, which:
-
-  - uses the imperative, present tense: change, not changed or
-changes.
-
-  - includes motivation for the change, and contrasts its
-implementation with the previous behavior.
-
-- Make sure that you have tests for the bug you are fixing, or
-  feature you are adding.
-
-- Make sure the test suite passes after your commit (rake spec unit).
-
-  * Submission:
-
-* Pre-requisites:
-
-  - Make sure you have a [Redmine account](http://projects.puppetlabs.com)
-
-  - Sign the [Contributor License 
Agreement](https://projects.puppetlabs.com/contributor_licenses/sign)
-
-* Preferred method:
-
-  - Fork the repository on GitHub.
-
-  - Push your changes to a topic branch in your fork of the
-repository.
-
-  - Submit a pull request to the repository in the puppetlabs
-organization.
-
-* Alternate methods:
-
-  - Mail patches to puppet-dev mailing list using `rake mail_patches`,
-or `git-format-patch(1)`  `git-send-email(1)`.
-
-  - Attach patches to Redmine ticket.
-
+  * Getting Started: 
+- Make sure you have a [Redmine account](http://projects.puppetlabs.com)
+- Submit a 

commit facter for openSUSE:Factory

2012-06-26 Thread h_root
Hello community,

here is the log from the commit of package facter for openSUSE:Factory checked 
in at 2012-06-26 15:18:42

Comparing /work/SRC/openSUSE:Factory/facter (Old)
 and  /work/SRC/openSUSE:Factory/.facter.new (New)


Package is facter, Maintainer is vci...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/facter/facter.changes2012-06-13 
22:24:40.0 +0200
+++ /work/SRC/openSUSE:Factory/.facter.new/facter.changes   2012-06-26 
15:18:44.0 +0200
@@ -1,0 +2,11 @@
+Thu Jun 14 22:22:13 UTC 2012 - bo...@steki.net
+
+- updated to upstream 1.6.10
+  * Wrap dmidecode/pciutils in ifarch block
+  * Change count to length for compatibility
+  * Macaddress spec test needed operatingsystem fact
+  * a lot of bugfixes read /usr/share/doc/packages/facter/CHANGELOG
+for more information 
+ 
+
+---

Old:

  facter-1.6.0.tar.gz

New:

  facter-1.6.10.tar.gz



Other differences:
--
++ facter.spec ++
--- /var/tmp/diff_new_pack.OY95I1/_old  2012-06-26 15:18:47.0 +0200
+++ /var/tmp/diff_new_pack.OY95I1/_new  2012-06-26 15:18:47.0 +0200
@@ -17,12 +17,12 @@
 
 
 Name:   facter
-Version:1.6.0
+Version:1.6.10
 Release:0
 Summary:A cross-platform Ruby library for retrieving facts from 
operating systems
 License:Apache-2.0
 Group:  Development/Languages/Ruby
-Url:http://www.reductivelabs.com/downloads/facter/
+Url:http://puppetlabs.com/puppet/related-projects/facter/
 Source: 
http://downloads.puppetlabs.com/facter/%{name}-%{version}.tar.gz
 Source1:facter.1
 BuildRequires:  ruby
@@ -44,7 +44,7 @@
 
 %install
 DESTDIR=%{buildroot} ruby install.rb install --destdir=%{buildroot} 
--sitelibdir=%{_libdir}/ruby/vendor_ruby/%{rb_ver}
-install -Dm0644 %{S:1} %{buildroot}%{_mandir}/man1/facter.1
+install -Dm0644 %{SOURCE1} %{buildroot}%{_mandir}/man1/facter.1
 
 %files
 %defattr(-,root,root,-)
@@ -54,5 +54,6 @@
 %{_libdir}/ruby/vendor_ruby/%{rb_ver}/facter/*
 %{_bindir}/facter
 %{_mandir}/man1/facter.1*
+%{_mandir}/man8/facter.8*
 
 %changelog

++ facter-1.6.0.tar.gz - facter-1.6.10.tar.gz ++
 19506 lines of diff (skipped)

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit facter for openSUSE:Factory

2012-06-13 Thread h_root
Hello community,

here is the log from the commit of package facter for openSUSE:Factory checked 
in at 2012-06-13 22:23:33

Comparing /work/SRC/openSUSE:Factory/facter (Old)
 and  /work/SRC/openSUSE:Factory/.facter.new (New)


Package is facter, Maintainer is vci...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/facter/facter.changes2011-09-23 
01:57:15.0 +0200
+++ /work/SRC/openSUSE:Factory/.facter.new/facter.changes   2012-06-13 
22:24:40.0 +0200
@@ -1,0 +2,6 @@
+Wed Jun 13 10:22:15 UTC 2012 - co...@suse.com
+
+- no need for vendor-specific
+- use original tar (pretty outdated though)
+
+---

Old:

  facter-1.6.0.tar.bz2

New:

  facter-1.6.0.tar.gz



Other differences:
--
++ facter.spec ++
--- /var/tmp/diff_new_pack.nPWGN0/_old  2012-06-13 22:24:41.0 +0200
+++ /var/tmp/diff_new_pack.nPWGN0/_new  2012-06-13 22:24:41.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package facter
 #
-# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -16,15 +16,14 @@
 #
 
 
-
 Name:   facter
 Version:1.6.0
-Release:1
-License:Apache-2.0
+Release:0
 Summary:A cross-platform Ruby library for retrieving facts from 
operating systems
-Url:http://www.reductivelabs.com/downloads/facter/
+License:Apache-2.0
 Group:  Development/Languages/Ruby
-Source: 
http://downloads.puppetlabs.com/facter/%{name}-%{version}.tar.bz2
+Url:http://www.reductivelabs.com/downloads/facter/
+Source: 
http://downloads.puppetlabs.com/facter/%{name}-%{version}.tar.gz
 Source1:facter.1
 BuildRequires:  ruby
 BuildRequires:  ruby-devel  1.8.4
@@ -44,12 +43,9 @@
 %build
 
 %install
-DESTDIR=%{buildroot} ruby -rvendor-specific install.rb install 
--prefix=%{buildroot}
+DESTDIR=%{buildroot} ruby install.rb install --destdir=%{buildroot} 
--sitelibdir=%{_libdir}/ruby/vendor_ruby/%{rb_ver}
 install -Dm0644 %{S:1} %{buildroot}%{_mandir}/man1/facter.1
 
-%clean
-rm -rf %{buildroot}
-
 %files
 %defattr(-,root,root,-)
 %doc CHANGELOG LICENSE README.md

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit facter for openSUSE:Factory

2011-12-06 Thread h_root
Hello community,

here is the log from the commit of package facter for openSUSE:Factory checked 
in at 2011-12-06 18:08:59

Comparing /work/SRC/openSUSE:Factory/facter (Old)
 and  /work/SRC/openSUSE:Factory/.facter.new (New)


Package is facter, Maintainer is vci...@suse.com

Changes:




Other differences:
--
++ facter.spec ++
--- /var/tmp/diff_new_pack.wGleGB/_old  2011-12-06 18:14:22.0 +0100
+++ /var/tmp/diff_new_pack.wGleGB/_new  2011-12-06 18:14:22.0 +0100
@@ -20,7 +20,7 @@
 Name:   facter
 Version:1.6.0
 Release:1
-License:ASLv2.0
+License:Apache-2.0
 Summary:A cross-platform Ruby library for retrieving facts from 
operating systems
 Url:http://www.reductivelabs.com/downloads/facter/
 Group:  Development/Languages/Ruby

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit facter for openSUSE:Factory

2011-09-19 Thread h_root

Hello community,

here is the log from the commit of package facter for openSUSE:Factory
checked in at Mon Sep 19 16:52:56 CEST 2011.




--- facter/facter.changes   2010-09-07 13:13:57.0 +0200
+++ /mounts/work_src_done/STABLE/facter/facter.changes  2011-06-30 
01:41:26.0 +0200
@@ -1,0 +2,7 @@
+Wed Jun 29 23:36:24 UTC 2011 - bo...@steki.net
+
+- update to 1.6.0
+ * Moved to Apache 2.0 license
+ * bugfixes 
+
+---

calling whatdependson for head-i586


Old:

  facter-1.5.8.tar.bz2

New:

  facter-1.6.0.tar.bz2
  facter.1



Other differences:
--
++ facter.spec ++
--- /var/tmp/diff_new_pack.AXcvRu/_old  2011-09-19 16:52:53.0 +0200
+++ /var/tmp/diff_new_pack.AXcvRu/_new  2011-09-19 16:52:53.0 +0200
@@ -1,7 +1,7 @@
 #
-# spec file for package facter (Version 1.5.8)
+# spec file for package facter
 #
-# Copyright (c) 2010 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -18,16 +18,17 @@
 
 
 Name:   facter
-Version:1.5.8
+Version:1.6.0
 Release:1
-AutoReqProv:on
-Group:  Development/Languages/Ruby
-License:GPLv2+
-Url:http://www.reductivelabs.com/downloads/facter/ 
+License:ASLv2.0
 Summary:A cross-platform Ruby library for retrieving facts from 
operating systems
-Source: %{name}-%{version}.tar.bz2
-Requires:   ruby
+Url:http://www.reductivelabs.com/downloads/facter/
+Group:  Development/Languages/Ruby
+Source: 
http://downloads.puppetlabs.com/facter/%{name}-%{version}.tar.bz2
+Source1:facter.1
 BuildRequires:  ruby
+BuildRequires:  ruby-devel  1.8.4
+Requires:   ruby
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
 %description
@@ -37,25 +38,25 @@
 environments. Facter is especially useful for retrieving things like
 operating system names, IP addresses, MAC addresses, and SSH keys.
 
-
-
 %prep
 %setup -q
 
 %build
 
 %install
-DESTDIR=$RPM_BUILD_ROOT ruby -rvendor-specific install.rb install 
--prefix=%{buildroot} 
+DESTDIR=%{buildroot} ruby -rvendor-specific install.rb install 
--prefix=%{buildroot}
+install -Dm0644 %{S:1} %{buildroot}%{_mandir}/man1/facter.1
 
 %clean
-rm -rf $RPM_BUILD_ROOT
+rm -rf %{buildroot}
 
 %files
 %defattr(-,root,root,-)
-%doc CHANGELOG  COPYING INSTALL LICENSE README  TODO
+%doc CHANGELOG LICENSE README.md
 %dir %{_libdir}/ruby/vendor_ruby/%{rb_ver}/facter
 %{_libdir}/ruby/vendor_ruby/%{rb_ver}/facter.rb
 %{_libdir}/ruby/vendor_ruby/%{rb_ver}/facter/*
 %{_bindir}/facter
+%{_mandir}/man1/facter.1*
 
 %changelog

++ facter-1.5.8.tar.bz2 - facter-1.6.0.tar.bz2 ++
 9745 lines of diff (skipped)

++ facter-1.5.8.tar.bz2 - facter.1 ++
Files facter/facter-1.5.8.tar.bz2 and 
/mounts/work_src_done/STABLE/facter/facter.1 differ






Remember to have fun...

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org