- Bump version: 9.24.48 → 9.24.49

- Fixed test-image-vagrant
  virtualbox-guest-tools obsoletes virtualbox-guest-x11

- ignore the type check on the Result class
  With an update of mypy the bound TypeVar is no longer allowed.
  In newer versions of python we could use the "Self" type or
  import annotations from the future module. Unfortunately in
  older python versions which we still support (3.6) there is
  no non intrusive change which allows us to handle that type
  annotation. Thus this commit ignores the return type spec
  for Result.load() for the moment.

- Stop copying /dev files statically into the OCI container
  In containers (nspawn) where part of the /dev filesystem is bind-mounted
  from outside system, kiwi fails to do the rsync (in creation of the
  nodes).
  There is no reason to actually copy whole tree inside so let's just
  not do it (as it does not seem to be needed at all).

- List riscv64 as a valid architecture in the schemas
  This is needed so that architecture filters on riscv64 specifics can
  be defined.

- Support DM integrity legacy options
  Add a new attribute integrity_legacy_hmac="true|false" which
  allows to use old flawed HMAC calculation (does not protect superblock).
  Add a new attribute integrity_legacy_padding="true|false" which
  allows to use inefficient legacy padding. Do not use these attributes

OBS-URL: https://build.opensuse.org/package/show/Virtualization:Appliances:Builder/python-kiwi?expand=0&rev=224
This commit is contained in:
Marcus Schäfer 2022-10-26 07:36:09 +00:00 committed by Git OBS Bridge
parent 1538e53afd
commit adfdeb6230
4 changed files with 93 additions and 5 deletions

View File

@ -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.48
pkgver=9.24.49
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=('9c2e5b4f06ffb1b28092b2fccbaaae80')
md5sums=('2f443034d660eec6201f77643eb15310')
build() {

View File

@ -1,8 +1,96 @@
-------------------------------------------------------------------
Sat Oct 22 22:27:41 CEST 2022 - Marcus Schäfer <marcus.schaefer@gmail.com>
- Bump version: 9.24.48 → 9.24.49
-------------------------------------------------------------------
Sat Oct 22 22:18:38 CEST 2022 - Marcus Schäfer <marcus.schaefer@gmail.com>
- Fixed test-image-vagrant
virtualbox-guest-tools obsoletes virtualbox-guest-x11
-------------------------------------------------------------------
Fri Oct 21 11:30:48 CEST 2022 - Marcus Schäfer <marcus.schaefer@gmail.com>
- ignore the type check on the Result class
With an update of mypy the bound TypeVar is no longer allowed.
In newer versions of python we could use the "Self" type or
import annotations from the future module. Unfortunately in
older python versions which we still support (3.6) there is
no non intrusive change which allows us to handle that type
annotation. Thus this commit ignores the return type spec
for Result.load() for the moment.
-------------------------------------------------------------------
Wed Oct 12 20:31:54 CEST 2022 - Igor Raits <igor.raits@gmail.com>
- Stop copying /dev files statically into the OCI container
In containers (nspawn) where part of the /dev filesystem is bind-mounted
from outside system, kiwi fails to do the rsync (in creation of the
nodes).
There is no reason to actually copy whole tree inside so let's just
not do it (as it does not seem to be needed at all).
-------------------------------------------------------------------
Tue Oct 11 22:55:31 CEST 2022 - Dirk Müller <dirk@dmllr.de>
- List riscv64 as a valid architecture in the schemas
This is needed so that architecture filters on riscv64 specifics can
be defined.
-------------------------------------------------------------------
Wed Sep 14 15:59:26 CEST 2022 - Marcus Schäfer <marcus.schaefer@gmail.com>
- Support DM integrity legacy options
Add a new attribute integrity_legacy_hmac="true|false" which
allows to use old flawed HMAC calculation (does not protect superblock).
Add a new attribute integrity_legacy_padding="true|false" which
allows to use inefficient legacy padding. Do not use these attributes
until compatibility with a specific old kernel is required!
-------------------------------------------------------------------
Wed Aug 31 13:00:30 CEST 2022 - Jan Macku <jamacku@redhat.com>
- ci(lint): Add Shell linter - Differential Shellcheck
-------------------------------------------------------------------
Wed Aug 31 12:11:21 CEST 2022 - Marcus Schäfer <marcus.schaefer@gmail.com>
- Limit repo alias names to be a safe POSIX name
Characters like spaces or other symbols used in repo alias names
can cause the package manager to fail setting up the repo. Thus
this patch changes the schema to only allow for safe POSIX names
matching: {pattern = "[a-zA-Z0-9_\-\.]+"}. This Fixes #2170
-------------------------------------------------------------------
Thu Aug 25 17:09:11 CEST 2022 - Marcus Schäfer <marcus.schaefer@gmail.com>
- Increase space for test-image-embedded test
Add more space to test profile: SystemFeatures
-------------------------------------------------------------------
Thu Aug 25 17:05:00 CEST 2022 - Marcus Schäfer <marcus.schaefer@gmail.com>
- Increase efifatimage size for legacy build test
-------------------------------------------------------------------
Tue Aug 23 11:48:16 CEST 2022 - Marcus Schäfer <marcus.schaefer@gmail.com>
- Bump version: 9.24.47 → 9.24.48
-------------------------------------------------------------------
Sun Aug 21 17:01:55 CEST 2022 - Laszlo Gombos <laszlo.gombos@gmail.com>
- Return failure if overlay is not supported
-------------------------------------------------------------------
Wed Aug 10 20:40:42 CEST 2022 - Marcus Schäfer <marcus.schaefer@gmail.com>

View File

@ -43,7 +43,7 @@
%endif
Name: python-kiwi
Version: 9.24.48
Version: 9.24.49
Provides: kiwi-schema = 7.5
Release: 0
Url: https://github.com/OSInside/kiwi

View File

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:bfd81a5e9d6a31456b6ac26242718ec727dd13b949e511601cde0d25cb501578
size 2199610
oid sha256:082cc84e5dff071f15203b611e1160c40409c45f447d5cc461964907f5cf9cdd
size 2199754