commit rubygem-coderay for openSUSE:Factory

2020-06-27 Thread root
Hello community,

here is the log from the commit of package rubygem-coderay for openSUSE:Factory 
checked in at 2020-06-27 23:24:08

Comparing /work/SRC/openSUSE:Factory/rubygem-coderay (Old)
 and  /work/SRC/openSUSE:Factory/.rubygem-coderay.new.3060 (New)


Package is "rubygem-coderay"

Sat Jun 27 23:24:08 2020 rev:13 rq:817425 version:1.1.3

Changes:

--- /work/SRC/openSUSE:Factory/rubygem-coderay/rubygem-coderay.changes  
2017-09-12 19:57:27.577658173 +0200
+++ 
/work/SRC/openSUSE:Factory/.rubygem-coderay.new.3060/rubygem-coderay.changes
2020-06-27 23:24:15.134152096 +0200
@@ -1,0 +2,10 @@
+Sat Jun 27 18:36:11 UTC 2020 - Manuel Schnitzer 
+
+- updated to version 1.1.3
+
+  * Tokens: Ensure Ruby 2.6 compatibility. [#233, thanks to Jun Aruga]
+  * SQL scanner: Add numeric data type. [#223, thanks to m16a1]
+  * Java scanner: Add var as type. [#229, thanks to Davide Angelocola]
+  * Gem: Fix deprecation warning. [#246, thanks to David Rodríguez]
+
+---

Old:

  coderay-1.1.2.gem

New:

  coderay-1.1.3.gem



Other differences:
--
++ rubygem-coderay.spec ++
--- /var/tmp/diff_new_pack.WTewRO/_old  2020-06-27 23:24:15.794154265 +0200
+++ /var/tmp/diff_new_pack.WTewRO/_new  2020-06-27 23:24:15.798154279 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package rubygem-coderay
 #
-# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2020 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -12,7 +12,7 @@
 # license that conforms to the Open Source Definition (Version 1.9)
 # published by the Open Source Initiative.
 
-# Please submit bugfixes or comments via http://bugs.opensuse.org/
+# Please submit bugfixes or comments via https://bugs.opensuse.org/
 #
 
 
@@ -24,7 +24,7 @@
 #
 
 Name:   rubygem-coderay
-Version:1.1.2
+Version:1.1.3
 Release:0
 %define mod_name coderay
 %define mod_full_name %{mod_name}-%{version}
@@ -34,7 +34,7 @@
 BuildRequires:  %{rubygem rdoc > 3.10}
 BuildRequires:  ruby-macros >= 5
 BuildRequires:  update-alternatives
-Url:http://coderay.rubychan.de
+URL:http://coderay.rubychan.de
 Source: https://rubygems.org/gems/%{mod_full_name}.gem
 Source1:gem2rpm.yml
 Summary:Fast syntax highlighting for selected languages

++ coderay-1.1.2.gem -> coderay-1.1.3.gem ++
Binary files old/checksums.yaml.gz and new/checksums.yaml.gz differ
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lib/coderay/encoders/html/output.rb 
new/lib/coderay/encoders/html/output.rb
--- old/lib/coderay/encoders/html/output.rb 2017-09-03 12:12:06.0 
+0200
+++ new/lib/coderay/encoders/html/output.rb 2020-05-30 09:24:42.0 
+0200
@@ -76,8 +76,6 @@
 apply_title! title
   end
   self
-when nil
-  return self
 else
   raise "Unknown value %p for :wrap" % element
 end
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lib/coderay/scanners/c.rb 
new/lib/coderay/scanners/c.rb
--- old/lib/coderay/scanners/c.rb   2017-09-03 12:12:06.0 +0200
+++ new/lib/coderay/scanners/c.rb   2020-05-30 09:24:42.0 +0200
@@ -37,7 +37,7 @@
   add(PREDEFINED_CONSTANTS, :predefined_constant)  # :nodoc:
 
 ESCAPE = / [rbfntv\n\\'"] | x[a-fA-F0-9]{1,2} | [0-7]{1,3} /x  # :nodoc:
-UNICODE_ESCAPE =  / u[a-fA-F0-9]{4} | U[a-fA-F0-9]{8} /x  # :nodoc:
+UNICODE_ESCAPE = / u[a-fA-F0-9]{4} | U[a-fA-F0-9]{8} /x  # :nodoc:
 
   protected
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lib/coderay/scanners/cpp.rb 
new/lib/coderay/scanners/cpp.rb
--- old/lib/coderay/scanners/cpp.rb 2017-09-03 12:12:06.0 +0200
+++ new/lib/coderay/scanners/cpp.rb 2020-05-30 09:24:42.0 +0200
@@ -49,7 +49,7 @@
   add(PREDEFINED_CONSTANTS, :predefined_constant)  # :nodoc:
 
 ESCAPE = / [rbfntv\n\\'"] | x[a-fA-F0-9]{1,2} | [0-7]{1,3} /x  # :nodoc:
-UNICODE_ESCAPE =  / u[a-fA-F0-9]{4} | U[a-fA-F0-9]{8} /x  # :nodoc:
+UNICODE_ESCAPE = / u[a-fA-F0-9]{4} | U[a-fA-F0-9]{8} /x  # :nodoc:
 
   protected
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lib/coderay/scanners/diff.rb 
new/lib/coderay/scanners/diff.rb
--- old/lib/coderay/scanners/diff.rb2017-09-03 12:12:06.0 +0200
+++ new/lib/coderay/scanners/diff.rb2020-05-30 09:24:42.0 +0200
@@ -109,7 +109,7 @@
   for 

commit rubygem-coderay for openSUSE:Factory

2017-09-12 Thread root
Hello community,

here is the log from the commit of package rubygem-coderay for openSUSE:Factory 
checked in at 2017-09-12 19:57:26

Comparing /work/SRC/openSUSE:Factory/rubygem-coderay (Old)
 and  /work/SRC/openSUSE:Factory/.rubygem-coderay.new (New)


Package is "rubygem-coderay"

Tue Sep 12 19:57:26 2017 rev:12 rq:523576 version:1.1.2

Changes:

--- /work/SRC/openSUSE:Factory/rubygem-coderay/rubygem-coderay.changes  
2016-03-07 13:27:51.0 +0100
+++ /work/SRC/openSUSE:Factory/.rubygem-coderay.new/rubygem-coderay.changes 
2017-09-12 19:57:27.577658173 +0200
@@ -1,0 +2,6 @@
+Mon Sep 11 12:36:34 UTC 2017 - co...@suse.com
+
+- updated to version 1.1.2
+  no changelog found
+
+---

Old:

  coderay-1.1.1.gem

New:

  coderay-1.1.2.gem



Other differences:
--
++ rubygem-coderay.spec ++
--- /var/tmp/diff_new_pack.MFzBV5/_old  2017-09-12 19:57:28.157576630 +0200
+++ /var/tmp/diff_new_pack.MFzBV5/_new  2017-09-12 19:57:28.165575506 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package rubygem-coderay
 #
-# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -24,7 +24,7 @@
 #
 
 Name:   rubygem-coderay
-Version:1.1.1
+Version:1.1.2
 Release:0
 %define mod_name coderay
 %define mod_full_name %{mod_name}-%{version}
@@ -35,7 +35,7 @@
 BuildRequires:  ruby-macros >= 5
 BuildRequires:  update-alternatives
 Url:http://coderay.rubychan.de
-Source: http://rubygems.org/gems/%{mod_full_name}.gem
+Source: https://rubygems.org/gems/%{mod_full_name}.gem
 Source1:gem2rpm.yml
 Summary:Fast syntax highlighting for selected languages
 License:MIT
@@ -53,6 +53,7 @@
 %install
 %gem_install \
   --symlink-binaries \
+  --doc-files="MIT-LICENSE" \
   -f
 
 %gem_packages

++ coderay-1.1.1.gem -> coderay-1.1.2.gem ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/MIT-LICENSE new/MIT-LICENSE
--- old/MIT-LICENSE 1970-01-01 01:00:00.0 +0100
+++ new/MIT-LICENSE 2017-09-03 12:12:06.0 +0200
@@ -0,0 +1,22 @@
+Copyright (C) 2005-2012 Kornelius Kalnbach  
(@murphy_karasu)
+
+http://coderay.rubychan.de/
+
+Permission is hereby granted, free of charge, to any person obtaining
+a copy of this software and associated documentation files (the
+"Software"), to deal in the Software without restriction, including
+without limitation the rights to use, copy, modify, merge, publish,
+distribute, sublicense, and/or sell copies of the Software, and to
+permit persons to whom the Software is furnished to do so, subject to
+the following conditions:
+
+The above copyright notice and this permission notice shall be
+included in all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
+MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
+NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
+LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
+OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
+WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
\ No newline at end of file
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Rakefile new/Rakefile
--- old/Rakefile2016-02-20 17:34:58.0 +0100
+++ new/Rakefile1970-01-01 01:00:00.0 +0100
@@ -1,37 +0,0 @@
-require 'bundler/gem_tasks'
-
-$:.unshift File.dirname(__FILE__) unless $:.include? '.'
-
-ROOT = '.'
-LIB_ROOT = File.join ROOT, 'lib'
-
-task :default => :test
-
-if File.directory? 'rake_tasks'
-  
-  # load rake tasks from subfolder
-  for task_file in Dir['rake_tasks/*.rake'].sort
-load task_file
-  end
-  
-else
-  
-  # fallback tasks when rake_tasks folder is not present (eg. in the 
distribution package)
-  desc 'Run CodeRay tests (basic)'
-  task :test do
-ruby './test/functional/suite.rb'
-ruby './test/functional/for_redcloth.rb'
-  end
-  
-  gem 'rdoc' if defined? gem
-  require 'rdoc/task'
-  desc 'Generate documentation for CodeRay'
-  Rake::RDocTask.new :doc do |rd|
-rd.title = 'CodeRay Documentation'
-rd.main = 'README_INDEX.rdoc'
-rd.rdoc_files.add Dir['lib']
-rd.rdoc_files.add rd.main
-rd.rdoc_dir = 'doc'
-  end
-  
-end
Binary files old/checksums.yaml.gz and 

commit rubygem-coderay for openSUSE:Factory

2016-03-07 Thread h_root
Hello community,

here is the log from the commit of package rubygem-coderay for openSUSE:Factory 
checked in at 2016-03-07 13:27:03

Comparing /work/SRC/openSUSE:Factory/rubygem-coderay (Old)
 and  /work/SRC/openSUSE:Factory/.rubygem-coderay.new (New)


Package is "rubygem-coderay"

Changes:

--- /work/SRC/openSUSE:Factory/rubygem-coderay/rubygem-coderay.changes  
2014-10-23 14:20:49.0 +0200
+++ /work/SRC/openSUSE:Factory/.rubygem-coderay.new/rubygem-coderay.changes 
2016-03-07 13:27:51.0 +0100
@@ -1,0 +2,6 @@
+Sun Feb 21 05:30:26 UTC 2016 - co...@suse.com
+
+- updated to version 1.1.1
+  no changelog found
+
+---

Old:

  coderay-1.1.0.gem

New:

  coderay-1.1.1.gem
  gem2rpm.yml



Other differences:
--
++ rubygem-coderay.spec ++
--- /var/tmp/diff_new_pack.9IFcd6/_old  2016-03-07 13:27:52.0 +0100
+++ /var/tmp/diff_new_pack.9IFcd6/_new  2016-03-07 13:27:52.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package rubygem-coderay
 #
-# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2016 SUSE LINUX 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,8 +16,15 @@
 #
 
 
+#
+# This file was generated with a gem2rpm.yml and not just plain gem2rpm.
+# All sections marked as MANUAL, license headers, summaries and descriptions
+# can be maintained in that file. Please consult this file before editing any
+# of those fields
+#
+
 Name:   rubygem-coderay
-Version:1.1.0
+Version:1.1.1
 Release:0
 %define mod_name coderay
 %define mod_full_name %{mod_name}-%{version}
@@ -29,6 +36,7 @@
 BuildRequires:  update-alternatives
 Url:http://coderay.rubychan.de
 Source: http://rubygems.org/gems/%{mod_full_name}.gem
+Source1:gem2rpm.yml
 Summary:Fast syntax highlighting for selected languages
 License:MIT
 Group:  Development/Languages/Ruby

++ coderay-1.1.0.gem -> coderay-1.1.1.gem ++
 2083 lines of diff (skipped)

++ gem2rpm.yml ++
# ---
# ## used by gem2rpm
# :summary: this is a custom summary
# ## used by gem2rpm
# :description: |-
#   this is a custom description
#
#   it can be multiline
# ## used by gem2rpm
# :license: MIT or Ruby
# ## used by gem2rpm and gem_packages
# :version_suffix: -x_y
# ## used by gem2rpm and gem_packages
# :disable_docs: true
# ## used by gem2rpm
# :disable_automatic_rdoc_dep: true
# ## used by gem2rpm
# :preamble: |-
#   BuildRequires: foobar
#   Requires: foobar
# ## used by gem2rpm
# :patches:
#   foo.patch: -p1
#   bar.patch: 
# ## used by gem2rpm
:sources:
# - foo.desktop
# - bar.desktop
# :gem_install_args: ''
# ## used by gem2rpm
# :pre_install: |-
#   %if 0%{?use_system_libev}
#   export USE_VENDORED_LIBEV="no"
#   %endif
# ## used by gem2rpm
# :post_install: |-
#   # delete custom files here or do other fancy stuff
#   install -D -m 0644 %{S:1} %{buildroot}%{_bindir}/gem2rpm-opensuse
# ## used by gem2rpm
# :testsuite_command: |-
#   (pushd %{buildroot}%{gem_base}/gems/%{mod_full_name} && rake test)
# ## used by gem2rpm
# :filelist: |-
#   /usr/bin/gem2rpm-opensuse
# ## used by gem2rpm
# :scripts:
#   :post: |-
# /bin/echo foo
# ## used by gem_packages
# :main:
#   :preamble: |-
# Requires: util-linux
# Recommends: pwgen
#   :filelist: |-
# /usr/bin/gem2rpm-opensuse
# ## used by gem_packages
# :custom:
#   apache:
# :preamble: |-
#   Requires: .
# :filelist: |-
#   /etc/apache2/conf.d/passenger.conf
# :summary: Custom summary is optional
# :description: |-
#   Custom description is optional
#
#   bar
# :post: |-
#   /bin/echo foo
#



commit rubygem-coderay for openSUSE:Factory

2014-10-23 Thread h_root
Hello community,

here is the log from the commit of package rubygem-coderay for openSUSE:Factory 
checked in at 2014-10-23 14:20:37

Comparing /work/SRC/openSUSE:Factory/rubygem-coderay (Old)
 and  /work/SRC/openSUSE:Factory/.rubygem-coderay.new (New)


Package is rubygem-coderay

Changes:

--- /work/SRC/openSUSE:Factory/rubygem-coderay/rubygem-coderay.changes  
2013-10-06 14:57:50.0 +0200
+++ /work/SRC/openSUSE:Factory/.rubygem-coderay.new/rubygem-coderay.changes 
2014-10-23 14:20:49.0 +0200
@@ -1,0 +2,5 @@
+Wed Oct 22 07:22:22 UTC 2014 - tboer...@suse.com
+
+- Updated to new ruby macros
+
+---



Other differences:
--
++ rubygem-coderay.spec ++
--- /var/tmp/diff_new_pack.WRwOdT/_old  2014-10-23 14:20:50.0 +0200
+++ /var/tmp/diff_new_pack.WRwOdT/_new  2014-10-23 14:20:50.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package rubygem-coderay
 #
-# 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
@@ -21,15 +21,12 @@
 Release:0
 %define mod_name coderay
 %define mod_full_name %{mod_name}-%{version}
-%define mod_branch -%{version}
-%define mod_weight 10100
-
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-BuildRequires:  ruby-macros = 1
-Requires:   ruby = 1.8.6
-BuildRequires:  ruby-devel = 1.8.6
+BuildRequires:  %{ruby = 1.8.6}
+BuildRequires:  %{rubygem gem2rpm}
+BuildRequires:  %{rubygem rdoc  3.10}
+BuildRequires:  ruby-macros = 5
 BuildRequires:  update-alternatives
-BuildRequires:  rubygem(rdoc)  3.10
 Url:http://coderay.rubychan.de
 Source: http://rubygems.org/gems/%{mod_full_name}.gem
 Summary:Fast syntax highlighting for selected languages
@@ -41,62 +38,15 @@
 Fast and easy syntax highlighting for selected languages, written in Ruby.
 Comes with RedCloth integration and LOC counter.
 
-%package doc
-Summary:RDoc documentation for %{mod_name}
-Group:  Development/Languages/Ruby
-Requires:   %{name} = %{version}
-
-%description doc
-Documentation generated at gem installation time.
-Usually in RDoc and RI formats.
-
-%package testsuite
-Summary:Test suite for %{mod_name}
-Group:  Development/Languages/Ruby
-Requires:   %{name} = %{version}
-
-%description testsuite
-Test::Unit or RSpec files, useful for developers.
-
 %prep
-#gem_unpack
-#if you need patches, apply them here and replace the # with a % sign in the 
surrounding lines
-#gem_build
 
 %build
 
 %install
-%gem_install -f
-mkdir -p %{buildroot}%{_sysconfdir}/alternatives
-mv %{buildroot}%{_bindir}/coderay{,%{mod_branch}}
-touch %{buildroot}%{_sysconfdir}/alternatives/coderay
-ln -s %{_sysconfdir}/alternatives/coderay %{buildroot}%{_bindir}/coderay
-
-%post
-/usr/sbin/update-alternatives --install \
-%{_bindir}/coderay coderay %{_bindir}/coderay%{mod_branch} %{mod_weight}
-
-%preun
-if [ $1 = 0 ] ; then
-/usr/sbin/update-alternatives --remove coderay 
%{_bindir}/coderay%{mod_branch}
-fi
-
-%files
-%defattr(-,root,root,-)
-%{_bindir}/coderay%{mod_branch}
-%{_bindir}/coderay
-%ghost %{_sysconfdir}/alternatives/coderay
-%{_libdir}/ruby/gems/%{rb_ver}/cache/%{mod_full_name}.gem
-%{_libdir}/ruby/gems/%{rb_ver}/gems/%{mod_full_name}/
-%exclude %{_libdir}/ruby/gems/%{rb_ver}/gems/%{mod_full_name}/test
-%{_libdir}/ruby/gems/%{rb_ver}/specifications/%{mod_full_name}.gemspec
-
-%files doc
-%defattr(-,root,root,-)
-%doc %{_libdir}/ruby/gems/%{rb_ver}/doc/%{mod_full_name}/
-
-%files testsuite
-%defattr(-,root,root,-)
-%{_libdir}/ruby/gems/%{rb_ver}/gems/%{mod_full_name}/test
+%gem_install \
+  --symlink-binaries \
+  -f
+
+%gem_packages
 
 %changelog

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



commit rubygem-coderay for openSUSE:Factory

2013-10-06 Thread h_root
Hello community,

here is the log from the commit of package rubygem-coderay for openSUSE:Factory 
checked in at 2013-10-06 14:57:49

Comparing /work/SRC/openSUSE:Factory/rubygem-coderay (Old)
 and  /work/SRC/openSUSE:Factory/.rubygem-coderay.new (New)


Package is rubygem-coderay

Changes:

--- /work/SRC/openSUSE:Factory/rubygem-coderay/rubygem-coderay.changes  
2013-03-14 15:36:31.0 +0100
+++ /work/SRC/openSUSE:Factory/.rubygem-coderay.new/rubygem-coderay.changes 
2013-10-06 14:57:50.0 +0200
@@ -1,0 +2,5 @@
+Tue Sep  3 08:10:13 UTC 2013 - co...@suse.com
+
+- updated to version 1.1.0, no changelog
+
+---

Old:

  coderay-1.0.9.gem

New:

  coderay-1.1.0.gem



Other differences:
--
++ rubygem-coderay.spec ++
--- /var/tmp/diff_new_pack.olIvC4/_old  2013-10-06 14:57:50.0 +0200
+++ /var/tmp/diff_new_pack.olIvC4/_new  2013-10-06 14:57:50.0 +0200
@@ -17,21 +17,25 @@
 
 
 Name:   rubygem-coderay
-Version:1.0.9
+Version:1.1.0
 Release:0
 %define mod_name coderay
 %define mod_full_name %{mod_name}-%{version}
+%define mod_branch -%{version}
+%define mod_weight 10100
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildRequires:  ruby-macros = 1
 Requires:   ruby = 1.8.6
 BuildRequires:  ruby-devel = 1.8.6
+BuildRequires:  update-alternatives
 BuildRequires:  rubygem(rdoc)  3.10
 Url:http://coderay.rubychan.de
-Source: %{mod_full_name}.gem
+Source: http://rubygems.org/gems/%{mod_full_name}.gem
 Summary:Fast syntax highlighting for selected languages
 License:MIT
 Group:  Development/Languages/Ruby
+PreReq: update-alternatives
 
 %description
 Fast and easy syntax highlighting for selected languages, written in Ruby.
@@ -63,10 +67,25 @@
 
 %install
 %gem_install -f
+mkdir -p %{buildroot}%{_sysconfdir}/alternatives
+mv %{buildroot}%{_bindir}/coderay{,%{mod_branch}}
+touch %{buildroot}%{_sysconfdir}/alternatives/coderay
+ln -s %{_sysconfdir}/alternatives/coderay %{buildroot}%{_bindir}/coderay
+
+%post
+/usr/sbin/update-alternatives --install \
+%{_bindir}/coderay coderay %{_bindir}/coderay%{mod_branch} %{mod_weight}
+
+%preun
+if [ $1 = 0 ] ; then
+/usr/sbin/update-alternatives --remove coderay 
%{_bindir}/coderay%{mod_branch}
+fi
 
 %files
 %defattr(-,root,root,-)
+%{_bindir}/coderay%{mod_branch}
 %{_bindir}/coderay
+%ghost %{_sysconfdir}/alternatives/coderay
 %{_libdir}/ruby/gems/%{rb_ver}/cache/%{mod_full_name}.gem
 %{_libdir}/ruby/gems/%{rb_ver}/gems/%{mod_full_name}/
 %exclude %{_libdir}/ruby/gems/%{rb_ver}/gems/%{mod_full_name}/test

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



commit rubygem-coderay for openSUSE:Factory

2013-03-14 Thread h_root
Hello community,

here is the log from the commit of package rubygem-coderay for openSUSE:Factory 
checked in at 2013-03-14 15:01:27

Comparing /work/SRC/openSUSE:Factory/rubygem-coderay (Old)
 and  /work/SRC/openSUSE:Factory/.rubygem-coderay.new (New)


Package is rubygem-coderay, Maintainer is radma...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/rubygem-coderay/rubygem-coderay.changes  
2012-10-08 20:35:45.0 +0200
+++ /work/SRC/openSUSE:Factory/.rubygem-coderay.new/rubygem-coderay.changes 
2013-03-14 15:01:28.0 +0100
@@ -1,0 +2,5 @@
+Sun Mar  3 19:28:50 UTC 2013 - co...@suse.com
+
+- updated to version 1.0.9
+
+---

Old:

  coderay-1.0.8.gem

New:

  coderay-1.0.9.gem



Other differences:
--
++ rubygem-coderay.spec ++
--- /var/tmp/diff_new_pack.dw8NTq/_old  2013-03-14 15:01:30.0 +0100
+++ /var/tmp/diff_new_pack.dw8NTq/_new  2013-03-14 15:01:30.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package rubygem-coderay
 #
-# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2013 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
@@ -17,7 +17,7 @@
 
 
 Name:   rubygem-coderay
-Version:1.0.8
+Version:1.0.9
 Release:0
 %define mod_name coderay
 %define mod_full_name %{mod_name}-%{version}
@@ -30,7 +30,7 @@
 Url:http://coderay.rubychan.de
 Source: %{mod_full_name}.gem
 Summary:Fast syntax highlighting for selected languages
-License:LGPL-2.1+
+License:MIT
 Group:  Development/Languages/Ruby
 
 %description

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



commit rubygem-coderay for openSUSE:Factory

2012-10-08 Thread h_root
Hello community,

here is the log from the commit of package rubygem-coderay for openSUSE:Factory 
checked in at 2012-10-08 20:35:44

Comparing /work/SRC/openSUSE:Factory/rubygem-coderay (Old)
 and  /work/SRC/openSUSE:Factory/.rubygem-coderay.new (New)


Package is rubygem-coderay, Maintainer is cth...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/rubygem-coderay/rubygem-coderay.changes  
2012-07-16 09:40:59.0 +0200
+++ /work/SRC/openSUSE:Factory/.rubygem-coderay.new/rubygem-coderay.changes 
2012-10-08 20:35:45.0 +0200
@@ -1,0 +2,5 @@
+Mon Oct  8 08:41:04 UTC 2012 - co...@suse.com
+
+- updated to version 1.0.8, no changelog
+
+---

Old:

  coderay-1.0.7.gem

New:

  coderay-1.0.8.gem



Other differences:
--
++ rubygem-coderay.spec ++
--- /var/tmp/diff_new_pack.M1CCrY/_old  2012-10-08 20:35:46.0 +0200
+++ /var/tmp/diff_new_pack.M1CCrY/_new  2012-10-08 20:35:46.0 +0200
@@ -17,24 +17,25 @@
 
 
 Name:   rubygem-coderay
-Version:1.0.7
+Version:1.0.8
 Release:0
-Summary:Fast syntax highlighting for selected languages
-License:LGPL-2.1+
-Group:  Development/Languages/Ruby
-Url:http://coderay.rubychan.de
 %define mod_name coderay
 %define mod_full_name %{mod_name}-%{version}
-Source: %{mod_full_name}.gem
-BuildRequires:  ruby-devel = 1.8.6
-BuildRequires:  rubygems_with_buildroot_patch
-Requires:   ruby = 1.8.6
-Provides:   %{name}-1_0 = %{version}
+
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-%rubygems_requires
+BuildRequires:  ruby-macros = 1
+Requires:   ruby = 1.8.6
+BuildRequires:  ruby-devel = 1.8.6
+BuildRequires:  rubygem(rdoc)  3.10
+Url:http://coderay.rubychan.de
+Source: %{mod_full_name}.gem
+Summary:Fast syntax highlighting for selected languages
+License:LGPL-2.1+
+Group:  Development/Languages/Ruby
 
 %description
-Fast and easy syntax highlighting for selected languages, written in Ruby. 
Comes with RedCloth integration and LOC counter.
+Fast and easy syntax highlighting for selected languages, written in Ruby.
+Comes with RedCloth integration and LOC counter.
 
 %package doc
 Summary:RDoc documentation for %{mod_name}
@@ -54,9 +55,14 @@
 Test::Unit or RSpec files, useful for developers.
 
 %prep
+#gem_unpack
+#if you need patches, apply them here and replace the # with a % sign in the 
surrounding lines
+#gem_build
+
 %build
+
 %install
-%gem_install %{SOURCE0}
+%gem_install -f
 
 %files
 %defattr(-,root,root,-)

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



commit rubygem-coderay for openSUSE:Factory

2012-07-16 Thread h_root
Hello community,

here is the log from the commit of package rubygem-coderay for openSUSE:Factory 
checked in at 2012-07-16 09:40:54

Comparing /work/SRC/openSUSE:Factory/rubygem-coderay (Old)
 and  /work/SRC/openSUSE:Factory/.rubygem-coderay.new (New)


Package is rubygem-coderay, Maintainer is cth...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/rubygem-coderay/rubygem-coderay.changes  
2012-06-05 12:03:12.0 +0200
+++ /work/SRC/openSUSE:Factory/.rubygem-coderay.new/rubygem-coderay.changes 
2012-07-16 09:40:59.0 +0200
@@ -1,0 +2,5 @@
+Fri Jun 29 12:11:50 UTC 2012 - co...@suse.com
+
+- update to 1.0.7
+
+---

Old:

  coderay-1.0.6.gem

New:

  coderay-1.0.7.gem



Other differences:
--
++ rubygem-coderay.spec ++
--- /var/tmp/diff_new_pack.zXA8ug/_old  2012-07-16 09:41:01.0 +0200
+++ /var/tmp/diff_new_pack.zXA8ug/_new  2012-07-16 09:41:01.0 +0200
@@ -15,13 +15,14 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
+
 Name:   rubygem-coderay
-Version:1.0.6
+Version:1.0.7
 Release:0
-License:LGPL-2.1+
 Summary:Fast syntax highlighting for selected languages
-Url:http://coderay.rubychan.de
+License:LGPL-2.1+
 Group:  Development/Languages/Ruby
+Url:http://coderay.rubychan.de
 %define mod_name coderay
 %define mod_full_name %{mod_name}-%{version}
 Source: %{mod_full_name}.gem

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