2015-01-09 16:27:14 +00:00
|
|
|
Name: libblockdev
|
2015-02-27 14:09:36 +00:00
|
|
|
Version: 0.7
|
2015-03-22 13:33:23 +00:00
|
|
|
Release: 2%{?dist}
|
2015-01-09 16:27:14 +00:00
|
|
|
Summary: A library for low-level manipulation with block devices
|
|
|
|
License: LGPLv2+
|
|
|
|
URL: https://github.com/vpodzime/libblockdev
|
|
|
|
Source0: https://github.com/vpodzime/libblockdev/archive/%{name}-%{version}.tar.gz
|
|
|
|
|
|
|
|
BuildRequires: scons
|
|
|
|
BuildRequires: glib2-devel
|
|
|
|
BuildRequires: gobject-introspection-devel
|
|
|
|
BuildRequires: cryptsetup-devel
|
|
|
|
BuildRequires: device-mapper-devel
|
|
|
|
BuildRequires: systemd-devel
|
|
|
|
BuildRequires: dmraid-devel
|
2015-01-21 10:28:10 +00:00
|
|
|
BuildRequires: volume_key-devel >= 0.3.9-7
|
|
|
|
BuildRequires: nss-devel
|
|
|
|
BuildRequires: python-devel
|
2015-01-12 17:14:03 +00:00
|
|
|
BuildRequires: python3-devel
|
2015-01-21 10:28:10 +00:00
|
|
|
BuildRequires: gtk-doc
|
|
|
|
BuildRequires: glib2-doc
|
2015-01-09 16:27:14 +00:00
|
|
|
|
|
|
|
|
|
|
|
%description
|
|
|
|
The libblockdev is a C library with GObject introspection support that can be
|
|
|
|
used for doing low-level operations with block devices like setting up LVM,
|
|
|
|
BTRFS, LUKS or MD RAID. The library uses plugins (LVM, BTRFS,...) and serves as
|
|
|
|
a thin wrapper around its plugins' functionality. All the plugins, however, can
|
|
|
|
be used as standalone libraries. One of the core principles of libblockdev is
|
|
|
|
that it is stateless from the storage configuration's perspective (e.g. it has
|
|
|
|
no information about VGs when creating an LV).
|
|
|
|
|
|
|
|
%package devel
|
|
|
|
Summary: Development files for libblockdev
|
|
|
|
Requires: %{name}%{?_isa} = %{version}-%{release}
|
|
|
|
Requires: glib2-devel
|
|
|
|
|
|
|
|
%description devel
|
|
|
|
This package contains header files and pkg-config files needed for development
|
|
|
|
with the libblockdev library.
|
|
|
|
|
|
|
|
|
|
|
|
%package utils
|
|
|
|
Summary: A library with utility functions for the libblockdev library
|
|
|
|
|
|
|
|
%description utils
|
|
|
|
The libblockdev-utils is a library providing utility functions used by the
|
|
|
|
libblockdev library and its plugins.
|
|
|
|
|
|
|
|
%package utils-devel
|
|
|
|
Summary: Development files for libblockdev-utils
|
|
|
|
Requires: %{name}-utils%{?_isa} = %{version}-%{release}
|
|
|
|
Requires: glib2-devel
|
|
|
|
|
|
|
|
%description utils-devel
|
|
|
|
This package contains header files and pkg-config files needed for development
|
|
|
|
with the libblockdev-utils library.
|
|
|
|
|
|
|
|
|
|
|
|
%package btrfs
|
|
|
|
Summary: The BTRFS plugin for the libblockdev library
|
|
|
|
Requires: btrfs-progs
|
|
|
|
|
|
|
|
%description btrfs
|
|
|
|
The libblockdev library plugin (and in the same time a standalone library)
|
|
|
|
proving the BTRFS-related functionality.
|
|
|
|
|
|
|
|
%package btrfs-devel
|
|
|
|
Summary: Development files for the libblockdev-btrfs plugin/library
|
|
|
|
Requires: %{name}-btrfs%{?_isa} = %{version}-%{release}
|
|
|
|
Requires: glib2-devel
|
2015-01-31 19:09:35 +00:00
|
|
|
Requires: %{name}-utils-devel%{?_isa}
|
2015-01-09 16:27:14 +00:00
|
|
|
|
|
|
|
%description btrfs-devel
|
|
|
|
This package contains header files and pkg-config files needed for development
|
|
|
|
with the libblockdev-btrfs plugin/library.
|
|
|
|
|
|
|
|
|
|
|
|
%package crypto
|
|
|
|
Summary: The crypto plugin for the libblockdev library
|
|
|
|
|
|
|
|
%description crypto
|
|
|
|
The libblockdev library plugin (and in the same time a standalone library)
|
|
|
|
proving the functionality related to encrypted devices (LUKS).
|
|
|
|
|
|
|
|
%package crypto-devel
|
|
|
|
Summary: Development files for the libblockdev-crypto plugin/library
|
|
|
|
Requires: %{name}-crypto%{?_isa} = %{version}-%{release}
|
|
|
|
Requires: glib2-devel
|
|
|
|
|
|
|
|
%description crypto-devel
|
|
|
|
This package contains header files and pkg-config files needed for development
|
|
|
|
with the libblockdev-crypto plugin/library.
|
|
|
|
|
|
|
|
|
|
|
|
%package dm
|
|
|
|
Summary: The Device Mapper plugin for the libblockdev library
|
|
|
|
Requires: device-mapper
|
|
|
|
Requires: dmraid
|
|
|
|
|
|
|
|
%description dm
|
|
|
|
The libblockdev library plugin (and in the same time a standalone library)
|
|
|
|
proving the functionality related to Device Mapper.
|
|
|
|
|
|
|
|
%package dm-devel
|
|
|
|
Summary: Development files for the libblockdev-dm plugin/library
|
|
|
|
Requires: %{name}-dm%{?_isa} = %{version}-%{release}
|
|
|
|
Requires: glib2-devel
|
|
|
|
Requires: device-mapper-devel
|
|
|
|
Requires: systemd-devel
|
|
|
|
Requires: dmraid-devel
|
2015-01-31 19:09:35 +00:00
|
|
|
Requires: %{name}-utils-devel%{?_isa}
|
2015-01-09 16:27:14 +00:00
|
|
|
|
|
|
|
%description dm-devel
|
|
|
|
This package contains header files and pkg-config files needed for development
|
|
|
|
with the libblockdev-dm plugin/library.
|
|
|
|
|
|
|
|
|
|
|
|
%package loop
|
|
|
|
Summary: The loop plugin for the libblockdev library
|
|
|
|
Requires: util-linux
|
|
|
|
|
|
|
|
%description loop
|
|
|
|
The libblockdev library plugin (and in the same time a standalone library)
|
|
|
|
proving the functionality related to loop devices.
|
|
|
|
|
|
|
|
%package loop-devel
|
|
|
|
Summary: Development files for the libblockdev-loop plugin/library
|
|
|
|
Requires: %{name}-loop%{?_isa} = %{version}-%{release}
|
2015-01-31 19:09:35 +00:00
|
|
|
Requires: %{name}-utils-devel%{?_isa}
|
2015-01-09 16:27:14 +00:00
|
|
|
Requires: glib2-devel
|
|
|
|
|
|
|
|
%description loop-devel
|
|
|
|
This package contains header files and pkg-config files needed for development
|
|
|
|
with the libblockdev-loop plugin/library.
|
|
|
|
|
|
|
|
|
|
|
|
%package lvm
|
|
|
|
Summary: The LVM plugin for the libblockdev library
|
|
|
|
Requires: lvm2
|
|
|
|
|
|
|
|
%description lvm
|
|
|
|
The libblockdev library plugin (and in the same time a standalone library)
|
|
|
|
proving the LVM-related functionality.
|
|
|
|
|
|
|
|
%package lvm-devel
|
|
|
|
Summary: Development files for the libblockdev-lvm plugin/library
|
|
|
|
Requires: %{name}-lvm%{?_isa} = %{version}-%{release}
|
2015-01-31 19:09:35 +00:00
|
|
|
Requires: %{name}-utils-devel%{?_isa}
|
2015-01-09 16:27:14 +00:00
|
|
|
Requires: glib2-devel
|
|
|
|
|
|
|
|
%description lvm-devel
|
|
|
|
This package contains header files and pkg-config files needed for development
|
|
|
|
with the libblockdev-lvm plugin/library.
|
|
|
|
|
|
|
|
|
|
|
|
%package mdraid
|
|
|
|
Summary: The MD RAID plugin for the libblockdev library
|
|
|
|
Requires: mdadm
|
|
|
|
|
|
|
|
%description mdraid
|
|
|
|
The libblockdev library plugin (and in the same time a standalone library)
|
|
|
|
proving the functionality related to MD RAID.
|
|
|
|
|
|
|
|
%package mdraid-devel
|
|
|
|
Summary: Development files for the libblockdev-mdraid plugin/library
|
|
|
|
Requires: %{name}-mdraid%{?_isa} = %{version}-%{release}
|
2015-01-31 19:09:35 +00:00
|
|
|
Requires: %{name}-utils-devel%{?_isa}
|
2015-01-09 16:27:14 +00:00
|
|
|
Requires: glib2-devel
|
|
|
|
|
|
|
|
%description mdraid-devel
|
|
|
|
This package contains header files and pkg-config files needed for development
|
|
|
|
with the libblockdev-mdraid plugin/library.
|
|
|
|
|
|
|
|
|
|
|
|
%package mpath
|
|
|
|
Summary: The multipath plugin for the libblockdev library
|
|
|
|
Requires: device-mapper-multipath
|
|
|
|
|
|
|
|
%description mpath
|
|
|
|
The libblockdev library plugin (and in the same time a standalone library)
|
|
|
|
proving the functionality related to multipath devices.
|
|
|
|
|
|
|
|
%package mpath-devel
|
|
|
|
Summary: Development files for the libblockdev-mpath plugin/library
|
|
|
|
Requires: %{name}-mpath%{?_isa} = %{version}-%{release}
|
2015-01-31 19:09:35 +00:00
|
|
|
Requires: %{name}-utils-devel%{?_isa}
|
2015-01-09 16:27:14 +00:00
|
|
|
Requires: glib2-devel
|
|
|
|
|
|
|
|
%description mpath-devel
|
|
|
|
This package contains header files and pkg-config files needed for development
|
|
|
|
with the libblockdev-mpath plugin/library.
|
|
|
|
|
|
|
|
|
|
|
|
%package swap
|
|
|
|
Summary: The swap plugin for the libblockdev library
|
|
|
|
Requires: util-linux
|
|
|
|
|
|
|
|
%description swap
|
|
|
|
The libblockdev library plugin (and in the same time a standalone library)
|
|
|
|
proving the functionality related to swap devices.
|
|
|
|
|
|
|
|
%package swap-devel
|
|
|
|
Summary: Development files for the libblockdev-swap plugin/library
|
|
|
|
Requires: %{name}-swap%{?_isa} = %{version}-%{release}
|
2015-01-31 19:09:35 +00:00
|
|
|
Requires: %{name}-utils-devel%{?_isa}
|
2015-01-09 16:27:14 +00:00
|
|
|
Requires: glib2-devel
|
|
|
|
|
|
|
|
%description swap-devel
|
|
|
|
This package contains header files and pkg-config files needed for development
|
|
|
|
with the libblockdev-swap plugin/library.
|
|
|
|
|
|
|
|
|
|
|
|
%package plugins-all
|
|
|
|
Summary: Meta-package that pulls all the libblockdev plugins as dependencies
|
2015-03-22 13:33:23 +00:00
|
|
|
Requires: %{name}%{?_isa} = %{version}-%{release}
|
2015-02-19 10:27:46 +00:00
|
|
|
Requires: %{name}-btrfs%{?_isa} = %{version}-%{release}
|
|
|
|
Requires: %{name}-crypto%{?_isa} = %{version}-%{release}
|
|
|
|
Requires: %{name}-dm%{?_isa} = %{version}-%{release}
|
|
|
|
Requires: %{name}-loop%{?_isa} = %{version}-%{release}
|
|
|
|
Requires: %{name}-lvm%{?_isa} = %{version}-%{release}
|
|
|
|
Requires: %{name}-mdraid%{?_isa} = %{version}-%{release}
|
|
|
|
Requires: %{name}-mpath%{?_isa} = %{version}-%{release}
|
|
|
|
Requires: %{name}-swap%{?_isa} = %{version}-%{release}
|
2015-01-09 16:27:14 +00:00
|
|
|
|
|
|
|
%description plugins-all
|
|
|
|
A meta-package that pulls all the libblockdev plugins as dependencies.
|
|
|
|
|
|
|
|
|
|
|
|
%prep
|
|
|
|
%setup -q -n %{name}-%{version}
|
|
|
|
|
|
|
|
%build
|
|
|
|
CFLAGS="%{optflags}" make %{?_smp_mflags}
|
|
|
|
|
|
|
|
%install
|
2015-01-12 17:14:03 +00:00
|
|
|
CFLAGS="%{optflags}" make PREFIX=%{buildroot} SITEDIRS=%{buildroot}%{python2_sitearch},%{buildroot}%{python3_sitearch} %{?_smp_mflags} install
|
2015-01-09 16:27:14 +00:00
|
|
|
|
|
|
|
|
|
|
|
%post -p /sbin/ldconfig
|
|
|
|
%postun -p /sbin/ldconfig
|
|
|
|
%post utils -p /sbin/ldconfig
|
|
|
|
%postun utils -p /sbin/ldconfig
|
|
|
|
%post btrfs -p /sbin/ldconfig
|
|
|
|
%postun btrfs -p /sbin/ldconfig
|
|
|
|
%post crypto -p /sbin/ldconfig
|
|
|
|
%postun crypto -p /sbin/ldconfig
|
|
|
|
%post dm -p /sbin/ldconfig
|
|
|
|
%postun dm -p /sbin/ldconfig
|
|
|
|
%post loop -p /sbin/ldconfig
|
|
|
|
%postun loop -p /sbin/ldconfig
|
|
|
|
%post lvm -p /sbin/ldconfig
|
|
|
|
%postun lvm -p /sbin/ldconfig
|
|
|
|
%post mdraid -p /sbin/ldconfig
|
|
|
|
%postun mdraid -p /sbin/ldconfig
|
|
|
|
%post mpath -p /sbin/ldconfig
|
|
|
|
%postun mpath -p /sbin/ldconfig
|
|
|
|
%post swap -p /sbin/ldconfig
|
|
|
|
%postun swap -p /sbin/ldconfig
|
|
|
|
|
|
|
|
|
|
|
|
%files
|
2015-03-22 13:33:23 +00:00
|
|
|
%{!?_licensedir:%global license %%doc}
|
|
|
|
%license LICENSE
|
2015-01-09 16:27:14 +00:00
|
|
|
%{_libdir}/libblockdev.so.*
|
|
|
|
%{_libdir}/girepository*/BlockDev*.typelib
|
|
|
|
%{_datadir}/gir*/BlockDev*.gir
|
2015-01-12 17:14:03 +00:00
|
|
|
%{python2_sitearch}
|
|
|
|
%{python3_sitearch}
|
2015-01-09 16:27:14 +00:00
|
|
|
|
|
|
|
%files devel
|
2015-03-22 13:33:23 +00:00
|
|
|
%doc features.rst specs.rst
|
2015-01-09 16:27:14 +00:00
|
|
|
%{_libdir}/libblockdev.so
|
2015-01-31 19:09:35 +00:00
|
|
|
%{_includedir}/blockdev
|
2015-01-09 16:27:14 +00:00
|
|
|
%{_includedir}/blockdev/blockdev.h
|
|
|
|
%{_includedir}/blockdev/plugins.h
|
|
|
|
%{_libdir}/pkgconfig/blockdev.pc
|
2015-01-21 10:28:10 +00:00
|
|
|
%{_datadir}
|
2015-01-09 16:27:14 +00:00
|
|
|
|
|
|
|
|
|
|
|
%files utils
|
|
|
|
%{_libdir}/libbd_utils.so.*
|
|
|
|
|
|
|
|
%files utils-devel
|
|
|
|
%{_libdir}/libbd_utils.so
|
2015-01-31 19:09:35 +00:00
|
|
|
%{_includedir}/blockdev
|
2015-01-09 16:27:14 +00:00
|
|
|
%{_includedir}/blockdev/utils.h
|
|
|
|
%{_includedir}/blockdev/sizes.h
|
|
|
|
%{_includedir}/blockdev/exec.h
|
|
|
|
|
|
|
|
|
|
|
|
%files btrfs
|
|
|
|
%{_libdir}/libbd_btrfs.so.*
|
|
|
|
|
|
|
|
%files btrfs-devel
|
|
|
|
%{_libdir}/libbd_btrfs.so
|
2015-01-31 19:09:35 +00:00
|
|
|
%{_includedir}/blockdev
|
2015-01-09 16:27:14 +00:00
|
|
|
%{_includedir}/blockdev/btrfs.h
|
|
|
|
|
|
|
|
|
|
|
|
%files crypto
|
|
|
|
%{_libdir}/libbd_crypto.so.*
|
|
|
|
|
|
|
|
%files crypto-devel
|
|
|
|
%{_libdir}/libbd_crypto.so
|
2015-01-31 19:09:35 +00:00
|
|
|
%{_includedir}/blockdev
|
2015-01-09 16:27:14 +00:00
|
|
|
%{_includedir}/blockdev/crypto.h
|
|
|
|
|
|
|
|
|
|
|
|
%files dm
|
|
|
|
%{_libdir}/libbd_dm.so.*
|
|
|
|
|
|
|
|
%files dm-devel
|
|
|
|
%{_libdir}/libbd_dm.so
|
2015-01-31 19:09:35 +00:00
|
|
|
%{_includedir}/blockdev
|
2015-01-09 16:27:14 +00:00
|
|
|
%{_includedir}/blockdev/dm.h
|
|
|
|
|
|
|
|
|
|
|
|
%files loop
|
|
|
|
%{_libdir}/libbd_loop.so.*
|
|
|
|
|
|
|
|
%files loop-devel
|
|
|
|
%{_libdir}/libbd_loop.so
|
2015-01-31 19:09:35 +00:00
|
|
|
%{_includedir}/blockdev
|
2015-01-09 16:27:14 +00:00
|
|
|
%{_includedir}/blockdev/loop.h
|
|
|
|
|
|
|
|
|
|
|
|
%files lvm
|
|
|
|
%{_libdir}/libbd_lvm.so.*
|
|
|
|
|
|
|
|
%files lvm-devel
|
|
|
|
%{_libdir}/libbd_lvm.so
|
2015-01-31 19:09:35 +00:00
|
|
|
%{_includedir}/blockdev
|
2015-01-09 16:27:14 +00:00
|
|
|
%{_includedir}/blockdev/lvm.h
|
|
|
|
|
|
|
|
|
|
|
|
%files mdraid
|
|
|
|
%{_libdir}/libbd_mdraid.so.*
|
|
|
|
|
|
|
|
%files mdraid-devel
|
|
|
|
%{_libdir}/libbd_mdraid.so
|
2015-01-31 19:09:35 +00:00
|
|
|
%{_includedir}/blockdev
|
2015-01-09 16:27:14 +00:00
|
|
|
%{_includedir}/blockdev/mdraid.h
|
|
|
|
|
|
|
|
|
|
|
|
%files mpath
|
|
|
|
%{_libdir}/libbd_mpath.so.*
|
|
|
|
|
|
|
|
%files mpath-devel
|
|
|
|
%{_libdir}/libbd_mpath.so
|
2015-01-31 19:09:35 +00:00
|
|
|
%{_includedir}/blockdev
|
2015-01-09 16:27:14 +00:00
|
|
|
%{_includedir}/blockdev/mpath.h
|
|
|
|
|
|
|
|
|
|
|
|
%files swap
|
|
|
|
%{_libdir}/libbd_swap.so.*
|
|
|
|
|
|
|
|
%files swap-devel
|
|
|
|
%{_libdir}/libbd_swap.so
|
2015-01-31 19:09:35 +00:00
|
|
|
%{_includedir}/blockdev
|
2015-01-09 16:27:14 +00:00
|
|
|
%{_includedir}/blockdev/swap.h
|
|
|
|
|
|
|
|
%files plugins-all
|
|
|
|
|
|
|
|
%changelog
|
2015-03-22 13:33:23 +00:00
|
|
|
* Sun Mar 22 2015 Peter Robinson <pbrobinson@fedoraproject.org> 0.7-2
|
|
|
|
- Ship license as per packaging guidelines
|
|
|
|
- plugins-all should depend on base library too
|
|
|
|
- Add dev docs
|
|
|
|
|
2015-02-27 14:09:36 +00:00
|
|
|
* Fri Feb 27 2015 Vratislav Podzimek <vpodzime@redhat.com> - 0.7-1
|
|
|
|
- Be ready for mdadm --examine to not provide some of the values we want (vpodzime)
|
|
|
|
- Add exit code information to exec logging (vpodzime)
|
|
|
|
- Improve and add tests (vpodzime)
|
|
|
|
- Mark the test_force_plugin and test_reload as slow (vpodzime)
|
|
|
|
- Make sure we get some devices when creating btrfs volume (vpodzime)
|
|
|
|
- Add override for the lvremove function (vpodzime)
|
|
|
|
- Do not create LUKS format with no passphrase and no key file (vpodzime)
|
|
|
|
- Make sure we use the /dev/mapper/... path for luks_status (vpodzime)
|
|
|
|
|
2015-02-19 10:27:46 +00:00
|
|
|
* Thu Feb 19 2015 Vratislav Podzimek <vpodzime@redhat.com> - 0.6-1
|
|
|
|
- Don't report error when non-existing swap's status is queried (vpodzime)
|
|
|
|
- Make libblockdev-plugins-all pull the same version of plugins (vpodzime)
|
|
|
|
- Don't report error when asked for a backing file of an uknown loop (vpodzime)
|
|
|
|
- Fix accidental change in the spec's changelog (vpodzime)
|
|
|
|
|
2015-02-16 10:05:31 +00:00
|
|
|
* Mon Feb 16 2015 Vratislav Podzimek <vpodzime@redhat.com> - 0.5-1
|
|
|
|
- Add tests for what we can easily test from the mpath plugin (vpodzime)
|
|
|
|
- Add link to sources to the documentation (vpodzime)
|
|
|
|
- Add missing symbols into the libblockdev-sections.txt file (vpodzime)
|
|
|
|
- Do not build docs for testing (vpodzime)
|
|
|
|
- Add the bd_try_init function (vpodzime)
|
|
|
|
- Log stdout and stderr output when running processes (vpodzime)
|
|
|
|
- Allow a subset of plugins to be load instead of all (vpodzime)
|
|
|
|
- Make sure devmapper doesn't spam stdout with tons of messages (vpodzime)
|
|
|
|
- Let debug messages go to stderr when running ipython (vpodzime)
|
|
|
|
- Give plugins a way to initialize themselves (vpodzime)
|
|
|
|
- Give plugins a way how to check if they could run properly (vpodzime)
|
|
|
|
- Allow a subset of plugins to be load instead of all [TEST NEEDED] (vpodzime)
|
|
|
|
- Make sure we use the whole /dev/mapper path for cryptsetup (vpodzime)
|
|
|
|
- Fix vg_pv_count parsing when getting info about PV (vpodzime)
|
|
|
|
- Set default values to data structures if real values are not available (vpodzime)
|
|
|
|
- Fix the parameter name specifying pool metadata size (vpodzime)
|
|
|
|
- Activate LUKS as ReadWrite in luks_open (vpodzime)
|
|
|
|
- Make sure we pass key_size to cryptsetup in bytes (vpodzime)
|
|
|
|
- Add the min_entropy parameter to luks_format Python overrides (vpodzime)
|
|
|
|
- Pass size in KiB instead of B to lvcreate (vpodzime)
|
|
|
|
- Add underscore into dataalignment and metadatasize parameter names (vpodzime)
|
|
|
|
- Don't report error if non-mpath device is tested for being mpath member (vpodzime)
|
|
|
|
- Fix name of the invoked utility in mpath_set_friendly_names (vpodzime)
|
|
|
|
|
2015-01-31 19:09:35 +00:00
|
|
|
* Sat Jan 31 2015 Vratislav Podzimek <vpodzime@redhat.com> - 0.4-1
|
|
|
|
- Improve the test for lvm_set_global_config (vpodzime)
|
|
|
|
- Fix some minor issues in the spec file (vpodzime)
|
|
|
|
- Fix issues with the LVM global config str (vpodzime)
|
|
|
|
- Add couple more Python overrides (vpodzime)
|
|
|
|
- Fix the name of the lvm_thlvpoolname() function in the header file (vpodzime)
|
|
|
|
- Use assertEqual instead of assertTrue(a == b) (vpodzime)
|
|
|
|
- Add the min_entropy parameter to luks_format (vpodzime)
|
|
|
|
- Move internal dmraid-related macros into the source file (vpodzime)
|
|
|
|
- Add an override for the md_add function (vpodzime)
|
|
|
|
- Fix parameters in luks_open python overrides (vpodzime)
|
|
|
|
- Prevent init() from being done multiple times and provide a test function (vpodzime)
|
|
|
|
- Add the roadmap.rst document (vpodzime)
|
|
|
|
- Remove an extra parenthesis in one of the docstrings (vpodzime)
|
|
|
|
- Move the mddetail function next to the mdexamine function (vpodzime)
|
|
|
|
- Add some more constants required by blivet (vpodzime)
|
|
|
|
|
2015-01-21 10:28:10 +00:00
|
|
|
* Wed Jan 21 2015 Vratislav Podzimek <vpodzime@redhat.com> - 0.3-1
|
|
|
|
- Require volume_key-devel in a version that fixes build issues (vpodzime)
|
|
|
|
- Fix Python 2 devel package name in BuildRequires (vpodzime)
|
|
|
|
- Generate docs for the library and all plugins (vpodzime)
|
|
|
|
- Make doc comments better for documentation generation (vpodzime)
|
|
|
|
- Fix parameter names in function prototypes (vpodzime)
|
|
|
|
- Add the metadatasize parameter to pvcreate (vpodzime)
|
|
|
|
- Add the dataalignment parameter to lvm_pvcreate (vpodzime)
|
|
|
|
- Export non-internal constants via introspection (vpodzime)
|
|
|
|
- Expand size constants in the GI-scanned files (vpodzime)
|
|
|
|
- Fix usage printing in the boilerplate_generator (vpodzime)
|
|
|
|
- Add the build directory to .gitignore (vpodzime)
|
|
|
|
- Add the md_run function (vpodzime)
|
|
|
|
- Fix some issues in Python overrides (vpodzime)
|
|
|
|
- Add the escrow_device function to the crypto plugin (vpodzime)
|
|
|
|
- Fix version of GI files in the Makefile (vpodzime)
|
|
|
|
- Make the order of release target's dependencies more explicit (vpodzime)
|
|
|
|
|
2015-01-12 17:14:03 +00:00
|
|
|
* Mon Jan 12 2015 Vratislav Podzimek <vpodzime@redhat.com> - 0.2-1
|
|
|
|
- Fix dependencies of the release target (vpodzime)
|
|
|
|
- Python overrides for the GI-generated bindings (vpodzime)
|
|
|
|
- Pass version info to the code and use it to load plugins (vpodzime)
|
|
|
|
|
2015-01-09 16:27:14 +00:00
|
|
|
* Wed Dec 10 2014 Vratislav Podzimek <vpodzime@redhat.com> - 0.1-1
|
|
|
|
- Initial release
|