New version 3.6.1
- misc: Remove "warn: false" from Ansible "command" (vtrefny) - spec: Change license string to the SPDX format required by Fedora (vtrefny) - Catch BlockDevNotImplementedError for btrfs plugin calls (vtrefny) - tests: document how to use the VM tests (berrange) - tests: allow filtering tests to run in VM (berrange) - tests: don't start/stop VM if it was already running (berrange) - tests: use correct password arg for SSH to VM (berrange) - tests: add logging to runvmtests.py (berrange) - Fix potential AttributeError when getting stratis blockdev info (vtrefny) - spec: Fix recommended libblockdev plugins (vtrefny) - tests: remove unused global variables (berrange) - Backport total_memory improvements from anaconda (vslavik) - Fix regex for checking e2fsprogs version (vtrefny)
This commit is contained in:
parent
fc07b52a79
commit
87b768c05f
2
.gitignore
vendored
2
.gitignore
vendored
@ -147,3 +147,5 @@
|
|||||||
/blivet-3.5.0.tar.gz
|
/blivet-3.5.0.tar.gz
|
||||||
/blivet-3.6.0.tar.gz
|
/blivet-3.6.0.tar.gz
|
||||||
/blivet-3.6.0-tests.tar.gz
|
/blivet-3.6.0-tests.tar.gz
|
||||||
|
/blivet-3.6.1-tests.tar.gz
|
||||||
|
/blivet-3.6.1.tar.gz
|
||||||
|
@ -19,11 +19,11 @@
|
|||||||
Summary: A python module for system storage configuration
|
Summary: A python module for system storage configuration
|
||||||
Name: python-blivet
|
Name: python-blivet
|
||||||
Url: https://storageapis.wordpress.com/projects/blivet
|
Url: https://storageapis.wordpress.com/projects/blivet
|
||||||
Version: 3.6.0
|
Version: 3.6.1
|
||||||
|
|
||||||
#%%global prerelease .b2
|
#%%global prerelease .b2
|
||||||
# prerelease, if defined, should be something like .a1, .b1, .b2.dev1, or .c2
|
# prerelease, if defined, should be something like .a1, .b1, .b2.dev1, or .c2
|
||||||
Release: 2%{?prerelease}%{?dist}
|
Release: 1%{?prerelease}%{?dist}
|
||||||
Epoch: 1
|
Epoch: 1
|
||||||
License: LGPL-2.1-or-later
|
License: LGPL-2.1-or-later
|
||||||
%global realname blivet
|
%global realname blivet
|
||||||
@ -83,16 +83,16 @@ Requires: python3-blockdev >= %{libblockdevver}
|
|||||||
Recommends: libblockdev-btrfs >= %{libblockdevver}
|
Recommends: libblockdev-btrfs >= %{libblockdevver}
|
||||||
Recommends: libblockdev-crypto >= %{libblockdevver}
|
Recommends: libblockdev-crypto >= %{libblockdevver}
|
||||||
Recommends: libblockdev-dm >= %{libblockdevver}
|
Recommends: libblockdev-dm >= %{libblockdevver}
|
||||||
Recommends: libblockdev-fs >= %{libblockdevver}
|
|
||||||
Recommends: libblockdev-kbd >= %{libblockdevver}
|
|
||||||
Recommends: libblockdev-loop >= %{libblockdevver}
|
Recommends: libblockdev-loop >= %{libblockdevver}
|
||||||
Recommends: libblockdev-lvm >= %{libblockdevver}
|
Recommends: libblockdev-lvm >= %{libblockdevver}
|
||||||
Recommends: libblockdev-mdraid >= %{libblockdevver}
|
Recommends: libblockdev-mdraid >= %{libblockdevver}
|
||||||
Recommends: libblockdev-mpath >= %{libblockdevver}
|
Recommends: libblockdev-mpath >= %{libblockdevver}
|
||||||
Recommends: libblockdev-nvdimm >= %{libblockdevver}
|
|
||||||
Recommends: libblockdev-part >= %{libblockdevver}
|
|
||||||
Recommends: libblockdev-swap >= %{libblockdevver}
|
Recommends: libblockdev-swap >= %{libblockdevver}
|
||||||
|
|
||||||
|
%ifarch s390 s390x
|
||||||
Recommends: libblockdev-s390 >= %{libblockdevver}
|
Recommends: libblockdev-s390 >= %{libblockdevver}
|
||||||
|
%endif
|
||||||
|
|
||||||
Requires: python3-bytesize >= %{libbytesizever}
|
Requires: python3-bytesize >= %{libbytesizever}
|
||||||
Requires: util-linux >= %{utillinuxver}
|
Requires: util-linux >= %{utillinuxver}
|
||||||
Requires: lsof
|
Requires: lsof
|
||||||
@ -196,6 +196,21 @@ configuration.
|
|||||||
%endif
|
%endif
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Mon Nov 28 2022 Vojtech Trefny <vtrefny@redhat.com> - 3.6.1-1
|
||||||
|
- misc: Remove "warn: false" from Ansible "command" (vtrefny)
|
||||||
|
- spec: Change license string to the SPDX format required by Fedora (vtrefny)
|
||||||
|
- Catch BlockDevNotImplementedError for btrfs plugin calls (vtrefny)
|
||||||
|
- tests: document how to use the VM tests (berrange)
|
||||||
|
- tests: allow filtering tests to run in VM (berrange)
|
||||||
|
- tests: don't start/stop VM if it was already running (berrange)
|
||||||
|
- tests: use correct password arg for SSH to VM (berrange)
|
||||||
|
- tests: add logging to runvmtests.py (berrange)
|
||||||
|
- Fix potential AttributeError when getting stratis blockdev info (vtrefny)
|
||||||
|
- spec: Fix recommended libblockdev plugins (vtrefny)
|
||||||
|
- tests: remove unused global variables (berrange)
|
||||||
|
- Backport total_memory improvements from anaconda (vslavik)
|
||||||
|
- Fix regex for checking e2fsprogs version (vtrefny)
|
||||||
|
|
||||||
* Fri Nov 11 2022 Vojtech Trefny <vtrefny@redhat.com> - 3.6.0-2
|
* Fri Nov 11 2022 Vojtech Trefny <vtrefny@redhat.com> - 3.6.0-2
|
||||||
- Change license string to the SPDX format required by Fedora
|
- Change license string to the SPDX format required by Fedora
|
||||||
|
|
||||||
|
4
sources
4
sources
@ -1,2 +1,2 @@
|
|||||||
SHA512 (blivet-3.6.0.tar.gz) = fd9012d22dafcefeaf1ea7c8142b2a5104cd5e864d62358594eb4dc68776a10111820b9c52c1237ff996dc991343101d65eaf8175007b0782d4b13ad25c74742
|
SHA512 (blivet-3.6.1-tests.tar.gz) = 7fbd55c80366e35e9fc9ef6ceeb7b5c9c2053cc79f785c83921175071f554a2a387eceb4e3c06017cc9fdfdc4fd98d466d8a63dc1d372acce91e766f5aa5b4cb
|
||||||
SHA512 (blivet-3.6.0-tests.tar.gz) = e8fc7b311584a4053393108fc919dbfbf7a27b719cb2cd74c0848937cc309234abf5909797de61e9dae1da50bfbceed92393547a081268294989b92a895bae7b
|
SHA512 (blivet-3.6.1.tar.gz) = ae69d0382ef0b0621b53070feb93a2ad2e608c205a66050adbe6d6f8dba9f19672c8cba92151f2097e3afb85a0a4966a7629389861cd4f8b924b43d92f145136
|
||||||
|
Loading…
Reference in New Issue
Block a user