commit rubygem-mini_portile2 for openSUSE:Factory

2020-06-18 Thread root
Hello community,

here is the log from the commit of package rubygem-mini_portile2 for 
openSUSE:Factory checked in at 2020-06-18 10:18:25

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


Package is "rubygem-mini_portile2"

Thu Jun 18 10:18:25 2020 rev:6 rq:802346 version:2.5.0

Changes:

--- 
/work/SRC/openSUSE:Factory/rubygem-mini_portile2/rubygem-mini_portile2.changes  
2019-01-21 10:06:19.234923892 +0100
+++ 
/work/SRC/openSUSE:Factory/.rubygem-mini_portile2.new.3606/rubygem-mini_portile2.changes
2020-06-18 10:18:30.367029323 +0200
@@ -1,0 +2,12 @@
+Thu May  7 21:02:50 UTC 2020 - Stephan Kulow 
+
+- updated to version 2.5.0
+ see installed CHANGELOG.md
+
+  ### 2.5.0 / 2020-02-24
+  
+   Enhancements
+  
+  * When verifying GPG signatures, remove all imported pubkeys from keyring 
[#90] (Thanks, @hanazuki!)
+
+---

Old:

  mini_portile2-2.4.0.gem

New:

  mini_portile2-2.5.0.gem



Other differences:
--
++ rubygem-mini_portile2.spec ++
--- /var/tmp/diff_new_pack.3Wjyzk/_old  2020-06-18 10:18:31.499032910 +0200
+++ /var/tmp/diff_new_pack.3Wjyzk/_new  2020-06-18 10:18:31.503032922 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package rubygem-mini_portile2
 #
-# Copyright (c) 2018 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-mini_portile2
-Version:2.4.0
+Version:2.5.0
 Release:0
 %define mod_name mini_portile2
 %define mod_full_name %{mod_name}-%{version}
@@ -32,7 +32,7 @@
 BuildRequires:  %{ruby >= 1.9.2}
 BuildRequires:  %{rubygem gem2rpm}
 BuildRequires:  ruby-macros >= 5
-Url:http://github.com/flavorjones/mini_portile
+URL:http://github.com/flavorjones/mini_portile
 Source: https://rubygems.org/gems/%{mod_full_name}.gem
 Source1:gem2rpm.yml
 Summary:Simplistic port-like solution for developers

++ mini_portile2-2.4.0.gem -> mini_portile2-2.5.0.gem ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/.gitignore new/.gitignore
--- old/.gitignore  2018-12-02 09:26:58.0 +0100
+++ new/.gitignore  2020-02-24 20:18:41.0 +0100
@@ -4,4 +4,3 @@
 .bundle
 ports
 concourse/private.yml
-concourse/mini_portile.final.yml
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/CHANGELOG.md new/CHANGELOG.md
--- old/CHANGELOG.md2018-12-02 09:26:58.0 +0100
+++ new/CHANGELOG.md2020-02-24 20:18:41.0 +0100
@@ -1,3 +1,10 @@
+### 2.5.0 / 2020-02-24
+
+ Enhancements
+
+* When verifying GPG signatures, remove all imported pubkeys from keyring 
[#90] (Thanks, @hanazuki!)
+
+
 ### 2.4.0 / 2018-12-02
 
  Enhancements
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Rakefile new/Rakefile
--- old/Rakefile2018-12-02 09:26:58.0 +0100
+++ new/Rakefile2020-02-24 20:18:41.0 +0100
@@ -1,11 +1,10 @@
 require "rake/clean"
-require 'bundler/gem_tasks'
-require 'concourse'
+require "bundler/gem_tasks"
 
 namespace :test do
   desc "Test MiniPortile by running unit tests"
   task :unit do
-sh "ruby -w -W2 -I. -Ilib -e \"#{Dir["test/test_*.rb"].map{|f| "require 
'#{f}';"}.join}\" -- #{ENV['TESTOPTS']} -v"
+sh "ruby -w -W2 -I. -Ilib -e \"#{Dir["test/test_*.rb"].map { |f| "require 
'#{f}';" }.join}\" -- #{ENV["TESTOPTS"]} -v"
   end
 
   desc "Test MiniPortile by compiling examples"
@@ -25,5 +24,8 @@
 
 task :default => [:test]
 
-
-Concourse.new("mini_portile").create_tasks!
+require "concourse"
+Concourse.new("mini_portile", fly_target: "ci") do |c|
+  c.add_pipeline "mini_portile", "mini_portile.yml"
+  c.add_pipeline "mini_portile-pr", "mini_portile-pr.yml"
+end
Binary files old/checksums.yaml.gz and new/checksums.yaml.gz differ
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/concourse/common_prelude.rb 
new/concourse/common_prelude.rb
--- old/concourse/common_prelude.rb 1970-01-01 01:00:00.0 +0100
+++ new/concourse/common_prelude.rb 2020-02-24 20:18:41.0 +0100
@@ -0,0 +1,7 @@
+require "json"
+
+$common_ignore_paths = [
+  "CHANGELOG.md",
+  "README.md",
+  "concourse/**",
+].to_json
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/concourse/common_resources.yml 

commit rubygem-mini_portile2 for openSUSE:Factory

2019-01-21 Thread root
Hello community,

here is the log from the commit of package rubygem-mini_portile2 for 
openSUSE:Factory checked in at 2019-01-21 10:06:16

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


Package is "rubygem-mini_portile2"

Mon Jan 21 10:06:16 2019 rev:5 rq:656374 version:2.4.0

Changes:

--- 
/work/SRC/openSUSE:Factory/rubygem-mini_portile2/rubygem-mini_portile2.changes  
2017-09-21 12:29:59.440253778 +0200
+++ 
/work/SRC/openSUSE:Factory/.rubygem-mini_portile2.new.28833/rubygem-mini_portile2.changes
   2019-01-21 10:06:19.234923892 +0100
@@ -1,0 +2,6 @@
+Sat Dec  8 16:25:22 UTC 2018 - Stephan Kulow 
+
+- updated to version 2.4.0
+ see installed CHANGELOG.md
+
+---

Old:

  mini_portile2-2.3.0.gem

New:

  mini_portile2-2.4.0.gem



Other differences:
--
++ rubygem-mini_portile2.spec ++
--- /var/tmp/diff_new_pack.WyHr54/_old  2019-01-21 10:06:19.802923317 +0100
+++ /var/tmp/diff_new_pack.WyHr54/_new  2019-01-21 10:06:19.806923313 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package rubygem-mini_portile2
 #
-# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2018 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-mini_portile2
-Version:2.3.0
+Version:2.4.0
 Release:0
 %define mod_name mini_portile2
 %define mod_full_name %{mod_name}-%{version}

++ mini_portile2-2.3.0.gem -> mini_portile2-2.4.0.gem ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/CHANGELOG.md new/CHANGELOG.md
--- old/CHANGELOG.md2017-09-13 23:37:18.0 +0200
+++ new/CHANGELOG.md2018-12-02 09:26:58.0 +0100
@@ -1,4 +1,11 @@
-### 2.2.1 / 2017-09-13
+### 2.4.0 / 2018-12-02
+
+ Enhancements
+
+* Skip progress report when Content-Length is unavailable. [#85] (Thanks, 
@eagletmt!)
+
+
+### 2.3.0 / 2017-09-13
 
  Enhancements
 
Binary files old/checksums.yaml.gz and new/checksums.yaml.gz differ
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/concourse/mini_portile.yml 
new/concourse/mini_portile.yml
--- old/concourse/mini_portile.yml  2017-09-13 23:37:18.0 +0200
+++ new/concourse/mini_portile.yml  2018-12-02 09:26:58.0 +0100
@@ -1,16 +1,17 @@
-% ruby_version = RUBIES[:mri].last
-
 groups:
   - name: master
 jobs:
+  <% RUBIES[:mri].last(2).each do |ruby_version| %>
   - ruby-<%= ruby_version %>
-  - windows-install-ruby-2.3
-  - ruby-2.3-devkit
+  <% end %>
+  <% RUBIES[:windows].last(2).each do |ruby_version| %>
+  - win-ruby-<%= ruby_version %>-devkit
+  <% end %>
 
   - name: PRs
 jobs:
   - pr-pending
-  - ruby-<%= ruby_version %>-pr
+  - ruby-<%= RUBIES[:mri].last %>-pr
   - pr-success
 
 resource_types:
@@ -27,13 +28,6 @@
   branch: master
   disable_ci_skip: true # always get the latest pipeline configuration
 
-  - name: nokogiri-ci
-type: git
-source:
-  uri: https://github.com/sparklemotion/nokogiri/
-  branch: master
-  disable_ci_skip: true # always get the latest pipeline configuration
-
   - name: mini_portile
 type: git
 source:
@@ -54,6 +48,7 @@
   #
   #  master
   #
+  <% RUBIES[:mri].last(2).each do |ruby_version| %>
   - name: ruby-<%= ruby_version %>
 public: true
 plan:
@@ -71,42 +66,27 @@
 - name: mini_portile
   run:
 path: ci/concourse/tasks/rake-test/task.sh
+  <% end %>
 
-  - name: windows-install-ruby-2.3
-public: true
-serial_groups: [windows-configuration]
-plan:
-  - get: nokogiri-ci
-  - get: mini_portile
-trigger: true
-  - task: setup
-config:
-  platform: windows
-  inputs:
-- name: nokogiri-ci
-  path: ci
-  run:
-path: powershell
-args: ["-File", 
"ci/concourse/tasks/windows-config/install-ruby-and-devkit.ps1"]
-
-  - name: ruby-2.3-devkit
+  <% RUBIES[:windows].last(2).each do |ruby_version| %>
+  - name: win-ruby-<%= ruby_version %>-devkit
 public: true
 plan:
   - get: ci
-  - get: 

commit rubygem-mini_portile2 for openSUSE:Factory

2017-09-21 Thread root
Hello community,

here is the log from the commit of package rubygem-mini_portile2 for 
openSUSE:Factory checked in at 2017-09-21 12:29:46

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


Package is "rubygem-mini_portile2"

Thu Sep 21 12:29:46 2017 rev:4 rq:526801 version:2.3.0

Changes:

--- 
/work/SRC/openSUSE:Factory/rubygem-mini_portile2/rubygem-mini_portile2.changes  
2017-06-20 11:01:14.936330447 +0200
+++ 
/work/SRC/openSUSE:Factory/.rubygem-mini_portile2.new/rubygem-mini_portile2.changes
 2017-09-21 12:29:59.440253778 +0200
@@ -1,0 +2,13 @@
+Sun Sep 17 17:51:50 UTC 2017 - co...@suse.com
+
+- updated to version 2.3.0
+ see installed CHANGELOG.md
+
+  ### 2.2.1 / 2017-09-13
+  
+   Enhancements
+  
+  * Verify checksums of files at extraction time (in addition to at download 
time). (#56)
+  * Clarify error message if a `tar` command can't be found. (#81)
+
+---

Old:

  mini_portile2-2.2.0.gem

New:

  mini_portile2-2.3.0.gem



Other differences:
--
++ rubygem-mini_portile2.spec ++
--- /var/tmp/diff_new_pack.QUtIOV/_old  2017-09-21 12:30:02.731790766 +0200
+++ /var/tmp/diff_new_pack.QUtIOV/_new  2017-09-21 12:30:02.751787953 +0200
@@ -24,7 +24,7 @@
 #
 
 Name:   rubygem-mini_portile2
-Version:2.2.0
+Version:2.3.0
 Release:0
 %define mod_name mini_portile2
 %define mod_full_name %{mod_name}-%{version}
@@ -33,7 +33,7 @@
 BuildRequires:  %{rubygem gem2rpm}
 BuildRequires:  ruby-macros >= 5
 Url:http://github.com/flavorjones/mini_portile
-Source: http://rubygems.org/gems/%{mod_full_name}.gem
+Source: https://rubygems.org/gems/%{mod_full_name}.gem
 Source1:gem2rpm.yml
 Summary:Simplistic port-like solution for developers
 License:MIT

++ mini_portile2-2.2.0.gem -> mini_portile2-2.3.0.gem ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/CHANGELOG.md new/CHANGELOG.md
--- old/CHANGELOG.md2017-06-05 03:10:16.0 +0200
+++ new/CHANGELOG.md2017-09-13 23:37:18.0 +0200
@@ -1,3 +1,11 @@
+### 2.2.1 / 2017-09-13
+
+ Enhancements
+
+* Verify checksums of files at extraction time (in addition to at download 
time). (#56)
+* Clarify error message if a `tar` command can't be found. (#81)
+
+
 ### 2.2.0 / 2017-06-04
 
  Enhancements
Binary files old/checksums.yaml.gz and new/checksums.yaml.gz differ
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lib/mini_portile2/mini_portile.rb 
new/lib/mini_portile2/mini_portile.rb
--- old/lib/mini_portile2/mini_portile.rb   2017-06-05 03:10:16.0 
+0200
+++ new/lib/mini_portile2/mini_portile.rb   2017-09-13 23:37:18.0 
+0200
@@ -58,6 +58,7 @@
 
   def extract
 files_hashs.each do |file|
+  verify_file(file)
   extract_file(file[:local_path], tmp_path)
 end
   end
@@ -302,11 +303,12 @@
   }
   end
 
+  TAR_EXECUTABLES = %w[gtar bsdtar tar basic-bsdtar]
   def tar_exe
 @@tar_exe ||= begin
-  %w[gtar bsdtar tar basic-bsdtar].find { |c|
+  TAR_EXECUTABLES.find { |c|
 which(c)
-  }
+  } or raise("tar not found - please make sure that one of the following 
commands is in the PATH: #{TAR_EXECUTABLES.join(", ")}")
 end
   end
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lib/mini_portile2/version.rb 
new/lib/mini_portile2/version.rb
--- old/lib/mini_portile2/version.rb2017-06-05 03:10:16.0 +0200
+++ new/lib/mini_portile2/version.rb2017-09-13 23:37:18.0 +0200
@@ -1,3 +1,3 @@
 class MiniPortile
-  VERSION = "2.2.0"
+  VERSION = "2.3.0"
 end
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/metadata new/metadata
--- old/metadata2017-06-05 03:10:16.0 +0200
+++ new/metadata2017-09-13 23:37:18.0 +0200
@@ -1,7 +1,7 @@
 --- !ruby/object:Gem::Specification
 name: mini_portile2
 version: !ruby/object:Gem::Version
-  version: 2.2.0
+  version: 2.3.0
 platform: ruby
 authors:
 - Luis Lavena
@@ -10,7 +10,7 @@
 autorequire: 
 bindir: bin
 cert_chain: []
-date: 2017-06-05 00:00:00.0 Z
+date: 2017-09-13 00:00:00.0 Z
 dependencies:
 - !ruby/object:Gem::Dependency
   name: bundler
@@ -156,7 +156,7 @@
   version: '0'
 requirements: []
 rubyforge_project: 
-rubygems_version: 2.6.10
+rubygems_version: 2.6.12
 signing_key: 
 specification_version: 4
 summary: Simplistic port-like solution for developers




commit rubygem-mini_portile2 for openSUSE:Factory

2017-06-20 Thread root
Hello community,

here is the log from the commit of package rubygem-mini_portile2 for 
openSUSE:Factory checked in at 2017-06-20 11:00:53

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


Package is "rubygem-mini_portile2"

Tue Jun 20 11:00:53 2017 rev:3 rq:503344 version:2.2.0

Changes:

--- 
/work/SRC/openSUSE:Factory/rubygem-mini_portile2/rubygem-mini_portile2.changes  
2016-04-07 13:27:23.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.rubygem-mini_portile2.new/rubygem-mini_portile2.changes
 2017-06-20 11:01:14.936330447 +0200
@@ -1,0 +2,17 @@
+Tue Jun  6 05:37:45 UTC 2017 - co...@suse.com
+
+- updated to version 2.2.0
+ see installed CHANGELOG.md
+
+  ### 2.2.0 / 2017-06-04
+  
+   Enhancements
+  
+  * Remove MD5 hashing of configure options, not avialbale in FIPS mode. (#78)
+  * Add experimental support for cmake-based projects.
+  * Retry on HTTP failures during downloads. [#63] (Thanks, @jtarchie and 
@jvshahid!)
+  * Support Ruby 2.4 frozen string literals.
+  * Support applying patches for users with misconfigured git worktree. [#69]
+  * Support gpg signature verification of download resources.
+
+---

Old:

  mini_portile2-2.1.0.gem

New:

  mini_portile2-2.2.0.gem



Other differences:
--
++ rubygem-mini_portile2.spec ++
--- /var/tmp/diff_new_pack.6s5o4e/_old  2017-06-20 11:01:15.656228973 +0200
+++ /var/tmp/diff_new_pack.6s5o4e/_new  2017-06-20 11:01:15.660228409 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package rubygem-mini_portile2
 #
-# 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-mini_portile2
-Version:2.1.0
+Version:2.2.0
 Release:0
 %define mod_name mini_portile2
 %define mod_full_name %{mod_name}-%{version}

++ mini_portile2-2.1.0.gem -> mini_portile2-2.2.0.gem ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/.concourse.yml new/.concourse.yml
--- old/.concourse.yml  1970-01-01 01:00:00.0 +0100
+++ new/.concourse.yml  2017-06-05 03:10:16.0 +0200
@@ -0,0 +1,83 @@
+---
+resources:
+- name: mini_portile
+  type: git
+  source:
+uri: https://github.com/flavorjones/mini_portile
+branch: master
+jobs:
+- name: "Minitest"
+  plan:
+  - get: mini_portile
+  - task: With version 1.9.3
+config:
+  platform: linux
+  image: docker:///ruby#1.9.3
+  inputs:
+  - name: mini_portile
+  run:
+path: bash
+args:
+- "-c"
+- cd mini_portile && bundle install && rake
+privileged: false
+  - task: With version 2.0
+config:
+  platform: linux
+  image: docker:///ruby#2.0
+  inputs:
+  - name: mini_portile
+  run:
+path: bash
+args:
+- "-c"
+- cd mini_portile && bundle install && rake
+privileged: false
+  - task: With version 2.1
+config:
+  platform: linux
+  image: docker:///ruby#2.1
+  inputs:
+  - name: mini_portile
+  run:
+path: bash
+args:
+- "-c"
+- cd mini_portile && bundle install && rake
+privileged: false
+  - task: With version 2.2
+config:
+  platform: linux
+  image: docker:///ruby#2.2
+  inputs:
+  - name: mini_portile
+  run:
+path: bash
+args:
+- "-c"
+- cd mini_portile && bundle install && rake
+privileged: false
+  - task: With version jruby-1.7.23
+config:
+  platform: linux
+  image: docker:///jruby#1.7.23
+  inputs:
+  - name: mini_portile
+  run:
+path: bash
+args:
+- "-c"
+- cd mini_portile && bundle install && rake
+privileged: false
+  - task: With version jruby-9.0.4.0
+config:
+  platform: linux
+  image: docker:///jruby#9.0.4.0
+  inputs:
+  - name: mini_portile
+  run:
+path: bash
+args:
+- "-c"
+- cd mini_portile && bundle install && rake
+privileged: false
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/.gitignore new/.gitignore
--- old/.gitignore  2016-01-06 20:10:15.0 +0100
+++ new/.gitignore  2017-06-05 03:10:16.0 +0200
@@ -3,3 +3,5 @@
 Gemfile.lock
 .bundle
 ports
+concourse/private.yml
+concourse/mini_portile.final.yml
diff -urN '--exclude=CVS' '--exclude=.cvsignore' 

commit rubygem-mini_portile2 for openSUSE:Factory

2016-04-07 Thread h_root
Hello community,

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

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


Package is "rubygem-mini_portile2"

Changes:

--- 
/work/SRC/openSUSE:Factory/rubygem-mini_portile2/rubygem-mini_portile2.changes  
2015-12-27 01:56:51.0 +0100
+++ 
/work/SRC/openSUSE:Factory/.rubygem-mini_portile2.new/rubygem-mini_portile2.changes
 2016-04-07 13:27:23.0 +0200
@@ -1,0 +2,18 @@
+Thu Jan 21 05:39:40 UTC 2016 - co...@suse.com
+
+- updated to version 2.1.0
+ see installed CHANGELOG.md
+
+  ### 2.1.0 / 2016-01-06
+  
+   Enhancements
+  
+  * Add support for `file:` protocol for tarballs
+  
+  
+   Bugfixes
+  
+  * Raise exception on unsupported URI protocols
+  * Ignore git whitespace config when patching (Thanks, @e2!) (#67)
+
+---

Old:

  mini_portile2-2.0.0.gem

New:

  mini_portile2-2.1.0.gem



Other differences:
--
++ rubygem-mini_portile2.spec ++
--- /var/tmp/diff_new_pack.xnjURh/_old  2016-04-07 13:27:24.0 +0200
+++ /var/tmp/diff_new_pack.xnjURh/_new  2016-04-07 13:27:24.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package rubygem-mini_portile2
 #
-# 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-mini_portile2
-Version:2.0.0
+Version:2.1.0
 Release:0
 %define mod_name mini_portile2
 %define mod_full_name %{mod_name}-%{version}

++ mini_portile2-2.0.0.gem -> mini_portile2-2.1.0.gem ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/.gitignore new/.gitignore
--- old/.gitignore  2015-11-30 06:34:40.0 +0100
+++ new/.gitignore  2016-01-06 20:10:15.0 +0100
@@ -1,3 +1,5 @@
 pkg
 tmp
 Gemfile.lock
+.bundle
+ports
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/.travis.yml new/.travis.yml
--- old/.travis.yml 2015-11-30 06:34:40.0 +0100
+++ new/.travis.yml 2016-01-06 20:10:15.0 +0100
@@ -7,5 +7,5 @@
   - 2.1
   - 2.2
   - ruby-head
-  - jruby-1.7.22
-  - jruby-9.0.1.0
+  - jruby-1.7.23
+  - jruby-9.0.4.0
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/CHANGELOG.md new/CHANGELOG.md
--- old/CHANGELOG.md2015-11-30 06:34:40.0 +0100
+++ new/CHANGELOG.md2016-01-06 20:10:15.0 +0100
@@ -1,3 +1,16 @@
+### 2.1.0 / 2016-01-06
+
+ Enhancements
+
+* Add support for `file:` protocol for tarballs
+
+
+ Bugfixes
+
+* Raise exception on unsupported URI protocols
+* Ignore git whitespace config when patching (Thanks, @e2!) (#67)
+
+
 ### 2.0.0 / 2015-11-30
 
 Many thanks to @larskanis, @knu, and @kirikak2, who all contributed
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/LICENSE.txt new/LICENSE.txt
--- old/LICENSE.txt 2015-11-30 06:34:40.0 +0100
+++ new/LICENSE.txt 2016-01-06 20:10:15.0 +0100
@@ -1,4 +1,4 @@
-Copyright (c) 2011-2015 Luis Lavena and Mike Dalessio
+Copyright (c) 2011-2016 Luis Lavena and Mike Dalessio
 
 Permission is hereby granted, free of charge, to any person obtaining
 a copy of this software and associated documentation files (the
Files old/checksums.yaml.gz and new/checksums.yaml.gz differ
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/examples/.gitignore new/examples/.gitignore
--- old/examples/.gitignore 2015-11-30 06:34:40.0 +0100
+++ new/examples/.gitignore 1970-01-01 01:00:00.0 +0100
@@ -1,2 +0,0 @@
-ports
-tmp
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/examples/Rakefile new/examples/Rakefile
--- old/examples/Rakefile   2015-11-30 06:34:40.0 +0100
+++ new/examples/Rakefile   1970-01-01 01:00:00.0 +0100
@@ -1,127 +0,0 @@
-require 'rbconfig'
-
-$: << File.expand_path(File.join(File.dirname(__FILE__), "../lib"))
-require "mini_portile2"
-
-recipes = []
-
-def windows?
-  RbConfig::CONFIG['target_os'] =~ /mswin|mingw32/
-end
-
-# libiconv
-libiconv = MiniPortile.new "libiconv", "1.14"
-libiconv.files << 
"ftp://ftp.gnu.org/pub/gnu/#{libiconv.name}/#{libiconv.name}-#{libiconv.version}.tar.gz;
-unless windows?
-  libiconv.patch_files =