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 - [email protected]
+
+- 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.md 2017-06-05 03:10:16.000000000 +0200
+++ new/CHANGELOG.md 2017-09-13 23:37:18.000000000 +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.000000000
+0200
+++ new/lib/mini_portile2/mini_portile.rb 2017-09-13 23:37:18.000000000
+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.rb 2017-06-05 03:10:16.000000000 +0200
+++ new/lib/mini_portile2/version.rb 2017-09-13 23:37:18.000000000 +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/metadata 2017-06-05 03:10:16.000000000 +0200
+++ new/metadata 2017-09-13 23:37:18.000000000 +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.000000000 Z
+date: 2017-09-13 00:00:00.000000000 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