- Bump version: 10.0.16 → 10.0.17
- Fixed box plugin documentation The provided example was no longer correct according to changes on the image description referenced in the example - Add procps to Tumbleweed integration tests - Add procps to Tumbleweed integration tests - Fix sdist upstream tarball contents The .virtualenv.dev-requirements.txt file is referenced by tox.ini but not put into the sdist tarball and therefore missing in the pypi upstream data. - Drop use of obsolete pkg_resources As documented in https://setuptools.pypa.io/en/latest/pkg_resources.html the use of pkg_resources is obsolete and will cause issues. So happened on Debian unstable. This Fixes #2548 - RepositoryDnf5: correct defaults, set system_cachedir The "defaults" in `use_default_location` here are the dnf4 defaults, not the dnf5 defaults, so let's update them. Also, for dnf5, we need to set `system_cachedir` instead of `cachedir` - see https://dnf5.readthedocs.io/en/latest/misc/caching.7.html , `system_cachedir` is the cache location used when running as root, `cachedir` is the cache location used when running as a regular user. Signed-off-by: Adam Williamson <awilliam@redhat.com> OBS-URL: https://build.opensuse.org/package/show/Virtualization:Appliances:Builder/python-kiwi?expand=0&rev=250
This commit is contained in:
parent
72c6b92239
commit
76dec26bf7
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=10.0.15
|
pkgver=10.0.17
|
||||||
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=(make gcc python-build python-docopt python-installer python-lxml py
|
|||||||
provides=(kiwi-ng kiwi)
|
provides=(kiwi-ng kiwi)
|
||||||
source=("${pkgname}.tar.gz")
|
source=("${pkgname}.tar.gz")
|
||||||
changelog="${pkgname}.changes"
|
changelog="${pkgname}.changes"
|
||||||
md5sums=('16585c1d596368fcddf095046b9fa384')
|
md5sums=('cfd24d4e84eb2b8b96b17294217ca5b0')
|
||||||
|
|
||||||
|
|
||||||
build() {
|
build() {
|
||||||
|
@ -1,3 +1,73 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed May 29 15:18:38 CEST 2024 - Marcus Schäfer <marcus.schaefer@gmail.com>
|
||||||
|
|
||||||
|
- Bump version: 10.0.16 → 10.0.17
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed May 29 12:35:43 CEST 2024 - Marcus Schäfer <marcus.schaefer@gmail.com>
|
||||||
|
|
||||||
|
- Fixed box plugin documentation
|
||||||
|
|
||||||
|
The provided example was no longer correct according to
|
||||||
|
changes on the image description referenced in the example
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri May 17 17:23:53 CEST 2024 - Marcus Schäfer <marcus.schaefer@gmail.com>
|
||||||
|
|
||||||
|
- Add procps to Tumbleweed integration tests
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu May 16 10:58:40 CEST 2024 - Marcus Schäfer <marcus.schaefer@gmail.com>
|
||||||
|
|
||||||
|
- Add procps to Tumbleweed integration tests
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Sun May 12 22:01:45 CEST 2024 - Marcus Schäfer <marcus.schaefer@gmail.com>
|
||||||
|
|
||||||
|
- Fix sdist upstream tarball contents
|
||||||
|
|
||||||
|
The .virtualenv.dev-requirements.txt file is referenced by tox.ini
|
||||||
|
but not put into the sdist tarball and therefore missing in the
|
||||||
|
pypi upstream data.
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri May 10 12:10:23 CEST 2024 - Marcus Schäfer <marcus.schaefer@gmail.com>
|
||||||
|
|
||||||
|
- Drop use of obsolete pkg_resources
|
||||||
|
|
||||||
|
As documented in https://setuptools.pypa.io/en/latest/pkg_resources.html
|
||||||
|
the use of pkg_resources is obsolete and will cause issues.
|
||||||
|
So happened on Debian unstable. This Fixes #2548
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu May 09 18:35:42 CEST 2024 - Adam Williamson <awilliam@redhat.com>
|
||||||
|
|
||||||
|
- RepositoryDnf5: correct defaults, set system_cachedir
|
||||||
|
|
||||||
|
The "defaults" in `use_default_location` here are the dnf4
|
||||||
|
defaults, not the dnf5 defaults, so let's update them. Also, for
|
||||||
|
dnf5, we need to set `system_cachedir` instead of `cachedir` -
|
||||||
|
see https://dnf5.readthedocs.io/en/latest/misc/caching.7.html ,
|
||||||
|
`system_cachedir` is the cache location used when running as
|
||||||
|
root, `cachedir` is the cache location used when running as a
|
||||||
|
regular user.
|
||||||
|
|
||||||
|
Signed-off-by: Adam Williamson <awilliam@redhat.com>
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed May 08 15:46:17 CEST 2024 - Marcus Schäfer <marcus.schaefer@gmail.com>
|
||||||
|
|
||||||
|
- Bump version: 10.0.15 → 10.0.16
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed May 08 15:44:10 CEST 2024 - Marcus Schäfer <marcus.schaefer@gmail.com>
|
||||||
|
|
||||||
|
- poetry build doesn't like symlinks
|
||||||
|
|
||||||
|
The sdist tarball produced by poetry build does not include
|
||||||
|
all files and skipped symlinks in test/data. This caused the
|
||||||
|
unit test run to fail if called from within that sources
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed May 08 10:48:57 CEST 2024 - Marcus Schäfer <marcus.schaefer@gmail.com>
|
Wed May 08 10:48:57 CEST 2024 - Marcus Schäfer <marcus.schaefer@gmail.com>
|
||||||
|
|
||||||
|
@ -44,7 +44,7 @@
|
|||||||
%endif
|
%endif
|
||||||
|
|
||||||
Name: python-kiwi
|
Name: python-kiwi
|
||||||
Version: 10.0.15
|
Version: 10.0.17
|
||||||
Provides: kiwi-schema = 8.1
|
Provides: kiwi-schema = 8.1
|
||||||
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:efed58a0171964457d52cc5a15a010980c039aec23c2549cd331e5b92631385d
|
oid sha256:a109cf9697251750bc9b4e2d722ea4105937ced331a3b6b855ebd9c574533db5
|
||||||
size 1016334
|
size 1020512
|
||||||
|
Loading…
x
Reference in New Issue
Block a user