Hello community,

here is the log from the commit of package container-diff for 
openSUSE:Leap:15.2 checked in at 2020-01-17 12:05:26
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Leap:15.2/container-diff (Old)
 and      /work/SRC/openSUSE:Leap:15.2/.container-diff.new.26092 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "container-diff"

Fri Jan 17 12:05:26 2020 rev:18 rq:764723 version:0.15.0

Changes:
--------
--- /work/SRC/openSUSE:Leap:15.2/container-diff/container-diff.changes  
2020-01-15 14:50:49.677430237 +0100
+++ 
/work/SRC/openSUSE:Leap:15.2/.container-diff.new.26092/container-diff.changes   
    2020-01-17 12:05:30.584611553 +0100
@@ -1,0 +2,68 @@
+Wed Oct 16 08:19:02 UTC 2019 - Sascha Grunert <[email protected]>
+
+- Add container-diff to SLE12 and 15 (bsc#1148768, jsc#ECO-338) 
+
+-------------------------------------------------------------------
+Fri Aug 23 17:53:33 UTC 2019 - Jan Engelhardt <[email protected]>
+
+- Use noun phrase in summary field.
+
+-------------------------------------------------------------------
+Tue Aug 20 11:25:02 UTC 2019 - Sascha Grunert <[email protected]>
+
+- Update container-diff to v0.15.0
+  * Fix result switch while viewing with type history
+  * Use PKG-INFO and METADATA to infer package names in pip analysis
+  * Use top_level.txt when analyzing pip modules
+  * Strip colons from file path before creating cache dir
+  * Enhancement - save to file
+  * Fixed concurrent map write in image diffing
+  * Split lines prior to diffing
+  * Move all image processing logic into utils, and expose publicly
+
+-------------------------------------------------------------------
+Wed Oct 31 08:14:13 UTC 2018 - David Cassany <[email protected]>
+
+- Update container-diff to v0.13.1
+  * Fix docker library dependency overrides #269
+  * Update go-containerregistry to pick up docker API client negotiation #267
+  * Fix unintended variable shadowing #263
+  * Change the default analysis type from apt to size #266
+
+-------------------------------------------------------------------
+Wed Oct 10 09:34:27 UTC 2018 - David Cassany <[email protected]>
+
+- Update container-diff to v0.12.0
+  * Add script to list all pull requests for each release #258
+  * Fix deps #260
+  * Backfill changelog #257
+  * Add maintainers file and new issue template #259
+  * Add size analyzer #256
+  * Fix destination path for clone in contrib guidance. #255
+  * Add rpmlayer differ #252
+  * Handle error gracefully when we can't retrieve an image #251
+  * Layered analysis for single version packages #248
+  * Reuse cached filesystems for layers #247
+
+-------------------------------------------------------------------
+Thu Jun 28 08:22:29 UTC 2018 - [email protected]
+
+- Update container-diff to v0.11.0
+  * Don't overwrite loaded tarball image
+  * Use local RPM binary (when possible) in RPM differ
+  * Switch to github.com/google/go-containerregistry
+  * Fix entrypoint in RPM differ
+  * Various metadata diffing fixes
+  * Remove Bazel
+  * Switch docker Requires to Recommends
+  * Update github project name in spec, now called GoogleContainerTools
+
+-------------------------------------------------------------------
+Fri Jun  8 07:16:06 UTC 2018 - [email protected]
+
+- Cleanup spec file with spec-cleaner
+- Install license
+- Remove redundant comments
+- Drop not needed requirement for fdupes
+
+-------------------------------------------------------------------

Old:
----
  container-diff-0.9.0.tar.xz

New:
----
  container-diff-0.15.0.tar.xz

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ container-diff.spec ++++++
--- /var/tmp/diff_new_pack.sLsLxY/_old  2020-01-17 12:05:30.948611713 +0100
+++ /var/tmp/diff_new_pack.sLsLxY/_new  2020-01-17 12:05:30.948611713 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package container-diff
 #
-# Copyright (c) 2018 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,23 +12,22 @@
 # 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/
 #
 
 
-%define project github.com/GoogleCloudPlatform/container-diff
+%define project github.com/GoogleContainerTools/container-diff
 Name:           container-diff
-Version:        0.9.0
+Version:        0.15.0
 Release:        0
-Summary:        Analyze and compare container images
+Summary:        Tool to analyze and compare container images
 License:        Apache-2.0
 Group:          System/Management
-Url:            https://github.com/GoogleCloudPlatform/container-diff
+URL:            https://github.com/GoogleCloudPlatform/container-diff
 Source0:        %{name}-%{version}.tar.xz
-BuildRequires:  fdupes
 BuildRequires:  golang-packaging
 BuildRequires:  golang(API) >= 1.7
-Requires:       docker
+Recommends:     docker
 # disable stripping of binaries
 %{go_nostrip}
 
@@ -76,21 +75,21 @@
 cd $HOME/go/src/%{project}
 
 # Test container-diff.  Exclude ppc64le, which has known issue with gotest.
-PKG_LIST=$(go list ./... | grep -v %{project}/vendor})
+# Also exclude cmd/diff_test.go as it requires pulling remote images
+PKG_LIST=$(go list ./... | grep -v "%{project}/vendor")
+mv cmd/diff_test.go cmd/diff_test.go.exclude
 %ifnarch ppc64le
 go test $PKG_LIST
 %endif
 
 %install
 cd $HOME/go/src/%{project}
-
-# Binaries
-install -D -m 0755 bin/container-diff %{buildroot}/%{_bindir}/container-diff
-
-%fdupes -s %{buildroot}/%{_prefix}
+install -Dpm 0755 bin/container-diff \
+  %{buildroot}/%{_bindir}/container-diff
 
 %files
-# Binaries
+%license LICENSE
+%doc CHANGELOG.md
 %{_bindir}/container-diff
 
 %changelog

++++++ _service ++++++
--- /var/tmp/diff_new_pack.sLsLxY/_old  2020-01-17 12:05:30.996611734 +0100
+++ /var/tmp/diff_new_pack.sLsLxY/_new  2020-01-17 12:05:30.996611734 +0100
@@ -1,9 +1,9 @@
 <services>
 <service name="tar_scm" mode="disabled">
-<param name="url">https://github.com/GoogleCloudPlatform/container-diff</param>
+<param 
name="url">https://github.com/GoogleContainerTools/container-diff</param>
 <param name="scm">git</param>
-<param name="versionformat">0.9.0</param>
-<param name="revision">v0.9.0</param>
+<param name="versionformat">0.15.0</param>
+<param name="revision">master</param>
 </service>
 <service name="recompress" mode="disabled">
 <param name="file">container-diff-*.tar</param>

++++++ container-diff-0.9.0.tar.xz -> container-diff-0.15.0.tar.xz ++++++
++++ 400226 lines of diff (skipped)


Reply via email to