commit rubygem-sqlite3 for openSUSE:Factory

2020-03-07 Thread root
Hello community,

here is the log from the commit of package rubygem-sqlite3 for openSUSE:Factory 
checked in at 2020-03-07 21:40:10

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


Package is "rubygem-sqlite3"

Sat Mar  7 21:40:10 2020 rev:30 rq:773854 version:1.4.2

Changes:

--- /work/SRC/openSUSE:Factory/rubygem-sqlite3/rubygem-sqlite3.changes  
2019-06-19 21:01:13.758129867 +0200
+++ 
/work/SRC/openSUSE:Factory/.rubygem-sqlite3.new.26092/rubygem-sqlite3.changes   
2020-03-07 21:40:19.632356767 +0100
@@ -1,0 +2,18 @@
+Mon Feb 10 15:52:25 UTC 2020 - Stephan Kulow 
+
+- updated to version 1.4.2
+ see installed CHANGELOG.rdoc
+
+  === 1.4.2
+  
+  * Travis: Drop unused setting "sudo: false"
+  * The taint mechanism will be deprecated in Ruby 2.7
+  * Fix Ruby 2.7 rb_check_safe_obj warnings
+  * Update travis config
+  
+  === 1.4.1
+  
+  * Don't mandate dl functions for the extention build
+  * bumping version
+
+---

Old:

  sqlite3-1.4.1.gem

New:

  sqlite3-1.4.2.gem



Other differences:
--
++ rubygem-sqlite3.spec ++
--- /var/tmp/diff_new_pack.hQj8G0/_old  2020-03-07 21:40:20.408357291 +0100
+++ /var/tmp/diff_new_pack.hQj8G0/_new  2020-03-07 21:40:20.408357291 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package rubygem-sqlite3
 #
-# Copyright (c) 2019 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
@@ -24,7 +24,7 @@
 #
 
 Name:   rubygem-sqlite3
-Version:1.4.1
+Version:1.4.2
 Release:0
 %define mod_name sqlite3
 %define mod_full_name %{mod_name}-%{version}
@@ -36,7 +36,7 @@
 BuildRequires:  %{rubygem gem2rpm}
 BuildRequires:  %{rubygem rdoc > 3.10}
 BuildRequires:  ruby-macros >= 5
-Url:https://github.com/sparklemotion/sqlite3-ruby
+URL:https://github.com/sparklemotion/sqlite3-ruby
 Source: https://rubygems.org/gems/%{mod_full_name}.gem
 Source1:gem2rpm.yml
 Summary:This module allows Ruby programs to interface with the SQLite3

++ sqlite3-1.4.1.gem -> sqlite3-1.4.2.gem ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/.travis.yml new/.travis.yml
--- old/.travis.yml 2019-04-30 01:13:05.0 +0200
+++ new/.travis.yml 2019-12-18 21:19:31.0 +0100
@@ -1,9 +1,8 @@
-sudo: false
 language: ruby
 cache: bundler
 before_install:
-  - gem update --system
-  - gem install bundler
+  - gem update --system 2.7.7
+  - gem install bundler -v 1.16.2
 addons:
   apt:
 packages:
@@ -26,6 +25,8 @@
   - 2.3
   - 2.4
   - 2.5
+  - 2.6
+  - 2.7
   - ruby-head
 matrix:
   allow_failures:
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/CHANGELOG.rdoc new/CHANGELOG.rdoc
--- old/CHANGELOG.rdoc  2019-04-30 01:13:05.0 +0200
+++ new/CHANGELOG.rdoc  2019-12-18 21:19:31.0 +0100
@@ -1,3 +1,15 @@
+=== 1.4.2
+
+* Travis: Drop unused setting "sudo: false"
+* The taint mechanism will be deprecated in Ruby 2.7
+* Fix Ruby 2.7 rb_check_safe_obj warnings
+* Update travis config
+
+=== 1.4.1
+
+* Don't mandate dl functions for the extention build
+* bumping version
+
 === 1.4.0
 
 * Enhancements
Binary files old/checksums.yaml.gz and new/checksums.yaml.gz differ
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ext/sqlite3/database.c new/ext/sqlite3/database.c
--- old/ext/sqlite3/database.c  2019-04-30 01:13:05.0 +0200
+++ new/ext/sqlite3/database.c  2019-12-18 21:19:31.0 +0100
@@ -40,12 +40,14 @@
 
   Data_Get_Struct(self, sqlite3Ruby, ctx);
 
+#if defined TAINTING_SUPPORT
 #if defined StringValueCStr
   StringValuePtr(file);
   rb_check_safe_obj(file);
 #else
   Check_SafeStr(file);
 #endif
+#endif
 
   status = sqlite3_open_v2(
   StringValuePtr(file),
@@ -213,16 +215,16 @@
   return rb_float_new(sqlite3_value_double(val));
   break;
 case SQLITE_TEXT:
-  return rb_tainted_str_new2((const char *)sqlite3_value_text(val));
+  return rb_str_new2((const char *)sqlite3_value_text(val));
   break;
 case SQLITE_BLOB: {
   /* Sqlite warns calling sqlite3_value_bytes may invalidate pointer from 
sqlite3_value_blob,
  so we explicitly get the length before getting blob pointer.
- Note that rb_str_new and rb_tainted_str_new apparently create string 
with ASCII-8BIT (BINARY) encoding,
+ Note that rb_str_new apparently create string with 

commit rubygem-sqlite3 for openSUSE:Factory

2019-06-19 Thread root
Hello community,

here is the log from the commit of package rubygem-sqlite3 for openSUSE:Factory 
checked in at 2019-06-19 21:01:12

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


Package is "rubygem-sqlite3"

Wed Jun 19 21:01:12 2019 rev:29 rq:706027 version:1.4.1

Changes:

--- /work/SRC/openSUSE:Factory/rubygem-sqlite3/rubygem-sqlite3.changes  
2017-01-15 11:18:01.074915531 +0100
+++ 
/work/SRC/openSUSE:Factory/.rubygem-sqlite3.new.4811/rubygem-sqlite3.changes
2019-06-19 21:01:13.758129867 +0200
@@ -1,0 +2,26 @@
+Sun May  5 09:46:35 UTC 2019 - Stephan Kulow 
+
+- updated to version 1.4.1
+ see installed CHANGELOG.rdoc
+
+---
+Sat Mar  2 15:39:50 UTC 2019 - Stephan Kulow 
+
+- updated to version 1.4.0
+ see installed CHANGELOG.rdoc
+
+  === 1.4.0
+  
+  * Enhancements
+* Better aggregator support
+  
+  * Bugfixes
+* Various
+  
+  === 1.3.13
+  
+  * Enancements
+* Support SQLite flags when defining functions
+* Add definition for SQLITE_DETERMINISTIC flag
+
+---

Old:

  sqlite3-1.3.13.gem

New:

  sqlite3-1.4.1.gem



Other differences:
--
++ rubygem-sqlite3.spec ++
--- /var/tmp/diff_new_pack.lV3oor/_old  2019-06-19 21:01:15.210131086 +0200
+++ /var/tmp/diff_new_pack.lV3oor/_new  2019-06-19 21:01:15.214131089 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package rubygem-sqlite3
 #
-# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2019 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
@@ -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-sqlite3
-Version:1.3.13
+Version:1.4.1
 Release:0
 %define mod_name sqlite3
 %define mod_full_name %{mod_name}-%{version}
@@ -37,7 +37,7 @@
 BuildRequires:  %{rubygem rdoc > 3.10}
 BuildRequires:  ruby-macros >= 5
 Url:https://github.com/sparklemotion/sqlite3-ruby
-Source: http://rubygems.org/gems/%{mod_full_name}.gem
+Source: https://rubygems.org/gems/%{mod_full_name}.gem
 Source1:gem2rpm.yml
 Summary:This module allows Ruby programs to interface with the SQLite3
 License:BSD-3-Clause

++ sqlite3-1.3.13.gem -> sqlite3-1.4.1.gem ++
 3212 lines of diff (skipped)




commit rubygem-sqlite3 for openSUSE:Factory

2016-10-18 Thread h_root
Hello community,

here is the log from the commit of package rubygem-sqlite3 for openSUSE:Factory 
checked in at 2016-10-18 10:40:34

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


Package is "rubygem-sqlite3"

Changes:

--- /work/SRC/openSUSE:Factory/rubygem-sqlite3/rubygem-sqlite3.changes  
2015-10-14 16:44:55.0 +0200
+++ /work/SRC/openSUSE:Factory/.rubygem-sqlite3.new/rubygem-sqlite3.changes 
2016-10-18 10:40:34.0 +0200
@@ -1,0 +2,11 @@
+Sun Oct  9 04:36:48 UTC 2016 - co...@suse.com
+
+- updated to version 1.3.12
+ see installed CHANGELOG.rdoc
+
+  === 1.3.12
+  
+  * Bugfixes:
+* OS X install will default to homebrew if available. Fixes #195
+
+---

Old:

  sqlite3-1.3.11.gem

New:

  sqlite3-1.3.12.gem



Other differences:
--
++ rubygem-sqlite3.spec ++
--- /var/tmp/diff_new_pack.DtPEeJ/_old  2016-10-18 10:40:35.0 +0200
+++ /var/tmp/diff_new_pack.DtPEeJ/_new  2016-10-18 10:40:35.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package rubygem-sqlite3
 #
-# Copyright (c) 2015 SUSE LINUX 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
@@ -24,7 +24,7 @@
 #
 
 Name:   rubygem-sqlite3
-Version:1.3.11
+Version:1.3.12
 Release:0
 %define mod_name sqlite3
 %define mod_full_name %{mod_name}-%{version}

++ sqlite3-1.3.11.gem -> sqlite3-1.3.12.gem ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/CHANGELOG.rdoc new/CHANGELOG.rdoc
--- old/CHANGELOG.rdoc  2015-10-10 23:20:32.0 +0200
+++ new/CHANGELOG.rdoc  2016-10-09 03:02:02.0 +0200
@@ -1,3 +1,8 @@
+=== 1.3.12
+
+* Bugfixes:
+  * OS X install will default to homebrew if available. Fixes #195
+
 === 1.3.11 / 2015-10-10
 
 * Enhancements:
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Gemfile new/Gemfile
--- old/Gemfile 2015-10-10 23:20:32.0 +0200
+++ new/Gemfile 2016-10-09 03:02:02.0 +0200
@@ -5,12 +5,11 @@
 source "https://rubygems.org/;
 
 
-gem "minitest", "~>5.8", :group => [:development, :test]
-gem "rdoc", "~>4.0", :group => [:development, :test]
+gem "minitest", "~>5.9", :group => [:development, :test]
 gem "rake-compiler", "~>0.9.3", :group => [:development, :test]
-gem "rake-compiler-dock", "~>0.4.3", :group => [:development, :test]
+gem "rake-compiler-dock", "~>0.5.2", :group => [:development, :test]
 gem "mini_portile", "~>0.6.2", :group => [:development, :test]
 gem "hoe-bundler", "~>1.0", :group => [:development, :test]
-gem "hoe", "~>3.14", :group => [:development, :test]
+gem "hoe", "~>3.15", :group => [:development, :test]
 
 # vim: syntax=ruby
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/README.rdoc new/README.rdoc
--- old/README.rdoc 2015-10-10 23:20:32.0 +0200
+++ new/README.rdoc 2016-10-09 03:02:02.0 +0200
@@ -5,6 +5,8 @@
 * http://rubygems.org/gems/sqlite3
 * http://www.rubydoc.info/gems/sqlite3/frames
 
+{https://travis-ci.org/sparklemotion/sqlite3-ruby.svg?branch=master; 
alt="Build Status" />}[https://travis-ci.org/sparklemotion/sqlite3-ruby]
+
 == DESCRIPTION
 
 This module allows Ruby programs to interface with the SQLite3
@@ -20,7 +22,7 @@
   # Open a database
   db = SQLite3::Database.new "test.db"
   
-  # Create a database
+  # Create a table
   rows = db.execute <<-SQL
 create table numbers (
   name varchar(30),
@@ -36,12 +38,27 @@
 db.execute "insert into numbers values ( ?, ? )", pair
   end
 
+  # Find a few rows
+  db.execute( "select * from numbers" ) do |row|
+p row
+  end
+
+  # Create another table with multiple columns
+
+  db.execute <<-SQL
+create table students (
+  name varchar(50),
+  email varchar(50),
+  grade varchar(5),
+  blog varchar(50)
+);
+  SQL
+
   # Execute inserts with parameter markers
   db.execute("INSERT INTO students (name, email, grade, blog) 
-  VALUES (?, ?, ?, ?)", [@name, @email, @grade, @blog])
+  VALUES (?, ?, ?, ?)", ["Jane", "m...@janedoe.com", "A", 
"http://blog.janedoe.com;])
   
-  # Find a few rows
-  db.execute( "select * from numbers" ) do |row|
+  db.execute( "select * from students" ) do |row|
 p row
   end
 
Files old/checksums.yaml.gz and new/checksums.yaml.gz differ
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 

commit rubygem-sqlite3 for openSUSE:Factory

2015-02-11 Thread h_root
Hello community,

here is the log from the commit of package rubygem-sqlite3 for openSUSE:Factory 
checked in at 2015-02-11 16:44:15

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


Package is rubygem-sqlite3

Changes:

--- /work/SRC/openSUSE:Factory/rubygem-sqlite3/rubygem-sqlite3.changes  
2014-11-04 17:30:15.0 +0100
+++ /work/SRC/openSUSE:Factory/.rubygem-sqlite3.new/rubygem-sqlite3.changes 
2015-02-11 16:44:16.0 +0100
@@ -1,0 +2,7 @@
+Mon Feb  9 06:52:42 UTC 2015 - co...@suse.com
+
+- updated to version 1.3.10
+ * Enhancements:
+   * Windows: build against SQLite 3.8.7.1. Closes #134, #135 [Hubro]
+
+---

Old:

  sqlite3-1.3.9.gem

New:

  sqlite3-1.3.10.gem



Other differences:
--
++ rubygem-sqlite3.spec ++
--- /var/tmp/diff_new_pack.1ubvBh/_old  2015-02-11 16:44:17.0 +0100
+++ /var/tmp/diff_new_pack.1ubvBh/_new  2015-02-11 16:44:17.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package rubygem-sqlite3
 #
-# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2015 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-sqlite3
-Version:1.3.9
+Version:1.3.10
 Release:0
 %define mod_name sqlite3
 %define mod_full_name %{mod_name}-%{version}

++ sqlite3-1.3.9.gem - sqlite3-1.3.10.gem ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/CHANGELOG.rdoc new/CHANGELOG.rdoc
--- old/CHANGELOG.rdoc  2014-02-25 19:49:21.0 +0100
+++ new/CHANGELOG.rdoc  1970-01-01 01:00:00.0 +0100
@@ -1,3 +1,8 @@
+=== 1.3.10 / 2014-10-30
+
+* Enhancements:
+  * Windows: build against SQLite 3.8.7.1. Closes #134, #135 [Hubro]
+
 === 1.3.9 / 2014-02-25
 
 * Bugfixes:
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Gemfile new/Gemfile
--- old/Gemfile 2014-02-25 19:49:21.0 +0100
+++ new/Gemfile 1970-01-01 01:00:00.0 +0100
@@ -5,11 +5,11 @@
 source https://rubygems.org/;
 
 
-gem minitest, ~5.0, :group = [:development, :test]
-gem rdoc, ~4.0, :group = [:development, :test]
-gem rake-compiler, ~0.9.1, :group = [:development, :test]
-gem mini_portile, ~0.5.1, :group = [:development, :test]
+gem mini_portile, ~0.6.1, :group = [:development, :test]
+gem minitest, ~5.4, :group = [:development, :test]
 gem hoe-bundler, ~1.0, :group = [:development, :test]
-gem hoe, ~3.7, :group = [:development, :test]
+gem rake-compiler, ~0.9.3, :group = [:development, :test]
+gem rdoc, ~4.0, :group = [:development, :test]
+gem hoe, ~3.12, :group = [:development, :test]
 
 # vim: syntax=ruby
Files old/checksums.yaml.gz and new/checksums.yaml.gz differ
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ext/sqlite3/extconf.rb new/ext/sqlite3/extconf.rb
--- old/ext/sqlite3/extconf.rb  2014-02-25 19:49:21.0 +0100
+++ new/ext/sqlite3/extconf.rb  1970-01-01 01:00:00.0 +0100
@@ -9,11 +9,6 @@
 # --with-sqlite3-{dir,include,lib}
 dir_config(sqlite3)
 
-# prioritize local builds
-if enable_config(local, false)
-  $LDFLAGS = ENV.fetch(LDFLAGS, )
-end
-
 if RbConfig::CONFIG[host_os] =~ /mswin/
   $CFLAGS  ' -W3'
 end
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lib/sqlite3/version.rb new/lib/sqlite3/version.rb
--- old/lib/sqlite3/version.rb  2014-02-25 19:49:21.0 +0100
+++ new/lib/sqlite3/version.rb  1970-01-01 01:00:00.0 +0100
@@ -1,12 +1,12 @@
 module SQLite3
 
-  VERSION = '1.3.9'
+  VERSION = '1.3.10'
 
   module VersionProxy
 
 MAJOR = 1
 MINOR = 3
-TINY  = 9
+TINY  = 10
 BUILD = nil
 
 STRING = [ MAJOR, MINOR, TINY, BUILD ].compact.join( . )
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/metadata new/metadata
--- old/metadata2014-02-25 19:49:21.0 +0100
+++ new/metadata1970-01-01 01:00:00.0 +0100
@@ -1,7 +1,8 @@
 --- !ruby/object:Gem::Specification
 name: sqlite3
 version: !ruby/object:Gem::Version
-  version: 1.3.9
+  version: 1.3.10
+  prerelease: 
 platform: ruby
 authors:
 - Jamis Buck
@@ -10,98 +11,112 @@
 autorequire: 
 bindir: bin
 cert_chain: []
-date: 2014-02-25 00:00:00.0 Z
+date: 2014-10-31 00:00:00.0 Z
 dependencies:
 - !ruby/object:Gem::Dependency
   name: minitest
   requirement: !ruby/object:Gem::Requirement
+none: false
 

commit rubygem-sqlite3 for openSUSE:Factory

2014-11-04 Thread h_root
Hello community,

here is the log from the commit of package rubygem-sqlite3 for openSUSE:Factory 
checked in at 2014-11-04 17:29:34

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


Package is rubygem-sqlite3

Changes:

--- /work/SRC/openSUSE:Factory/rubygem-sqlite3/rubygem-sqlite3.changes  
2014-10-18 09:09:25.0 +0200
+++ /work/SRC/openSUSE:Factory/.rubygem-sqlite3.new/rubygem-sqlite3.changes 
2014-11-04 17:30:15.0 +0100
@@ -1,0 +2,5 @@
+Sat Nov  1 22:46:48 UTC 2014 - tboer...@suse.com
+
+- Removed rpmlinrc file because the warnings have been solved
+
+---

Old:

  rubygem-sqlite3-rpmlintrc



Other differences:
--
++ rubygem-sqlite3.spec ++
--- /var/tmp/diff_new_pack.59Recl/_old  2014-11-04 17:30:16.0 +0100
+++ /var/tmp/diff_new_pack.59Recl/_new  2014-11-04 17:30:16.0 +0100
@@ -38,8 +38,7 @@
 BuildRequires:  ruby-macros = 5
 Url:https://github.com/sparklemotion/sqlite3-ruby
 Source: http://rubygems.org/gems/%{mod_full_name}.gem
-Source1:rubygem-sqlite3-rpmlintrc
-Source2:gem2rpm.yml
+Source1:gem2rpm.yml
 Summary:This module allows Ruby programs to interface with the SQLite3
 License:BSD-3-Clause
 Group:  Development/Languages/Ruby
@@ -60,7 +59,7 @@
   -f
 %gem_cleanup
 # MANUAL
-rm -rf 
%{buildroot}%{_libdir}/ruby/gems/%{rb_ver}/gems/%{mod_full_name}/ext/sqlite3/*.o
+find %{buildroot}%{_libdir}/ruby/gems/*/gems/%{mod_name}-%{version}/ -name 
*.[h|c|o] -exec rm {} \;
 # /MANUAL
 
 %gem_packages

++ gem2rpm.yml ++
--- /var/tmp/diff_new_pack.59Recl/_old  2014-11-04 17:30:16.0 +0100
+++ /var/tmp/diff_new_pack.59Recl/_new  2014-11-04 17:30:16.0 +0100
@@ -1,71 +1,5 @@
-# ---
-# ## 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
-#   BuildRequires: foobar
-#   Requires: foobar
-# ## used by gem2rpm
-# :patches:
-#   foo.patch: -p1
-#   bar.patch: 
-# ## used by gem2rpm
-:sources:
- - rubygem-sqlite3-rpmlintrc
-# :gem_install_args: ''
 :preamble: |-
   BuildRequires:  sqlite3-devel
-# ## used by gem2rpm
+
 :post_install: |-
-  rm -rf 
%{buildroot}%{_libdir}/ruby/gems/%{rb_ver}/gems/%{mod_full_name}/ext/sqlite3/*.o
-#   %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
-#
+  find %{buildroot}%{_libdir}/ruby/gems/*/gems/%{mod_name}-%{version}/ -name 
*.[h|c|o] -exec rm {} \;

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



commit rubygem-sqlite3 for openSUSE:Factory

2014-10-18 Thread h_root
Hello community,

here is the log from the commit of package rubygem-sqlite3 for openSUSE:Factory 
checked in at 2014-10-18 09:09:09

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


Package is rubygem-sqlite3

Changes:

--- /work/SRC/openSUSE:Factory/rubygem-sqlite3/rubygem-sqlite3.changes  
2014-03-18 14:06:17.0 +0100
+++ /work/SRC/openSUSE:Factory/.rubygem-sqlite3.new/rubygem-sqlite3.changes 
2014-10-18 09:09:25.0 +0200
@@ -1,0 +2,10 @@
+Fri Oct 17 09:36:14 UTC 2014 - co...@suse.com
+
+- adding rpmlintrc as source
+
+---
+Tue Oct 14 11:30:16 UTC 2014 - adr...@suse.de
+
+- adapt to new rubygem packaging style
+
+---

New:

  gem2rpm.yml



Other differences:
--
++ rubygem-sqlite3.spec ++
--- /var/tmp/diff_new_pack.1K4Id0/_old  2014-10-18 09:09:26.0 +0200
+++ /var/tmp/diff_new_pack.1K4Id0/_new  2014-10-18 09:09:26.0 +0200
@@ -16,27 +16,33 @@
 #
 
 
+#
+# 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-sqlite3
 Version:1.3.9
 Release:0
 %define mod_name sqlite3
 %define mod_full_name %{mod_name}-%{version}
-
+# MANUAL
+BuildRequires:  sqlite3-devel
+# /MANUAL
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-BuildRequires:  ruby-macros = 3
-Requires:   ruby = 1.8.7
-BuildRequires:  ruby = 1.8.7
-BuildRequires:  ruby-devel
-BuildRequires:  rubygem(rdoc)  3.10
+BuildRequires:  %{rubydevel = 1.8.7}
+BuildRequires:  %{rubygem gem2rpm}
+BuildRequires:  %{rubygem rdoc  3.10}
+BuildRequires:  ruby-macros = 5
 Url:https://github.com/sparklemotion/sqlite3-ruby
 Source: http://rubygems.org/gems/%{mod_full_name}.gem
+Source1:rubygem-sqlite3-rpmlintrc
+Source2:gem2rpm.yml
 Summary:This module allows Ruby programs to interface with the SQLite3
 License:BSD-3-Clause
 Group:  Development/Languages/Ruby
-# MANUAL BEGIN
-BuildRequires:  sqlite-devel = 3.6.16
-Requires:   sqlite3 = 3.6.16
-# MANUAL END
 
 %description
 This module allows Ruby programs to interface with the SQLite3
@@ -44,53 +50,19 @@
 SQLite engine installed in order to build this module.
 Note that this module is only compatible with SQLite 3.6.16 or newer.
 
-%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
+%gem_install \
+  --doc-files=CHANGELOG.rdoc LICENSE README.rdoc \
+  -f
 %gem_cleanup
-mkdir -p %{buildroot}%{_docdir}/%{name}
-ln -s %{gem_base}/gems/%{mod_full_name}/CHANGELOG.rdoc 
%buildroot/%{_docdir}/%{name}/CHANGELOG.rdoc
-ln -s %{gem_base}/gems/%{mod_full_name}/LICENSE 
%buildroot/%{_docdir}/%{name}/LICENSE
-ln -s %{gem_base}/gems/%{mod_full_name}/README.rdoc 
%buildroot/%{_docdir}/%{name}/README.rdoc
-
-%files
-%defattr(-,root,root,-)
-%{_docdir}/%{name}
-%{gem_base}/cache/%{mod_full_name}.gem
-%{gem_base}/gems/%{mod_full_name}/
-%{gem_extensions}/%{mod_full_name}
-%exclude %{gem_base}/gems/%{mod_full_name}/test
-%{gem_base}/specifications/%{mod_full_name}.gemspec
-
-%files doc
-%defattr(-,root,root,-)
-%doc %{gem_base}/doc
-
-%files testsuite
-%defattr(-,root,root,-)
-%{gem_base}/gems/%{mod_full_name}/test
+# MANUAL
+rm -rf 
%{buildroot}%{_libdir}/ruby/gems/%{rb_ver}/gems/%{mod_full_name}/ext/sqlite3/*.o
+# /MANUAL
+
+%gem_packages
 
 %changelog

++ 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
#   BuildRequires: foobar
#   Requires: foobar
# ## used by gem2rpm
# :patches:
#   

commit rubygem-sqlite3 for openSUSE:Factory

2014-03-18 Thread h_root
Hello community,

here is the log from the commit of package rubygem-sqlite3 for openSUSE:Factory 
checked in at 2014-03-18 14:06:16

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


Package is rubygem-sqlite3

Changes:

--- /work/SRC/openSUSE:Factory/rubygem-sqlite3/rubygem-sqlite3.changes  
2014-02-12 20:59:15.0 +0100
+++ /work/SRC/openSUSE:Factory/.rubygem-sqlite3.new/rubygem-sqlite3.changes 
2014-03-18 14:06:17.0 +0100
@@ -1,0 +2,9 @@
+Sat Mar 15 18:46:01 UTC 2014 - co...@suse.com
+
+- updated to version 1.3.9
+ * Bugfixes:
+   * Reset exception message. Closes #80
+   * Reduce warnings due unused pointers. Closes #89
+   * Add BSD-3 license reference to gemspec. Refs #99 and #106
+
+---

Old:

  sqlite3-1.3.8.gem

New:

  sqlite3-1.3.9.gem



Other differences:
--
++ rubygem-sqlite3.spec ++
--- /var/tmp/diff_new_pack.awc2vE/_old  2014-03-18 14:06:17.0 +0100
+++ /var/tmp/diff_new_pack.awc2vE/_new  2014-03-18 14:06:17.0 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   rubygem-sqlite3
-Version:1.3.8
+Version:1.3.9
 Release:0
 %define mod_name sqlite3
 %define mod_full_name %{mod_name}-%{version}
@@ -25,9 +25,10 @@
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildRequires:  ruby-macros = 3
 Requires:   ruby = 1.8.7
-BuildRequires:  ruby-devel = 1.8.7
+BuildRequires:  ruby = 1.8.7
+BuildRequires:  ruby-devel
 BuildRequires:  rubygem(rdoc)  3.10
-Url:http://github.com/luislavena/sqlite3-ruby
+Url:https://github.com/sparklemotion/sqlite3-ruby
 Source: http://rubygems.org/gems/%{mod_full_name}.gem
 Summary:This module allows Ruby programs to interface with the SQLite3
 License:BSD-3-Clause

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



commit rubygem-sqlite3 for openSUSE:Factory

2014-02-12 Thread h_root
Hello community,

here is the log from the commit of package rubygem-sqlite3 for openSUSE:Factory 
checked in at 2014-02-12 20:59:14

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


Package is rubygem-sqlite3

Changes:

--- /work/SRC/openSUSE:Factory/rubygem-sqlite3/rubygem-sqlite3.changes  
2013-09-27 18:19:25.0 +0200
+++ /work/SRC/openSUSE:Factory/.rubygem-sqlite3.new/rubygem-sqlite3.changes 
2014-02-12 20:59:15.0 +0100
@@ -1,0 +2,11 @@
+Mon Feb 10 18:34:01 UTC 2014 - cfarr...@suse.com
+
+- license update: BSD-3-Clause
+  See LICENSE in data/
+
+---
+Thu Feb  6 08:41:18 UTC 2014 - co...@suse.com
+
+- use new macros
+
+---



Other differences:
--
++ rubygem-sqlite3.spec ++
--- /var/tmp/diff_new_pack.AT9jw5/_old  2014-02-12 20:59:15.0 +0100
+++ /var/tmp/diff_new_pack.AT9jw5/_new  2014-02-12 20:59:15.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package rubygem-sqlite3
 #
-# 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
@@ -23,18 +23,19 @@
 %define mod_full_name %{mod_name}-%{version}
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-BuildRequires:  ruby-macros = 1
+BuildRequires:  ruby-macros = 3
 Requires:   ruby = 1.8.7
 BuildRequires:  ruby-devel = 1.8.7
 BuildRequires:  rubygem(rdoc)  3.10
-# MANUAL
-BuildRequires:  sqlite-devel = 3.6.16
-Requires:   sqlite3 = 3.6.16
 Url:http://github.com/luislavena/sqlite3-ruby
-Source: %{mod_full_name}.gem
+Source: http://rubygems.org/gems/%{mod_full_name}.gem
 Summary:This module allows Ruby programs to interface with the SQLite3
 License:BSD-3-Clause
 Group:  Development/Languages/Ruby
+# MANUAL BEGIN
+BuildRequires:  sqlite-devel = 3.6.16
+Requires:   sqlite3 = 3.6.16
+# MANUAL END
 
 %description
 This module allows Ruby programs to interface with the SQLite3
@@ -69,20 +70,26 @@
 %install
 %gem_install -f
 %gem_cleanup
+mkdir -p %{buildroot}%{_docdir}/%{name}
+ln -s %{gem_base}/gems/%{mod_full_name}/CHANGELOG.rdoc 
%buildroot/%{_docdir}/%{name}/CHANGELOG.rdoc
+ln -s %{gem_base}/gems/%{mod_full_name}/LICENSE 
%buildroot/%{_docdir}/%{name}/LICENSE
+ln -s %{gem_base}/gems/%{mod_full_name}/README.rdoc 
%buildroot/%{_docdir}/%{name}/README.rdoc
 
 %files
 %defattr(-,root,root,-)
-%{_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
+%{_docdir}/%{name}
+%{gem_base}/cache/%{mod_full_name}.gem
+%{gem_base}/gems/%{mod_full_name}/
+%{gem_extensions}/%{mod_full_name}
+%exclude %{gem_base}/gems/%{mod_full_name}/test
+%{gem_base}/specifications/%{mod_full_name}.gemspec
 
 %files doc
 %defattr(-,root,root,-)
-%doc %{_libdir}/ruby/gems/%{rb_ver}/doc/%{mod_full_name}/
+%doc %{gem_base}/doc
 
 %files testsuite
 %defattr(-,root,root,-)
-%{_libdir}/ruby/gems/%{rb_ver}/gems/%{mod_full_name}/test
+%{gem_base}/gems/%{mod_full_name}/test
 
 %changelog


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



commit rubygem-sqlite3 for openSUSE:Factory

2013-09-27 Thread h_root
Hello community,

here is the log from the commit of package rubygem-sqlite3 for openSUSE:Factory 
checked in at 2013-09-27 18:19:23

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


Package is rubygem-sqlite3

Changes:

--- /work/SRC/openSUSE:Factory/rubygem-sqlite3/rubygem-sqlite3.changes  
2013-03-08 11:20:50.0 +0100
+++ /work/SRC/openSUSE:Factory/.rubygem-sqlite3.new/rubygem-sqlite3.changes 
2013-09-27 18:19:25.0 +0200
@@ -1,0 +2,19 @@
+Mon Aug 26 05:05:37 UTC 2013 - co...@suse.com
+
+- updated to version 1.3.8
+ * Enhancements:
+   * Windows: build against SQLite 3.7.17
+ 
+ * Bugfixes:
+   * Reset exception message. Closes #80
+   * Correctly convert BLOB values to Ruby. Closes #65
+   * Add MIT license reference to gemspec. Closes #99
+   * Remove unused pointer. Closes #89
+ 
+ * Internal:
+   * Backport improvements in cross compilation for Windows
+   * Use of Minitest for internal tests
+   * Use Gemfile (generated by Hoe) to deal with dependencies
+   * Cleanup Travis CI
+
+---

Old:

  sqlite3-1.3.7.gem

New:

  sqlite3-1.3.8.gem



Other differences:
--
++ rubygem-sqlite3.spec ++
--- /var/tmp/diff_new_pack.oZZgyX/_old  2013-09-27 18:19:25.0 +0200
+++ /var/tmp/diff_new_pack.oZZgyX/_new  2013-09-27 18:19:25.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   rubygem-sqlite3
-Version:1.3.7
+Version:1.3.8
 Release:0
 %define mod_name sqlite3
 %define mod_full_name %{mod_name}-%{version}

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



commit rubygem-sqlite3 for openSUSE:Factory

2013-03-08 Thread h_root
Hello community,

here is the log from the commit of package rubygem-sqlite3 for openSUSE:Factory 
checked in at 2013-03-08 10:59:04

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


Package is rubygem-sqlite3, Maintainer is mrueck...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/rubygem-sqlite3/rubygem-sqlite3.changes  
2012-04-17 22:02:40.0 +0200
+++ /work/SRC/openSUSE:Factory/.rubygem-sqlite3.new/rubygem-sqlite3.changes 
2013-03-08 10:59:06.0 +0100
@@ -1,0 +2,10 @@
+Sun Jan 20 07:24:23 UTC 2013 - co...@suse.com
+
+- updated to version 1.3.7
+ * Bugfixes
+   * Closing a bad statement twice will not segv.
+ 
+ * Internal
+   * Unset environment variables that could affect cross compilation.
+
+---

Old:

  sqlite3-1.3.6.gem

New:

  sqlite3-1.3.7.gem



Other differences:
--
++ rubygem-sqlite3.spec ++
--- /var/tmp/diff_new_pack.jWwif0/_old  2013-03-08 10:59:07.0 +0100
+++ /var/tmp/diff_new_pack.jWwif0/_new  2013-03-08 10:59:07.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package rubygem-sqlite3
 #
-# 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,24 +17,22 @@
 
 
 Name:   rubygem-sqlite3
-Version:1.3.6
+Version:1.3.7
 Release:0
 %define mod_name sqlite3
-#
-#
+%define mod_full_name %{mod_name}-%{version}
+
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-BuildRequires:  rubygems_with_buildroot_patch
-%rubygems_requires
-BuildRequires:  sqlite-devel = 3.6.16
+BuildRequires:  ruby-macros = 1
 Requires:   ruby = 1.8.7
-Requires:   sqlite3 = 3.6.16
 BuildRequires:  ruby-devel = 1.8.7
-Provides:   rubygem-sqlite3-ruby = %{version}-%{release}
-#
+BuildRequires:  rubygem(rdoc)  3.10
+# MANUAL
+BuildRequires:  sqlite-devel = 3.6.16
+Requires:   sqlite3 = 3.6.16
 Url:http://github.com/luislavena/sqlite3-ruby
-Source: %{mod_name}-%{version}.gem
-#
-Summary:A Ruby interface for the SQLite3 database engine
+Source: %{mod_full_name}.gem
+Summary:This module allows Ruby programs to interface with the SQLite3
 License:BSD-3-Clause
 Group:  Development/Languages/Ruby
 
@@ -42,7 +40,6 @@
 This module allows Ruby programs to interface with the SQLite3
 database engine (http://www.sqlite.org).  You must have the
 SQLite engine installed in order to build this module.
-
 Note that this module is only compatible with SQLite 3.6.16 or newer.
 
 %package doc
@@ -63,27 +60,29 @@
 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 %{S:0}
+%gem_install -f
 %gem_cleanup
 
-%clean
-%{__rm} -rf %{buildroot}
-
 %files
 %defattr(-,root,root,-)
-%{_libdir}/ruby/gems/%{rb_ver}/cache/%{mod_name}-%{version}.gem
-%{_libdir}/ruby/gems/%{rb_ver}/gems/%{mod_name}-%{version}/
-%exclude %{_libdir}/ruby/gems/%{rb_ver}/gems/%{mod_name}-%{version}/test
-%{_libdir}/ruby/gems/%{rb_ver}/specifications/%{mod_name}-%{version}.gemspec
+%{_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_name}-%{version}/
+%doc %{_libdir}/ruby/gems/%{rb_ver}/doc/%{mod_full_name}/
 
 %files testsuite
 %defattr(-,root,root,-)
-%{_libdir}/ruby/gems/%{rb_ver}/gems/%{mod_name}-%{version}/test
+%{_libdir}/ruby/gems/%{rb_ver}/gems/%{mod_full_name}/test
 
 %changelog

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



commit rubygem-sqlite3 for openSUSE:Factory

2012-04-17 Thread h_root
Hello community,

here is the log from the commit of package rubygem-sqlite3 for openSUSE:Factory 
checked in at 2012-04-17 22:02:25

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


Package is rubygem-sqlite3, Maintainer is mrueck...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/rubygem-sqlite3/rubygem-sqlite3.changes  
2012-02-16 12:27:51.0 +0100
+++ /work/SRC/openSUSE:Factory/.rubygem-sqlite3.new/rubygem-sqlite3.changes 
2012-04-17 22:02:40.0 +0200
@@ -1,0 +2,53 @@
+Tue Apr 17 07:17:37 UTC 2012 - co...@suse.com
+
+- update to 1.3.6
+  * Enhancements
+* Windows: build against SQLite 3.7.11
+* Added SQLite3::ResultSet#each_hash for fetching each row as a hash.
+* Added SQLite3::ResultSet#next_hash for fetching one row as a hash.
+  
+  * Bugfixes
+* Support both UTF-16LE and UTF-16BE encoding modes on PPC. Closes #63
+* Protect parameters to custom functions from being garbage collected too
+  soon. Fixes #60. Thanks hirataya!
+* Fix backwards compatibility with 1.2.5 with bind vars and `query` method.
+  Fixes #35.
+* Fix double definition error caused by defining sqlite3_int64/uint64.
+* Fix suspicious version regexp.
+  
+  * Deprecations
+* ArrayWithTypesAndFields#types is deprecated and the class will be removed
+  in version 2.0.0.  Please use the `types` method on the ResultSet class
+  that created this object.
+* ArrayWithTypesAndFields#fields is deprecated and the class will be 
removed
+  in version 2.0.0.  Please use the `columns` method on the ResultSet class
+  that created this object.
+* The ArrayWithTypesAndFields class will be removed in 2.0.0
+* The ArrayWithTypes class will be removed in 2.0.0
+* HashWithTypesAndFields#types is deprecated and the class will be removed
+  in version 2.0.0.  Please use the `types` method on the ResultSet class
+  that created this object.
+* HashWithTypesAndFields#fields is deprecated and the class will be removed
+  in version 2.0.0.  Please use the `columns` method on the ResultSet class
+
+---
+Thu Apr  5 07:55:39 UTC 2012 - co...@suse.com
+
+- update to 1.3.5
+  * Enhancements
+* Windows: build against SQLite 3.7.9
+* Static: enable SQLITE_ENABLE_COLUMN_METADATA
+* Added Statement#clear_bindings! to set bindings back to nil
+  
+  * Bugfixes
+* Fixed a segv on Database.new. Fixes #34 (thanks nobu!)
+* Database error is not reset, so don't check it in Statement#reset!
+* Remove conditional around Bignum statement bindings.
+  Fixes #52. Fixes #56. Thank you Evgeny Myasishchev.
+  
+  * Internal
+* Use proper endianness when testing database connection with UTF-16.
+  Fixes #40. Fixes #51
+* Use -fPIC for static compilation when host is x86_64.
+
+---

Old:

  sqlite3-1.3.4.gem

New:

  sqlite3-1.3.6.gem



Other differences:
--
++ rubygem-sqlite3.spec ++
--- /var/tmp/diff_new_pack.89WzZQ/_old  2012-04-17 22:02:42.0 +0200
+++ /var/tmp/diff_new_pack.89WzZQ/_new  2012-04-17 22:02:42.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   rubygem-sqlite3
-Version:1.3.4
+Version:1.3.6
 Release:0
 %define mod_name sqlite3
 #
@@ -25,8 +25,9 @@
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildRequires:  rubygems_with_buildroot_patch
 %rubygems_requires
-BuildRequires:  sqlite-devel  3
+BuildRequires:  sqlite-devel = 3.6.16
 Requires:   ruby = 1.8.7
+Requires:   sqlite3 = 3.6.16
 BuildRequires:  ruby-devel = 1.8.7
 Provides:   rubygem-sqlite3-ruby = %{version}-%{release}
 #
@@ -42,7 +43,7 @@
 database engine (http://www.sqlite.org).  You must have the
 SQLite engine installed in order to build this module.
 
-Note that this module is NOT compatible with SQLite 2.x.
+Note that this module is only compatible with SQLite 3.6.16 or newer.
 
 %package doc
 Summary:RDoc documentation for %{mod_name}

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



commit rubygem-sqlite3 for openSUSE:Factory

2012-02-16 Thread h_root
Hello community,

here is the log from the commit of package rubygem-sqlite3 for openSUSE:Factory 
checked in at 2012-02-16 12:27:48

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


Package is rubygem-sqlite3, Maintainer is mrueck...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/rubygem-sqlite3/rubygem-sqlite3.changes  
2011-09-23 12:45:05.0 +0200
+++ /work/SRC/openSUSE:Factory/.rubygem-sqlite3.new/rubygem-sqlite3.changes 
2012-02-16 12:27:51.0 +0100
@@ -1,0 +2,49 @@
+Mon Feb 13 10:55:20 UTC 2012 - co...@suse.com
+
+- patch license to follow spdx.org standard
+
+---
+Fri Aug 19 13:23:41 UTC 2011 - fcaste...@novell.com
+
+- update to version 1.3.4
+  * Enhancements:
+- Windows: build against SQLite 3.7.7.1
+- Windows: build static binaries that do not depend on sqlite3.dll be 
installed anymore
+  * Bugfixes
+- Backup API is conditionaly required so that older libsqlite3 can be 
used. Thanks Hongli Lai.
+- Fixed segmentation fault when nil is passed to SQLite3::Statement.new
+- Fix extconf’s hardcoded path that affected installation on certain 
systems.
+
+---
+Tue Apr 12 14:30:22 UTC 2011 - mrueck...@suse.de
+
+- update to version 1.3.3
+  * Abort on installation if sqlite3_backup_init is missing.
+Fixes #19
+- switched to sqlite3 instead of sqlite3-ruby
+- additional changes from 1.3.2
+  * SQLite3::Database can now be open as readonly
+  db = SQLite3::Database.new('my.db', :readonly = true)
+  * Added SQLite3::SQLITE_VERSION and
+SQLite3::SQLITE_VERSION_NUMBER [nurse]
+  * type_translation= works along with Database#execute and a block
+  * defined functions are kept in a hash to prevent GC. #7
+  * Removed GCC specific flags from extconf.
+  * SQLite3::Database#type_translation= will be deprecated in the
+future with no replacement.
+  * SQlite3::Version will be deprecated in 2.0.0 with
+SQLite3::VERSION as the replacement.
+- additional changes from 1.3.1
+  * Custom collations may be defined using
+SQLite3::Database#collation
+  * Statements returning 0 columns are automatically stepped.
+[RF #28308]
+  * SQLite3::Database#encoding works on 1.8 and 1.9
+- added sqlite3-1.3.3_no_stupid_paths.patch:
+  the extconf.rb was adding some stupid paths to the linker
+  cmdline. the patch removes those entries.
+  patch applied to gem itself and rebuild the gem.
+- split out doc and testsuite
+- updated rpmlintrc to a less stupid version
+
+---

Old:

  sqlite3-ruby-1.3.0.gem

New:

  sqlite3-1.3.4.gem



Other differences:
--
++ rubygem-sqlite3.spec ++
--- /var/tmp/diff_new_pack.yCkMCC/_old  2012-02-16 12:27:52.0 +0100
+++ /var/tmp/diff_new_pack.yCkMCC/_new  2012-02-16 12:27:52.0 +0100
@@ -1,7 +1,7 @@
 #
-# spec file for package rubygem-sqlite3 (Version 1.3.0)
+# spec file for package rubygem-sqlite3
 #
-# Copyright (c) 2010 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
@@ -15,30 +15,27 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
-# norootforbuild
-
 
 Name:   rubygem-sqlite3
-Version:1.3.0
-Release:1
-%define mod_name sqlite3-ruby
+Version:1.3.4
+Release:0
+%define mod_name sqlite3
 #
-Group:  Development/Languages/Ruby
-License:BSD3c(or similar)
 #
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildRequires:  rubygems_with_buildroot_patch
-BuildRequires:  sqlite-devel  3
 %rubygems_requires
-Requires:   ruby = 1.8.6
-BuildRequires:  ruby-devel = 1.8.6
+BuildRequires:  sqlite-devel  3
+Requires:   ruby = 1.8.7
+BuildRequires:  ruby-devel = 1.8.7
 Provides:   rubygem-sqlite3-ruby = %{version}-%{release}
 #
 Url:http://github.com/luislavena/sqlite3-ruby
 Source: %{mod_name}-%{version}.gem
-Source1:rubygem-sqlite3-rpmlintrc
 #
 Summary:A Ruby interface for the SQLite3 database engine
+License:BSD-3-Clause
+Group:  Development/Languages/Ruby
 
 %description
 This module allows Ruby programs to interface with the SQLite3
@@ -47,10 +44,25 @@
 
 Note that this module is NOT compatible with SQLite 2.x.
 
-%prep
+%package doc
+Summary:RDoc documentation for %{mod_name}
+Group:  Development/Languages/Ruby
+Requires: