Hello community, here is the log from the commit of package cmpi-bindings for openSUSE:Factory checked in at 2014-03-18 13:41:44 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/cmpi-bindings (Old) and /work/SRC/openSUSE:Factory/.cmpi-bindings.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "cmpi-bindings" Changes: -------- --- /work/SRC/openSUSE:Factory/cmpi-bindings/cmpi-bindings.changes 2013-12-22 19:31:19.000000000 +0100 +++ /work/SRC/openSUSE:Factory/.cmpi-bindings.new/cmpi-bindings.changes 2014-03-18 13:41:46.000000000 +0100 @@ -1,0 +2,6 @@ +Wed Feb 5 10:59:36 UTC 2014 - [email protected] + +- Update to 0.9.9 + - Support rdoc from Ruby 2.1 + +------------------------------------------------------------------- Old: ---- cmpi-bindings-0.9.8.tar.bz2 New: ---- cmpi-bindings-0.9.9.tar.bz2 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ cmpi-bindings.spec ++++++ --- /var/tmp/diff_new_pack.cTQ0fv/_old 2014-03-18 13:41:47.000000000 +0100 +++ /var/tmp/diff_new_pack.cTQ0fv/_new 2014-03-18 13:41:47.000000000 +0100 @@ -1,7 +1,7 @@ # # spec file for package cmpi-bindings # -# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany. +# Copyright (c) 2014 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 @@ -20,7 +20,7 @@ Url: http://github.com/kkaempf/cmpi-bindings Name: cmpi-bindings -Version: 0.9.8 +Version: 0.9.9 Release: 0 Summary: Adapter to write and run CMPI-type CIM providers License: BSD-3-Clause and CPL-1.0 @@ -59,7 +59,7 @@ BuildRequires: ruby-rdoc %endif -%if 0%{?fedora} == 19 +%if 0%{?fedora} > 18 BuildRequires: rubypick %endif ++++++ cmpi-bindings-0.9.8.tar.bz2 -> cmpi-bindings-0.9.9.tar.bz2 ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/cmpi-bindings-0.9.8/VERSION.cmake new/cmpi-bindings-0.9.9/VERSION.cmake --- old/cmpi-bindings-0.9.8/VERSION.cmake 2013-12-12 11:39:43.000000000 +0100 +++ new/cmpi-bindings-0.9.9/VERSION.cmake 2014-02-05 11:29:42.000000000 +0100 @@ -1,3 +1,3 @@ SET(VERSION_MAJOR "0") SET(VERSION_MINOR "9") -SET(VERSION_PATCH "8") +SET(VERSION_PATCH "9") diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/cmpi-bindings-0.9.8/package/cmpi-bindings.changes new/cmpi-bindings-0.9.9/package/cmpi-bindings.changes --- old/cmpi-bindings-0.9.8/package/cmpi-bindings.changes 2013-12-12 13:49:12.000000000 +0100 +++ new/cmpi-bindings-0.9.9/package/cmpi-bindings.changes 2014-02-05 11:59:52.000000000 +0100 @@ -1,4 +1,10 @@ ------------------------------------------------------------------- +Wed Feb 5 10:59:36 UTC 2014 - [email protected] + +- Update to 0.9.9 + - Support rdoc from Ruby 2.1 + +------------------------------------------------------------------- Thu Dec 12 12:47:52 UTC 2013 - [email protected] - Update to 0.9.8 diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/cmpi-bindings-0.9.8/swig/cmpi_types.i new/cmpi-bindings-0.9.9/swig/cmpi_types.i --- old/cmpi-bindings-0.9.8/swig/cmpi_types.i 2013-04-11 16:06:06.000000000 +0200 +++ new/cmpi-bindings-0.9.9/swig/cmpi_types.i 2014-02-05 14:11:00.000000000 +0100 @@ -1586,6 +1586,8 @@ } /* * Add entry by name + * call-seq: + * add_entry(name, CMPIValue, CMPIType) */ void add_entry(const char* name, const CMPIValue* data, const CMPIType type) { @@ -1594,6 +1596,8 @@ /* * Get entry by name + * call-seq: + * get_entry(name) -> CMPIData */ CMPIData get_entry(const char* name) { CMPIStatus st = { CMPI_RC_OK, NULL }; @@ -1610,6 +1614,9 @@ /* * Get entry by index or name + * call-seq: + * get_entry_at(index) -> [name, CMPIData] + * [index] -> [name, CMPIData] * * returns a name:string,value:CMPIData pair */ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/cmpi-bindings-0.9.8/swig/ruby/rdoc2.1 new/cmpi-bindings-0.9.9/swig/ruby/rdoc2.1 --- old/cmpi-bindings-0.9.8/swig/ruby/rdoc2.1 1970-01-01 01:00:00.000000000 +0100 +++ new/cmpi-bindings-0.9.9/swig/ruby/rdoc2.1 2014-02-05 10:46:07.000000000 +0100 @@ -0,0 +1,10 @@ +#!/usr/bin/env ruby +require 'rdoc' + +require 'rdoc/encoding' +require 'rdoc/parser' + +# Simple must come first +require 'rdoc/parser/simple' +require File.join(File.dirname(__FILE__),'rdoc_parser_swig') +require File.join(File.dirname(__FILE__),'rdoc2_1') diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/cmpi-bindings-0.9.8/swig/ruby/rdoc2_0.rb new/cmpi-bindings-0.9.9/swig/ruby/rdoc2_0.rb --- old/cmpi-bindings-0.9.8/swig/ruby/rdoc2_0.rb 2013-12-12 11:35:27.000000000 +0100 +++ new/cmpi-bindings-0.9.9/swig/ruby/rdoc2_0.rb 2014-02-05 10:46:38.000000000 +0100 @@ -1,4 +1,4 @@ -#!/usr/bin/ruby1.9 +#!/usr/bin/ruby2.0 # # RDoc: Documentation tool for source code # (see lib/rdoc/rdoc.rb for more information) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/cmpi-bindings-0.9.8/swig/ruby/rdoc2_1.rb new/cmpi-bindings-0.9.9/swig/ruby/rdoc2_1.rb --- old/cmpi-bindings-0.9.8/swig/ruby/rdoc2_1.rb 1970-01-01 01:00:00.000000000 +0100 +++ new/cmpi-bindings-0.9.9/swig/ruby/rdoc2_1.rb 2014-02-05 10:46:29.000000000 +0100 @@ -0,0 +1,40 @@ +#!/usr/bin/ruby +# +# RDoc: Documentation tool for source code +# (see lib/rdoc/rdoc.rb for more information) +# +# Copyright (c) 2003 Dave Thomas +# Released under the same terms as Ruby + +begin + gem 'rdoc' +rescue NameError => e # --disable-gems + raise unless e.name == :gem +rescue Gem::LoadError +end + +require 'rdoc/rdoc' + +begin + r = RDoc::RDoc.new + r.document ARGV +rescue SystemExit + raise +rescue Exception => e + if $DEBUG_RDOC then + $stderr.puts e.message + $stderr.puts "#{e.backtrace.join "\n\t"}" + $stderr.puts + elsif Interrupt === e then + $stderr.puts + $stderr.puts 'Interrupted' + else + $stderr.puts "uh-oh! RDoc had a problem:" + $stderr.puts e.message + $stderr.puts + $stderr.puts "run with --debug for full backtrace" + end + + exit 1 +end + -- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
