Update to 130
Resolves: RHEL-56049
This commit is contained in:
parent
e53b8477d4
commit
d6d8e99bf6
1
.gitignore
vendored
1
.gitignore
vendored
@ -103,3 +103,4 @@
|
||||
/osbuild-124.tar.gz
|
||||
/osbuild-125.tar.gz
|
||||
/osbuild-126.tar.gz
|
||||
/osbuild-130.tar.gz
|
||||
|
@ -1,7 +1,7 @@
|
||||
%global forgeurl https://github.com/osbuild/osbuild
|
||||
%global selinuxtype targeted
|
||||
|
||||
Version: 126
|
||||
Version: 130
|
||||
|
||||
%forgemeta
|
||||
|
||||
@ -137,11 +137,11 @@ manifests and osbuild.
|
||||
Summary: Dependency solving support for DNF
|
||||
Requires: %{name} = %{version}-%{release}
|
||||
|
||||
# Fedora 41 and later use libdnf5, RHEL and Fedora < 41 use libdnf
|
||||
# Fedora 41 and later use libdnf5, RHEL and Fedora < 41 use dnf
|
||||
%if 0%{?fedora} >= 41
|
||||
Requires: python3-libdnf5 >= 5.2.1
|
||||
%else
|
||||
Requires: python3-libdnf
|
||||
Requires: python3-dnf
|
||||
%endif
|
||||
|
||||
# osbuild 125 added a new "solver" field and osbuild-composer only
|
||||
@ -310,6 +310,9 @@ fi
|
||||
%{pkgdir}/solver.json
|
||||
|
||||
%changelog
|
||||
* Thu Sep 26 2024 Tomáš Hozza <thozza@redhat.com> - 130-1
|
||||
- New upstream release
|
||||
|
||||
* Wed Aug 21 2024 imagebuilder-bot <imagebuilder-bots+imagebuilder-bot@redhat.com> - 126-1
|
||||
- New upstream release
|
||||
|
||||
|
2
sources
2
sources
@ -1 +1 @@
|
||||
SHA512 (osbuild-126.tar.gz) = a7b6eb11f48bf4e50326540c46296864d5a3421c334785842b428b1e1fc2004067d2b77e85fd5b3f0bef27222b3139c3bbb3ebcd84800b99c5ec49e4c0776cbc
|
||||
SHA512 (osbuild-130.tar.gz) = d2e595229b0107ebf8446ba444600034208a8eb81498c1056753ba10759e248da3a2ab1cef06ee3426d29bd8ac498d1ebeabda8696e48574b6b9a9ac04653321
|
||||
|
@ -107,6 +107,11 @@ if ([ "${ID}" == "rhel" ] || [ "${ID}" == "centos" ]) && [ "${VERSION_ID%%.*}" =
|
||||
TEST_SELECTION_EXPR="${TEST_SELECTION_EXPR} and not (TestStages and test_qemu)"
|
||||
fi
|
||||
|
||||
if ([ "${ID}" == "rhel" ] || [ "${ID}" == "centos" ]) && [ "${VERSION_ID%%.*}" == "9" ]; then
|
||||
# tomli_w package is not available on el9 so writing TOML config will fail
|
||||
TEST_SELECTION_EXPR="${TEST_SELECTION_EXPR} and not (test_write_read)"
|
||||
fi
|
||||
|
||||
sudo python3 -m pytest \
|
||||
--rootdir "$(pwd)" \
|
||||
--ignore "$(pwd)/test/src" \
|
||||
|
Loading…
Reference in New Issue
Block a user