Hello community,
here is the log from the commit of package rubygem-packaging_rake_tasks for
openSUSE:Factory checked in at 2020-12-05 20:35:52
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/rubygem-packaging_rake_tasks (Old)
and /work/SRC/openSUSE:Factory/.rubygem-packaging_rake_tasks.new.5913
(New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "rubygem-packaging_rake_tasks"
Sat Dec 5 20:35:52 2020 rev:23 rq:852573 version:1.4.14
Changes:
--------
---
/work/SRC/openSUSE:Factory/rubygem-packaging_rake_tasks/rubygem-packaging_rake_tasks.changes
2020-06-27 23:22:05.089724546 +0200
+++
/work/SRC/openSUSE:Factory/.rubygem-packaging_rake_tasks.new.5913/rubygem-packaging_rake_tasks.changes
2020-12-05 20:36:22.254659355 +0100
@@ -1,0 +2,22 @@
+Wed Dec 2 09:09:34 UTC 2020 - José Iván López González <[email protected]>
+
+- Do not check license in vector images (needed for jsc#SLE-16313).
+- 1.4.14
+
+-------------------------------------------------------------------
+Tue Dec 1 14:51:52 UTC 2020 - Ladislav Slezák <[email protected]>
+
+- Use the "--non-interactive" zypper option in the
+ "build_dependencies:install" task if not running in a terminal
+ (related to bsc#1179445)
+- 1.4.13
+
+-------------------------------------------------------------------
+Tue Dec 1 08:54:02 UTC 2020 - Ladislav Slezák <[email protected]>
+
+- Use "sudo" in the "build_dependencies:install" task only when
+ running as non-root, "sudo" might not be installed when running
+ as root (bsc#1179445)
+- 1.4.12
+
+-------------------------------------------------------------------
Old:
----
packaging_rake_tasks-1.4.11.gem
New:
----
packaging_rake_tasks-1.4.14.gem
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ rubygem-packaging_rake_tasks.spec ++++++
--- /var/tmp/diff_new_pack.fX3Fs9/_old 2020-12-05 20:36:22.694659801 +0100
+++ /var/tmp/diff_new_pack.fX3Fs9/_new 2020-12-05 20:36:22.694659801 +0100
@@ -17,7 +17,7 @@
Name: rubygem-packaging_rake_tasks
-Version: 1.4.11
+Version: 1.4.14
Release: 0
%define mod_name packaging_rake_tasks
%define mod_full_name %{mod_name}-%{version}
++++++ packaging_rake_tasks-1.4.11.gem -> packaging_rake_tasks-1.4.14.gem ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/VERSION new/VERSION
--- old/VERSION 2020-06-23 15:51:49.000000000 +0200
+++ new/VERSION 2020-12-01 10:20:18.000000000 +0100
@@ -1 +1 @@
-1.4.11
+1.4.14
Binary files old/checksums.yaml.gz and new/checksums.yaml.gz differ
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/lib/tasks/build_dependencies.rake
new/lib/tasks/build_dependencies.rake
--- old/lib/tasks/build_dependencies.rake 2020-06-23 15:51:49.000000000
+0200
+++ new/lib/tasks/build_dependencies.rake 2020-12-01 10:20:18.000000000
+0100
@@ -54,7 +54,9 @@
if escaped_list.empty?
puts "Nothing to install, *.spec file not found or no build dependencies
defined"
else
- cmd = "sudo zypper install #{escaped_list}"
+ sudo = Process.euid.zero? ? "" : "sudo"
+ interactive = $stdin.tty? ? "" : "--non-interactive"
+ cmd = "#{sudo} zypper #{interactive} install #{escaped_list}"
sh(cmd)
end
end
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/lib/tasks/check_license.rake
new/lib/tasks/check_license.rake
--- old/lib/tasks/check_license.rake 2020-06-23 15:51:49.000000000 +0200
+++ new/lib/tasks/check_license.rake 2020-12-01 10:20:18.000000000 +0100
@@ -64,6 +64,9 @@
elsif fn =~ /\.md\z/ || fn =~ /\.doc\z/ || fn =~ /\.txt\z/
report[:skipped] << "#{fn}: skipped by name match (documentation file)"
next
+ elsif fn =~ /\.svg\z/ || fn =~ /\.eps\z/
+ report[:skipped] << "#{fn}: skipped by name match (vector image)"
+ next
end
skipped = Packaging::Configuration.instance.skip_license_check.any? do
|skip|
res = fn =~ skip
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/metadata new/metadata
--- old/metadata 2020-06-23 15:51:49.000000000 +0200
+++ new/metadata 2020-12-02 10:49:55.000000000 +0100
@@ -1,14 +1,14 @@
--- !ruby/object:Gem::Specification
name: packaging_rake_tasks
version: !ruby/object:Gem::Version
- version: 1.4.11
+ version: 1.4.14
platform: ruby
authors:
- Josef Reidinger
autorequire:
bindir: bin
cert_chain: []
-date: 2020-06-23 00:00:00.000000000 Z
+date: 2020-12-02 00:00:00.000000000 Z
dependencies:
- !ruby/object:Gem::Dependency
name: rake
@@ -66,7 +66,8 @@
- !ruby/object:Gem::Version
version: '0'
requirements: []
-rubygems_version: 3.1.2
+rubyforge_project:
+rubygems_version: 2.7.6.2
signing_key:
specification_version: 4
summary: Rake tasks providing tasks to package project in git and integration
with
_______________________________________________
openSUSE Commits mailing list -- [email protected]
To unsubscribe, email [email protected]
List Netiquette: https://en.opensuse.org/openSUSE:Mailing_list_netiquette
List Archives:
https://lists.opensuse.org/archives/list/[email protected]