Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package python-kiwi for openSUSE:Factory 
checked in at 2022-12-28 10:54:13
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-kiwi (Old)
 and      /work/SRC/openSUSE:Factory/.python-kiwi.new.1563 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "python-kiwi"

Wed Dec 28 10:54:13 2022 rev:103 rq:1045322 version:9.24.55

Changes:
--------
--- /work/SRC/openSUSE:Factory/python-kiwi/python-kiwi.changes  2022-10-27 
13:53:18.892305070 +0200
+++ /work/SRC/openSUSE:Factory/.python-kiwi.new.1563/python-kiwi.changes        
2022-12-28 10:54:15.576025104 +0100
@@ -1,0 +2,338 @@
+Sun Dec 18 20:33:54 CET 2022 - Marcus Schäfer <marcus.schae...@gmail.com>
+
+- Bump version: 9.24.54 → 9.24.55
+
+-------------------------------------------------------------------
+Wed Dec 14 16:26:27 CET 2022 - Marcus Schäfer <marcus.schae...@gmail.com>
+
+- Allow to pass credentials as file reference
+
+-------------------------------------------------------------------
+Tue Dec 13 15:20:41 CET 2022 - Marcus Schäfer <marcus.schae...@gmail.com>
+
+- Fixed handling of container archive compression
+
+  In kiwi we support handling of the container archive compression
+  via a runtime configuration setting of the following form, eg
+  in /etc/kiwi.yml
+
+  ```yaml
+  container:
+  # Specify compression for container images
+  # Possible values are true, false, xz or none.
+  - compress: true
+  ```
+
+  However, this setting was only taken into account in the kiwi
+  bundler. Meaning if the user calls 'kiwi result bundle ...'
+  after the container image has been created the result bundler
+  will take the compression setting into account. From my perspective
+  this behavior is misleading and also prevents users from
+  creating compressed container archives without a subsequent
+  result bundler call. Therefore this commit moves the place to
+  handle the compression setting into the container classes.
+  The bundler code for containers will no longer operate on it
+  and just takes what it gets, which can be either compressed
+  or not. The default setting was "No compression" and this
+  was not changed. This Fixes #2217
+
+-------------------------------------------------------------------
+Tue Dec 13 14:32:43 CET 2022 - Marcus Schäfer <marcus.schae...@gmail.com>
+
+- Add type hints for OCI and APPX classes
+
+-------------------------------------------------------------------
+Sun Dec 11 20:17:23 CET 2022 - Marcus Schäfer <marcus.schae...@gmail.com>
+
+- Bump version: 9.24.53 → 9.24.54
+
+-------------------------------------------------------------------
+Sun Dec 11 20:15:24 CET 2022 - Marcus Schäfer <marcus.schae...@gmail.com>
+
+- Fix publish to pypi
+
+  bind gh-action module to v1 release
+
+-------------------------------------------------------------------
+Sun Dec 11 19:59:49 CET 2022 - Marcus Schäfer <marcus.schae...@gmail.com>
+
+- Bump version: 9.24.52 → 9.24.53
+
+-------------------------------------------------------------------
+Sat Dec 10 21:35:19 CET 2022 - Marcus Schäfer <marcus.schae...@gmail.com>
+
+- Use ubuntu-20.04 as github hosted runner
+
+  It seems on ubuntu-latest no python 3.6 is available anymore
+
+-------------------------------------------------------------------
+Sat Dec 10 20:13:15 CET 2022 - Marcus Schäfer <marcus.schae...@gmail.com>
+
+- Allow external commands in tox targets
+
+-------------------------------------------------------------------
+Fri Dec 09 21:30:03 CET 2022 - Marcus Schäfer <marcus.schae...@gmail.com>
+
+- Fix unit test run for BLS spec base class
+
+  Do not really call blkid as used in get_boot_cmdline
+
+-------------------------------------------------------------------
+Fri Dec 09 15:33:51 CET 2022 - Marcus Schäfer <marcus.schae...@gmail.com>
+
+- Fixed typo in documentation
+
+  Capitalize at the start of a sentence.
+  This Fixes #2216
+
+-------------------------------------------------------------------
+Fri Dec 02 11:12:30 CET 2022 - Marcus Schäfer <marcus.schae...@gmail.com>
+
+- Fix unit tests to run in parallel
+
+  Setting sys.argv and global variables impacts tests such that
+  they cannot run in parallel. The little footprint of excluding
+  the --config global args test from the coverage is beneficial
+  to allow parallel test runs
+
+-------------------------------------------------------------------
+Fri Dec 02 10:01:52 CET 2022 - Marcus Schäfer <marcus.schae...@gmail.com>
+
+- Don't show secret parts of an URI
+
+  Using URIs of the form uri://user:pass@location should not be
+  logged or printed including its credential data
+
+-------------------------------------------------------------------
+Fri Dec 02 09:33:11 CET 2022 - Marcus Schäfer <marcus.schae...@gmail.com>
+
+- Don't use split on potential None value
+
+-------------------------------------------------------------------
+Thu Dec 01 12:06:58 CET 2022 - Marcus Schäfer <marcus.schae...@gmail.com>
+
+- Allow to select partition mapper tool
+
+  The recent change from kpartx to partx caused some appliance
+  builds to break depending on their configuration. I spotted
+  issues when building disks with veritysetup or integritysetup
+  root devices. There are also issues with grub-install on other
+  architectures e.g s390. It seems partx cannot be used as a drop
+  in replacement and so I suggest to make this a runtime
+  configuration option with partx as the new default but also
+  allow for the old method
+
+-------------------------------------------------------------------
+Thu Dec 01 09:49:49 CET 2022 - Marcus Schäfer <marcus.schae...@gmail.com>
+
+- Bump version: 9.24.51 → 9.24.52
+
+-------------------------------------------------------------------
+Wed Nov 30 22:19:08 CET 2022 - Marcus Schäfer <marcus.schae...@gmail.com>
+
+- Fix status indicator in helper/build_status.sh
+
+  colored output only worked for toplevel results
+
+-------------------------------------------------------------------
+Wed Nov 30 15:53:29 CET 2022 - Neal Gompa <n...@gompa.dev>
+
+- Eliminate redundant partx calls for cleaning up loop devices
+
+  partx can clean up all partition loops associated with a loop device
+  when deleting the main loop device. Apparently, sometimes it goes and
+  does this even when only deleting the partition loop, so to avoid
+  this problem, we will just eliminate the redundant call.
+
+  Fixes: 8f2b8fda82a37d7a7ebbf8a6557870cc63b0ae91
+
+-------------------------------------------------------------------
+Wed Nov 30 15:18:12 CET 2022 - Marcus Schäfer <marcus.schae...@gmail.com>
+
+- Support repo URI's with credentials on cmdline
+
+  Specifying a repository as part of the image description
+  allows for credentials via the username and password attributes.
+  Howver, repositories can also be specified on the commandline
+  via the --set-repo / --add-repo options. The options on the
+  commandline did not allow to specify credentials so far.
+  This commit adds the commandline options --set-repo-credentials
+  and --add-repo-credentials to support them
+
+-------------------------------------------------------------------
+Wed Nov 30 11:29:14 CET 2022 - Marcus Schäfer <marcus.schae...@gmail.com>
+
+- Update test-image-vagrant
+
+  virtualbox-guest-x11 seems to be deleted from TW
+
+-------------------------------------------------------------------
+Wed Nov 30 11:12:26 CET 2022 - Marcus Schäfer <marcus.schae...@gmail.com>
+
+- Fixed test-image-custom-partitions
+
+  The test was done prior kiwi added the partitions element and
+  demonstrates how to influence the partition table via scripts.
+  These scripts uses kpartx and the device mapper. Due to the
+  recent change from kpartx to partx the scripts must be
+  adapted
+
+-------------------------------------------------------------------
+Tue Nov 29 17:12:59 CET 2022 - Marcus Schäfer <marcus.schae...@gmail.com>
+
+- Bump version: 9.24.50 → 9.24.51
+
+-------------------------------------------------------------------
+Tue Nov 29 17:10:37 CET 2022 - Marcus Schäfer <marcus.schae...@gmail.com>
+
+- Added code style batch to landing page
+
+-------------------------------------------------------------------
+Tue Nov 29 17:05:17 CET 2022 - Marcus Schäfer <marcus.schae...@gmail.com>
+
+- Delete obsolete gitlab pipeline status flag
+
+  Delete obsolete gitlab pipeline status from the project
+  landing page. We do no longer use gitlab since they added
+  that quota thing for their CI system
++++ 176 more lines (skipped)
++++ between /work/SRC/openSUSE:Factory/python-kiwi/python-kiwi.changes
++++ and /work/SRC/openSUSE:Factory/.python-kiwi.new.1563/python-kiwi.changes

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

Other differences:
------------------
++++++ python-kiwi.spec ++++++
--- /var/tmp/diff_new_pack.8UAM7y/_old  2022-12-28 10:54:16.300028862 +0100
+++ /var/tmp/diff_new_pack.8UAM7y/_new  2022-12-28 10:54:16.304028884 +0100
@@ -43,7 +43,7 @@
 %endif
 
 Name:           python-kiwi
-Version:        9.24.49
+Version:        9.24.55
 Provides:       kiwi-schema = 7.5
 Release:        0
 Url:            https://github.com/OSInside/kiwi

++++++ PKGBUILD ++++++
--- /var/tmp/diff_new_pack.8UAM7y/_old  2022-12-28 10:54:16.356029153 +0100
+++ /var/tmp/diff_new_pack.8UAM7y/_new  2022-12-28 10:54:16.360029174 +0100
@@ -3,7 +3,7 @@
 
 pkgname=('python-kiwi' 'kiwi-man-pages' 'dracut-kiwi-lib' 
'dracut-kiwi-oem-repart' 'dracut-kiwi-oem-dump' 'dracut-kiwi-live' 
'dracut-kiwi-overlay')
 arch=(x86_64)
-pkgver=9.24.49
+pkgver=9.24.55
 pkgrel=0
 pkgdesc="KIWI - Appliance Builder Next Generation"
 url="https://github.com/SUSE/kiwi/tarball/master";
@@ -12,7 +12,7 @@
 provides=(kiwi-ng kiwi)
 source=("${pkgname}.tar.gz")
 changelog="${pkgname}.changes"
-md5sums=('2f443034d660eec6201f77643eb15310')
+md5sums=('90bb67123ca2ffef2f8c2886d1e8f493')
 
 
 build() {

++++++ python-kiwi.tar.gz ++++++
++++ 3900 lines of diff (skipped)

Reply via email to