forked from pool/python-kiwi
Accepting request 997596 from Virtualization:Appliances:Builder
Automatic submission by obs-autosubmit OBS-URL: https://build.opensuse.org/request/show/997596 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-kiwi?expand=0&rev=100
This commit is contained in:
commit
45db86580a
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')
|
||||
arch=(x86_64)
|
||||
pkgver=9.24.45
|
||||
pkgver=9.24.47
|
||||
pkgrel=0
|
||||
pkgdesc="KIWI - Appliance Builder Next Generation"
|
||||
url="https://github.com/SUSE/kiwi/tarball/master"
|
||||
@ -12,7 +12,7 @@ makedepends=(python-setuptools gcc shadow grep)
|
||||
provides=(kiwi-ng kiwi)
|
||||
source=("${pkgname}.tar.gz")
|
||||
changelog="${pkgname}.changes"
|
||||
md5sums=('27a49196b4f0b177fd99c69b1682c183')
|
||||
md5sums=('650368cc4e288f186d0b1dcc05001c92')
|
||||
|
||||
|
||||
build() {
|
||||
|
@ -1,3 +1,107 @@
|
||||
-------------------------------------------------------------------
|
||||
Wed Aug 10 20:40:42 CEST 2022 - Marcus Schäfer <marcus.schaefer@gmail.com>
|
||||
|
||||
- Bump version: 9.24.46 → 9.24.47
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Aug 10 20:39:17 CEST 2022 - Marcus Schäfer <marcus.schaefer@gmail.com>
|
||||
|
||||
- Revert "EFI Filesystem must be Fat32 formatted"
|
||||
|
||||
Using fat32 causes failed boots on e.g AWS EC2 arm.
|
||||
This must be solved differently with an attribute
|
||||
to configure it.
|
||||
|
||||
This reverts commit b8641bdc6825423f8c65b55c8d0870b38874a566.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Aug 09 18:24:11 CEST 2022 - Marcus Schäfer <marcus.schaefer@gmail.com>
|
||||
|
||||
- Bump version: 9.24.45 → 9.24.46
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Aug 09 15:43:44 CEST 2022 - Marcus Schäfer <marcus.schaefer@gmail.com>
|
||||
|
||||
- Support URIs with credentials in solver plugin
|
||||
|
||||
check if the URI string contains credentials and
|
||||
extract/trim them from the uri object. The urlparse
|
||||
class does not recognize this information as a valid
|
||||
URI and throws an exception
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sun Aug 07 19:14:01 CEST 2022 - Marcus Schäfer <marcus.schaefer@gmail.com>
|
||||
|
||||
- Fixed test-image-disk-legacy
|
||||
|
||||
Increase size of embedded EFI fat image needed for EFI
|
||||
bootable install ISO. Due to the increased size of the
|
||||
custom kiwi initrd the default size for the FAT image
|
||||
is too small
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sat Aug 06 20:28:30 CEST 2022 - Marcus Schäfer <marcus.schaefer@gmail.com>
|
||||
|
||||
- Support custom size for embedded EFI FAT image
|
||||
|
||||
For ISO images (live and install) the EFI boot requires an embedded
|
||||
FAT image. As of now a fixed size of 20M was used which leads to a
|
||||
problem if the EFI image or the initrd or the kernel is bigger than
|
||||
20M. With the new attribute:
|
||||
|
||||
efifatimagesize="nonNegativeInteger"
|
||||
|
||||
we can now set a different value for the FAT image. Please note the
|
||||
value must be aligned to the also customizable efipartsize value
|
||||
which allows to configure the size of the EFI partition
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Aug 05 11:28:54 CEST 2022 - Marcus Schäfer <marcus.schaefer@gmail.com>
|
||||
|
||||
- Fixed linter complaints after flake update
|
||||
|
||||
flake now complains about E275 missing whitespace
|
||||
after keyword for the way 'del' is used. This commit
|
||||
fixes it
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Aug 04 01:27:07 CEST 2022 - J Mixer <j.mixer135@gmail.com>
|
||||
|
||||
- Added a NOTE: section to explain the finer points of adding tools to a
|
||||
dracut hook.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sat Jul 30 17:54:20 CEST 2022 - Marcus Schäfer <marcus.schaefer@gmail.com>
|
||||
|
||||
- Fixup btrfs based legacy kiwi initrd test
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jul 21 13:46:52 CEST 2022 - David Cassany <dcassany@suse.com>
|
||||
|
||||
- Fix race condition in runtime_config_test
|
||||
|
||||
This commit instead of setting the global variable of the runtime config
|
||||
file patches it. This is relevant if running unit tests in parallel,
|
||||
where global variables are shared if not patched.
|
||||
|
||||
Signed-off-by: David Cassany <dcassany@suse.com>
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Jul 12 16:39:08 CEST 2022 - Marcus Schäfer <marcus.schaefer@gmail.com>
|
||||
|
||||
- EFI Filesystem must be Fat32 formatted
|
||||
|
||||
Given the documentation from Microsoft the EFI partition
|
||||
must be a fat32 format. fat16 is still supported but
|
||||
unexpected. This Fixes #2141
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Jul 12 15:51:55 CEST 2022 - Marcus Schäfer <marcus.schaefer@gmail.com>
|
||||
|
||||
- Fixed typo in overview page
|
||||
|
||||
prevent word duplication. This Fixes #2016
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Jul 12 09:46:16 CEST 2022 - Marcus Schäfer <marcus.schaefer@gmail.com>
|
||||
|
||||
|
@ -43,7 +43,7 @@
|
||||
%endif
|
||||
|
||||
Name: python-kiwi
|
||||
Version: 9.24.45
|
||||
Version: 9.24.47
|
||||
Provides: kiwi-schema = 7.5
|
||||
Release: 0
|
||||
Url: https://github.com/OSInside/kiwi
|
||||
|
@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:e3ee63ebdf9b9675093fcaac12e47efe0847c6d7d269ad9a1ce30b57c3c50284
|
||||
size 2209704
|
||||
oid sha256:a3655b283edc418cf5784f1f0ea2479eac65bf6c4f6adaa210b34840881c4c50
|
||||
size 2212013
|
||||
|
Loading…
Reference in New Issue
Block a user