a9076e
%define with_python2 1
a9076e
%define with_python3 1
a9076e
%define with_gtk_doc 1
a9076e
%define with_bcache 1
a9076e
%define with_btrfs 1
a9076e
%define with_crypto 1
a9076e
%define with_dm 1
a9076e
%define with_loop 1
a9076e
%define with_lvm 1
a9076e
%define with_lvm_dbus 1
a9076e
%define with_mdraid 1
a9076e
%define with_mpath 1
a9076e
%define with_swap 1
a9076e
%define with_kbd 1
a9076e
%define with_part 1
a9076e
%define with_fs 1
a9076e
%define with_nvdimm 1
a9076e
%define with_vdo 0
a9076e
%define with_gi 1
a9076e
%define with_escrow 1
a9076e
%define with_dmraid 1
a9076e
%define with_tools 1
Vojtech Trefny 260e8c
%define with_nvme 1
a9076e
a9076e
# python2 is not available on RHEL > 7 and not needed on Fedora > 29
a9076e
%if 0%{?rhel} > 7 || 0%{?fedora} > 29 || %{with_python2} == 0
a9076e
%define with_python2 0
a9076e
%define python2_copts --without-python2
a9076e
%endif
a9076e
a9076e
# python3 is not available on older RHEL
a9076e
%if (! 0%{?fedora} && 0%{?rhel} <= 7) || %{with_python3} == 0
a9076e
%define with_python3 0
a9076e
%define python3_copts  --without-python3
a9076e
%endif
a9076e
a9076e
# bcache is not available on RHEL
a9076e
%if (0%{?rhel}) || %{with_bcache} == 0
a9076e
%define with_bcache 0
a9076e
%define bcache_copts --without-bcache
a9076e
%endif
a9076e
a9076e
# lvm_dbus is not available on older RHEL
a9076e
%if (! 0%{?fedora} && 0%{?rhel} <= 7) || %{with_lvm_dbus} == 0
a9076e
%define with_lvm_dbus 0
a9076e
%define lvm_dbus_copts --without-lvm-dbus
a9076e
%endif
a9076e
a9076e
# vdo is not available on non-x86_64 on older RHEL
a9076e
%if (0%{?rhel} && 0%{?rhel} <= 7)
a9076e
%ifnarch x86_64
a9076e
%define with_vdo 0
a9076e
%define vdo_copts --without-vdo
a9076e
%endif
a9076e
%endif
a9076e
a9076e
# btrfs is not available on RHEL > 7
a9076e
%if 0%{?rhel} > 7 || %{with_btrfs} == 0
a9076e
%define with_btrfs 0
a9076e
%endif
a9076e
ecc649
# ... but CentOS Hyperscale SIG restores btrfs support
ecc649
%if 0%{?rhel} > 7 && 0%{?centos_hs}
ecc649
%define with_btrfs 1
ecc649
%endif
ecc649
a9076e
# dmraid is not available on RHEL > 7
a9076e
%if 0%{?rhel} > 7
a9076e
%define with_dmraid 0
a9076e
%endif
a9076e
a9076e
%if %{with_btrfs} != 1
a9076e
%define btrfs_copts --without-btrfs
a9076e
%endif
a9076e
%if %{with_crypto} != 1
a9076e
%define crypto_copts --without-crypto
a9076e
%else
a9076e
%if %{with_escrow} != 1
a9076e
%define crypto_copts --without-escrow
a9076e
%endif
a9076e
%endif
a9076e
%if %{with_dm} != 1
a9076e
%define dm_copts --without-dm
a9076e
%else
a9076e
%if %{with_dmraid} != 1
a9076e
%define dm_copts --without-dmraid
a9076e
%endif
a9076e
%endif
a9076e
%if %{with_loop} != 1
a9076e
%define loop_copts --without-loop
a9076e
%endif
a9076e
%if %{with_lvm} != 1
a9076e
%define lvm_copts --without-lvm
a9076e
%endif
a9076e
%if %{with_lvm_dbus} != 1
a9076e
%define lvm_dbus_copts --without-lvm_dbus
a9076e
%endif
a9076e
%if %{with_mdraid} != 1
a9076e
%define mdraid_copts --without-mdraid
a9076e
%endif
a9076e
%if %{with_mpath} != 1
a9076e
%define mpath_copts --without-mpath
a9076e
%endif
a9076e
%if %{with_swap} != 1
a9076e
%define swap_copts --without-swap
a9076e
%endif
a9076e
%if %{with_kbd} != 1
a9076e
%define kbd_copts --without-kbd
a9076e
%endif
a9076e
%if %{with_part} != 1
a9076e
%define part_copts --without-part
a9076e
%endif
a9076e
%if %{with_fs} != 1
a9076e
%define fs_copts --without-fs
a9076e
%endif
a9076e
%if %{with_nvdimm} != 1
a9076e
%define nvdimm_copts --without-nvdimm
a9076e
%endif
a9076e
%if %{with_vdo} != 1
a9076e
%define vdo_copts --without-vdo
a9076e
%endif
a9076e
%if %{with_tools} != 1
a9076e
%define tools_copts --without-tools
a9076e
%endif
a9076e
%if %{with_gi} != 1
a9076e
%define gi_copts --disable-introspection
a9076e
%endif
Vojtech Trefny 260e8c
%if %{with_nvme} != 1
Vojtech Trefny 260e8c
%define nvme_copts --without-nvme
Vojtech Trefny 260e8c
%endif
a9076e
Vojtech Trefny 260e8c
%define configure_opts %{?python2_copts} %{?python3_copts} %{?bcache_copts} %{?lvm_dbus_copts} %{?btrfs_copts} %{?crypto_copts} %{?dm_copts} %{?loop_copts} %{?lvm_copts} %{?lvm_dbus_copts} %{?mdraid_copts} %{?mpath_copts} %{?swap_copts} %{?kbd_copts} %{?part_copts} %{?fs_copts} %{?nvdimm_copts} %{?nvme_copts} %{?vdo_copts} %{?tools_copts} %{?gi_copts}
a9076e
a9076e
Name:        libblockdev
Vojtech Trefny bb6266
Version:     2.28
Michel Alexandre Salim 87b2c3
Release:     4.1%{?dist}
a9076e
Summary:     A library for low-level manipulation with block devices
a9076e
License:     LGPLv2+
a9076e
URL:         https://github.com/storaged-project/libblockdev
a9076e
Source0:     https://github.com/storaged-project/libblockdev/releases/download/%{version}-%{release}/%{name}-%{version}.tar.gz
a9076e
Patch0:      libblockdev-gcc11.patch
Vojtech Trefny bb6266
Patch1:      0001-lvm-devices-file-support.patch
Vojtech Trefny bb6266
Patch2:      0002-Add-support-for-creating-and-activating-integrity-de.patch
Vojtech Trefny 260e8c
Patch3:      0003-NVMe-plugin-backport.patch
Vojtech Trefny 83aeff
Patch4:      0004-Fix-double-free-in-write_escrow_data_file.patch
Vojtech Trefny 97cfd5
Patch5:      0005-nvme-Fix-namespace-identifiers.patch
a9076e
a9076e
BuildRequires: make
a9076e
BuildRequires: glib2-devel
a9076e
%if %{with_gi}
a9076e
BuildRequires: gobject-introspection-devel
a9076e
%endif
a9076e
%if %{with_python2}
a9076e
BuildRequires: python2-devel
a9076e
%else
a9076e
# Obsolete the python2 subpackage to avoid errors on upgrade
a9076e
Obsoletes:     python2-blockdev < %{version}-%{release}
a9076e
%endif
a9076e
%if %{with_python3}
a9076e
BuildRequires: python3-devel
a9076e
%endif
a9076e
%if %{with_gtk_doc}
a9076e
BuildRequires: gtk-doc
a9076e
%endif
a9076e
BuildRequires: glib2-doc
a9076e
BuildRequires: autoconf-archive
a9076e
Vojtech Trefny bb6266
Requires: %{name}-utils%{?_isa} = %{version}-%{release}
Vojtech Trefny bb6266
a9076e
# Needed for the escrow tests in tests/crypto_test.py, but not used to build
a9076e
# BuildRequires: volume_key
a9076e
# BuildRequires: nss-tools
a9076e
a9076e
# Needed for python 2 vs. 3 compatibility in the tests, but not used to build
a9076e
# BuildRequires: python2-six
a9076e
# BuildRequires: python3-six
a9076e
a9076e
%description
a9076e
The libblockdev is a C library with GObject introspection support that can be
a9076e
used for doing low-level operations with block devices like setting up LVM,
a9076e
BTRFS, LUKS or MD RAID. The library uses plugins (LVM, BTRFS,...) and serves as
a9076e
a thin wrapper around its plugins' functionality. All the plugins, however, can
a9076e
be used as standalone libraries. One of the core principles of libblockdev is
a9076e
that it is stateless from the storage configuration's perspective (e.g. it has
a9076e
no information about VGs when creating an LV).
a9076e
a9076e
%package devel
a9076e
Summary:     Development files for libblockdev
a9076e
Requires: %{name}%{?_isa} = %{version}-%{release}
a9076e
Requires: glib2-devel
Vojtech Trefny bb6266
Requires: %{name}-utils-devel%{?_isa} = %{version}-%{release}
a9076e
a9076e
%description devel
a9076e
This package contains header files and pkg-config files needed for development
a9076e
with the libblockdev library.
a9076e
a9076e
%if %{with_python2}
a9076e
%package -n python2-blockdev
a9076e
Summary:     Python2 gobject-introspection bindings for libblockdev
a9076e
Requires: %{name}%{?_isa} = %{version}-%{release}
a9076e
a9076e
%if 0%{?fedora} <= 26 || 0%{?rhel} <= 7
a9076e
Requires: pygobject3-base
a9076e
%else
a9076e
Requires: python2-gobject-base
a9076e
%endif
a9076e
%{?python_provide:%python_provide python2-blockdev}
a9076e
a9076e
%description -n python2-blockdev
a9076e
This package contains enhancements to the gobject-introspection bindings for
a9076e
libblockdev in Python2.
a9076e
%endif
a9076e
a9076e
%if %{with_python3}
a9076e
%package -n python3-blockdev
a9076e
Summary:     Python3 gobject-introspection bindings for libblockdev
a9076e
Requires: %{name}%{?_isa} = %{version}-%{release}
a9076e
Requires: python3-gobject-base
a9076e
%{?python_provide:%python_provide python3-blockdev}
a9076e
a9076e
%description -n python3-blockdev
a9076e
This package contains enhancements to the gobject-introspection bindings for
a9076e
libblockdev in Python3.
a9076e
%endif
a9076e
a9076e
%package utils
a9076e
BuildRequires: kmod-devel
a9076e
Summary:     A library with utility functions for the libblockdev library
a9076e
a9076e
%description utils
a9076e
The libblockdev-utils is a library providing utility functions used by the
a9076e
libblockdev library and its plugins.
a9076e
a9076e
%package utils-devel
a9076e
Summary:     Development files for libblockdev-utils
a9076e
Requires: %{name}-utils%{?_isa} = %{version}-%{release}
a9076e
Requires: glib2-devel
a9076e
a9076e
%description utils-devel
a9076e
This package contains header files and pkg-config files needed for development
a9076e
with the libblockdev-utils library.
a9076e
a9076e
a9076e
%if %{with_btrfs}
a9076e
%package btrfs
a9076e
BuildRequires: libbytesize-devel
a9076e
Summary:     The BTRFS plugin for the libblockdev library
Vojtech Trefny bb6266
Requires: %{name}-utils%{?_isa} = %{version}-%{release}
a9076e
Requires: btrfs-progs
a9076e
a9076e
%description btrfs
a9076e
The libblockdev library plugin (and in the same time a standalone library)
a9076e
providing the BTRFS-related functionality.
a9076e
a9076e
%package btrfs-devel
a9076e
Summary:     Development files for the libblockdev-btrfs plugin/library
a9076e
Requires: %{name}-btrfs%{?_isa} = %{version}-%{release}
a9076e
Requires: glib2-devel
Vojtech Trefny bb6266
Requires: %{name}-utils-devel%{?_isa} = %{version}-%{release}
a9076e
a9076e
%description btrfs-devel
a9076e
This package contains header files and pkg-config files needed for development
a9076e
with the libblockdev-btrfs plugin/library.
a9076e
%endif
a9076e
a9076e
a9076e
%if %{with_crypto}
a9076e
%package crypto
Vojtech Trefny bb6266
Requires: %{name}-utils%{?_isa} = %{version}-%{release}
a9076e
BuildRequires: cryptsetup-devel
a9076e
BuildRequires: libblkid-devel
a9076e
a9076e
%if %{with_escrow}
a9076e
BuildRequires: volume_key-devel >= 0.3.9-7
a9076e
BuildRequires: nss-devel
a9076e
%endif
a9076e
a9076e
Summary:     The crypto plugin for the libblockdev library
a9076e
a9076e
%description crypto
a9076e
The libblockdev library plugin (and in the same time a standalone library)
a9076e
providing the functionality related to encrypted devices (LUKS).
a9076e
a9076e
%package crypto-devel
a9076e
Summary:     Development files for the libblockdev-crypto plugin/library
a9076e
Requires: %{name}-crypto%{?_isa} = %{version}-%{release}
Vojtech Trefny bb6266
Requires: %{name}-utils-devel%{?_isa} = %{version}-%{release}
a9076e
Requires: glib2-devel
a9076e
a9076e
%description crypto-devel
a9076e
This package contains header files and pkg-config files needed for development
a9076e
with the libblockdev-crypto plugin/library.
a9076e
%endif
a9076e
a9076e
a9076e
%if %{with_dm}
a9076e
%package dm
a9076e
BuildRequires: device-mapper-devel
a9076e
%if %{with_dmraid}
a9076e
BuildRequires: dmraid-devel
a9076e
%endif
a9076e
BuildRequires: systemd-devel
a9076e
Summary:     The Device Mapper plugin for the libblockdev library
Vojtech Trefny bb6266
Requires: %{name}-utils%{?_isa} = %{version}-%{release}
a9076e
Requires: device-mapper
a9076e
%if %{with_dmraid}
a9076e
Requires: dmraid
a9076e
%endif
a9076e
a9076e
%description dm
a9076e
The libblockdev library plugin (and in the same time a standalone library)
a9076e
providing the functionality related to Device Mapper.
a9076e
a9076e
%package dm-devel
a9076e
Summary:     Development files for the libblockdev-dm plugin/library
a9076e
Requires: %{name}-dm%{?_isa} = %{version}-%{release}
a9076e
Requires: glib2-devel
a9076e
Requires: device-mapper-devel
a9076e
Requires: systemd-devel
a9076e
%if %{with_dmraid}
a9076e
Requires: dmraid-devel
a9076e
%endif
Vojtech Trefny bb6266
Requires: %{name}-utils-devel%{?_isa} = %{version}-%{release}
a9076e
a9076e
%description dm-devel
a9076e
This package contains header files and pkg-config files needed for development
a9076e
with the libblockdev-dm plugin/library.
a9076e
%endif
a9076e
a9076e
a9076e
%if %{with_fs}
a9076e
%package fs
a9076e
BuildRequires: parted-devel
a9076e
BuildRequires: libblkid-devel
a9076e
BuildRequires: libmount-devel
a9076e
Summary:     The FS plugin for the libblockdev library
Vojtech Trefny bb6266
Requires: %{name}-utils%{?_isa} = %{version}-%{release}
a9076e
a9076e
%description fs
a9076e
The libblockdev library plugin (and in the same time a standalone library)
a9076e
providing the functionality related to operations with file systems.
a9076e
a9076e
%package fs-devel
a9076e
Summary:     Development files for the libblockdev-fs plugin/library
a9076e
Requires: %{name}-fs%{?_isa} = %{version}-%{release}
Vojtech Trefny bb6266
Requires: %{name}-utils-devel%{?_isa} = %{version}-%{release}
a9076e
Requires: glib2-devel
a9076e
Requires: xfsprogs
a9076e
Requires: dosfstools
a9076e
a9076e
%description fs-devel
a9076e
This package contains header files and pkg-config files needed for development
a9076e
with the libblockdev-fs plugin/library.
a9076e
%endif
a9076e
a9076e
a9076e
%if %{with_kbd}
a9076e
%package kbd
a9076e
BuildRequires: libbytesize-devel
a9076e
Summary:     The KBD plugin for the libblockdev library
Vojtech Trefny bb6266
Requires: %{name}-utils%{?_isa} = %{version}-%{release}
a9076e
%if %{with_bcache}
a9076e
Requires: bcache-tools >= 1.0.8
a9076e
%endif
a9076e
a9076e
%description kbd
a9076e
The libblockdev library plugin (and in the same time a standalone library)
a9076e
providing the functionality related to kernel block devices (namely zRAM and
a9076e
Bcache).
a9076e
a9076e
%package kbd-devel
a9076e
Summary:     Development files for the libblockdev-kbd plugin/library
a9076e
Requires: %{name}-kbd%{?_isa} = %{version}-%{release}
Vojtech Trefny bb6266
Requires: %{name}-utils-devel%{?_isa} = %{version}-%{release}
a9076e
Requires: glib2-devel
a9076e
a9076e
%description kbd-devel
a9076e
This package contains header files and pkg-config files needed for development
a9076e
with the libblockdev-kbd plugin/library.
a9076e
%endif
a9076e
a9076e
a9076e
%if %{with_loop}
a9076e
%package loop
a9076e
Summary:     The loop plugin for the libblockdev library
Vojtech Trefny bb6266
Requires: %{name}-utils%{?_isa} = %{version}-%{release}
a9076e
a9076e
%description loop
a9076e
The libblockdev library plugin (and in the same time a standalone library)
a9076e
providing the functionality related to loop devices.
a9076e
a9076e
%package loop-devel
a9076e
Summary:     Development files for the libblockdev-loop plugin/library
a9076e
Requires: %{name}-loop%{?_isa} = %{version}-%{release}
Vojtech Trefny bb6266
Requires: %{name}-utils-devel%{?_isa} = %{version}-%{release}
a9076e
Requires: glib2-devel
a9076e
a9076e
%description loop-devel
a9076e
This package contains header files and pkg-config files needed for development
a9076e
with the libblockdev-loop plugin/library.
a9076e
%endif
a9076e
a9076e
a9076e
%if %{with_lvm}
a9076e
%package lvm
a9076e
BuildRequires: device-mapper-devel
a9076e
Summary:     The LVM plugin for the libblockdev library
Vojtech Trefny bb6266
Requires: %{name}-utils%{?_isa} = %{version}-%{release}
a9076e
Requires: lvm2
a9076e
a9076e
%description lvm
a9076e
The libblockdev library plugin (and in the same time a standalone library)
a9076e
providing the LVM-related functionality.
a9076e
a9076e
%package lvm-devel
a9076e
Summary:     Development files for the libblockdev-lvm plugin/library
a9076e
Requires: %{name}-lvm%{?_isa} = %{version}-%{release}
Vojtech Trefny 1a538d
Requires: %{name}-utils-devel%{?_isa} = %{version}-%{release}
a9076e
Requires: glib2-devel
a9076e
a9076e
%description lvm-devel
a9076e
This package contains header files and pkg-config files needed for development
a9076e
with the libblockdev-lvm plugin/library.
a9076e
%endif
a9076e
a9076e
%if %{with_lvm_dbus}
a9076e
%package lvm-dbus
a9076e
BuildRequires: device-mapper-devel
a9076e
Summary:     The LVM plugin for the libblockdev library
Vojtech Trefny bb6266
Requires: %{name}-utils%{?_isa} = %{version}-%{release}
a9076e
Requires: lvm2-dbusd >= 2.02.156
a9076e
a9076e
%description lvm-dbus
a9076e
The libblockdev library plugin (and in the same time a standalone library)
a9076e
providing the LVM-related functionality utilizing the LVM DBus API.
a9076e
a9076e
%package lvm-dbus-devel
a9076e
Summary:     Development files for the libblockdev-lvm-dbus plugin/library
a9076e
Requires: %{name}-lvm-dbus%{?_isa} = %{version}-%{release}
Vojtech Trefny 1a538d
Requires: %{name}-utils-devel%{?_isa} = %{version}-%{release}
a9076e
Requires: glib2-devel
a9076e
a9076e
%description lvm-dbus-devel
a9076e
This package contains header files and pkg-config files needed for development
a9076e
with the libblockdev-lvm-dbus plugin/library.
a9076e
%endif
a9076e
a9076e
a9076e
%if %{with_mdraid}
a9076e
%package mdraid
a9076e
BuildRequires: libbytesize-devel
a9076e
Summary:     The MD RAID plugin for the libblockdev library
Vojtech Trefny bb6266
Requires: %{name}-utils%{?_isa} = %{version}-%{release}
a9076e
Requires: mdadm
a9076e
a9076e
%description mdraid
a9076e
The libblockdev library plugin (and in the same time a standalone library)
a9076e
providing the functionality related to MD RAID.
a9076e
a9076e
%package mdraid-devel
a9076e
Summary:     Development files for the libblockdev-mdraid plugin/library
a9076e
Requires: %{name}-mdraid%{?_isa} = %{version}-%{release}
Vojtech Trefny bb6266
Requires: %{name}-utils-devel%{?_isa} = %{version}-%{release}
a9076e
Requires: glib2-devel
a9076e
a9076e
%description mdraid-devel
a9076e
This package contains header files and pkg-config files needed for development
a9076e
with the libblockdev-mdraid plugin/library.
a9076e
%endif
a9076e
a9076e
a9076e
%if %{with_mpath}
a9076e
%package mpath
a9076e
BuildRequires: device-mapper-devel
a9076e
Summary:     The multipath plugin for the libblockdev library
Vojtech Trefny bb6266
Requires: %{name}-utils%{?_isa} = %{version}-%{release}
Vojtech Trefny bb6266
Requires: device-mapper-multipath
a9076e
a9076e
%description mpath
a9076e
The libblockdev library plugin (and in the same time a standalone library)
a9076e
providing the functionality related to multipath devices.
a9076e
a9076e
%package mpath-devel
a9076e
Summary:     Development files for the libblockdev-mpath plugin/library
a9076e
Requires: %{name}-mpath%{?_isa} = %{version}-%{release}
Vojtech Trefny bb6266
Requires: %{name}-utils-devel%{?_isa} = %{version}-%{release}
a9076e
Requires: glib2-devel
a9076e
a9076e
%description mpath-devel
a9076e
This package contains header files and pkg-config files needed for development
a9076e
with the libblockdev-mpath plugin/library.
a9076e
%endif
a9076e
a9076e
%if %{with_nvdimm}
a9076e
%package nvdimm
a9076e
BuildRequires: ndctl-devel
a9076e
BuildRequires: libuuid-devel
a9076e
Summary:     The NVDIMM plugin for the libblockdev library
Vojtech Trefny bb6266
Requires: %{name}-utils%{?_isa} = %{version}-%{release}
a9076e
Requires: ndctl
a9076e
a9076e
%description nvdimm
a9076e
The libblockdev library plugin (and in the same time a standalone library)
a9076e
providing the functionality related to operations with NVDIMM devices.
a9076e
a9076e
%package nvdimm-devel
a9076e
Summary:     Development files for the libblockdev-nvdimm plugin/library
a9076e
Requires: %{name}-nvdimm%{?_isa} = %{version}-%{release}
Vojtech Trefny bb6266
Requires: %{name}-utils-devel%{?_isa} = %{version}-%{release}
a9076e
Requires: glib2-devel
a9076e
a9076e
%description nvdimm-devel
a9076e
This package contains header files and pkg-config files needed for development
a9076e
with the libblockdev-nvdimm plugin/library.
a9076e
%endif
a9076e
a9076e
Vojtech Trefny 260e8c
%if %{with_nvme}
Vojtech Trefny 260e8c
%package nvme
Vojtech Trefny 260e8c
BuildRequires: libnvme-devel
Vojtech Trefny 260e8c
BuildRequires: libuuid-devel
Vojtech Trefny 260e8c
Summary:     The NVMe plugin for the libblockdev library
Vojtech Trefny 260e8c
Requires: %{name}-utils%{?_isa} = %{version}-%{release}
Vojtech Trefny 260e8c
Vojtech Trefny 260e8c
%description nvme
Vojtech Trefny 260e8c
The libblockdev library plugin (and in the same time a standalone library)
Vojtech Trefny 260e8c
providing the functionality related to operations with NVMe devices.
Vojtech Trefny 260e8c
Vojtech Trefny 260e8c
%package nvme-devel
Vojtech Trefny 260e8c
Summary:     Development files for the libblockdev-nvme plugin/library
Vojtech Trefny 260e8c
Requires: %{name}-nvme%{?_isa} = %{version}-%{release}
Vojtech Trefny 260e8c
Requires: %{name}-utils-devel%{?_isa} = %{version}-%{release}
Vojtech Trefny 260e8c
Requires: glib2-devel
Vojtech Trefny 260e8c
Vojtech Trefny 260e8c
%description nvme-devel
Vojtech Trefny 260e8c
This package contains header files and pkg-config files needed for development
Vojtech Trefny 260e8c
with the libblockdev-nvme plugin/library.
Vojtech Trefny 260e8c
%endif
Vojtech Trefny 260e8c
Vojtech Trefny 260e8c
a9076e
%if %{with_part}
a9076e
%package part
a9076e
BuildRequires: parted-devel
a9076e
Summary:     The partitioning plugin for the libblockdev library
Vojtech Trefny bb6266
Requires: %{name}-utils%{?_isa} = %{version}-%{release}
a9076e
Requires: gdisk
a9076e
Requires: util-linux
a9076e
a9076e
%description part
a9076e
The libblockdev library plugin (and in the same time a standalone library)
a9076e
providing the functionality related to partitioning.
a9076e
a9076e
%package part-devel
a9076e
Summary:     Development files for the libblockdev-part plugin/library
a9076e
Requires: %{name}-part%{?_isa} = %{version}-%{release}
Vojtech Trefny bb6266
Requires: %{name}-utils-devel%{?_isa} = %{version}-%{release}
a9076e
Requires: glib2-devel
a9076e
a9076e
%description part-devel
a9076e
This package contains header files and pkg-config files needed for development
a9076e
with the libblockdev-part plugin/library.
a9076e
%endif
a9076e
a9076e
a9076e
%if %{with_swap}
a9076e
%package swap
a9076e
BuildRequires: libblkid-devel
a9076e
Summary:     The swap plugin for the libblockdev library
Vojtech Trefny bb6266
Requires: %{name}-utils%{?_isa} = %{version}-%{release}
a9076e
Requires: util-linux
a9076e
a9076e
%description swap
a9076e
The libblockdev library plugin (and in the same time a standalone library)
a9076e
providing the functionality related to swap devices.
a9076e
a9076e
%package swap-devel
a9076e
Summary:     Development files for the libblockdev-swap plugin/library
a9076e
Requires: %{name}-swap%{?_isa} = %{version}-%{release}
Vojtech Trefny bb6266
Requires: %{name}-utils-devel%{?_isa} = %{version}-%{release}
a9076e
Requires: glib2-devel
a9076e
a9076e
%description swap-devel
a9076e
This package contains header files and pkg-config files needed for development
a9076e
with the libblockdev-swap plugin/library.
a9076e
%endif
a9076e
a9076e
a9076e
%if %{with_vdo}
a9076e
%package vdo
a9076e
BuildRequires: libbytesize-devel
a9076e
BuildRequires: libyaml-devel
a9076e
Summary:     The vdo plugin for the libblockdev library
Vojtech Trefny bb6266
Requires: %{name}-utils%{?_isa} = %{version}-%{release}
a9076e
a9076e
# weak dependencies doesn't work on older RHEL
a9076e
%if (0%{?rhel} && 0%{?rhel} <= 7)
a9076e
Requires: vdo
a9076e
Requires: kmod-kvdo
a9076e
%else
a9076e
# we want to build the plugin everywhere but the dependencies might not be
a9076e
# available so just use weak dependency
a9076e
Recommends: vdo
a9076e
Recommends: kmod-kvdo
a9076e
%endif
a9076e
a9076e
%description vdo
a9076e
The libblockdev library plugin (and in the same time a standalone library)
a9076e
providing the functionality related to VDO devices.
a9076e
a9076e
%package vdo-devel
a9076e
Summary:     Development files for the libblockdev-vdo plugin/library
a9076e
Requires: %{name}-vdo%{?_isa} = %{version}-%{release}
Vojtech Trefny bb6266
Requires: %{name}-utils-devel%{?_isa} = %{version}-%{release}
a9076e
Requires: glib2-devel
a9076e
a9076e
%description vdo-devel
a9076e
This package contains header files and pkg-config files needed for development
a9076e
with the libblockdev-vdo plugin/library.
a9076e
%endif
a9076e
a9076e
%if %{with_tools}
a9076e
%package tools
a9076e
Summary:    Various nice tools based on libblockdev
Vojtech Trefny bb6266
Requires:   %{name} = %{version}-%{release}
Vojtech Trefny bb6266
Requires:   %{name}-lvm = %{version}-%{release}
a9076e
BuildRequires: libbytesize-devel
a9076e
%if %{with_lvm_dbus} == 1
a9076e
Recommends: %{name}-lvm-dbus
a9076e
%endif
a9076e
a9076e
%description tools
a9076e
Various nice storage-related tools based on libblockdev.
a9076e
a9076e
%endif
a9076e
a9076e
%ifarch s390 s390x
a9076e
%package s390
a9076e
Summary:    The s390 plugin for the libblockdev library
a9076e
Requires: s390utils
Vojtech Trefny bb6266
Requires: %{name}-utils%{?_isa} = %{version}-%{release}
a9076e
a9076e
%description s390
a9076e
The libblockdev library plugin (and in the same time a standalone library)
a9076e
providing the functionality related to s390 devices.
a9076e
a9076e
%package s390-devel
a9076e
Summary:     Development files for the libblockdev-s390 plugin/library
a9076e
Requires: %{name}-s390%{?_isa} = %{version}-%{release}
Vojtech Trefny bb6266
Requires: %{name}-utils-devel%{?_isa} = %{version}-%{release}
a9076e
Requires: glib2-devel
a9076e
a9076e
%description s390-devel
a9076e
This package contains header files and pkg-config files needed for development
a9076e
with the libblockdev-s390 plugin/library.
a9076e
%endif
a9076e
a9076e
%package plugins-all
a9076e
Summary:     Meta-package that pulls all the libblockdev plugins as dependencies
a9076e
Requires: %{name}%{?_isa} = %{version}-%{release}
a9076e
a9076e
%if %{with_btrfs}
a9076e
Requires: %{name}-btrfs%{?_isa} = %{version}-%{release}
a9076e
%endif
a9076e
a9076e
%if %{with_crypto}
a9076e
Requires: %{name}-crypto%{?_isa} = %{version}-%{release}
a9076e
%endif
a9076e
a9076e
%if %{with_dm}
a9076e
Requires: %{name}-dm%{?_isa} = %{version}-%{release}
a9076e
%endif
a9076e
a9076e
%if %{with_fs}
a9076e
Requires: %{name}-fs%{?_isa} = %{version}-%{release}
a9076e
%endif
a9076e
a9076e
%if %{with_kbd}
a9076e
Requires: %{name}-kbd%{?_isa} = %{version}-%{release}
a9076e
%endif
a9076e
a9076e
%if %{with_loop}
a9076e
Requires: %{name}-loop%{?_isa} = %{version}-%{release}
a9076e
%endif
a9076e
a9076e
%if %{with_lvm}
a9076e
Requires: %{name}-lvm%{?_isa} = %{version}-%{release}
a9076e
%endif
a9076e
a9076e
%if %{with_mdraid}
a9076e
Requires: %{name}-mdraid%{?_isa} = %{version}-%{release}
a9076e
%endif
a9076e
a9076e
%if %{with_mpath}
a9076e
Requires: %{name}-mpath%{?_isa} = %{version}-%{release}
a9076e
%endif
a9076e
a9076e
%if %{with_nvdimm}
a9076e
Requires: %{name}-nvdimm%{?_isa} = %{version}-%{release}
a9076e
%endif
a9076e
Vojtech Trefny 260e8c
%if %{with_nvme}
Vojtech Trefny 260e8c
Requires: %{name}-nvme%{?_isa} = %{version}-%{release}
Vojtech Trefny 260e8c
%endif
Vojtech Trefny 260e8c
a9076e
%if %{with_part}
a9076e
Requires: %{name}-part%{?_isa} = %{version}-%{release}
a9076e
%endif
a9076e
a9076e
%if %{with_swap}
a9076e
Requires: %{name}-swap%{?_isa} = %{version}-%{release}
a9076e
%endif
a9076e
a9076e
%if %{with_vdo}
a9076e
Requires: %{name}-vdo%{?_isa} = %{version}-%{release}
a9076e
%endif
a9076e
a9076e
%ifarch s390 s390x
a9076e
Requires: %{name}-s390%{?_isa} = %{version}-%{release}
a9076e
%endif
a9076e
a9076e
%description plugins-all
a9076e
A meta-package that pulls all the libblockdev plugins as dependencies.
a9076e
a9076e
a9076e
%prep
a9076e
%setup -q -n %{name}-%{version}
a9076e
%patch0 -p1
a9076e
%patch1 -p1
a9076e
%patch2 -p1
a9076e
%patch3 -p1
a9076e
%patch4 -p1
a9076e
%patch5 -p1
a9076e
a9076e
%build
a9076e
autoreconf -ivf
a9076e
%configure %{?configure_opts}
a9076e
%{__make} %{?_smp_mflags}
a9076e
a9076e
%install
a9076e
%{make_install}
a9076e
find %{buildroot} -type f -name "*.la" | xargs %{__rm}
a9076e
a9076e
a9076e
%ldconfig_scriptlets
a9076e
%ldconfig_scriptlets utils
a9076e
a9076e
%if %{with_btrfs}
a9076e
%ldconfig_scriptlets btrfs
a9076e
%endif
a9076e
a9076e
%if %{with_crypto}
a9076e
%ldconfig_scriptlets crypto
a9076e
%endif
a9076e
a9076e
%if %{with_dm}
a9076e
%ldconfig_scriptlets dm
a9076e
%endif
a9076e
a9076e
%if %{with_fs}
a9076e
%ldconfig_scriptlets fs
a9076e
%endif
a9076e
a9076e
%if %{with_loop}
a9076e
%ldconfig_scriptlets loop
a9076e
%endif
a9076e
a9076e
%if %{with_lvm}
a9076e
%ldconfig_scriptlets lvm
a9076e
%endif
a9076e
a9076e
%if %{with_lvm_dbus}
a9076e
%ldconfig_scriptlets lvm-dbus
a9076e
%endif
a9076e
a9076e
%if %{with_mdraid}
a9076e
%ldconfig_scriptlets mdraid
a9076e
%endif
a9076e
a9076e
%if %{with_mpath}
a9076e
%ldconfig_scriptlets mpath
a9076e
%endif
a9076e
a9076e
%if %{with_nvdimm}
a9076e
%ldconfig_scriptlets nvdimm
a9076e
%endif
a9076e
Vojtech Trefny 260e8c
%if %{with_nvme}
Vojtech Trefny 260e8c
%ldconfig_scriptlets nvme
Vojtech Trefny 260e8c
%endif
Vojtech Trefny 260e8c
a9076e
%if %{with_part}
a9076e
%ldconfig_scriptlets part
a9076e
%endif
a9076e
a9076e
%if %{with_swap}
a9076e
%ldconfig_scriptlets swap
a9076e
%endif
a9076e
a9076e
%if %{with_vdo}
a9076e
%ldconfig_scriptlets vdo
a9076e
%endif
a9076e
a9076e
%ifarch s390 s390x
a9076e
%ldconfig_scriptlets s390
a9076e
%endif
a9076e
a9076e
%if %{with_kbd}
a9076e
%ldconfig_scriptlets kbd
a9076e
%endif
a9076e
a9076e
a9076e
%files
a9076e
%{!?_licensedir:%global license %%doc}
a9076e
%license LICENSE
a9076e
%{_libdir}/libblockdev.so.*
a9076e
%if %{with_gi}
a9076e
%{_libdir}/girepository*/BlockDev*.typelib
a9076e
%endif
a9076e
%dir %{_sysconfdir}/libblockdev
a9076e
%dir %{_sysconfdir}/libblockdev/conf.d
a9076e
%config %{_sysconfdir}/libblockdev/conf.d/00-default.cfg
a9076e
a9076e
%files devel
a9076e
%doc features.rst specs.rst
a9076e
%{_libdir}/libblockdev.so
a9076e
%dir %{_includedir}/blockdev
a9076e
%{_includedir}/blockdev/blockdev.h
a9076e
%{_includedir}/blockdev/plugins.h
a9076e
%{_libdir}/pkgconfig/blockdev.pc
a9076e
%if %{with_gtk_doc}
a9076e
%{_datadir}/gtk-doc/html/libblockdev
a9076e
%endif
a9076e
%if %{with_gi}
a9076e
%{_datadir}/gir*/BlockDev*.gir
a9076e
%endif
a9076e
a9076e
%if %{with_python2}
a9076e
%files -n python2-blockdev
a9076e
%{python2_sitearch}/gi/overrides/*
a9076e
%endif
a9076e
a9076e
%if %{with_python3}
a9076e
%files -n python3-blockdev
a9076e
%{python3_sitearch}/gi/overrides/BlockDev*
a9076e
%{python3_sitearch}/gi/overrides/__pycache__/BlockDev*
a9076e
%endif
a9076e
a9076e
%files utils
a9076e
%{_libdir}/libbd_utils.so.*
a9076e
%{_libdir}/libbd_part_err.so.*
a9076e
a9076e
%files utils-devel
a9076e
%{_libdir}/libbd_utils.so
a9076e
%{_libdir}/libbd_part_err.so
a9076e
%{_libdir}/pkgconfig/blockdev-utils.pc
a9076e
%dir %{_includedir}/blockdev
a9076e
%{_includedir}/blockdev/utils.h
a9076e
%{_includedir}/blockdev/sizes.h
a9076e
%{_includedir}/blockdev/exec.h
a9076e
%{_includedir}/blockdev/extra_arg.h
a9076e
%{_includedir}/blockdev/dev_utils.h
a9076e
%{_includedir}/blockdev/module.h
a9076e
%{_includedir}/blockdev/dbus.h
a9076e
a9076e
a9076e
%if %{with_btrfs}
a9076e
%files btrfs
a9076e
%{_libdir}/libbd_btrfs.so.*
a9076e
a9076e
%files btrfs-devel
a9076e
%{_libdir}/libbd_btrfs.so
a9076e
%dir %{_includedir}/blockdev
a9076e
%{_includedir}/blockdev/btrfs.h
a9076e
%endif
a9076e
a9076e
a9076e
%if %{with_crypto}
a9076e
%files crypto
a9076e
%{_libdir}/libbd_crypto.so.*
a9076e
a9076e
%files crypto-devel
a9076e
%{_libdir}/libbd_crypto.so
a9076e
%dir %{_includedir}/blockdev
a9076e
%{_includedir}/blockdev/crypto.h
a9076e
%endif
a9076e
a9076e
a9076e
%if %{with_dm}
a9076e
%files dm
a9076e
%{_libdir}/libbd_dm.so.*
a9076e
a9076e
%files dm-devel
a9076e
%{_libdir}/libbd_dm.so
a9076e
%dir %{_includedir}/blockdev
a9076e
%{_includedir}/blockdev/dm.h
a9076e
%endif
a9076e
a9076e
a9076e
%if %{with_fs}
a9076e
%files fs
a9076e
%{_libdir}/libbd_fs.so.*
a9076e
a9076e
%files fs-devel
a9076e
%{_libdir}/libbd_fs.so
a9076e
%dir %{_includedir}/blockdev
a9076e
%dir %{_includedir}/blockdev/fs
a9076e
%{_includedir}/blockdev/fs.h
a9076e
%{_includedir}/blockdev/fs/*.h
a9076e
%endif
a9076e
a9076e
a9076e
%if %{with_kbd}
a9076e
%files kbd
a9076e
%{_libdir}/libbd_kbd.so.*
a9076e
a9076e
%files kbd-devel
a9076e
%{_libdir}/libbd_kbd.so
a9076e
%dir %{_includedir}/blockdev
a9076e
%{_includedir}/blockdev/kbd.h
a9076e
%endif
a9076e
a9076e
a9076e
%if %{with_loop}
a9076e
%files loop
a9076e
%{_libdir}/libbd_loop.so.*
a9076e
a9076e
%files loop-devel
a9076e
%{_libdir}/libbd_loop.so
a9076e
%dir %{_includedir}/blockdev
a9076e
%{_includedir}/blockdev/loop.h
a9076e
%endif
a9076e
a9076e
a9076e
%if %{with_lvm}
a9076e
%files lvm
a9076e
%{_libdir}/libbd_lvm.so.*
a9076e
a9076e
%files lvm-devel
a9076e
%{_libdir}/libbd_lvm.so
a9076e
%dir %{_includedir}/blockdev
a9076e
%{_includedir}/blockdev/lvm.h
a9076e
%endif
a9076e
a9076e
a9076e
%if %{with_lvm_dbus}
a9076e
%files lvm-dbus
a9076e
%{_libdir}/libbd_lvm-dbus.so.*
a9076e
%config %{_sysconfdir}/libblockdev/conf.d/10-lvm-dbus.cfg
a9076e
a9076e
%files lvm-dbus-devel
a9076e
%{_libdir}/libbd_lvm-dbus.so
a9076e
%dir %{_includedir}/blockdev
a9076e
%{_includedir}/blockdev/lvm.h
a9076e
%endif
a9076e
a9076e
a9076e
%if %{with_mdraid}
a9076e
%files mdraid
a9076e
%{_libdir}/libbd_mdraid.so.*
a9076e
a9076e
%files mdraid-devel
a9076e
%{_libdir}/libbd_mdraid.so
a9076e
%dir %{_includedir}/blockdev
a9076e
%{_includedir}/blockdev/mdraid.h
a9076e
%endif
a9076e
a9076e
a9076e
%if %{with_mpath}
a9076e
%files mpath
a9076e
%{_libdir}/libbd_mpath.so.*
a9076e
a9076e
%files mpath-devel
a9076e
%{_libdir}/libbd_mpath.so
a9076e
%dir %{_includedir}/blockdev
a9076e
%{_includedir}/blockdev/mpath.h
a9076e
%endif
a9076e
a9076e
a9076e
%if %{with_nvdimm}
a9076e
%files nvdimm
a9076e
%{_libdir}/libbd_nvdimm.so.*
a9076e
a9076e
%files nvdimm-devel
a9076e
%{_libdir}/libbd_nvdimm.so
a9076e
%dir %{_includedir}/blockdev
a9076e
%{_includedir}/blockdev/nvdimm.h
a9076e
%endif
a9076e
a9076e
Vojtech Trefny 260e8c
%if %{with_nvme}
Vojtech Trefny 260e8c
%files nvme
Vojtech Trefny 260e8c
%{_libdir}/libbd_nvme.so.*
Vojtech Trefny 260e8c
Vojtech Trefny 260e8c
%files nvme-devel
Vojtech Trefny 260e8c
%{_libdir}/libbd_nvme.so
Vojtech Trefny 260e8c
%dir %{_includedir}/blockdev
Vojtech Trefny 260e8c
%{_includedir}/blockdev/nvme.h
Vojtech Trefny 260e8c
%endif
Vojtech Trefny 260e8c
Vojtech Trefny 260e8c
a9076e
%if %{with_part}
a9076e
%files part
a9076e
%{_libdir}/libbd_part.so.*
a9076e
a9076e
%files part-devel
a9076e
%{_libdir}/libbd_part.so
a9076e
%dir %{_includedir}/blockdev
a9076e
%{_includedir}/blockdev/part.h
a9076e
%endif
a9076e
a9076e
a9076e
%if %{with_swap}
a9076e
%files swap
a9076e
%{_libdir}/libbd_swap.so.*
a9076e
a9076e
%files swap-devel
a9076e
%{_libdir}/libbd_swap.so
a9076e
%dir %{_includedir}/blockdev
a9076e
%{_includedir}/blockdev/swap.h
a9076e
%endif
a9076e
a9076e
a9076e
%if %{with_vdo}
a9076e
%files vdo
a9076e
%{_libdir}/libbd_vdo.so.*
a9076e
a9076e
%files vdo-devel
a9076e
%{_libdir}/libbd_vdo.so
a9076e
%dir %{_includedir}/blockdev
a9076e
%{_includedir}/blockdev/vdo.h
a9076e
%endif
a9076e
a9076e
%if %{with_tools}
a9076e
%files tools
a9076e
%{_bindir}/lvm-cache-stats
a9076e
%endif
a9076e
a9076e
%ifarch s390 s390x
a9076e
%files s390
a9076e
%{_libdir}/libbd_s390.so.*
a9076e
a9076e
%files s390-devel
a9076e
%{_libdir}/libbd_s390.so
a9076e
%dir %{_includedir}/blockdev
a9076e
%{_includedir}/blockdev/s390.h
a9076e
%endif
a9076e
a9076e
%files plugins-all
a9076e
a9076e
%changelog
Michel Alexandre Salim 87b2c3
* Fri Mar 03 2023 Michel Alexandre Salim <salimma@centosproject.org> - 2.28-4.1
Michel Alexandre Salim 87b2c3
- Enable Btrfs for CentOS Hyperscale SIG
Michel Alexandre Salim 87b2c3
Vojtech Trefny 97cfd5
* Thu Jan 05 2023 Vojtech Trefny <vtrefny@redhat.com> - 2.28-4
Vojtech Trefny 97cfd5
- nvme: Fix namespace identifiers
Vojtech Trefny 97cfd5
  Resolves: rhbz#2151535
Vojtech Trefny 97cfd5
- nvme: Avoid sending NVME_IDENTIFY_CNS_NS_DESC_LIST on older devices
Vojtech Trefny 97cfd5
  Related: rhbz#2151535
Vojtech Trefny 97cfd5
Vojtech Trefny 83aeff
* Mon Nov 28 2022 Vojtech Trefny <vtrefny@redhat.com> - 2.28-3
Vojtech Trefny 83aeff
- Fix double free in write_escrow_data_file
Vojtech Trefny 83aeff
  Resolves: rhbz#2143226
Vojtech Trefny 83aeff
Vojtech Trefny 260e8c
* Thu Sep 22 2022 Vojtech Trefny <vtrefny@redhat.com> - 2.28-2
Vojtech Trefny 260e8c
- NVMe plugin backport
Vojtech Trefny 260e8c
  Resolves: rhbz#2123338
Vojtech Trefny 260e8c
Vojtech Trefny bb6266
* Wed Sep 14 2022 Vojtech Trefny <vtrefny@redhat.com> - 2.28-1
Vojtech Trefny bb6266
- Rebase to the latest upstream release 2.28
Vojtech Trefny bb6266
  Resolves: rhbz#2123346
Vojtech Trefny bb6266
- Add dependency on device-mapper-multipath to libblockdev-mpath
Vojtech Trefny bb6266
  Resolves: rhbz#2121072
Vojtech Trefny bb6266
- Fix spec issues found by rpminspect
Vojtech Trefny bb6266
  Resolves: rhbz#2116544
Vojtech Trefny bb6266
Vojtech Trefny 4e022d
* Mon Aug 08 2022 Vojtech Trefny <vtrefny@redhat.com> - 2.25-14
Vojtech Trefny 4e022d
- tests: Fix expected extended partition flags with new parted
Vojtech Trefny 4e022d
  Related: rhbz#2109026
Vojtech Trefny 4e022d
- mdraid: Fix copy-paste error when checking return value
Vojtech Trefny 4e022d
  Related: rhbz#2109026
Vojtech Trefny 4e022d
Vojtech Trefny abd838
* Mon Aug 08 2022 Vojtech Trefny <vtrefny@redhat.com> - 2.25-13
Vojtech Trefny abd838
- Fix getting UUID for DDF containers
Vojtech Trefny abd838
  Resolves: rhbz#2109026
Vojtech Trefny abd838
Vojtech Trefny 0e82ac
* Wed May 11 2022 Vojtech Trefny <vtrefny@redhat.com> - 2.25-12
Vojtech Trefny 0e82ac
- tests: Lower expected free space on newly created Ext filesystems
Vojtech Trefny 0e82ac
  Resolves: rhbz#2065943
Vojtech Trefny 0e82ac
Vojtech Trefny 1a538d
* Mon Jan 10 2022 Vojtech Trefny <vtrefny@redhat.com> - 2.25-11
Vojtech Trefny 1a538d
- tests: Wait for raid and mirrored LVs to be synced before removing
Vojtech Trefny 1a538d
  Resolves: rhbz#2030647
Vojtech Trefny 1a538d
- spec: Require the same version of utils for lvm-devel and lvm-dbus-devel
Vojtech Trefny 1a538d
  Resolves: rhbz#2028113
Vojtech Trefny 1a538d
ecc649
* Sat Jan 15 2022 Neal Gompa <ngompa@centosproject.org> - 2.25-10.1
ecc649
- Enable Btrfs for CentOS Hyperscale SIG
ecc649
3b3b27
* Wed Dec 08 2021 Vojtech Trefny <vtrefny@redhat.com> - 2.25-10
3b3b27
- Fix reading statistics for VDO pools with VDO 8
3b3b27
  Resolves: rhbz#1994220
3b3b27
- vdo_stats: Default to 100 % savings for invalid savings values
3b3b27
  Resolves: rhbz#2025880
3b3b27
- Add support for creating and unlocking standalone integrity devices
3b3b27
  Resolves: rhbz#2011365
3b3b27
3b3b27
* Tue Nov 30 2021 Vojtech Trefny <vtrefny@redhat.com> - 2.25-9
3b3b27
- Fix patch for 'Add support LVM devices file management'
3b3b27
  Resolves: rhbz#1983705
3b3b27
3b3b27
* Tue Nov 30 2021 Vojtech Trefny <vtrefny@redhat.com> - 2.25-8
3b3b27
- Add support LVM devices file management
3b3b27
  Resolves: rhbz#1983705
3b3b27
a9076e
* Mon Aug 09 2021 Mohan Boddu <mboddu@redhat.com> - 2.25-7
a9076e
- Rebuilt for IMA sigs, glibc 2.34, aarch64 flags
a9076e
  Related: rhbz#1991688
a9076e
a9076e
* Tue Jun 29 2021 Vojtech Trefny <vtrefny@redhat.com> - 2.25-6
a9076e
- Add workarounds for some LVM test issues
a9076e
  Resolves: rhbz#1976174
a9076e
- Adapt tests to xfsprogs 5.12 changes
a9076e
  Resolves: rhbz#1976176
a9076e
a9076e
* Tue May 18 2021 Vojtech Trefny <vtrefny@redhat.com> - 2.25-5
a9076e
- Adapt to dosfstools 4.2 changes
a9076e
  Resolves: rhbz#1960624
a9076e
a9076e
* Thu May 13 2021 Vojtech Trefny <vtrefny@redhat.com> - 2.25-4
a9076e
- Memory leaks fixes backport
a9076e
  Resolves: rhbz#1938757
a9076e
- Fix default key size for non XTS ciphers
a9076e
  Resolves: rhbz#1954005
a9076e
a9076e
* Fri Apr 16 2021 Mohan Boddu <mboddu@redhat.com> - 2.25-3
a9076e
- Rebuilt for RHEL 9 BETA on Apr 15th 2021. Related: rhbz#1947937
a9076e
a9076e
* Tue Jan 26 2021 Fedora Release Engineering <releng@fedoraproject.org> - 2.25-2
a9076e
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
a9076e
a9076e
* Mon Jan 11 2021 Vojtech Trefny <vtrefny@redhat.com> - 2.25-1
a9076e
- loop: Retry LOOP_SET_STATUS64 on EAGAIN (vtrefny)
a9076e
- Fix max size limit for LVM thinpool metadata (vtrefny)
a9076e
- lvm: Use the UNUSED macro instead of __attribute__((unused)) (vtrefny)
a9076e
- lvm: Do not use thin_metadata_size to recommend thin metadata size (vtrefny)
a9076e
- lvm: Set thin metadata limits to match limits LVM uses in lvcreate (vtrefny)
a9076e
- Mark all GIR file constants as guint64 (vtrefny)
a9076e
- lvm: Fix bd_lvm_vdopooldata_* symbols (tbzatek)
a9076e
- fs: Fix compile error in ext_repair caused by cherry pick from master (vtrefny)
a9076e
- README: Use CI status image for 2.x-branch on 2.x (vtrefny)
a9076e
- fs: Do not report error when errors were fixed by e2fsck (vtrefny)
a9076e
- tests: Add null-byte exec tests (tbzatek)
a9076e
- tests: Add bufferbloat exec tests (tbzatek)
a9076e
- exec: Clarify the BDUtilsProgExtract callback documentation (tbzatek)
a9076e
- exec: Use non-blocking read and process the buffer manually (tbzatek)
a9076e
- exec: Fix polling for stdout and stderr (tbzatek)
a9076e
- exec: Fix setting locale for util calls (vtrefny)
a9076e
a9076e
* Thu Oct 01 2020 Vojtech Trefny <vtrefny@redhat.com> - 2.24-7
a9076e
- Do not build VDO plugin
a9076e
a9076e
* Thu Sep 17 2020 Vojtech Trefny <vtrefny@redhat.com> - 2.24-6
a9076e
- exec: Fix setting locale for util calls
a9076e
a9076e
* Thu Aug 20 2020 Vojtech Trefny <vtrefny@redhat.com> - 2.24-5
a9076e
- dm: Fix comparing DM RAID member devices UUID
a9076e
a9076e
* Wed Aug 19 2020 Jeff Law <law@redhat.com> - 2.24-4
a9076e
- Work around gcc-11 false positive warning
a9076e
a9076e
* Mon Jul 27 2020 Hans de Goede <hdegoede@redhat.com> - 2.24-3
a9076e
- Change -mpath subpackage Requires: device-mapper-multipath into Recommends
a9076e
- Related: rhbz#1857393
a9076e
a9076e
* Sat May 23 2020 Miro Hrončok <mhroncok@redhat.com> - 2.24-2
a9076e
- Rebuilt for Python 3.9
a9076e
a9076e
* Fri May 22 2020 Vojtech Trefny <vtrefny@redhat.com> - 2.24-1
a9076e
- Mark VDO plugin as deprecated since 2.24 (vtrefny)
a9076e
- Fix multiple uninitialized values discovered by coverity (vtrefny)
a9076e
- fs: Fix potential NULL pointer dereference in mount.c (vtrefny)
a9076e
- utils: Remove deadcode in exec.c (vtrefny)
a9076e
- Do not check VDO saving percent value in LVM DBus tests (vtrefny)
a9076e
- Use libblkid to get label and UUID for XFS filesystems (vtrefny)
a9076e
- Do not open devices as read-write for read-only fs operations (vtrefny)
a9076e
- Create a common function to get label and uuid of a filesystem (vtrefny)
a9076e
- lvm: Fix getting cache stats for cache thinpools (vtrefny)
a9076e
- Do not skip LVM VDO tests when the kvdo module is already loaded (vtrefny)
a9076e
- tests: Skip LVM VDO tests if kvdo module cannot be loaded (vtrefny)
a9076e
- lvm-dbus: Add LVM VDO pools to bd_lvm_lvs (vtrefny)
a9076e
- lvm: Add a function to get VDO pool name for a VDO LV (vtrefny)
a9076e
- lvm-dbus: Get data LV name for LVM VDO pools too (vtrefny)
a9076e
- Add functions to get VDO stats for LVM VDO volumes (vtrefny)
a9076e
- Move VDO statistics code to a separate file (vtrefny)
a9076e
- Fix copy-paste bug in lvm.api (vtrefny)
a9076e
- exec: Disable encoding when reading data from stdout/stderr (vtrefny)
a9076e
- Add function to get LVM VDO write policy from a string (vtrefny)
a9076e
- Add extra parameters for creating LVM VDO volumes (vtrefny)
a9076e
- Allow calling LVM functions without locking global_config_lock (vtrefny)
a9076e
- Fix getting VDO data in the LVM DBus plugin (vtrefny)
a9076e
- Fix getting string representation of unknown VDO state index (vtrefny)
a9076e
- Add write policy and index size to LVM VDO data (vtrefny)
a9076e
- Fix converting to VDO pool without name for the VDO LV (vtrefny)
a9076e
- Add some helper functions to get LVM VDO mode and state strings (vtrefny)
a9076e
- Add support for creating and managing VDO LVs with LVM (vtrefny)
a9076e
- Fix LVM plugin so names in tests (vtrefny)
a9076e
- Do not hardcode pylint executable name in Makefile (vtrefny)
a9076e
- Add a function to check if a tool supports given feature (vtrefny)
a9076e
- configure.ac: Avoid more bashisms (gentoo)
a9076e
- mount: Fix a memleak (tbzatek)
a9076e
- exec: Fix a memleak (tbzatek)
a9076e
- vdo: Fix a memleak (tbzatek)
a9076e
- configure.ac: Avoid bashisms (polynomial-c)
a9076e
- tests: Specify loader for yaml.load in VDO tests (vtrefny)
a9076e
- lvm-dbus: Fix memory leak in bd_lvm_thlvpoolname (vtrefny)
a9076e
- lvm-dbus: Do not activate LVs during pvscan --cache (vtrefny)
a9076e
- vdo: Run "vdo create" with "--force" (vtrefny)
a9076e
- Fix typo in (un)mount error messages (vtrefny)
a9076e
- utils: Add functions to get and check current linux kernel version (tbzatek)
a9076e
- ext: Return empty string instead of "<none>" for empty UUID (vtrefny)
a9076e
- Add support for BitLocker encrypted devices using cryptsetup (vtrefny)
a9076e
- Add a helper function for closing an active crypto device (vtrefny)
a9076e
- Manually remove symlinks not removed by udev in tests (vtrefny)
a9076e
- Fix memory leak in LVM DBus plugin (vtrefny)
a9076e
- Fix expected cache pool name with newest LVM (vtrefny)
a9076e
- fs: Fix checking for UID/GID == 0 (vtrefny)
a9076e
- Fixed a number of memory leaks in lvm-dbus plugin (mthompson)
a9076e
- exec.c: Fix reading outputs with null bytes (vtrefny)
a9076e
- Fix linking against utils on Debian (vtrefny)
a9076e
- Add new function 'bd_fs_wipe_force' to control force wipe (vtrefny)
a9076e
- Use 'explicit_bzero' to erase passphrases from key files (vtrefny)
a9076e
- Sync spec with downstream (vtrefny)
a9076e
a9076e
* Wed Jan 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 2.23-2
a9076e
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
a9076e
a9076e
* Mon Sep 09 2019 Vojtech Trefny <vtrefny@redhat.com> - 2.23-1
a9076e
- Fix how we get process exit code from g_spawn_sync (vtrefny)
a9076e
- Skip tests for old-style LVM snapshots on recent Fedora (vtrefny)
a9076e
- Fix skipping NTFS read-only test case on systems without NTFS (vtrefny)
a9076e
- Fix LVM_MAX_LV_SIZE in the GIR file (vtrefny)
a9076e
- Print skipped test "results" to stderr instead of stdout (vtrefny)
a9076e
- Move the NTFS read-only device test to a separate test case (vtrefny)
a9076e
- Fix parsing distro version from CPE name (vtrefny)
a9076e
- Use 'kmod_module_probe_insert_module' function for loading modules (vtrefny)
a9076e
- Hide filesystem-specific is_tech_available functions (vtrefny)
a9076e
- Mark LVM global config locks as static (vtrefny)
a9076e
- Remove unused 'get_PLUGIN_num_functions' and 'get_PLUGIN_functions' functions (vtrefny)
a9076e
- Mark 'private' plugin management functions as static (vtrefny)
a9076e
- Ignore coverity deadcode warning in 'bd_fs_is_tech_avail' (vtrefny)
a9076e
- Ignore coverity deadcode warnings in the generated code (vtrefny)
a9076e
- Use the new config file for skipping tests (vtrefny)
a9076e
- Skip bcache tests if make-bcache is not installed (vtrefny)
a9076e
- Add ability to read tests to skip from a config file (vtrefny)
a9076e
- Mark 'test_set_bitmap_location' as unstable (vtrefny)
a9076e
- Force LVM cli plugin in lvm_test (vtrefny)
a9076e
- Add a special test tag for library tests that recompile plugins (vtrefny)
a9076e
- Allow running tests against installed libblockdev (vtrefny)
a9076e
- Remove duplicate test case (vtrefny)
a9076e
- Use the new test tags in tests (vtrefny)
a9076e
- Use test tags for skipping tests (vtrefny)
a9076e
- Add a decorator for "tagging" tests (vtrefny)
a9076e
- Add function for (un)freezing filesystems (vtrefny)
a9076e
- Add a function to check whether a path is a mounpoint or not (vtrefny)
a9076e
- Skip bcache tests on all Debian versions (vtrefny)
a9076e
a9076e
* Fri Aug 16 2019 Miro Hrončok <mhroncok@redhat.com> - 2.22-3
a9076e
- Rebuilt for Python 3.8
a9076e
a9076e
* Thu Jul 25 2019 Fedora Release Engineering <releng@fedoraproject.org> - 2.22-2
a9076e
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
a9076e
a9076e
* Wed Jun 12 2019 Vojtech Trefny <vtrefny@redhat.com> - 2.22-1
a9076e
- tests: Fix Debian testing "version" for skipping (vtrefny)
a9076e
- module: Fix libkmod related leak (tbzatek)
a9076e
- btrfs: Fix number of memory leaks (tbzatek)
a9076e
- mdraid: Fix leaking BDMDExamineData.metadata (tbzatek)
a9076e
- mdraid: Fix leaking error (tbzatek)
a9076e
- part: Fix leaking string in args (tbzatek)
a9076e
- ext: Fix leaking string (tbzatek)
a9076e
- part: Fix leaking objects (tbzatek)
a9076e
- kbd: Fix g_match_info_fetch() leaks (tbzatek)
a9076e
- ext: Fix g_match_info_fetch() leaks (tbzatek)
a9076e
- ext: Fix g_strsplit() leaks (tbzatek)
a9076e
- s390: Fix g_strsplit() leaks (tbzatek)
a9076e
- mdraid: Fix g_strsplit() leaks (tbzatek)
a9076e
- exec: Fix some memory leaks (tbzatek)
a9076e
- lvm: Fix leaking BDLVMPVdata.vg_uuid (tbzatek)
a9076e
- lvm: Use g_ptr_array_free() for creating lists (tbzatek)
a9076e
- lvm: Fix some obvious memory leaks (tbzatek)
a9076e
- Remove device-mapper-multipath dependency from fs and part plugins (vtrefny)
a9076e
- bd_fs_xfs_get_info: Allow passing error == NULL (tbzatek)
a9076e
- tests: Fix removing targetcli lun (vtrefny)
a9076e
- Use existing cryptsetup API for changing keyslot passphrase (vtrefny)
a9076e
- New function to get supported sector sizes for NVDIMM namespaces (vtrefny)
a9076e
- Allow skiping tests only based on architecture (vtrefny)
a9076e
- Sync spec file with python2 obsoletion added downstream (awilliam)
a9076e
- Sync spec with downstream (vtrefny)
a9076e
a9076e
* Tue Apr 16 2019 Vojtech Trefny <vtrefny@redhat.com> - 2.21-3
a9076e
- Remove device-mapper-multipath dependency from fs and part plugins
a9076e
a9076e
* Thu Feb 28 2019 Adam Williamson <awilliam@redhat.com> - 2.21-2
a9076e
- Obsolete the python2 subpackage if we're not building it
a9076e
a9076e
* Thu Feb 21 2019 Vojtech Trefny <vtrefny@redhat.com> - 2.21-1
a9076e
- Fix checking swap status on lvm/md (vtrefny)
a9076e
- tests: Stop skipping some tests on Debian testing (vtrefny)
a9076e
- tests: Remove some old/irrelevant skips (vtrefny)
a9076e
- Use 512bit keys in LUKS by default (vratislav.podzimek)
a9076e
- Add 'autoconf-archive' to build requires (vtrefny)
a9076e
- vagrant: remove F27 and add F29 (vtrefny)
a9076e
- vagrant: install 'autoconf-archive' on Ubuntu (vtrefny)
a9076e
- Enable cryptsetup debug messages when compiled using --enable-debug (vtrefny)
a9076e
- lvm-dbus: Do not pass extra arguments enclosed in a tuple (vtrefny)
a9076e
- crypto: Do not try to use keyring on systems without keyring support (vtrefny)
a9076e
- Fix LUKS2 resize password test (vtrefny)
a9076e
- Use cryptsetup to check LUKS2 label (vtrefny)
a9076e
- Skip LUKS2+integrity test on systems without dm-integrity module (vtrefny)
a9076e
- Add custom error message for wrong passphrase for open (vtrefny)
a9076e
- Use major/minor macros from sys/sysmacros.h instead of linux/kdev_t.h (vtrefny)
a9076e
- crypto_test.py: Use blkid instead of lsblk to check luks label (vtrefny)
a9076e
- Skip VDO grow physical test (vtrefny)
a9076e
- Add libblkid-devel as a build dependency for the swap plugin (vtrefny)
a9076e
- Add error codes and Python exceptions for swapon fails (vtrefny)
a9076e
- Use libblkid to check swap status before swapon (vtrefny)
a9076e
- Add a new subpackage with the tool(s) (v.podzimek)
a9076e
- Document what the 'tools' directory contains (v.podzimek)
a9076e
- Make building tools optional (v.podzimek)
a9076e
- Add a tool for getting cached LVM statistics (v.podzimek)
a9076e
- Discard messages from libdevmapper in the LVM plugins (v.podzimek)
a9076e
a9076e
* Fri Feb 01 2019 Fedora Release Engineering <releng@fedoraproject.org> - 2.20-3
a9076e
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
a9076e
a9076e
* Mon Oct 08 2018 Vojtech Trefny <vtrefny@redhat.com> - 2.20-2
a9076e
- Use libblkid to check swap status before swapon (vtrefny)
a9076e
- Add error codes and Python exceptions for swapon fails (vtrefny)
a9076e
a9076e
* Wed Sep 26 2018 Vojtech Trefny <vtrefny@redhat.com> - 2.20-1
a9076e
- Use unsafe caching for storage for devel/testing VMs (v.podzimek)
a9076e
- Require newer version of cryptsetup for LUKS2 tests (vtrefny)
a9076e
- Skip nvdimm tests on systems without ndctl (vtrefny)
a9076e
- Add Ubuntu 18.04 VM configuration to the vagrant template (vtrefny)
a9076e
- Add some missing test dependencies to the vagrant template (vtrefny)
a9076e
- Fix how/where the bcache tests are skipped (v.podzimek)
a9076e
- Document what the 'misc' directory contains (v.podzimek)
a9076e
- Add a Vagrantfile template (v.podzimek)
a9076e
- Fix the error message when deleting partition fails (vpodzime)
a9076e
- Fix build of plugins by changing linking order (devurandom)
a9076e
- Fix how we check zram stats from /sys/block/zram0/stat (vtrefny)
a9076e
- lvm-dbus: Fix parsing extra arguments for LVM methods calls (vtrefny)
a9076e
- Skip MDTestAddRemove on Debian (vtrefny)
a9076e
- Skip NTFS mount test on Debian testing (vtrefny)
a9076e
- Skip bcache tests on Debian testing (vtrefny)
a9076e
- tests: Try harder to get distribution version (vtrefny)
a9076e
- Mark the function stubs as static (v.podzimek)
a9076e
- Build the dm plugin without dmraid support on newer RHEL (vtrefny)
a9076e
- Fix skipping zram tests on Fedora 27 (vtrefny)
a9076e
- kbd: Check for zram module availability in 'bd_kbd_is_tech_avail' (vtrefny)
a9076e
- Always build the VDO plugin (vtrefny)
a9076e
- Do not require 'dmraid' package if built without dmraid support (vtrefny)
a9076e
- Fix licence header in dbus.c (vtrefny)
a9076e
- Fix spacing in NEWS.rst (vtrefny)
a9076e
a9076e
* Fri Aug 10 2018 Vojtech Trefny <vtrefny@redhat.com> - 2.19-1
a9076e
- Use python interpreter explicitly when running boilerplate_generator.py (vtrefny)
a9076e
- vdo: Implement bd_vdo_get_stats() (tbzatek)
a9076e
- Add test for is_tech_available with multiple dependencies (vtrefny)
a9076e
- lvm-dbus.c: Check for 'lvmdbus' dependency in 'bd_lvm_is_tech_avail' (vtrefny)
a9076e
- lvm.c: Check for 'lvm' dependency in 'bd_lvm_is_tech_avail' (vtrefny)
a9076e
- Fix licence headers in sources (vtrefny)
a9076e
- Fix three memory leaks in lvm-dbus.c (vtrefny)
a9076e
- Ignore "bad-super-call" pylint warning in BlockDev.py (vtrefny)
a9076e
- Fix running pylint in tests (vtrefny)
a9076e
- Fix vdo configuration options definition in spec file (vtrefny)
a9076e
- Fix calling BlockDev.reinit in swap tests (vtrefny)
a9076e
- Fix how we check zram stats from /sys/block/zram0/mm_stat (vtrefny)
a9076e
- Skip VDO tests also when the 'kvdo' module is not available (vtrefny)
a9076e
- Add version to tests that should be skipped on CentOS/RHEL 7 (vtrefny)
a9076e
- Skip btrfs tests if btrfs module is not available (vtrefny)
a9076e
- Do not build KBD plugin with bcache support on RHEL (vtrefny)
a9076e
- Do not build btrfs plugin on newer RHEL (vtrefny)
a9076e
- fs: Properly close both ends of the pipe (tbzatek)
a9076e
- Make sure library_test works after fixing -Wstrict-prototypes (vtrefny)
a9076e
- Make sure library tests properly clean after themselves (vtrefny)
a9076e
- pkg-config: add -L${libdir} and -I${includedir} (max.kellermann)
a9076e
- plugins/kbd: make wait_for_file() static (max.kellermann)
a9076e
- plugins/lvm{,-dbus}: get_lv_type_from_flags() returns const string (max.kellermann)
a9076e
- plugins/dm: add explicit cast to work around -Wdiscarded-qualifiers (max.kellermann)
a9076e
- plugins/crypto: work around -Wdiscarded-qualifiers (max.kellermann)
a9076e
- plugins/check_deps: make all strings and `UtilDep` instances `const` (max.kellermann)
a9076e
- exec: make `msg` parameters const (max.kellermann)
a9076e
- fix -Wstrict-prototypes (max.kellermann)
a9076e
- module.c: Accept kernel modules if they are built-in (marco.guerri.dev)
a9076e
- BlockDev.py Convert dictionary keys to set before using them (vtrefny)
a9076e
- Skip 'test_cache_pool_create_remove' on CentOS 7 (vtrefny)
a9076e
- Re-order libbd_crypto_la_LIBADD to fix libtool issue (tom)
a9076e
- acinclude.m4: Use AS_EXIT to fail in LIBBLOCKDEV_FAILURES (vtrefny)
a9076e
- configure.ac: Fix missing parenthesis in blkid version check (vtrefny)
a9076e
- Allow specifying extra options for PBKDF when creating LUKS2 (vtrefny)
a9076e
- Reintroduce python2 support for Fedora 29 (vtrefny)
a9076e
- Use versioned command for Python 2 (vtrefny)
a9076e
- Fix few wrong names in doc strings (vtrefny)
a9076e
- Make sure all our free and copy functions work with NULL (vtrefny)
a9076e
- Use libblkid in bd_crypto_is_luks (vtrefny)
a9076e
- vdo: Properly destroy the yaml parser (tbzatek)
a9076e
- Add a simple test case for bd_crypto_tc_open (vtrefny)
a9076e
- Add Python override for bd_crypto_tc_open_full (vtrefny)
a9076e
- Show simple summary after configure (vtrefny)
a9076e
- Do not build VDO plugin on non-x86_64 architectures (vtrefny)
a9076e
- Sync spec with downstream (vtrefny)
a9076e
a9076e
* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 2.18-4
a9076e
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
a9076e
a9076e
* Mon Jul 09 2018 Vojtech Trefny <vtrefny@redhat.com> - 2.18-3
a9076e
- Reitroduce python2 support for Fedora 29
a9076e
a9076e
* Mon Jul 02 2018 Miro Hrončok <mhroncok@redhat.com> - 2.18-2
a9076e
- Rebuilt for Python 3.7
a9076e
a9076e
* Wed Jun 20 2018 Vojtech Trefny <vtrefny@redhat.com> - 2.18-1
a9076e
- Add VDO to features.rst (vtrefny)
a9076e
- Remove roadmap.rst (vtrefny)
a9076e
- vdo: Add tests for bd_vdo_grow_physical() (tbzatek)
a9076e
- Do not try to build VDO plugin on Fedora (vtrefny)
a9076e
- Introduce reporting function per thread (kailueke)
a9076e
- vdo: Implement bd_vdo_grow_physical() (tbzatek)
a9076e
- Correct arguments for ext4 repair with progress (kailueke)
a9076e
- Clarify that checking an RW-mounted XFS file system is impossible (v.podzimek)
a9076e
- vdo: Resolve real device file path (tbzatek)
a9076e
- Adjust to new NVDIMM namespace modes (vtrefny)
a9076e
- Use xfs_repair instead of xfs_db in bd_fs_xfs_check() (v.podzimek)
a9076e
- Allow compiling libblockdev without libdmraid (vtrefny)
a9076e
- Only require plugins we really need in LVM dbus tests (vtrefny)
a9076e
- Add tests for VDO plugin (vtrefny)
a9076e
- Add decimal units definition to utils/sizes.h (vtrefny)
a9076e
- Add basic VDO plugin functionality (vtrefny)
a9076e
- Add the VDO plugin (vtrefny)
a9076e
- Always check for error when (un)mounting (vtrefny)
a9076e
- Fix off-by-one error when counting TCRYPT keyfiles (segfault)
a9076e
- Add 'bd_dm_is_tech_avail' to header file (vtrefny)
a9076e
- Fix release number in NEWS.rst (vtrefny)
a9076e
- Update specs.rst and features.rst (vtrefny)
a9076e
a9076e
* Fri Jun 15 2018 Miro Hrončok <mhroncok@redhat.com> - 2.17-2
a9076e
- Rebuilt for Python 3.7
a9076e
a9076e
* Tue Apr 24 2018 Vojtech Trefny <vtrefny@redhat.com> - 2.17-1
a9076e
- Redirect cryptsetup log to libblockdev log (vtrefny)
a9076e
- Add a generic logging function for libblockdev (vtrefny)
a9076e
- Add functions to resize LUKS 2 (vtrefny)
a9076e
- Add function to get information about LUKS 2 integrity devices (vtrefny)
a9076e
- Add function to get information about a LUKS device (vtrefny)
a9076e
- Add a basic test for creating LUKS 2 format (vtrefny)
a9076e
- Use libblockdev function to create LUKS 2 in tests (vtrefny)
a9076e
- Add support for creating LUKS 2 format (vtrefny)
a9076e
- Skip bcache tests on Rawhide (vtrefny)
a9076e
- Allow building libblockdev without Python 2 support (vtrefny)
a9076e
- Allow compiling libblockdev crypto plugin without escrow support (vtrefny)
a9076e
- Require at least libndctl 58.4 (vtrefny)
a9076e
- New function for luks metadata size (japokorn)
a9076e
- Add functions to backup and restore LUKS header (vtrefny)
a9076e
- Add function for killing keyslot on a LUKS device (vtrefny)
a9076e
- Add functions to suspend and resume a LUKS device (vtrefny)
a9076e
- Use '=' instead of '==' to compare using 'test' (v.podzimek)
a9076e
- lvm-dbus: Check returned job object for error (vtrefny)
a9076e
- Get sector size for non-block NVDIMM namespaces too (vtrefny)
a9076e
- Fix memory leaks discovered by clang (vtrefny)
a9076e
- Add new functions to docs/libblockdev-sections.txt (segfault)
a9076e
- Make a link point to the relevant section (segfault)
a9076e
- Don't use VeraCrypt PIM if compiled against libcryptsetup < 2.0 (segfault)
a9076e
- Make keyfiles parameter to bd_crypto_tc_open_full zero terminated (segfault)
a9076e
- Add function bd_crypto_device_seems_encrypted (segfault)
a9076e
- Support VeraCrypt PIM (segfault)
a9076e
- Support TCRYPT system volumes (segfault)
a9076e
- Support TCRYPT hidden containers (segfault)
a9076e
- Support TCRYPT keyfiles (segfault)
a9076e
- Support unlocking VeraCrypt volumes (segfault)
a9076e
- Enforce ZERO_INIT gcc backwards compatibility (bjornpagen)
a9076e
- Add function for getting NVDIMM namespace name from devname or path (vtrefny)
a9076e
- Add --without-xyz to DISTCHECK_CONFIGURE_FLAGS for disabled plugins (vtrefny)
a9076e
- Add tests for the NVDIMM plugin (vtrefny)
a9076e
- Add the NVDIMM plugin (vtrefny)
a9076e
- Fix build with clang (bjornpagen)
a9076e
- s390: don't hardcode paths, search PATH (flokli)
a9076e
- Fix build against musl libc (bjornpagen)
a9076e
- Fix python2-gobject-base dependency on Fedora 26 and older (vtrefny)
a9076e
- Sync the spec file with downstream (vtrefny)
a9076e
a9076e
* Wed Apr 11 2018 Vojtech Trefny <vtrefny@redhat.com> - 2.16-3
a9076e
- Add the NVDIMM plugin (vtrefny)
a9076e
- Add tests for the NVDIMM plugin (vtrefny)
a9076e
- Add --without-xyz to DISTCHECK_CONFIGURE_FLAGS for disabled plugins (vtrefny)
a9076e
- Add function for getting NVDIMM namespace name from devname or path (vtrefny)
a9076e
a9076e
* Fri Feb 09 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 2.16-2
a9076e
- Escape macros in %%changelog
a9076e
a9076e
* Thu Feb 08 2018 Vojtech Trefny <vtrefny@redhat.com> - 2.16-1
a9076e
- Add tests for progress report (jtulak)
a9076e
- Add e2fsck progress (jtulak)
a9076e
- Add progress reporting infrastructure for Ext fsck (jtulak)
a9076e
- Add a function to test if prog. reporting was initialized (jtulak)
a9076e
- Add support for LUKS 2 opening and key management (vtrefny)
a9076e
- Fix few more links for project and documentation website (vtrefny)
a9076e
- Sync the spec file with downstream (vpodzime)
a9076e
- Check if 'journalctl' is available before trying to use it in tests (vtrefny)
a9076e
- Update 'Testing libblockdev' section in documentation (vtrefny)
a9076e
- Fix link to online documentation (vtrefny)
a9076e
- Fix how the new kernel module functions are added to docs (vpodzime)
a9076e
a9076e
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 2.15-4
a9076e
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
a9076e
a9076e
* Wed Feb 07 2018 Iryna Shcherbina <ishcherb@redhat.com> - 2.15-3
a9076e
- Update Python 2 dependency declarations to new packaging standards
a9076e
  (See https://fedoraproject.org/wiki/FinalizingFedoraSwitchtoPython3)
a9076e
a9076e
* Sat Feb 03 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 2.15-2
a9076e
- Switch to %%ldconfig_scriptlets
a9076e
a9076e
* Fri Dec 01 2017 Vratislav Podzimek <vpodzime@redhat.com> - 2.15-1
a9076e
- Do not use the 'btrfs' plugin in overrides tests (vpodzime)
a9076e
- Do not use the btrfs plugin in library tests (vpodzime)
a9076e
- Check for btrfs module availability in btrfs module (vtrefny)
a9076e
- Move kernel modules (un)loading and checking into utils (vtrefny)
a9076e
- Free locale struct in kbd plugin (vtrefny)
a9076e
- Add test for setting partition flags on GPT (vtrefny)
a9076e
- Use only sgdisk to set flags on GPT (vtrefny)
a9076e
- Move the fs.h file to its original place (vpodzime)
a9076e
- Add a HACKING.rst file (vpodzime)
a9076e
- Mark bcache tests as unstable (vpodzime)
a9076e
- Fix memory leaks in bd_fs_vfat_get_info() (vpodzime)
a9076e
- Revert the behaviour of bd_fs_check_deps() (vpodzime)
a9076e
- Split the bd_fs_is_tech_avail() implementation (vpodzime)
a9076e
- Split the FS plugin source into multiple files (vpodzime)
a9076e
- Fix bd_s390_dasd_format (vponcova)
a9076e
- Mark unstable tests as such (vpodzime)
a9076e
- bd_s390_dasd_is_ldl should be true only for LDL DADSs (vponcova)
a9076e
- Do not lie about tag creation (vpodzime)
a9076e
a9076e
* Wed Nov 08 2017 Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> - 2.14-2
a9076e
- Rebuild for cryptsetup-2.0.0
a9076e
a9076e
* Tue Oct 31 2017 Vratislav Podzimek <vpodzime@redhat.com> - 2.14-1
a9076e
- Support the legacy boot GPT flag (intrigeri)
a9076e
- Respect the version in the blockdev.pc file (vpodzime)
a9076e
- Add pkgconfig definitions for the utils library (vpodzime)
a9076e
- fs.c: Fix potential NULL pointer dereference (vtrefny)
a9076e
- dm.c: Fix uninitialized values in various dm plugin functions (vtrefny)
a9076e
- dm.c: Check return values of dm_task_set_name/run/get_info functions (vtrefny)
a9076e
- fs.c: Fix multiple "forward NULL" warnings in 'bd_fs_ntfs_get_info' (vtrefny)
a9076e
- lvm-dbus.c: Fix multiple "use after free" coverity warnings (vtrefny)
a9076e
- Fix duplicate 'const' in generated functions (vtrefny)
a9076e
- Add some test cases for NTFS (kailueke)
a9076e
- Add function wrappers for NTFS tools (kailueke)
a9076e
- exec.c: Fix error message in 'bd_utils_exec_and_report_progress' (vtrefny)
a9076e
- crypto.c: Fix waiting for enough entropy (vtrefny)
a9076e
- Ignore some coverity false positive errors (vtrefny)
a9076e
- exec.c: Ignore errors from 'g_io_channel_shutdown' (vtrefny)
a9076e
- part.c: Check if we've found a place to put new logical partitions (vtrefny)
a9076e
- kbd.c: Fix potential string overflow in 'bd_kbd_bcache_create' (vtrefny)
a9076e
- exec.c: Fix resource leaks in 'bd_utils_exec_and_report_progress' (vtrefny)
a9076e
- fs.c: Fix "forward null" in 'do_mount' and 'bd_fs_xfs_get_info' (vtrefny)
a9076e
- part.c: Fix possible NULL pointer dereference (vtrefny)
a9076e
- crypto.c: Use right key buffer in 'bd_crypto_luks_add_key' (vtrefny)
a9076e
- exec.c: Fix "use after free" in 'bd_utils_check_util_version' (vtrefny)
a9076e
- kbd.c: Fix double free in 'bd_kbd_zram_get_stats' (vtrefny)
a9076e
- part.c: Check if file discriptor is >= 0 before closing it (vtrefny)
a9076e
- mdraid.c: Fix resource leaks (vtrefny)
a9076e
- lvm.c: Fix "use after free" in 'bd_lvm_get_thpool_meta_size' (vtrefny)
a9076e
- fs.c: Fix for loop condition in 'bd_fs_get_fstype' (vtrefny)
a9076e
- fs.c: Check sscanf return value in 'bd_fs_vfat_get_info' (vtrefny)
a9076e
- fs.c: Fix resource leaks in 'bd_fs_get_fstype' (vtrefny)
a9076e
- blockdev.c.in: Fix unused variables (vtrefny)
a9076e
- Use libbytesize to parse bcache block size (vtrefny)
a9076e
- Use system values in KbdTestBcacheStatusTest (vtrefny)
a9076e
- Fix BSSize memory leaks in btrfs and mdraid plugins (vtrefny)
a9076e
- Skip btrfs subvolume tests with btrfs-progs 4.13.2 (vtrefny)
a9076e
- Added function to get DM device subsystem (japokorn)
a9076e
- Sync spec with downstream (vpodzime)
a9076e
a9076e
* Fri Sep 29 2017 Vratislav Podzimek <vpodzime@redhat.com> - 2.13-1
a9076e
- Fix the rpmlog and shortlog targets (vpodzime)
a9076e
- Add a function for enabling/disabling plugins' init checks (vpodzime)
a9076e
- Assign functions to tech-mode categories (vpodzime)
a9076e
- Add missing items to particular sections in the documentation (vpodzime)
a9076e
- Add a basic test for the runtime dependency checking (vpodzime)
a9076e
- Simplify what WITH_BD_BCACHE changes in the KBD plugin (vpodzime)
a9076e
- Add functions for querying available technologies (vpodzime)
a9076e
- Dynamically check for the required utilities (vpodzime)
a9076e
- Use shorter prefix for tempfiles (vtrefny)
a9076e
- Try harder when waiting for lio device to show up (vtrefny)
a9076e
- Better handle old and new zram sysfs api in tests (vtrefny)
a9076e
- Skip btrfs tests on CentOS 7 aarch64 (vtrefny)
a9076e
- Add new function for setting swap label (vtrefny)
a9076e
- Use only one git tag for new releases (vtrefny)
a9076e
- Fix source URL in spec file (vtrefny)
a9076e
- Add NEWS.rst file (vtrefny)
a9076e
- Do not include s390utils/vtoc.h in s390 plugin (vtrefny)
a9076e
- Use "AC_CANONICAL_BUILD" to check architecture instead of "uname" (vtrefny)
a9076e
- Bypass error proxy in s390 test (vtrefny)
a9076e
- Fix zFCP LUN max length (vtrefny)
a9076e
- Do not run g_clear_error after setting it (vtrefny)
a9076e
- Allow compiling libblockdev without s390 plugin (vtrefny)
a9076e
- Add a function for getting plugin name (vpodzime)
a9076e
a9076e
* Thu Sep 28 2017 Troy Dawson <tdawson@redhat.com> - 2.12-3
a9076e
- Cleanup spec file conditionals correctly
a9076e
a9076e
* Wed Sep 27 2017 Troy Dawson <tdawson@redhat.com> - 2.12-2
a9076e
- Cleanup spec file conditionals
a9076e
a9076e
* Wed Aug 30 2017 Vratislav Podzimek <vpodzime@redhat.com> - 2.12-1
a9076e
- Own directories /etc/libblockdev and /etc/libblockdev/conf.d (vtrefny)
a9076e
- Wait for resized partition (kailueke)
a9076e
- Make sure the device is opened for libparted (vpodzime)
a9076e
- Fix label check in swap_test (vtrefny)
a9076e
- Use "run_tests" script for running tests from Makefile (vtrefny)
a9076e
- Add a script for running tests (vtrefny)
a9076e
- Tests: Move library initialization to setUpClass method (vtrefny)
a9076e
- Stop skipping FAT resize tests on rawhide (vtrefny)
a9076e
- Close filesystem before closing the partition during FAT resize (vtrefny)
a9076e
- Use mountpoint for "xfs_info" calls (vtrefny)
a9076e
- Use libmount cache when parsing /proc/mounts (vtrefny)
a9076e
- Add some space for the CI status (vpodzime)
a9076e
- Confirm the force when creating PVs in FS tests (vpodzime)
a9076e
- Skip vgremove tests on 32bit Debian (vtrefny)
a9076e
- Fix names of backing files in tests (vtrefny)
a9076e
-  Fix checking for available locales (vtrefny)
a9076e
- Skip dependency checking in mpath tests on Debian (vtrefny)
a9076e
- Skip zRAM tests on Debian (vtrefny)
a9076e
- Skip the test for device escrow on Debian too (vtrefny)
a9076e
- Skip free region tests on Debian too (vtrefny)
a9076e
- Fix redirecting command output to /dev/null in tests (vtrefny)
a9076e
- Try harder to unmount devices in test cleanup (vtrefny)
a9076e
- Require only plugins that are needed for given test (vtrefny)
a9076e
- Try to get distribution info from "PrettyName" if "CPEName" isn't available (vtrefny)
a9076e
- Use -ff when creating PVs in FS tests (vpodzime)
a9076e
- Sync spec with downstream (vpodzime)
a9076e
a9076e
* Mon Jul 31 2017 Vratislav Podzimek <vpodzime@redhat.com> - 2.11-1
a9076e
- Make the KbdZRAMDevicesTestCase inherit from KbdZRAMTestCase (vpodzime)
a9076e
- Allow non-source directory builds (kailueke)
a9076e
- Add a way to disable runtime dependency checks (vpodzime)
a9076e
- Link to GObject even if no plugin is activated (kailueke)
a9076e
- Skip zram tests on Rawhide (vpodzime)
a9076e
- Keep most utilities available for tests (vpodzime)
a9076e
- Use new libmount function to get (un)mount error message (vtrefny)
a9076e
- Update the documentation URL (vpodzime)
a9076e
a9076e
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2.10-2
a9076e
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
a9076e
a9076e
* Wed Jul 05 2017 Vratislav Podzimek <vpodzime@redhat.com> - 2.10-1
a9076e
- Only enable partition size tolerance with alignment (vpodzime)
a9076e
- Limit the requested partition size to maximum possible (vpodzime)
a9076e
- Do not verify vfat FS' size after generic resize (vpodzime)
a9076e
- Specify tolerance for partition size (kailueke)
a9076e
- Only use the exact constraint if not using any other (vpodzime)
a9076e
- Check resulting FS size in tests for generic FS resize (vpodzime)
a9076e
- Query setting FS label support and generic relabeling (kailueke)
a9076e
- Do not strictly require all FS utilities (vpodzime)
a9076e
- Compile everything with the C99 standard (vpodzime)
a9076e
- Add partition resize function (kailueke)
a9076e
- Generic Check and Repair Functions (kailueke)
a9076e
- Query functions for FS resize and repair support (kailueke)
a9076e
- Update the project/source URL in the spec file (vpodzime)
a9076e
- Add functions for opening/closing TrueCrypt/VeraCrypt volumes (vpodzime)
a9076e
- Adapt to a change in behaviour in new libmount (vpodzime)
a9076e
- Try RO mount also if we get EACCES (vpodzime)
a9076e
- Size in bytes for xfs_resize_device (kailueke)
a9076e
- src/plugins/Makefile.am: Remove hard coded include path in /usr prefix (tristan.vanberkom)
a9076e
- Fixed include for libvolume_key.h (tristan.vanberkom)
a9076e
- Ignore parted warnings if possible (squimrel)
a9076e
- bcache tests: Remove FEELINGLUCKY checks (tasleson)
a9076e
- kbd.c: Code review corrections (tasleson)
a9076e
- kbd.c: Make bd_kbd_bcache_create work without abort (tasleson)
a9076e
a9076e
* Tue Jun 13 2017 Vratislav Podzimek <vpodzime@redhat.com> - 2.9-1
a9076e
- Fix hardcoded reference to gcc (timo.gurr)
a9076e
- Catch and ignore partial failures in LVM tests' cleanups (vpodzime)
a9076e
- Fix hardcoded reference to pkg-config (timo.gurr)
a9076e
- Make GObject introspection optional (vpodzime)
a9076e
- Do not link libraries required by plugins to the GI files (vpodzime)
a9076e
- Make sure the whole build status image is shown (vpodzime)
a9076e
- Show CI status in README (at the GH repo's front page) (vpodzime)
a9076e
- Always require the libudev pkg (tgurr)
a9076e
- Make sure we give kernel time to fully setup zram device(s) (vpodzime)
a9076e
- fs_test.py: Close FDs when calling utilities (tasleson)
a9076e
- crypto.c: Correct segmentation fault (tasleson)
a9076e
a9076e
* Tue Jun 06 2017 Vratislav Podzimek <vpodzime@redhat.com> - 2.8-1
a9076e
- Temporarily skip vfat generic resize test on rawhide (vtrefny)
a9076e
- Use "safeprobe" in "bd_fs_wipe" (vtrefny)
a9076e
- Add a generic filesystem resize function (vtrefny)
a9076e
- Add a function to get mountpoint for a device (vtrefny)
a9076e
- Add a function to get filesystem type for a device (vtrefny)
a9076e
- Only include the LVM DBus config when shipping LVM DBus (vpodzime)
a9076e
- Skip the LVM DBus vgreduce tests on Rawhide (vpodzime)
a9076e
- Do not build the lvm-dbus plugin on RHEL/CentOS (vpodzime)
a9076e
- Give zRAM more time to settle before trying to remove a device (vpodzime)
a9076e
- Put zram tests adding/removing devices into a separate class (vpodzime)
a9076e
- Skip LVM cache and RAID tests on Rawhide (vpodzime)
a9076e
- Fix the skip_on decorator factory for tests (vpodzime)
a9076e
- Use 'blkid -p' instead of lsblk to get device's FS type (vpodzime)
a9076e
- Improve the lvm_set_global_config test (vpodzime)
a9076e
- Pass '-y' to pvresize (vpodzime)
a9076e
- Create a copy of os.environ for a child process (vpodzime)
a9076e
- Revert "Use the "C.UTF-8" locale instead of just "C"" (vpodzime)
a9076e
- Fix how we create vfat FS in tests (vpodzime)
a9076e
- Skip the test if requiring unavailable locales (vpodzime)
a9076e
- Use the "C.UTF-8" locale instead of just "C" (vpodzime)
a9076e
- Add functions for working with ext2 and ext3 filesystems (vtrefny)
a9076e
- Link to gobject when lvm or btrfs is enabled (andreas)
a9076e
- Link to libm where needed (andreas)
a9076e
- Add a function for cleaning a device (vtrefny)
a9076e
- Add few code exaples to documentation (vtrefny)
a9076e
- Use a special exception for no fs signature when doing wipe (vpodzime)
a9076e
- One more incompatible os.symlink() call (vpodzime)
a9076e
- Do not use pass-by-name in the os.symlink() call (vpodzime)
a9076e
- Ignore previous errors when falling back to using ioctl() (vpodzime)
a9076e
- Use ioctl() call to teardown loop devices (vpodzime)
a9076e
- Resolve the device to remove for mdadm (vpodzime)
a9076e
- Add a function for getting device symlinks (vpodzime)
a9076e
- Use the new resolve_device() function where appropriate (vpodzime)
a9076e
- Add the resolve_device() function to the utils library (vpodzime)
a9076e
- First try to read the 'autoclear' flag from /sys/ (vpodzime)
a9076e
a9076e
* Wed Apr 26 2017 Vratislav Podzimek <vpodzime@redhat.com> - 2.7-1
a9076e
- Skip btrfs min size tests on Fedora 25 (vtrefny)
a9076e
- Make sure the loop device doesn't disappear during tests (vpodzime)
a9076e
- Close the loop device when autoclear is (un)set (vpodzime)
a9076e
- Do not enforce Python 3 for running tests in CI (vpodzime)
a9076e
- Revert "Use different BTRFS_MIN_MEMBER_SIZE on aarch64" (vtrefny)
a9076e
- Use both 'old' and 'new' sysfs files to read zRAM stats (vtrefny)
a9076e
- Check if libparted-fs-resize pkgconfig is available (vpodzime)
a9076e
- Do not try to get name for inactive partitions (vtrefny)
a9076e
- Skip tests for getting free regions on CentOS/RHEL (vpodzime)
a9076e
- Free the container holding the specs of free regions (vpodzime)
a9076e
- Open loop devices as O_RDONLY when getting flags (vpodzime)
a9076e
- Resolve maximum partition size when we know its start (vpodzime)
a9076e
- Use --id instead of --part-type when setting partition id (vpodzime)
a9076e
- Fix mdadm command for removing failed device from an array (vtrefny)
a9076e
- Skip bcache tests on CentOS/RHEL 7 (vpodzime)
a9076e
- Use six.assertRaisesRegex in the FS tests (vpodzime)
a9076e
- Use mkdtemp() instead of TemporaryDirectory() (vpodzime)
a9076e
- Fix installation without specifying --exec-prefix (vpodzime)
a9076e
- Add options to force mkfs.ext4/vfat to create a FS on the whole device (vpodzime)
a9076e
- Skip the test for device escrow on CentOS/RHEL (vpodzime)
a9076e
- Define DEVNULL on our own if not in subprocess (vpodzime)
a9076e
- Remove the patches from the spec file (vpodzime)
a9076e
- Sync the spec file with downstream (vpodzime)
a9076e
- Stop skipping zRAM stats tests (vtrefny)
a9076e
- Add more tests for zRAM stats (vtrefny)
a9076e
- Fix reading zRAM properties from sysfs (vtrefny)
a9076e
a9076e
* Wed Apr 12 2017 Vratislav Podzimek <vpodzime@redhat.com> - 2.6-3
a9076e
- Do not try to parse 'raid_spec' for 'bd_md_activate' (vtrefny)
a9076e
  Resolves: rhbz#1439111
a9076e
a9076e
* Tue Apr 11 2017 Vratislav Podzimek <vpodzime@redhat.com> - 2.6-2
a9076e
- Make sure the returned thpool MD size is valid (vpodzime)
a9076e
a9076e
* Wed Mar 15 2017 Vratislav Podzimek <vpodzime@redhat.com> - 2.6-1
a9076e
- Move the  part_err library before part and fs (vtrefny)
a9076e
- Fix BuildRequires for crypto and dm packages (vtrefny)
a9076e
- Fix mounting read-only devices (vtrefny)
a9076e
- Fix the bd_s390_dasd_is_ldl function. (vponcova)
a9076e
- Add the bd_s390_dasd_is_fba function to check if DASD is FBA (vponcova)
a9076e
- Disable MD RAID tests on 32bit systems (vpodzime)
a9076e
- Fix error message when mounting with a wrong fs type (vtrefny)
a9076e
- Only create RPMs for requested/configured  plugins (vpodzime)
a9076e
- Only check dependencies of plugins to be built (vpodzime)
a9076e
- Only build and distribute plugins if configured so (vpodzime)
a9076e
- Fix format-security and unused-result compiler warnings (vtrefny)
a9076e
- Add an AC macro for modular builds (vpodzime)
a9076e
- Add functions for mounting and unmounting filesystems (vtrefny)
a9076e
a9076e
* Mon Mar 06 2017 Vratislav Podzimek <vpodzime@redhat.com> - 2.5-1
a9076e
- Do not try to get GVariant after not adding anything to its builder (vpodzime)
a9076e
- Replace NULL with "" when building ExtraArg (vpodzime)
a9076e
- Replace NULL with "" when adding it as a 's' GVariant (vpodzime)
a9076e
- Make sure we don't try to add NULL as GVariant to DBus params (vpodzime)
a9076e
- Add function for getting recommended thpool metadata size (vpodzime)
a9076e
- Make udev settle after we create a LIO device (vpodzime)
a9076e
- Always use '--yes' for lvremove (vpodzime)
a9076e
a9076e
* Tue Feb 21 2017 Vratislav Podzimek <vpodzime@redhat.com> - 2.4-1
a9076e
- Update specs.rst to use present-tense and current API (agrover)
a9076e
- Add functions using BLOBs as LUKS passphrases (vpodzime)
a9076e
- Make sure the _error_quark() functions are in the library (vtrefny)
a9076e
- Return a special error when trying to wipe empty device (vtrefny)
a9076e
- Adapt tests to use LIO devices instead of loop devices (vpodzime)
a9076e
- Add functions for creating and deleting LIO devices (vpodzime)
a9076e
- MDRAID: Allow path as input for functions that work with sysfs (vtrefny)
a9076e
a9076e
* Wed Feb 15 2017 Vratislav Podzimek <vtrefny@redhat.com> - 2.3-3
a9076e
- Rebuild with changelog fixed up
a9076e
a9076e
* Tue Feb 14 2017 Vratislav Podzimek <vpodzime@redhat.com> - 2.3-1
a9076e
- Allow specifying raid 'name' in multiple way when calling md functions (vtrefny)
a9076e
- Allow using both path and raid name in bd_md_set_bitmap_location (vtrefny)
a9076e
- Fix potential memory issues in s390 sanitizate functions (vpodzime)
a9076e
- Try multiple times when probing device for wiping (vpodzime)
a9076e
- Check for libvolume_key.h and dmraid.h in configure.ac (vpodzime)
a9076e
- Define our own macro for testing required header files (vpodzime)
a9076e
- Include blockdev/utils.h in mdraid.h (vtrefny)
a9076e
- Fix misspelling (agrover)
a9076e
- Skip the bcache tests even on x86_64 (vpodzime)
a9076e
- Take a break between bcache creation tests (vpodzime)
a9076e
- Make sure ./configure fails if there are some soft failures (vpodzime)
a9076e
- Improve the error message on missing GI support (vpodzime)
a9076e
- Only require bcache-tools if supporting bcache (vpodzime)
a9076e
- Skip bcache tests on non-x86_64 architectures (vpodzime)
a9076e
- Try harder to register a new bcache device (vpodzime)
a9076e
- Reimplement swapon/swapoff functions by using syscalls (vpodzime)
a9076e
- Make sure bcache functions are correctly provided or not (vpodzime)
a9076e
- Changelog fixup (vpodzime)
a9076e
a9076e
* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2.2-3
a9076e
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
a9076e
a9076e
* Wed Jan 11 2017 Vratislav Podzimek <vpodzime@redhat.com> - 2.2-2
a9076e
- Rebuild with changelog fixed up
a9076e
a9076e
* Wed Jan 11 2017 Vratislav Podzimek <vpodzime@redhat.com> - 2.2-1
a9076e
- Use the .in file as source when bumping version (vpodzime)
a9076e
- Run pylint based on the python version and make it optional (vpodzime)
a9076e
- Disable python3 and bcache on RHEL (vpodzime)
a9076e
- Make bcache support optional (vpodzime)
a9076e
- Teach boileplate_generator.py to skip things based on patterns (vpodzime)
a9076e
- Require lower versions of some utilities (vpodzime)
a9076e
- Do not require python3 for the boilerplate generation script (vpodzime)
a9076e
- Use a proper initialization value for 'GPollFD fds[2]' (vpodzime)
a9076e
- Deal with older parted and libblkid (vpodzime)
a9076e
- Make python3 and gtk-doc optional (vpodzime)
a9076e
- Bump the version of the utils library (vpodzime)
a9076e
- Fix docstring for 'bd_md_node_from_name' (vtrefny)
a9076e
- Add tests for added mdraid methods (vtrefny)
a9076e
- Skip 'MDTestNominateDenominateActive' unless feeling lucky (vtrefny)
a9076e
- MDRaid tests: change 'wait_for_resync' to wait for given action (vtrefny)
a9076e
- Add functionality need by storaged to mdraid plugin (vtrefny)
a9076e
- Move 'echo_str_to_file' method to utils (vtrefny)
a9076e
- Add a function to setup a loop device from a file descriptor (vpodzime)
a9076e
- Add functions to get/set the autoclear flag on a loop device (vpodzime)
a9076e
- Fix checking /proc/mdstat for resync action (vtrefny)
a9076e
- Adapt the test config files to version 2.x (vpodzime)
a9076e
a9076e
* Mon Dec 12 2016 Charalampos Stratakis <cstratak@redhat.com> - 2.1-3
a9076e
- Rebuild for Python 3.6
a9076e
a9076e
* Tue Nov 15 2016 Vratislav Podzimek <vpodzime@redhat.com> - 2.1-2
a9076e
- Rebuild for a chain-build with storaged (vpodzime)
a9076e
a9076e
* Thu Nov 10 2016 Vratislav Podzimek <vpodzime@redhat.com> - 2.1-1
a9076e
- Do not require an exclusive lock on the device to commit part stuff (vpodzime)
a9076e
- Prevent failure if there are no btrfs subvolumes (vpodzime)
a9076e
- Fix the test for getting version of a failing utility (vpodzime)
a9076e
- Also run the utils tests (vpodzime)
a9076e
- Bump the version of the pkgconfig module (vpodzime)
a9076e
- Include utils.h in plugins that need it (vpodzime)
a9076e
- Fix dependency check in fs plugin (vtrefny)
a9076e
- Add support for setting part id (part type) on msdos part tables (vtrefny)
a9076e
- Trim the extra info for MD RAID's name (vpodzime)
a9076e
- Add xfsprogs and dosfstools as dependencies of the fs plugin (vpodzime)
a9076e
- Fix md_name_from_node to work with the "/dev/" prefix (vpodzime)
a9076e
- New major upstream release
a9076e
a9076e
* Wed Nov  9 2016 Vratislav Podzimek <vpodzime@redhat.com> - 1.9-8
a9076e
- Revert "Prevent issues between libparted and udev" (vpodzime)
a9076e
- Revert "Open the device file as RDWR when committing parts" (vpodzime)
a9076e
a9076e
* Thu Oct 27 2016 Vratislav Podzimek <vpodzime@redhat.com> - 1.9-7
a9076e
- Open the device file as RDWR when committing parts (vpodzime)
a9076e
- Handle mdadm --examine output during migration (adamw)
a9076e
  Resolves: rhbz#1381996
a9076e
a9076e
* Mon Oct 24 2016 Vratislav Podzimek <vpodzime@redhat.com> - 1.9-6
a9076e
- Prevent issues between libparted and udev (vpodzime)
a9076e
a9076e
* Mon Oct 10 2016 Vratislav Podzimek <vpodzime@redhat.com> - 1.9-5
a9076e
- Make sure all object paths are passed and extracted as such (vpodzime)
a9076e
  Resolves: rhbz#1374973
a9076e
a9076e
* Tue Oct  4 2016 Vratislav Podzimek <vpodzime@redhat.com> - 1.9-4
a9076e
- Do not report volume name for FW RAID container device (vpodzime)
a9076e
  Related: rhbz#1379865
a9076e
- Search for just "UUID" in mdadm --examine output (vpodzime)
a9076e
  Related: rhbz#1379865
a9076e
- Use 'mdadm --examine --export' to get MD RAID level (vpodzime)
a9076e
  Related: rhbz#1379865
a9076e
a9076e
* Mon Oct  3 2016 Vratislav Podzimek <vpodzime@redhat.com> - 1.9-3
a9076e
- Try to search for "RAID Level" in mdadm's output (vpodzime)
a9076e
  Resolves: rhbz#1379865
a9076e
- Fix the number passed to LVM DBus as a job-creation timeout (vpodzime)
a9076e
  Resolves: rhbz#1378970
a9076e
a9076e
* Mon Aug 29 2016 Vratislav Podzimek <vpodzime@redhat.com> - 1.9-2
a9076e
- Explicitly cast number constants for GVariants (vpodzime)
a9076e
a9076e
* Wed Jul 27 2016 Vratislav Podzimek <vpodzime@redhat.com> - 1.9-1
a9076e
- Add functions for creating thin/cache pools from existing LVs (vpodzime)
a9076e
- Add the new mpath_get_members() function to the docs (vpodzime)
a9076e
a9076e
* Tue Jul 19 2016 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.8-2
a9076e
- https://fedoraproject.org/wiki/Changes/Automatic_Provides_for_Python_RPM_Packages
a9076e
a9076e
* Wed Jun 29 2016 Vratislav Podzimek <vpodzime@redhat.com> - 1.8-1
a9076e
- Add a function to get all mpath member devices (vpodzime)
a9076e
- Fix backport issues in the zfcp-related functionality (#1348442) (vpodzime)
a9076e
- Revert "Fix a few const params in the s390 plugin." (vpodzime)
a9076e
- Fix creation of the version-only tags (vpodzime)
a9076e
a9076e
* Wed Jun 15 2016 Vratislav Podzimek <vpodzime@redhat.com> - 1.7-1
a9076e
- Include the LV roles in the LVdata (vpodzime)
a9076e
- Add a few missing items to the documentation (vpodzime)
a9076e
- Document fields of the structures (vpodzime)
a9076e
- Report (meta)data LV name properly for cache pools in lvm-dbus (vpodzime)
a9076e
- Add information about related LVs to LVMLVdata (vpodzime)
a9076e
- Remove unused code for getting supported functions (vpodzime)
a9076e
- Add zFCP functionality to s390 plugin (sbueno+anaconda)
a9076e
- Fix a few const params in the s390 plugin. (sbueno+anaconda)
a9076e
a9076e
* Wed Jun 01 2016 Vratislav Podzimek <vpodzime@redhat.com> - 1.6-1
a9076e
- Ignore merge commits when creating changelog (vpodzime)
a9076e
- Only take the number of the first %%changelog line found (vpodzime)
a9076e
- Add some more detailed description to the part plugin (vpodzime)
a9076e
- Fix a few extra issues with the const types (vpodzime)
a9076e
- Add function for getting best free region (vpodzime)
a9076e
- Add function for getting free regions (vpodzime)
a9076e
- Fix the error message when setting part flag fails (vpodzime)
a9076e
- Add function for setting disk flags (vpodzime)
a9076e
- Add function for getting information about disk(s) (vpodzime)
a9076e
- Do not set nonsense partition paths (vpodzime)
a9076e
- Add function for getting partition by position (vpodzime)
a9076e
- Indicate if there was error from parted or not in set_parted_error() (vpodzime)
a9076e
- Minor fixes for the bd_part_get_part_spec() function (vpodzime)
a9076e
- Add support for extra GPT flags (vpodzime)
a9076e
- Add functionality for partition types (GUIDs) (vpodzime)
a9076e
- Add functionality for partition names (vpodzime)
a9076e
- Do not destroy disk objects we didn't get (vpodzime)
a9076e
- Add a function for setting multiple partition flags at once (vpodzime)
a9076e
- Remove the unused definition USE_PYTHON3 from configure.ac (vpodzime)
a9076e
- Use different BTRFS_MIN_MEMBER_SIZE on aarch64 (vpodzime)
a9076e
- Better release memory from parted objects on failures (vpodzime)
a9076e
- Rework how we do optimal alignment (vpodzime)
a9076e
- Do not try to destroy object we didn't get (vpodzime)
a9076e
- Don't pass sizes in bytes to LVM (#1317373) (vpodzime)
a9076e
- Add the libbytesize-devel build requires (vpodzime)
a9076e
- Search for the LVM DBus service in both active and activatable names (vpodzime)
a9076e
- Adapt to another stupid change in btrfs-progs (vpodzime)
a9076e
- Add the XFS-related functions to the documentation (vpodzime)
a9076e
- Add tests for the XFS-related functions (vpodzime)
a9076e
- Add support for the XFS file system to the FS plugin (vpodzime)
a9076e
- Add chunk_size to BDMDExamineData (vtrefny)
a9076e
- Add the subpackage for the FS plugin (vpodzime)
a9076e
- Add the FS plugin to the docs (vpodzime)
a9076e
- Add tests for the ext4 functionality in the fs plugin (vpodzime)
a9076e
- Add the FS plugin and the ext4 support (vpodzime)
a9076e
- Add a function for running utility reporting error and exit code (vpodzime)
a9076e
- Add the subpackage for the part plugin (vpodzime)
a9076e
- Add a missing BuildRequires for parted-devel (vpodzime)
a9076e
- Tag as both libblockdev-$version and just $version (vpodzime)
a9076e
- Add the 'part' plugin to documentation (vpodzime)
a9076e
- Add tests for the newly added part plugin (vpodzime)
a9076e
- Add the part plugin with storaged-required functionality (vpodzime)
a9076e
a9076e
* Mon Mar 21 2016 Vratislav Podzimek <vpodzime@redhat.com> - 1.5-1
a9076e
- Merge pull request #72 from vpodzime/master-faster_tests (vpodzime)
a9076e
- Ignore all .bak files (vpodzime)
a9076e
- Use python3-pylint and skip Python 2 tests (vpodzime)
a9076e
- Try a bit harder when deactivating MD arrays in tests (vpodzime)
a9076e
- Recompile only the LVM plugin in tests (vpodzime)
a9076e
- Merge pull request #65 from vpodzime/master-loc_indep_error (vpodzime)
a9076e
- Merge pull request #70 from vojtechtrefny/master-chunk_size (vpodzime)
a9076e
- Add bd_md_create_with_chunk_size() function (vtrefny)
a9076e
- Merge pull request #68 from vpodzime/master-no_intro_data (vpodzime)
a9076e
- Merge pull request #71 from vpodzime/master-ipython3 (vpodzime)
a9076e
- Run coverage with the right config directories (vpodzime)
a9076e
- Merge pull request #67 from phatina/master (vpodzime)
a9076e
- Merge pull request #69 from vpodzime/master-lvm_dbus_autostart (vpodzime)
a9076e
- Use ipython3 for debugging and testing sessions (vpodzime)
a9076e
- Don't expect to always get introspection data from DBus (vpodzime)
a9076e
- Make invocation of tests configurable (phatina)
a9076e
- Make error messages locale agnostic (vpodzime)
a9076e
a9076e
* Tue Mar 15 2016 Vratislav Podzimek <vpodzime@redhat.com> - 1.4-5
a9076e
- Search for the LVM DBus service in activatable names (vpodzime)
a9076e
- Better check for the LVM DBus API (vpodzime)
a9076e
a9076e
* Wed Mar  9 2016 Vratislav Podzimek <vpodzime@redhat.com> - 1.4-4
a9076e
- Do not try to get object path of NULL in vgreduce (vpodzime)
a9076e
a9076e
* Tue Mar  1 2016 Peter Robinson <pbrobinson@fedoraproject.org> 1.4-3
a9076e
- Depend on python3-gobject-base not python3-gobject so as to not pull in X components
a9076e
a9076e
* Thu Feb 25 2016 Vratislav Podzimek <vpodzime@redhat.com> - 1.4-2
a9076e
- Add/fix the requirement for the LVM DBus daemon
a9076e
a9076e
* Thu Feb 25 2016 Vratislav Podzimek <vpodzime@redhat.com> - 1.4-1
a9076e
- Merge pull request #62 from vpodzime/master-clean_up (vpodzime)
a9076e
- Use addCleanup() instead of tearDown() in tests (vpodzime)
a9076e
- Merge pull request #58 from vpodzime/master-lvm_dbus_pr (vpodzime)
a9076e
- Add the VG renaming functionality (vpodzime)
a9076e
- Packaging of the lvm-dbus plugin (vpodzime)
a9076e
- The LVM DBus plugin (vpodzime)
a9076e
- Add more generic functions for logging (vpodzime)
a9076e
- Use MAX(a, b) instead of CLAMP(b, a, b) (vpodzime)
a9076e
- Merge pull request #59 from vpodzime/master-vgrename (vpodzime)
a9076e
- Add a function for renaming VGs (vpodzime)
a9076e
- Merge pull request #57 from clumens/master (vpodzime)
a9076e
- Fix error reporting when running "make test". (clumens)
a9076e
- Merge pull request #54 from vojtechtrefny/master-pvsize (vpodzime)
a9076e
- Do not try to create a PV with 4KiB metadata space (vpodzime)
a9076e
- Add pv_info to BDLVMPVdata (vtrefny)
a9076e
- btrfs now requires at least 128MiB device(s) (vpodzime)
a9076e
- Merge pull request #52 from vpodzime/master (vpodzime)
a9076e
- Round size in thpoolcreate() to KiB (vpodzime)
a9076e
- Sync the %%changelog in spec with downstream (vpodzime)
a9076e
a9076e
* Wed Nov 25 2015 Vratislav Podzimek <vpodzime@redhat.com> - 1.3-4
a9076e
- Create the cache pool before the to-be-cached LV (vpodzime)
a9076e
a9076e
* Thu Nov 05 2015 Robert Kuska <rkuska@redhat.com> - 1.3-3
a9076e
- Rebuilt for Python3.5 rebuild
a9076e
a9076e
* Wed Nov 04 2015 Vratislav Podzimek <vpodzime@redhat.com> - 1.3-2
a9076e
- Fix the annotation of bd_try_init in blockdev.c (vpodzime)
a9076e
a9076e
* Mon Oct 26 2015 Vratislav Podzimek <vpodzime@redhat.com> - 1.3-1
a9076e
- Add missing python GI requires (vpodzime)
a9076e
- Merge pull request #49 from dashea/libblockdev-python (vpodzime)
a9076e
- Merge pull request #50 from vpodzime/master-fix_striped_lv (vpodzime)
a9076e
- Merge pull request #46 from vpodzime/master-bcache_destroy (vpodzime)
a9076e
- Merge pull request #39 from vpodzime/master-lvm_physical_space (vpodzime)
a9076e
- Add a missing ldconfig that rpmlint found. (dshea)
a9076e
- Move python files to separate packages (#1256758) (dshea)
a9076e
- Fix lvcreate calls for striped LVs (vpodzime)
a9076e
- Merge pull request #48 from vojtechtrefny/master_pvfree (vpodzime)
a9076e
- Add pv_free to BDLVMPVdata (vtrefny)
a9076e
- Merge pull request #47 from atodorov/add_coverage_report (vpodzime)
a9076e
- Produce coverage report in CI (atodorov)
a9076e
- Check bcache device's state before trying to detach the cache in destroy() (vpodzime)
a9076e
- Fix URLs in the spec (vpodzime)
a9076e
- Fix the int-float less-than comparison (vpodzime)
a9076e
- Fix the calculation of physical space taken by an LV (vpodzime)
a9076e
a9076e
* Wed Sep 23 2015 Vratislav Podzimek <vpodzime@redhat.com> - 1.2-1
a9076e
- Merge pull request #40 from vpodzime/master-config_support (vpodzime)
a9076e
- Add tests for configuration support (vpodzime)
a9076e
- Add a function for getting the loaded soname for a plugin (vpodzime)
a9076e
- Add the default configuration (vpodzime)
a9076e
- Load and respect configuration files when loading plugins (vpodzime)
a9076e
- Add functions for finding and processing configuration files (vpodzime)
a9076e
- Merge pull request #38 from vpodzime/master-md_superblock_size (vpodzime)
a9076e
- Better document how MD RAID superblock size should be calculated (vpodzime)
a9076e
- Merge pull request #36 from phatina/master (vpodzime)
a9076e
- BTRFS: allow an arbitrary label to be set for a btrfs volume (phatina)
a9076e
- Merge pull request #32 from phatina/master (vpodzime)
a9076e
- BTRFS: fix parsing empty partition label (phatina)
a9076e
- Merge pull request #35 from vpodzime/master (vpodzime)
a9076e
- Define env variables for sudo via the env utility (vpodzime)
a9076e
- Merge pull request #34 from dashea/python3-tests (vpodzime)
a9076e
- Use unittest.addCleanup to simplify crypto_test. (dshea)
a9076e
- Run tests with both python2 and python3 in the ci target. (dshea)
a9076e
- Fix python3 issues in the unittests. (dshea)
a9076e
- Do not run all tests in the 'ci' target (vpodzime)
a9076e
- Merge pull request #33 from clumens/master (vpodzime)
a9076e
- Add a new makefile target that does everything needed for jenkins. (clumens)
a9076e
- Synchronize the .spec file with downstream (vpodzime)
a9076e
a9076e
* Fri Jul 24 2015 Vratislav Podzimek <vpodzime@redhat.com> - 1.1-2
a9076e
- Explicitly specify the type of the cert_data parameter (#1246096) (vpodzime)
a9076e
a9076e
* Fri Jun 19 2015 Vratislav Podzimek <vpodzime@redhat.com> - 1.1-1
a9076e
- Clean generated boilerplate code on 'make clean' (vpodzime)
a9076e
- Merge pull request #31 from atodorov/use_lang_c (vpodzime)
a9076e
- tests: use LANG=C in test_backup_passphrase() (atodorov)
a9076e
- Merge pull request #30 from atodorov/makefile_updates (vpodzime)
a9076e
- Makefile.am:   - add separate check target   - add coverage targets   - make it possible to test with Python3 (atodorov)
a9076e
- Merge pull request #29 from atodorov/fix_issue_28 (vpodzime)
a9076e
- Merge pull request #27 from atodorov/fix_docs_url (vpodzime)
a9076e
- Merge pull request #26 from atodorov/test_docs (vpodzime)
a9076e
- Change the modified sources back in tearDown() method as well. Closes #28. (atodorov)
a9076e
- update URL to on-line documentation (atodorov)
a9076e
- add test documentation (atodorov)
a9076e
- Merge pull request #22 from dashea/escrow-tests (vpodzime)
a9076e
- Merge pull request #25 from dashea/python-dep (vpodzime)
a9076e
- Filter the python files from automatic rpm requires (dshea)
a9076e
- Added tests for escrow packets and backup passphrases (dshea)
a9076e
- Free leaked contexts from crypto_init (dshea)
a9076e
- Cooperate with volume_key's memory management (dshea)
a9076e
- Fix inheritance in the LVM tests to prevent multiple runs of some tests (vpodzime)
a9076e
- Make the regexp for testing crypto_generate_backup_passphrase() stricter (vpodzime)
a9076e
- Leave room in the backup passphrase for a trailing 0 (dshea)
a9076e
- Add functions to get names of data/metadata internal LVs (vpodzime)
a9076e
- Allow getting info for an internal LV (vpodzime)
a9076e
- Gather information about all LVs (vpodzime)
a9076e
- Round requested size to KBs in lvresize() (#1221247) (vpodzime)
a9076e
- Add overrides for the ensure_init() function (vpodzime)
a9076e
- Change the default value of the 'reload' parameter of try_reinit() (vpodzime)
a9076e
- Merge pull request #21 from vpodzime/master-thpool_size_discard (vpodzime)
a9076e
- Add overrides for the lvm_is_valid_thpool_chunk_size() function (vpodzime)
a9076e
a9076e
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.0-2
a9076e
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
a9076e
a9076e
* Thu May 21 2015 Vratislav Podzimek <vpodzime@redhat.com> - 1.0-1
a9076e
- Adapt the release helper targets to autotools (vpodzime)
a9076e
- Fixes of paths in Makefile.am's inspired by build failures on s390 (vpodzime)
a9076e
- Add an s390-specific BuildRequires (vpodzime)
a9076e
- Distribute also the boilerplate_generator.py script (vpodzime)
a9076e
- Fix path to the generated blockdev.pc file (vpodzime)
a9076e
- Adapt tests that compile stuff to autotools (vpodzime)
a9076e
- Merge pull request #18 from vpodzime/master-autotools (vpodzime)
a9076e
- Merge pull request #20 from dashea/gtkdoc-sections (vpodzime)
a9076e
- Use the autotools building system instead of scons (vpodzime)
a9076e
- Add the two new functions to the 'blockdev' docs section (vpodzime)
a9076e
- Fix the line defining the docs file for the s390 section (vpodzime)
a9076e
- Add a missing #include to the kbd.api file (vpodzime)
a9076e
- Prevent s390-specific stuff from being used on other architectures (vpodzime)
a9076e
- Update the documentation of the is_initialized() function (vpodzime)
a9076e
- Merge pull request #19 from vpodzime/master-ensure_init (vpodzime)
a9076e
- Remove private macros from the gtkdoc sections file. (dshea)
a9076e
- Terminate ifdef statements for arch check. (sbueno+anaconda)
a9076e
- Return early from the init functions if setting up logging fails (vpodzime)
a9076e
- Add tests for the new and modified init functions (vpodzime)
a9076e
- Add new try_init() and try_reinit() functions (vpodzime)
a9076e
- Fix for adding number of loaded plugins (vpodzime)
a9076e
- Fix for ensure_init() (vpodzime)
a9076e
- Rename the try_init() function to ensure_init() and improve it (vpodzime)
a9076e
- Check number of loaded plugins and library initialization state (vpodzime)
a9076e
- Make 'reload' default to True instead of False in overrides (vpodzime)
a9076e
- Add the s390 plugin test file. (sbueno+anaconda)
a9076e
- Add the s390 plugin functions. (sbueno+anaconda)
a9076e
- Add the s390 plugin. (sbueno+anaconda)
a9076e
- Fix a typo in the spec file. (sbueno+anaconda)
a9076e
- Require the kmod-devel package for the build process (vpodzime)
a9076e
- Merge pull request #16 from dashea/escrow-encoding (vpodzime)
a9076e
- Merge pull request #13 from vpodzime/master-lvm_cache (vpodzime)
a9076e
- Merge pull request #12 from vpodzime/master-kbd_plugin (vpodzime)
a9076e
- Merge pull request #14 from vpodzime/master-better_is_multipath (vpodzime)
a9076e
- Use g_strdup() instead of g_strdup_printf() to just dup a string (vpodzime)
a9076e
- Fix the spelling of "escrow" (dshea)
a9076e
- Make the crypto plugin string parameters const (dshea)
a9076e
- Set encoding to NULL before writing the escrow packet. (dshea)
a9076e
- Get cache stats directly from the device mapper (vpodzime)
a9076e
- Reimplement the is_mpath_member() function using device mapper (vpodzime)
a9076e
- Add the LVM cache related symbols to the LVM section in the documentation (vpodzime)
a9076e
- Update the list of LVM cache related functions in features.rst (vpodzime)
a9076e
- Add tests for functions related to the LVM cache technology (vpodzime)
a9076e
- Implement the lvm_cache_stats() function (vpodzime)
a9076e
- Implement the lvm_cache_pool_name function (vpodzime)
a9076e
- Implement the lvm_cache_create_cached_lv() function (vpodzime)
a9076e
- Implement lvm_cache_attach/detach() functions (vpodzime)
a9076e
- Implement the lvm_cache_create_pool() function plus two support functions (vpodzime)
a9076e
- Implement the lvm_cache_get_default_md_size() function (vpodzime)
a9076e
- Add the 'type' parameter to the lvm_lvcreate function (vpodzime)
a9076e
- Teach boilerplate_generator to work with enum return types (vpodzime)
a9076e
- Teach boilerplate_generator to work with 'const' return types (vpodzime)
a9076e
- Add subpackages for the KBD plugin and its devel files (vpodzime)
a9076e
- Add provided symbols to the documentation section of the KBD plugin (vpodzime)
a9076e
- Implement the bcache_get_backing/cache_device functions (vpodzime)
a9076e
- Exclude bcache tests from the normal 'test' target (vpodzime)
a9076e
- Add some more and prolong some of the waits in KBD tests (vpodzime)
a9076e
- Zero all newly allocated structures (vpodzime)
a9076e
- Implement the bcache_status function and all it wants (vpodzime)
a9076e
- Fix for the zram stats (vpodzime)
a9076e
- Add bcache_get_mode and bcache_set_mode functions (vpodzime)
a9076e
- Teach boilerplate_generator to work with enum return types (vpodzime)
a9076e
- Teach boilerplate_generator to work with 'const' return types (vpodzime)
a9076e
- Add the zram_get_stats function (vpodzime)
a9076e
- Add the check() function for the KBD plugin (vpodzime)
a9076e
- Add ErrorProxy instance for the KBD plugin (vpodzime)
a9076e
- Add tests for bcache_create/attach/detach/destroy functions (vpodzime)
a9076e
- Add the 'rebuild' Makefile target (vpodzime)
a9076e
- Add bcache_create, bcache_attach, bcache_detach and bcache_destroy functions (vpodzime)
a9076e
- Implement a helper function to echo string into a file (vpodzime)
a9076e
- Add tests for zram_create_devices and zram_destroy_devices functions (vpodzime)
a9076e
- Add the zram_destroy_devices function to the KBD plugin (vpodzime)
a9076e
- Add first function to the KBD plugin: zram_create_devices (vpodzime)
a9076e
- Add the KernelBlockDevices plugin (vpodzime)
a9076e
a9076e
* Wed May 13 2015 Vratislav Podzimek <vpodzime@redhat.com> - 0.13-1
a9076e
- Prevent a leaky test from running in Jenkins (vpodzime)
a9076e
- Try harder when cleaning up after MD RAID tests (vpodzime)
a9076e
- Improve the MD RAID activate/deactivate test (vpodzime)
a9076e
- One more @contextmanager that needs try-finally (vpodzime)
a9076e
- Do not require metadata version to be reported by 'mdadm --examine' (#1217900) (vpodzime)
a9076e
- Make sure we always set things back in context managers (vpodzime)
a9076e
- Make the release date for version 1.0 more realistic (vpodzime)
a9076e
- Merge pull request #11 from vpodzime/master (vpodzime)
a9076e
- Run utilities with LC_ALL=C (vpodzime) (#1219033)
a9076e
- Free GMatchInfo instance even in case of no match (vpodzime)
a9076e
- Resolve /dev/md/ symlinks when checking swap status. (dlehman)
a9076e
a9076e
* Fri Apr 24 2015 Vratislav Podzimek <vpodzime@redhat.com> - 0.12-1
a9076e
- Require minimum version of libblockdev-utils in some plugins (vpodzime)
a9076e
- Report both stdout and stderr if exit code != 0 (vpodzime)
a9076e
a9076e
* Fri Apr 17 2015 Vratislav Podzimek <vpodzime@redhat.com> - 0.11-1
a9076e
- Fix issues with using overriden functions over ErrorProxy (vpodzime)
a9076e
- Update the roadmap.rst and features.rst with new stuff (vpodzime)
a9076e
- Fix two minor issues with docs generation (vpodzime)
a9076e
a9076e
* Thu Apr 16 2015 Vratislav Podzimek <vpodzime@redhat.com> - 0.10-1
a9076e
- Fix return type of the unload_plugins() function (vpodzime)
a9076e
- Close the DL handle when check() or init() fail (vpodzime)
a9076e
- Add one more check to the reload test (vpodzime)
a9076e
- Drop reference to check() and init() functions (vpodzime)
a9076e
- Add more cats to tests (vpodzime)
a9076e
- Make regexp for getting btrfs version more generic (vpodzime)
a9076e
- Merge pull request #8 from vpodzime/master-check_functions (vpodzime)
a9076e
- Fix parameters passed to unoverridden swapon function (vpodzime)
a9076e
- Implement and test swap plugin's check function (vpodzime)
a9076e
- Implement and test MD RAID plugin's check function (vpodzime)
a9076e
- Implement and test mpath plugin's check function (vpodzime)
a9076e
- Try harder to get util's version (vpodzime)
a9076e
- Implement and test loop plugin's check function (vpodzime)
a9076e
- Implement and test DM plugin's check function (vpodzime)
a9076e
- Implement and test BTRFS plugin's check function (vpodzime)
a9076e
- Implement and test LVM plugin's check function (vpodzime)
a9076e
- Init logging before loading plugins (vpodzime)
a9076e
- Add function for utility availability checking (vpodzime)
a9076e
- Fix default value for the fake_utils' path argument (vpodzime)
a9076e
- Add ErrorProxy instance for the utils functions (vpodzime)
a9076e
- Add function for version comparison (vpodzime)
a9076e
- Merge pull request #9 from clumens/master (vpodzime)
a9076e
- Disable pylint checking on the new exception proxy. (clumens)
a9076e
- Fix XRules application and add a test for it (vpodzime)
a9076e
- Raise NotImplementedError when an unavailable function is called (vpodzime)
a9076e
- Merge pull request #4 from vpodzime/master-error_proxy (vpodzime)
a9076e
- Merge branch 'master' into master-error_proxy (vpodzime)
a9076e
- Merge pull request #5 from vpodzime/master-not_implemented_error (vpodzime)
a9076e
- Add a simple test for unloaded/unavailable functions (vpodzime)
a9076e
- Unload the plugins properly when reinit() is called (vpodzime)
a9076e
- Raise error/exception when an unimplemented function is called (#1201475) (vpodzime)
a9076e
- Do an ugly but necessary hack to make local GI overrides work (vpodzime)
a9076e
- Add the __dir__ method to ErrorProxy (vpodzime)
a9076e
- Add a rationale for the ErrorProxy to the overrides' docstring (vpodzime)
a9076e
- Add some basic info about GI overrides to the documentation (vpodzime)
a9076e
- Use pylint to check for errors in python overrides (vpodzime)
a9076e
- Add the first small test for the ErrorProxy (vpodzime)
a9076e
- Put the GI overrides in a special dir so that they are preferred (vpodzime)
a9076e
- Add a cache for attributes already resolved by ErrorProxy (vpodzime)
a9076e
- Implement the ErrorProxy python class and use it (vpodzime)
a9076e
a9076e
* Tue Apr 07 2015 Vratislav Podzimek <vpodzime@redhat.com> - 0.9-1
a9076e
- Merge pull request #7 from vpodzime/master-fw_raid_fixes (vpodzime)
a9076e
- Try a bit harder when trying to determine MD RAID name (#1207317) (vpodzime)
a9076e
- Don't be naïve about mdadm --detail telling us what we want (#1207317) (vpodzime)
a9076e
- Ignore libblockdev tarballs (vpodzime)
a9076e
- Implement a test of btrfs_list_subvolumes on data from bug report (vpodzime)
a9076e
- Implement a context manager for running tests with fake utils (vpodzime)
a9076e
- Do not try to cannonicalize MD UUIDs if we didn't get them (#1207317) (vpodzime)
a9076e
- Fix the table in roadmap.rst (vpodzime)
a9076e
- Enrich the roadmap.rst file and add info about new plans (vpodzime)
a9076e
- Sync spec file with downstream (vpodzime)
a9076e
a9076e
* Fri Mar 27 2015 Vratislav Podzimek <vpodzime@redhat.com> - 0.8-1
a9076e
- Merge pull request #6 from vpodzime/master-sort_btrfs_subvolumes (vpodzime)
a9076e
- Don't be naïve about mdadm providing us data we would like (#1206394) (vpodzime)
a9076e
- Sort BTRFS subvolumes in a way that child never appears before parent (#1201120) (vpodzime)
a9076e
- Let libcryptsetup handle LUKSname->/dev/mapper/LUKSname for us (vpodzime)
a9076e
- Fix the crypto_luks_resize and create a test for it (vpodzime)
a9076e
- Add targets to create the SRPM and RPM files easily (vpodzime)
a9076e
- Don't round up to multiple of PE size bigger than max value of the rtype (vpodzime)
a9076e
- Mark majority of MD RAID tests as slow (vpodzime)
a9076e
- Merge pull request #1 from dashea/file-paths (vpodzime)
a9076e
- Don't report error for no loop device associated with given file (vpodzime)
a9076e
- Skip the detail_data.clean check when running tests in Jenkins (vpodzime)
a9076e
- Make package file paths more specific (dshea)
a9076e
- Implement and use MD RAID-specific wait for tests (vpodzime)
a9076e
- Try to give MD RAID time to sync things before querying them (vpodzime)
a9076e
- Fix the default value of the BDMDDetailData.clean field (vpodzime)
a9076e
- Do cleanup after every single MD RAID tests (vpodzime)
a9076e
- Do cleanup after every single LVM test (vpodzime)
a9076e
- Do cleanup after every single BTRFS test (vpodzime)
a9076e
- Make sure the LUKS device is closed and removed after tests (vpodzime)
a9076e
- Make sure DM maps from tests are removed after tests (vpodzime)
a9076e
- Make sure that loop devices are deactivated after tests (vpodzime)
a9076e
- Make the tearDown method of the mpath test case better visible (vpodzime)
a9076e
- Make sure that the swap is deactivated after tests (vpodzime)
a9076e
- Fix docstrings in tests' utils helper functions (vpodzime)
a9076e
- Improve the logging tests in utils_test.py (vpodzime)
a9076e
- Update the features.rst file (vpodzime)
a9076e
- Update the roadmap (vpodzime)
a9076e
- Don't check if we get a mountpoint for BTRFS operations (vpodzime)
a9076e
a9076e
* Sun Mar 22 2015 Peter Robinson <pbrobinson@fedoraproject.org> 0.7-2
a9076e
- Ship license as per packaging guidelines
a9076e
- plugins-all should depend on base library too
a9076e
- Add dev docs
a9076e
a9076e
* Fri Feb 27 2015 Vratislav Podzimek <vpodzime@redhat.com> - 0.7-1
a9076e
- Be ready for mdadm --examine to not provide some of the values we want (vpodzime)
a9076e
- Add exit code information to exec logging (vpodzime)
a9076e
- Improve and add tests (vpodzime)
a9076e
- Mark the test_force_plugin and test_reload as slow (vpodzime)
a9076e
- Make sure we get some devices when creating btrfs volume (vpodzime)
a9076e
- Add override for the lvremove function (vpodzime)
a9076e
- Do not create LUKS format with no passphrase and no key file (vpodzime)
a9076e
- Make sure we use the /dev/mapper/... path for luks_status (vpodzime)
a9076e
a9076e
* Thu Feb 19 2015 Vratislav Podzimek <vpodzime@redhat.com> - 0.6-1
a9076e
- Don't report error when non-existing swap's status is queried (vpodzime)
a9076e
- Make libblockdev-plugins-all pull the same version of plugins (vpodzime)
a9076e
- Don't report error when asked for a backing file of an uknown loop (vpodzime)
a9076e
- Fix accidental change in the spec's changelog (vpodzime)
a9076e
a9076e
* Mon Feb 16 2015 Vratislav Podzimek <vpodzime@redhat.com> - 0.5-1
a9076e
- Add tests for what we can easily test from the mpath plugin (vpodzime)
a9076e
- Add link to sources to the documentation (vpodzime)
a9076e
- Add missing symbols into the libblockdev-sections.txt file (vpodzime)
a9076e
- Do not build docs for testing (vpodzime)
a9076e
- Add the bd_try_init function (vpodzime)
a9076e
- Log stdout and stderr output when running processes (vpodzime)
a9076e
- Allow a subset of plugins to be load instead of all (vpodzime)
a9076e
- Make sure devmapper doesn't spam stdout with tons of messages (vpodzime)
a9076e
- Let debug messages go to stderr when running ipython (vpodzime)
a9076e
- Give plugins a way to initialize themselves (vpodzime)
a9076e
- Give plugins a way how to check if they could run properly (vpodzime)
a9076e
- Allow a subset of plugins to be load instead of all [TEST NEEDED] (vpodzime)
a9076e
- Make sure we use the whole /dev/mapper path for cryptsetup (vpodzime)
a9076e
- Fix vg_pv_count parsing when getting info about PV (vpodzime)
a9076e
- Set default values to data structures if real values are not available (vpodzime)
a9076e
- Fix the parameter name specifying pool metadata size (vpodzime)
a9076e
- Activate LUKS as ReadWrite in luks_open (vpodzime)
a9076e
- Make sure we pass key_size to cryptsetup in bytes (vpodzime)
a9076e
- Add the min_entropy parameter to luks_format Python overrides (vpodzime)
a9076e
- Pass size in KiB instead of B to lvcreate (vpodzime)
a9076e
- Add underscore into dataalignment and metadatasize parameter names (vpodzime)
a9076e
- Don't report error if non-mpath device is tested for being mpath member (vpodzime)
a9076e
- Fix name of the invoked utility in mpath_set_friendly_names (vpodzime)
a9076e
a9076e
* Sat Jan 31 2015 Vratislav Podzimek <vpodzime@redhat.com> - 0.4-1
a9076e
- Improve the test for lvm_set_global_config (vpodzime)
a9076e
- Fix some minor issues in the spec file (vpodzime)
a9076e
- Fix issues with the LVM global config str (vpodzime)
a9076e
- Add couple more Python overrides (vpodzime)
a9076e
- Fix the name of the lvm_thlvpoolname() function in the header file (vpodzime)
a9076e
- Use assertEqual instead of assertTrue(a == b) (vpodzime)
a9076e
- Add the min_entropy parameter to luks_format (vpodzime)
a9076e
- Move internal dmraid-related macros into the source file (vpodzime)
a9076e
- Add an override for the md_add function (vpodzime)
a9076e
- Fix parameters in luks_open python overrides (vpodzime)
a9076e
- Prevent init() from being done multiple times and provide a test function (vpodzime)
a9076e
- Add the roadmap.rst document (vpodzime)
a9076e
- Remove an extra parenthesis in one of the docstrings (vpodzime)
a9076e
- Move the mddetail function next to the mdexamine function (vpodzime)
a9076e
- Add some more constants required by blivet (vpodzime)
a9076e
a9076e
* Wed Jan 21 2015 Vratislav Podzimek <vpodzime@redhat.com> - 0.3-1
a9076e
- Require volume_key-devel in a version that fixes build issues (vpodzime)
a9076e
- Fix Python 2 devel package name in BuildRequires (vpodzime)
a9076e
- Generate docs for the library and all plugins (vpodzime)
a9076e
- Make doc comments better for documentation generation (vpodzime)
a9076e
- Fix parameter names in function prototypes (vpodzime)
a9076e
- Add the metadatasize parameter to pvcreate (vpodzime)
a9076e
- Add the dataalignment parameter to lvm_pvcreate (vpodzime)
a9076e
- Export non-internal constants via introspection (vpodzime)
a9076e
- Expand size constants in the GI-scanned files (vpodzime)
a9076e
- Fix usage printing in the boilerplate_generator (vpodzime)
a9076e
- Add the build directory to .gitignore (vpodzime)
a9076e
- Add the md_run function (vpodzime)
a9076e
- Fix some issues in Python overrides (vpodzime)
a9076e
- Add the escrow_device function to the crypto plugin (vpodzime)
a9076e
- Fix version of GI files in the Makefile (vpodzime)
a9076e
- Make the order of release target's dependencies more explicit (vpodzime)
a9076e
a9076e
* Mon Jan 12 2015 Vratislav Podzimek <vpodzime@redhat.com> - 0.2-1
a9076e
- Fix dependencies of the release target (vpodzime)
a9076e
- Python overrides for the GI-generated bindings (vpodzime)
a9076e
- Pass version info to the code and use it to load plugins (vpodzime)
a9076e
a9076e
* Wed Dec 10 2014 Vratislav Podzimek <vpodzime@redhat.com> - 0.1-1
a9076e
- Initial release