SHA256
1
0
forked from pool/python-kiwi

- Bump version: 9.13.8 → 9.13.9

- Bump version: 9.13.7 → 9.13.8
  

  
- Fixed base package requires
  
  kpartx is used by kiwi but was not required in spec
  

  
- Update gitignore
  
  Do not manage changes in .pytest_cache
  

  
- Tell plymouth to quit only if a dialog is called
  
  In case of a dialog kiwi uses the dialog program which conflicts
  with the plymouth splash system. Thus we tell plymouth to stop
  This patch changes the request to be send to plymouth prior to
  a dialog call and not in general
  

  
- Bump version: 9.13.6 → 9.13.7

OBS-URL: https://build.opensuse.org/package/show/Virtualization:Appliances:Builder/python-kiwi?expand=0&rev=97
This commit is contained in:
Marcus Schaefer 2018-03-13 09:58:12 +00:00 committed by Git OBS Bridge
parent d61e009df4
commit ebfd0cd88f
3 changed files with 129 additions and 9 deletions

View File

@ -1,3 +1,126 @@
-------------------------------------------------------------------
Tue Mar 13 10:27:30 CET 2018 - ms@suse.de
- Bump version: 9.13.8 → 9.13.9
-------------------------------------------------------------------
Tue Mar 13 10:05:06 CET 2018 - ms@suse.de
- Bump version: 9.13.7 → 9.13.8
-------------------------------------------------------------------
Tue Mar 13 10:02:16 CET 2018 - ms@suse.de
- Fixed base package requires
kpartx is used by kiwi but was not required in spec
-------------------------------------------------------------------
Tue Mar 13 10:00:01 CET 2018 - ms@suse.de
- Update gitignore
Do not manage changes in .pytest_cache
-------------------------------------------------------------------
Tue Mar 13 09:56:32 CET 2018 - ms@suse.de
- Tell plymouth to quit only if a dialog is called
In case of a dialog kiwi uses the dialog program which conflicts
with the plymouth splash system. Thus we tell plymouth to stop
This patch changes the request to be send to plymouth prior to
a dialog call and not in general
-------------------------------------------------------------------
Mon Mar 12 15:41:07 CET 2018 - ms@suse.de
- Bump version: 9.13.6 → 9.13.7
-------------------------------------------------------------------
Mon Mar 12 11:48:51 CET 2018 - ms@suse.de
- Update bootloader console for oem test image
Set bootloader_console="serial" for the oem test image to
allow testing in the Kanku CI
-------------------------------------------------------------------
Mon Mar 12 09:13:51 CET 2018 - dcassany@suse.com
- Add profile dependencies
With this commit the profile can include other profiles as a dependency.
This way it is possible build an image defined by multiple profiles by just
calling a single composed profile from the command line.
Fixes #658
-------------------------------------------------------------------
Mon Mar 12 08:28:52 CET 2018 - ms@suse.de
- Bump version: 9.13.5 → 9.13.6
-------------------------------------------------------------------
Fri Mar 9 14:08:53 CET 2018 - ms@suse.de
- Disable multipath from oem build test
-------------------------------------------------------------------
Fri Mar 9 14:03:23 CET 2018 - ms@suse.de
- Fixup setup of root_filesystem_is_multipath
The variable is set to a boolean value or None. If set to
False due to a configuration of oem-multipath-scan this
will cause the dracut multipath module to be omitted.
In any other case the presence of the multipath module
decides whether it will be included into the dracut
generated initrd or not.
-------------------------------------------------------------------
Fri Mar 9 11:26:38 CET 2018 - ms@suse.de
- Fixup python-kiwi base package requires
There is no need for the base package to require multipath.
Those tools are only needed for dracut modules
-------------------------------------------------------------------
Thu Mar 8 15:58:38 CET 2018 - ms@suse.de
- Use dracut modules based on feature use
As the kiwi build dracut initrd is a generic one which
includes all installed dracut modules we missed a way to
exclude modules from beeing incorporated even if we know
it would not be needed. One example is the multipath module
which would only be useful if the oem multipath scan is
configured in the image description
-------------------------------------------------------------------
Wed Mar 7 11:48:48 CET 2018 - ms@suse.de
- Update test-image-oem build
Create hostonly dracut initrd on first boot and replace
kiwi's grub config by the result of grub2-mkconfig
-------------------------------------------------------------------
Wed Mar 7 11:36:34 CET 2018 - ms@suse.de
- Delete invalid motd file from build tests
-------------------------------------------------------------------
Wed Mar 7 10:28:28 CET 2018 - ms@suse.de
- Prepare test-image-oem build test for Kanku
Activate unattended mode and preselect the installation target
Also specify a fixed swapsize value to be independent of the
host main memory which is used to calculate swap if no size
is specified
-------------------------------------------------------------------
Tue Mar 6 17:01:58 CET 2018 - ms@suse.de

View File

@ -38,7 +38,7 @@
%endif
Name: python-kiwi
Version: 9.13.5
Version: 9.13.9
Provides: kiwi-schema = 6.6
Release: 0
Url: https://github.com/SUSE/kiwi
@ -104,7 +104,6 @@ Requires(postun): update-alternatives
Requires: grub2-x86_64-efi
%endif
Requires: qemu-tools
Requires: multipath-tools
Requires: squashfs
Requires: gptfdisk
%endif
@ -114,7 +113,6 @@ Requires(post): chkconfig
Requires(postun): chkconfig
Requires: qemu-img
Requires: squashfs-tools
Requires: device-mapper-multipath
Requires: gdisk
Requires: yum
Provides: kiwi-packagemanager:yum
@ -131,7 +129,6 @@ Provides: kiwi-packagemanager:zypper
Requires: debootstrap
Requires: qemu-utils
Requires: squashfs-tools
Requires: multipath-tools
Requires: gdisk
%endif
Requires: dosfstools
@ -147,6 +144,7 @@ Requires: kiwi-tools
Requires: lvm2
Requires: mtools
Requires: parted
Requires: kpartx
Requires: rsync
Requires: tar >= 1.2.7
%if %{_vendor} != "debbuild"
@ -187,7 +185,6 @@ Requires(postun): update-alternatives
Requires: grub2-x86_64-efi
%endif
Requires: qemu-tools
Requires: multipath-tools
Requires: squashfs
Requires: gptfdisk
%endif
@ -197,7 +194,6 @@ Requires(post): chkconfig
Requires(postun): chkconfig
Requires: qemu-img
Requires: squashfs-tools
Requires: device-mapper-multipath
Requires: gdisk
%endif
%if 0%{?rhel} && 0%{?rhel} < 8
@ -225,6 +221,7 @@ Requires: kiwi-tools
Requires: lvm2
Requires: mtools
Requires: parted
Requires: kpartx
Requires: rsync
Requires: tar >= 1.2.7
%ifarch %arm aarch64

View File

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:dd4740a20869dd0a38a14736c52a1575f8b4ba9634896e957e8ee761e4bcf662
size 510977
oid sha256:b9b2faf2c9ac01f2bcac4fb1af1b968ae6a451749c4e4124baf2da6e6e5663d6
size 512221