Hello community,
here is the log from the commit of package rubygem-packaging_rake_tasks for
openSUSE:Factory checked in at 2018-06-15 14:32:00
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/rubygem-packaging_rake_tasks (Old)
and /work/SRC/openSUSE:Factory/.rubygem-packaging_rake_tasks.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "rubygem-packaging_rake_tasks"
Fri Jun 15 14:32:00 2018 rev:18 rq:614860 version:1.4.5
Changes:
--------
---
/work/SRC/openSUSE:Factory/rubygem-packaging_rake_tasks/rubygem-packaging_rake_tasks.changes
2017-12-03 10:10:15.485889320 +0100
+++
/work/SRC/openSUSE:Factory/.rubygem-packaging_rake_tasks.new/rubygem-packaging_rake_tasks.changes
2018-06-15 14:32:04.463508715 +0200
@@ -1,0 +2,15 @@
+Thu Mar 1 12:06:29 UTC 2018 - [email protected]
+
+- Support the new .oscrc config file location (~/.config/osc/oscrc),
+ the old path (~/.oscrc) is still supported as a fallback
+ (bsc#1083491)
+- 1.4.5
+
+-------------------------------------------------------------------
+Mon Feb 5 13:44:37 UTC 2018 - [email protected]
+
+- Do not skip symlinks when creating the tarball, which was an
+ unintented consequence of the previous change (bsc#1078900).
+- 1.4.4
+
+-------------------------------------------------------------------
Old:
----
packaging_rake_tasks-1.4.3.gem
New:
----
packaging_rake_tasks-1.4.5.gem
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ rubygem-packaging_rake_tasks.spec ++++++
--- /var/tmp/diff_new_pack.3ughV8/_old 2018-06-15 14:32:05.371475504 +0200
+++ /var/tmp/diff_new_pack.3ughV8/_new 2018-06-15 14:32:05.375475359 +0200
@@ -1,7 +1,7 @@
#
# spec file for package rubygem-packaging_rake_tasks
#
-# 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
@@ -17,7 +17,7 @@
Name: rubygem-packaging_rake_tasks
-Version: 1.4.3
+Version: 1.4.5
Release: 0
%define mod_name packaging_rake_tasks
%define mod_full_name %{mod_name}-%{version}
@@ -30,7 +30,7 @@
Source: http://rubygems.org/gems/%{mod_full_name}.gem
Source1: gem2rpm.yml
Summary: Rake tasks providing tasks to package project in git and
integration
-License: LGPL-2.1
+License: LGPL-2.1-only
Group: Development/Languages/Ruby
%description
++++++ packaging_rake_tasks-1.4.3.gem -> packaging_rake_tasks-1.4.5.gem ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/VERSION new/VERSION
--- old/VERSION 2017-09-21 14:04:46.000000000 +0200
+++ new/VERSION 2017-07-13 08:53:54.000000000 +0200
@@ -1 +1 @@
-1.4.3
+1.4.5
Binary files old/checksums.yaml.gz and new/checksums.yaml.gz differ
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/lib/packaging/configuration.rb
new/lib/packaging/configuration.rb
--- old/lib/packaging/configuration.rb 2017-09-21 14:04:46.000000000 +0200
+++ new/lib/packaging/configuration.rb 2017-07-13 08:53:54.000000000 +0200
@@ -14,6 +14,8 @@
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
#++
+require "singleton"
+
module Packaging
def self.configuration &block
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/lib/tasks/check_osc.rake new/lib/tasks/check_osc.rake
--- old/lib/tasks/check_osc.rake 2017-09-21 14:04:46.000000000 +0200
+++ new/lib/tasks/check_osc.rake 2017-07-13 08:53:54.000000000 +0200
@@ -29,9 +29,15 @@
obs_api = Packaging::Configuration.instance.obs_api
command_to_set_osc = "osc -A #{obs_api}"
+ # the old config path
osc_rc = File.expand_path("~/.oscrc")
- if !File.exists? osc_rc
- raise "missing ~/.oscrc file, please run:\n#{command_to_set_osc}"
+ if !File.exist?(osc_rc)
+ # try the new path
+ osc_rc = File.expand_path("~/.config/osc/oscrc")
+
+ if !File.exist?(osc_rc)
+ raise "missing osc configuration file, please
run:\n#{command_to_set_osc}"
+ end
end
`grep -c '\[#{obs_api}\]' #{osc_rc}`
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/lib/tasks/tarball.rake new/lib/tasks/tarball.rake
--- old/lib/tasks/tarball.rake 2017-09-21 14:04:46.000000000 +0200
+++ new/lib/tasks/tarball.rake 2017-07-13 08:53:54.000000000 +0200
@@ -109,7 +109,7 @@
# - set the owner and group to "root"
# - set the fixed modification time
sh("cd #{Shellwords.escape(Packaging::Configuration.instance.package_dir)}
&& " \
- "find #{Shellwords.escape(package_file_name)} -type f -print0 | LC_ALL=C
sort -z | " \
+ "find #{Shellwords.escape(package_file_name)} -xtype f -print0 | LC_ALL=C
sort -z | " \
"tar -c -j -f #{Shellwords.escape(package_file_name)}.tar.bz2 --format=gnu
" \
"--owner=root --group=root --mtime=#{Shellwords.escape(mtime)} --null
--files-from -")
end
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/metadata new/metadata
--- old/metadata 2017-11-29 14:29:45.000000000 +0100
+++ new/metadata 2018-06-07 10:04:33.000000000 +0200
@@ -1,14 +1,14 @@
--- !ruby/object:Gem::Specification
name: packaging_rake_tasks
version: !ruby/object:Gem::Version
- version: 1.4.3
+ version: 1.4.5
platform: ruby
authors:
- Josef Reidinger
autorequire:
bindir: bin
cert_chain: []
-date: 2017-11-29 00:00:00.000000000 Z
+date: 2018-06-07 00:00:00.000000000 Z
dependencies:
- !ruby/object:Gem::Dependency
name: rake
@@ -66,10 +66,9 @@
version: '0'
requirements: []
rubyforge_project:
-rubygems_version: 2.2.5
+rubygems_version: 2.7.3
signing_key:
specification_version: 4
summary: Rake tasks providing tasks to package project in git and integration
with
build service
test_files: []
-has_rdoc: