Hello community, here is the log from the commit of package python-kiwi for openSUSE:Factory checked in at 2020-07-09 13:16:10 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/python-kiwi (Old) and /work/SRC/openSUSE:Factory/.python-kiwi.new.3060 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-kiwi" Thu Jul 9 13:16:10 2020 rev:65 rq:818264 version:9.21.3 Changes: -------- --- /work/SRC/openSUSE:Factory/python-kiwi/python-kiwi.changes 2020-06-25 15:00:04.315939553 +0200 +++ /work/SRC/openSUSE:Factory/.python-kiwi.new.3060/python-kiwi.changes 2020-07-09 13:16:12.484670466 +0200 @@ -1,0 +2,335 @@ +Thu Jun 25 16:42:49 CEST 2020 - Marcus Schäfer <[email protected]> + +- Bump version: 9.21.2 → 9.21.3 + +------------------------------------------------------------------- +Thu Jun 25 14:03:53 CEST 2020 - David Cassany <[email protected]> + +- Fixes live ISOs + + This commit fixes iso images. Due to a change introduced in c7ed1cf + live ISOs were no longer booting as the rootfs.img filesystem was + copied to the squashfs container while being still mounted. Because of + that, at boot time, it refused to mount. + + This commit adds umount method for the filesystem base class, so it + can be umounted before deleting the instance. + + Fixes #1489 and bsc#1173356 + +------------------------------------------------------------------- +Fri Jun 19 15:46:29 CEST 2020 - Bo Maryniuk <[email protected]> + +- Global variables (#1485) + + * Fix according to PEP8 + + * Refactor global variables pythonic way + + * Remove unused import + +------------------------------------------------------------------- +Thu Jun 18 12:27:04 CEST 2020 - David Cassany <[email protected]> + +- Add locale configuration hints in docs + +------------------------------------------------------------------- +Wed Jun 17 17:22:09 CEST 2020 - Bo Maryniuk <[email protected]> + +- Add missing decorator for static methods + +------------------------------------------------------------------- +Mon Jun 15 15:18:28 CEST 2020 - Marcus Schäfer <[email protected]> + +- Bump version: 9.21.1 → 9.21.2 + +------------------------------------------------------------------- +Fri Jun 12 18:39:11 CEST 2020 - Marcus Schäfer <[email protected]> + +- Fixed check for root device in grub config + + There is a code path that fixes the grub2-mkconfig used root device + when building in an environment that does not allow to resolve the + by-X path names, e.g an obs build worker without udev. For images + that explicitly defines a root=... value in the kernelcmdline + attribute the root device check was not called because the + _get_root_cmdline_parameter method returns None. This commit fixes + the method to return the expected root device in any case such that + the grub2-mkconfig root device check has a chance to fix what + grub2-mkconfig has created. This fixes bsc#1172928 + +------------------------------------------------------------------- +Fri Jun 12 15:43:37 CEST 2020 - David Cassany <[email protected]> + +- Remove /etc/sysconfig/language support + + As of SLE15 and onwards /etc/sysconfig/language is considered to be + obsolete and just kept for compatibility purposes. Thus there is no + need to manage the file anymore. + + Fixes #1471 + +------------------------------------------------------------------- +Fri Jun 12 14:23:20 CEST 2020 - Marcus Schäfer <[email protected]> + +- Bump version: 9.21.0 → 9.21.1 + +------------------------------------------------------------------- +Fri Jun 12 14:10:48 CEST 2020 - Marcus Schäfer <[email protected]> + +- Fixed test-image-qcow-openstack + + Nothing provides libyui-ncurses-pkg11, yast2-trans-en_US in + TW anymore + +------------------------------------------------------------------- +Fri Jun 12 13:57:48 CEST 2020 - Marcus Schäfer <[email protected]> + +- Moved sle12 ppc integration test to internal bs + + In agreement with IBM the sle12 integration test has been moved + into the internal buildservice. The reason for this change is + a python 3.4 compatibility problem. This version of python is + used in sle12 but would require patching of upstream kiwi in + terms of type hints and annotations to continue to work. + We don't want to cary this patch upstream but in the sle12_kiwi + repository which contains the kiwi used in sle12. Therefore + also the integration test needs to move into the internal + sle12 space. + +------------------------------------------------------------------- +Thu Jun 11 12:58:21 CEST 2020 - Bo Maryniuk <[email protected]> + +- Ignore MyPy cache + +------------------------------------------------------------------- +Thu Jun 11 12:58:13 CEST 2020 - Bo Maryniuk <[email protected]> + +- Ignore VSCode cache + +------------------------------------------------------------------- +Wed Jun 10 12:03:43 CEST 2020 - Dan Čermák <[email protected]> + +- Remove sed calls to fix /etc/vimrc + + An update of vim in Tumbleweed will move /etc/vimrc to /usr/share/vim as part of + the /usr - /etc split. This makes the sed call fail because /etc/vimrc no longer + exists. + However, the fix is not required anymore then, as the vim package dropped the + "syntax on" line from the default vimrc. + +------------------------------------------------------------------- +Tue Jun 09 13:55:44 CEST 2020 - Marcus Schäfer <[email protected]> + +- Fixed permissions of custom boot image root dir + + When building a custom kiwi initrd the root directory + has the permissions of the mkdtemp created directory + but should have the permissions of a linux root dir + which is 0755. This Fixes #1394 + +------------------------------------------------------------------- +Sat Jun 06 16:39:50 CEST 2020 - Marcus Schäfer <[email protected]> + +- Bump version: 9.20.19 → 9.21.0 + +------------------------------------------------------------------- +Thu Jun 04 14:05:36 CEST 2020 - Marcus Schäfer <[email protected]> + +- Fixed size of msgbox dialog + + The width of the dialog was set to a small value which + causes the message to be choped. I found this when testing + pxe deployments. The error messages on "Failed to fetch..." + were missing the interesting part + +------------------------------------------------------------------- +Wed Jun 03 17:19:10 CEST 2020 - Marcus Schäfer <[email protected]> + +- Update orthos test image + + Simplify image for use in a pxe test deployment + +------------------------------------------------------------------- +Wed Jun 03 11:43:32 CEST 2020 - Marcus Schäfer <[email protected]> + +- Added new post disk sync script hook + + Allow to put a disk.sh script as part of the image description + which is called for the disk image types `vmx` and `oem` + only and runs after the synchronisation of the root tree into the + disk image loop file. At call time of the script the device name + of the currently mapped root device is passed as a parameter. + The chroot environment for the call is the mounted disk itself + which makes this different from the config.sh/images.sh caller + environment. This Fixes #1464 + +------------------------------------------------------------------- +Wed Jun 03 10:56:42 CEST 2020 - Marcus Schäfer <[email protected]> + +- Update user defined scripts documentation + + Added information about new disk.sh script and reworked + the entire chapter + +------------------------------------------------------------------- +Tue Jun 02 13:05:30 CEST 2020 - Marcus Schäfer <[email protected]> + +- Fixed VolumeManager cleanup + + instances of VolumeManager creates temporary directories but + only stores the latest one. The cleanup leaves former directories + behind which is fixed by this commit + +------------------------------------------------------------------- +Fri May 29 17:41:15 CEST 2020 - Marcus Schäfer <[email protected]> + +- Allow to access disk root after sync_data + + In preparation to allow a chroot operation into the loop + mounted disk this commit refactors the process when filesystems + gets umounted and also fixes the canonical order for calling + the destructors. Related to Issue #1464 + +------------------------------------------------------------------- +Wed May 27 11:55:21 CEST 2020 - David Cassany <[email protected]> + +- Add EFI firmware on OEM and ISO ubuntu tests ++++ 156 more lines (skipped) ++++ between /work/SRC/openSUSE:Factory/python-kiwi/python-kiwi.changes ++++ and /work/SRC/openSUSE:Factory/.python-kiwi.new.3060/python-kiwi.changes ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ python-kiwi.spec ++++++ --- /var/tmp/diff_new_pack.BtwxkV/_old 2020-07-09 13:16:13.240672854 +0200 +++ /var/tmp/diff_new_pack.BtwxkV/_new 2020-07-09 13:16:13.240672854 +0200 @@ -43,7 +43,7 @@ %endif Name: python-kiwi -Version: 9.20.16 +Version: 9.21.3 Provides: kiwi-schema = 7.2 Release: 0 Url: https://github.com/OSInside/kiwi ++++++ PKGBUILD ++++++ --- /var/tmp/diff_new_pack.BtwxkV/_old 2020-07-09 13:16:13.272672956 +0200 +++ /var/tmp/diff_new_pack.BtwxkV/_new 2020-07-09 13:16:13.276672968 +0200 @@ -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.20.16 +pkgver=9.21.3 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=('95ab86b15f76aca08a0c44c0b456694c') +md5sums=('3f7102c4f00ed91be532d0c012c596e3') build() { ++++++ python-kiwi.tar.gz ++++++ ++++ 2910 lines of diff (skipped)
