From 94b22f628def5ad8c1ad5a34dae4e7f4604a0941 Mon Sep 17 00:00:00 2001 From: Vojtech Trefny Date: Fri, 7 May 2021 17:36:17 +0200 Subject: [PATCH] New version 3.4.0 - Fix setting SELinux flag in SELinuxContextTestCase (vtrefny) - Allow running blivet without Python SELinux module (vtrefny) - Adapt to dosfstools 4.2 FAT label changes (vtrefny) - Add LVM VDO to public API (vtrefny) - Add a special exception type for LVM inconsistent sector sizes (vtrefny) - Remove the "encryption_passphrase" attribute from Blivet class (vtrefny) - Use PARTITION_ESP flag for EFIFS partitions (#1930486) (vtrefny) - Provide better error message for LVM with inconsistent sector sizes (vtrefny) - Avoid AttributeError for DiskLabel formats without disklabel type (vtrefny) - Ignore ArithmeticError when trying to align partition size down (vtrefny) - Do not log entire exception when trying to get ISCSI initiator name (vtrefny) - Fix running BlivetLVMVDODependenciesTest test case as non-root (vtrefny) - Remove EDD test logs after the tests finish (vtrefny) - Replace IOError with OSError around file operations (vslavik) - spec: Add 'make' to BuildRequires (vtrefny) - Fix usage of assert_called_with in lvm_test (vtrefny) - apply directory's SELinux context to freshly created mount points (rmetrich) - Try to get Btrfs volume UUID using libblockdev if UDev lookup fails (vtrefny) - Allow removing LVM VDO devices without VDO support (vtrefny) - Sync spec with downstream (vtrefny) - Use real paths to Python site packages (vponcova) - Fix excessive logging in udev.__is_ignored_blockdev (vtrefny) - Make sure we use size >= LVM VDO min size in test_lv_unique_name (vtrefny) - Replace pocketlint by a custom script (vtrefny) - Fix pylint errors in translation canary (jkonecny) - Bump required libblockdev version to 2.24 (vtrefny) - Fix external dependencies for LVM VDO devices (vtrefny) - Use better description for libblockdev plugins in tasks.availability (vtrefny) - Set minimum size for LVM VDO pool devices (vtrefny) - Add LVM VDO documentation (vtrefny) - Add LVM VDO example (vtrefny) - Add nodiscard option by default when creating VDO logical volumes (vtrefny) - Allow adding nodiscard option when running mkfs (vtrefny) - Add VM test for LVM VDO (vtrefny) - Add LVM VDO device factory (vtrefny) - Allow creating LVM VDO pools and volumes using "blivet.new_lv" (vtrefny) - Add support for creating LVM VDO pools and LVM VDO volumes (vtrefny) - Add "vdo_lv" property to LVMVDOPoolMixin (vtrefny) - Read the LVM VDO pool current size from the internal data LV (vtrefny) - Add availability functions for LVM VDO (vtrefny) - Add VDO pool data LV to internal LVs during populate (vtrefny) - Fix type of LVM VDO logical volumes (vtrefny) --- .gitignore | 2 ++ python-blivet.spec | 54 ++++++++++++++++++++++++++++++++++++++++------ sources | 4 ++-- 3 files changed, 52 insertions(+), 8 deletions(-) diff --git a/.gitignore b/.gitignore index 25d5fff..82df42a 100644 --- a/.gitignore +++ b/.gitignore @@ -133,3 +133,5 @@ /blivet-3.3.2.tar.gz /blivet-3.3.3-tests.tar.gz /blivet-3.3.3.tar.gz +/blivet-3.4.0.tar.gz +/blivet-3.4.0-tests.tar.gz diff --git a/python-blivet.spec b/python-blivet.spec index bc0f071..ae96476 100644 --- a/python-blivet.spec +++ b/python-blivet.spec @@ -19,11 +19,11 @@ Summary: A python module for system storage configuration Name: python-blivet Url: https://storageapis.wordpress.com/projects/blivet -Version: 3.3.3 +Version: 3.4.0 #%%global prerelease .b2 # prerelease, if defined, should be something like .a1, .b1, .b2.dev1, or .c2 -Release: 2%{?prerelease}%{?dist} +Release: 1%{?prerelease}%{?dist} Epoch: 1 License: LGPLv2+ %global realname blivet @@ -35,14 +35,12 @@ Source1: http://github.com/storaged-project/blivet/archive/%{realname}-%{realver Patch0: 0001-remove-btrfs-plugin.patch %endif -Patch1: 0002-Avoid-AttributeError-for-DiskLabel-formats-without-disklabel-type.patch - # Versions of required components (done so we make sure the buildrequires # match the requires versions of things). -%global partedver 1.8.1 +%global partedver 3.2 %global pypartedver 3.10.4 %global utillinuxver 2.15.1 -%global libblockdevver 2.19 +%global libblockdevver 2.24 %global libbytesizever 0.3 %global pyudevver 0.18 @@ -198,6 +196,50 @@ configuration. %endif %changelog +* Fri May 07 2021 Vojtech Trefny - 3.4.0-1 +- Fix setting SELinux flag in SELinuxContextTestCase (vtrefny) +- Allow running blivet without Python SELinux module (vtrefny) +- Adapt to dosfstools 4.2 FAT label changes (vtrefny) +- Add LVM VDO to public API (vtrefny) +- Add a special exception type for LVM inconsistent sector sizes (vtrefny) +- Remove the "encryption_passphrase" attribute from Blivet class (vtrefny) +- Use PARTITION_ESP flag for EFIFS partitions (#1930486) (vtrefny) +- Provide better error message for LVM with inconsistent sector sizes (vtrefny) +- Avoid AttributeError for DiskLabel formats without disklabel type (vtrefny) +- Ignore ArithmeticError when trying to align partition size down (vtrefny) +- Do not log entire exception when trying to get ISCSI initiator name (vtrefny) +- Fix running BlivetLVMVDODependenciesTest test case as non-root (vtrefny) +- Remove EDD test logs after the tests finish (vtrefny) +- Replace IOError with OSError around file operations (vslavik) +- spec: Add 'make' to BuildRequires (vtrefny) +- Fix usage of assert_called_with in lvm_test (vtrefny) +- apply directory's SELinux context to freshly created mount points (rmetrich) +- Try to get Btrfs volume UUID using libblockdev if UDev lookup fails (vtrefny) +- Allow removing LVM VDO devices without VDO support (vtrefny) +- Sync spec with downstream (vtrefny) +- Use real paths to Python site packages (vponcova) +- Fix excessive logging in udev.__is_ignored_blockdev (vtrefny) +- Make sure we use size >= LVM VDO min size in test_lv_unique_name (vtrefny) +- Replace pocketlint by a custom script (vtrefny) +- Fix pylint errors in translation canary (jkonecny) +- Bump required libblockdev version to 2.24 (vtrefny) +- Fix external dependencies for LVM VDO devices (vtrefny) +- Use better description for libblockdev plugins in tasks.availability (vtrefny) +- Set minimum size for LVM VDO pool devices (vtrefny) +- Add LVM VDO documentation (vtrefny) +- Add LVM VDO example (vtrefny) +- Add nodiscard option by default when creating VDO logical volumes (vtrefny) +- Allow adding nodiscard option when running mkfs (vtrefny) +- Add VM test for LVM VDO (vtrefny) +- Add LVM VDO device factory (vtrefny) +- Allow creating LVM VDO pools and volumes using "blivet.new_lv" (vtrefny) +- Add support for creating LVM VDO pools and LVM VDO volumes (vtrefny) +- Add "vdo_lv" property to LVMVDOPoolMixin (vtrefny) +- Read the LVM VDO pool current size from the internal data LV (vtrefny) +- Add availability functions for LVM VDO (vtrefny) +- Add VDO pool data LV to internal LVs during populate (vtrefny) +- Fix type of LVM VDO logical volumes (vtrefny) + * Mon Apr 12 2021 Vojtech Trefny - 3.3.3-2 - Avoid AttributeError for DiskLabel formats without disklabel type (#1945914) diff --git a/sources b/sources index 7491483..f55c6ed 100644 --- a/sources +++ b/sources @@ -1,2 +1,2 @@ -SHA512 (blivet-3.3.3-tests.tar.gz) = d884db3699762563d8ec9968f127a694a29f089eb783cd74adcadc41b9eccc25416cb1a32d81c9534e20b206c060d0b117fb2846778f879611fc2e511ef4cc59 -SHA512 (blivet-3.3.3.tar.gz) = c4eb96f6856a6dc7c6cd78bda064f5dd890951714a627b231488327b8790f16160a088842c9c3627ecb8551b25379402a4af9e777e8c610e7d5810baf5a0a41a +SHA512 (blivet-3.4.0.tar.gz) = c6797765b82313c55157169489be3e52d03f7656978c6c75bb87c6f1715ceb2447f9fe79cbc3d1d2d00c56329fabca524e1ab7ab074877f6edc8daf62f524038 +SHA512 (blivet-3.4.0-tests.tar.gz) = 98351de3a3121d777b644537fedd24596843e609b9e8d9fa6f61729d6bf726bc343c2bb7712ba41138f82738235654756122a290645293df6c2a22944e0a08f7