forked from pool/python-kiwi
- Bump version: 9.21.19 → 9.21.20
- Deleted yast from test-image-qcow-openstack yast is not part of the testing queue in kiwi integration tests - Obsolete config functions baseMount/baseCleanMount The above methods are obsolete since kiwi handles these mount/umount processes as part of the core builder code. This Fixes #1536 - Allow custom root volume name setup In addition to the custom size of the root volume it's now also possible to setup the name of the root volume as follows: <volume name="@root=rootlv"/> If no name for the root volume is specified the default name: LVRoot applies as before. This Fixes #1530 - Rename image build tests To use the image builds in openQA they have to have a unique name such that it cannot happen that a cached version of an image in openQA is used. The current names matched openQA cached images e.g openSUSE-Tumbleweed and in addition different image build tests used the same name. This commit uses the name of the image as it is organized in its directory structure prepending "kiwi-" to be unique in openQA when it fetches the image. This is realted to Issue #1555 - Add support for s390 CDL DASD disks On s390 and in CDL mode (4k DASD) the call of grub2-install does not work because grub2-install is not able to identify OBS-URL: https://build.opensuse.org/package/show/Virtualization:Appliances:Builder/python-kiwi?expand=0&rev=186
This commit is contained in:
parent
cbd4c1e210
commit
809f9671ca
4
PKGBUILD
4
PKGBUILD
@ -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')
|
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)
|
arch=(x86_64)
|
||||||
pkgver=9.21.19
|
pkgver=9.21.20
|
||||||
pkgrel=0
|
pkgrel=0
|
||||||
pkgdesc="KIWI - Appliance Builder Next Generation"
|
pkgdesc="KIWI - Appliance Builder Next Generation"
|
||||||
url="https://github.com/SUSE/kiwi/tarball/master"
|
url="https://github.com/SUSE/kiwi/tarball/master"
|
||||||
@ -12,7 +12,7 @@ makedepends=(python-setuptools gcc shadow grep)
|
|||||||
provides=(kiwi-ng kiwi)
|
provides=(kiwi-ng kiwi)
|
||||||
source=("${pkgname}.tar.gz")
|
source=("${pkgname}.tar.gz")
|
||||||
changelog="${pkgname}.changes"
|
changelog="${pkgname}.changes"
|
||||||
md5sums=('830b85c05ed8396593c76905211a70a7')
|
md5sums=('c2cc84a00d29c0838d4ed799bc23f5fa')
|
||||||
|
|
||||||
|
|
||||||
build() {
|
build() {
|
||||||
|
@ -1,8 +1,56 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Oct 28 12:44:11 CET 2020 - Marcus Schäfer <ms@suse.de>
|
||||||
|
|
||||||
|
- Bump version: 9.21.19 → 9.21.20
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Oct 22 10:47:25 CEST 2020 - Marcus Schäfer <ms@suse.de>
|
||||||
|
|
||||||
|
- Deleted yast from test-image-qcow-openstack
|
||||||
|
|
||||||
|
yast is not part of the testing queue in kiwi integration tests
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Oct 21 15:06:50 CEST 2020 - Marcus Schäfer <ms@suse.de>
|
||||||
|
|
||||||
|
- Obsolete config functions baseMount/baseCleanMount
|
||||||
|
|
||||||
|
The above methods are obsolete since kiwi handles these
|
||||||
|
mount/umount processes as part of the core builder code.
|
||||||
|
This Fixes #1536
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Oct 21 14:51:46 CEST 2020 - Marcus Schäfer <ms@suse.de>
|
Wed Oct 21 14:51:46 CEST 2020 - Marcus Schäfer <ms@suse.de>
|
||||||
|
|
||||||
- Bump version: 9.21.18 → 9.21.19
|
- Bump version: 9.21.18 → 9.21.19
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Oct 20 20:51:05 CEST 2020 - Marcus Schäfer <ms@suse.de>
|
||||||
|
|
||||||
|
- Allow custom root volume name setup
|
||||||
|
|
||||||
|
In addition to the custom size of the root volume it's now
|
||||||
|
also possible to setup the name of the root volume as follows:
|
||||||
|
|
||||||
|
<volume name="@root=rootlv"/>
|
||||||
|
|
||||||
|
If no name for the root volume is specified the default
|
||||||
|
name: LVRoot applies as before. This Fixes #1530
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Oct 20 12:10:15 CEST 2020 - Marcus Schäfer <ms@suse.de>
|
||||||
|
|
||||||
|
- Rename image build tests
|
||||||
|
|
||||||
|
To use the image builds in openQA they have to have a unique
|
||||||
|
name such that it cannot happen that a cached version of an
|
||||||
|
image in openQA is used. The current names matched openQA
|
||||||
|
cached images e.g openSUSE-Tumbleweed and in addition different
|
||||||
|
image build tests used the same name. This commit uses the
|
||||||
|
name of the image as it is organized in its directory structure
|
||||||
|
prepending "kiwi-" to be unique in openQA when it fetches
|
||||||
|
the image. This is realted to Issue #1555
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Fri Oct 16 15:29:36 CEST 2020 - Quang Tran <quang.tran@suse.com>
|
Fri Oct 16 15:29:36 CEST 2020 - Quang Tran <quang.tran@suse.com>
|
||||||
|
|
||||||
@ -22,6 +70,20 @@ Thu Oct 15 09:46:51 CEST 2020 - Marcus Schäfer <ms@suse.de>
|
|||||||
This commit fixes the modulo operation to correctly
|
This commit fixes the modulo operation to correctly
|
||||||
parse the disk_list. Fixes #1588
|
parse the disk_list. Fixes #1588
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Oct 13 16:25:36 CEST 2020 - Marcus Schäfer <ms@suse.de>
|
||||||
|
|
||||||
|
- Add support for s390 CDL DASD disks
|
||||||
|
|
||||||
|
On s390 and in CDL mode (4k DASD) the call of grub2-install
|
||||||
|
does not work because grub2-install is not able to identify
|
||||||
|
a 4k fdasd partitioned loop device as a grub supported device
|
||||||
|
and fails. As grub2-install is only used to invoke
|
||||||
|
grub2-zipl-setup and has no other job to do we can
|
||||||
|
circumvent this problem by directly calling grub2-zipl-setup
|
||||||
|
instead. Also delete LDL mode support, IBM no longer supports
|
||||||
|
this
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Oct 13 09:24:07 CEST 2020 - Marcus Schäfer <ms@suse.de>
|
Tue Oct 13 09:24:07 CEST 2020 - Marcus Schäfer <ms@suse.de>
|
||||||
|
|
||||||
|
@ -43,7 +43,7 @@
|
|||||||
%endif
|
%endif
|
||||||
|
|
||||||
Name: python-kiwi
|
Name: python-kiwi
|
||||||
Version: 9.21.19
|
Version: 9.21.20
|
||||||
Provides: kiwi-schema = 7.2
|
Provides: kiwi-schema = 7.2
|
||||||
Release: 0
|
Release: 0
|
||||||
Url: https://github.com/OSInside/kiwi
|
Url: https://github.com/OSInside/kiwi
|
||||||
|
@ -1,3 +1,3 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
version https://git-lfs.github.com/spec/v1
|
||||||
oid sha256:8e02008b30a1139bd7645d2d7afb87505407e659981fa100acd0deedf146b7d7
|
oid sha256:70a6d81601e736528760cdbd19128aac5e274fa9f7015fc0881a109a1cbd8d2d
|
||||||
size 1723170
|
size 1725682
|
||||||
|
Loading…
x
Reference in New Issue
Block a user