- Put MDRaidArrayDevice.devices back, but mark it as deprecated. (dlehman)
- Skip tearing down devices when unmounting filesystems (bcl) - Include details when umount fails (bcl) - Merge pull request #183 from dwlehman/tests-20150728 (dlehman) - Merge pull request #182 from dwlehman/devicefactory-20150728 (dlehman) - Merge pull request #184 from dwlehman/misc-20150728 (dlehman) - Enable unit test suite in jenkins. (dlehman) - Disable image-backed unit tests temporarily. (dlehman) - Add some tests for DeviceFactory. (dlehman) - Do basic child accounting when replacing a parent. (dlehman) - Set new raid level on correct device in MDFactory. (dlehman) - Fix container member switching when toggling member encryption. (dlehman) - Don't adjust actual lv size based on md metadata space requirements. (dlehman) - Merge pull request #57 from vpodzime/master-luks_npass (vpodzime) - Fix names of the keyword arguments for luks_add_key and luks_remove_key (vpodzime) - Make a better effort to clean up loop devices on failure. (dlehman) - Correctly get current size of disk files. (dlehman) - Don't warn about missing UUIDs for non-existent containers. (dlehman) - Only check disks for membership in a multipath. (dlehman) - Only update md array name if MD_DEVNAME is set. (#1212073) (dlehman) - Weed out unresolved macros in the check-requires target. (clumens) - Merge pull request #126 from vpodzime/master-translations_subpackage (vpodzime) - Put translations into a subpackage shared by Python 2 and 3 (vpodzime) - Require pygobject3-base instead of pygobject (#1246842) (dshea) - Add method to list primary partitions (vtrefny) - Merge pull request #179 from dwlehman/size-followups (dlehman) - Fix test for failure to find space for device. (dlehman) - Make sure factory target size is within the limits of the fstype. (dlehman) - Unset obsolete format before updating device size. (dlehman) - Make sure size is numeric before comparing it with format minimum. (dlehman) - Don't constrain thin lv sizes to vg free space. (dlehman)
This commit is contained in:
parent
8910ff338c
commit
9031cbd599
1
.gitignore
vendored
1
.gitignore
vendored
@ -82,3 +82,4 @@
|
|||||||
/blivet-1.8.tar.gz
|
/blivet-1.8.tar.gz
|
||||||
/blivet-1.9.tar.gz
|
/blivet-1.9.tar.gz
|
||||||
/blivet-1.10.tar.gz
|
/blivet-1.10.tar.gz
|
||||||
|
/blivet-1.11.tar.gz
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
Summary: A python module for system storage configuration
|
Summary: A python module for system storage configuration
|
||||||
Name: python-blivet
|
Name: python-blivet
|
||||||
Url: http://fedoraproject.org/wiki/blivet
|
Url: http://fedoraproject.org/wiki/blivet
|
||||||
Version: 1.10
|
Version: 1.11
|
||||||
Release: 1%{?dist}
|
Release: 1%{?dist}
|
||||||
Epoch: 1
|
Epoch: 1
|
||||||
License: LGPLv2+
|
License: LGPLv2+
|
||||||
@ -44,12 +44,20 @@ Requires: libblockdev >= %{libblockdevver}
|
|||||||
Requires: libblockdev-plugins-all >= %{libblockdevver}
|
Requires: libblockdev-plugins-all >= %{libblockdevver}
|
||||||
Requires: libselinux-python
|
Requires: libselinux-python
|
||||||
Requires: python-hawkey
|
Requires: python-hawkey
|
||||||
Requires: pygobject3
|
Requires: pygobject3-base
|
||||||
|
Requires: %{realname}-data = %{epoch}:%{version}-%{release}
|
||||||
|
|
||||||
%description
|
%description
|
||||||
The python-blivet package is a python module for examining and modifying
|
The python-blivet package is a python module for examining and modifying
|
||||||
storage configuration.
|
storage configuration.
|
||||||
|
|
||||||
|
%package -n %{realname}-data
|
||||||
|
Summary: Data for the %{realname} python module.
|
||||||
|
|
||||||
|
%description -n %{realname}-data
|
||||||
|
The %{realname}-data package provides data files required by the %{realname}
|
||||||
|
python module.
|
||||||
|
|
||||||
%if 0%{with_python3}
|
%if 0%{with_python3}
|
||||||
%package -n python3-%{realname}
|
%package -n python3-%{realname}
|
||||||
Summary: A python3 package for examining and modifying storage configuration.
|
Summary: A python3 package for examining and modifying storage configuration.
|
||||||
@ -67,7 +75,8 @@ Requires: dosfstools
|
|||||||
Requires: e2fsprogs >= %{e2fsver}
|
Requires: e2fsprogs >= %{e2fsver}
|
||||||
Requires: lsof
|
Requires: lsof
|
||||||
Requires: python3-hawkey
|
Requires: python3-hawkey
|
||||||
Requires: python3-gobject
|
Requires: python3-gobject-base
|
||||||
|
Requires: %{realname}-data = %{epoch}:%{version}-%{release}
|
||||||
|
|
||||||
%description -n python3-%{realname}
|
%description -n python3-%{realname}
|
||||||
The python3-%{realname} is a python3 package for examining and modifying storage
|
The python3-%{realname} is a python3 package for examining and modifying storage
|
||||||
@ -96,12 +105,14 @@ make PYTHON=%{__python3} DESTDIR=%{buildroot} install
|
|||||||
popd
|
popd
|
||||||
%endif
|
%endif
|
||||||
|
|
||||||
%files -f %{realname}.lang
|
%files
|
||||||
%defattr(-,root,root,-)
|
%defattr(-,root,root,-)
|
||||||
%license COPYING
|
%license COPYING
|
||||||
%doc README ChangeLog examples
|
%doc README ChangeLog examples
|
||||||
%{python_sitelib}/*
|
%{python_sitelib}/*
|
||||||
|
|
||||||
|
%files -n %{realname}-data -f %{realname}.lang
|
||||||
|
|
||||||
%if 0%{?with_python3}
|
%if 0%{?with_python3}
|
||||||
%files -n python3-%{realname}
|
%files -n python3-%{realname}
|
||||||
%license COPYING
|
%license COPYING
|
||||||
@ -110,6 +121,42 @@ popd
|
|||||||
%endif
|
%endif
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Fri Jul 31 2015 Brian C. Lane <bcl@redhat.com> - 1.11-1
|
||||||
|
- Put MDRaidArrayDevice.devices back, but mark it as deprecated. (dlehman)
|
||||||
|
- Skip tearing down devices when unmounting filesystems (bcl)
|
||||||
|
- Include details when umount fails (bcl)
|
||||||
|
- Merge pull request #183 from dwlehman/tests-20150728 (dlehman)
|
||||||
|
- Merge pull request #182 from dwlehman/devicefactory-20150728 (dlehman)
|
||||||
|
- Merge pull request #184 from dwlehman/misc-20150728 (dlehman)
|
||||||
|
- Enable unit test suite in jenkins. (dlehman)
|
||||||
|
- Disable image-backed unit tests temporarily. (dlehman)
|
||||||
|
- Add some tests for DeviceFactory. (dlehman)
|
||||||
|
- Do basic child accounting when replacing a parent. (dlehman)
|
||||||
|
- Set new raid level on correct device in MDFactory. (dlehman)
|
||||||
|
- Fix container member switching when toggling member encryption. (dlehman)
|
||||||
|
- Don't adjust actual lv size based on md metadata space requirements.
|
||||||
|
(dlehman)
|
||||||
|
- Merge pull request #57 from vpodzime/master-luks_npass (vpodzime)
|
||||||
|
- Fix names of the keyword arguments for luks_add_key and luks_remove_key
|
||||||
|
(vpodzime)
|
||||||
|
- Make a better effort to clean up loop devices on failure. (dlehman)
|
||||||
|
- Correctly get current size of disk files. (dlehman)
|
||||||
|
- Don't warn about missing UUIDs for non-existent containers. (dlehman)
|
||||||
|
- Only check disks for membership in a multipath. (dlehman)
|
||||||
|
- Only update md array name if MD_DEVNAME is set. (#1212073) (dlehman)
|
||||||
|
- Weed out unresolved macros in the check-requires target. (clumens)
|
||||||
|
- Merge pull request #126 from vpodzime/master-translations_subpackage
|
||||||
|
(vpodzime)
|
||||||
|
- Put translations into a subpackage shared by Python 2 and 3 (vpodzime)
|
||||||
|
- Require pygobject3-base instead of pygobject (#1246842) (dshea)
|
||||||
|
- Add method to list primary partitions (vtrefny)
|
||||||
|
- Merge pull request #179 from dwlehman/size-followups (dlehman)
|
||||||
|
- Fix test for failure to find space for device. (dlehman)
|
||||||
|
- Make sure factory target size is within the limits of the fstype. (dlehman)
|
||||||
|
- Unset obsolete format before updating device size. (dlehman)
|
||||||
|
- Make sure size is numeric before comparing it with format minimum. (dlehman)
|
||||||
|
- Don't constrain thin lv sizes to vg free space. (dlehman)
|
||||||
|
|
||||||
* Fri Jul 24 2015 Brian C. Lane <bcl@redhat.com> - 1.10-1
|
* Fri Jul 24 2015 Brian C. Lane <bcl@redhat.com> - 1.10-1
|
||||||
- Merge pull request #177 from AdamWill/1245446 (dlehman)
|
- Merge pull request #177 from AdamWill/1245446 (dlehman)
|
||||||
- use floor division in calculating amount to reclaim (#1245446) (awilliam)
|
- use floor division in calculating amount to reclaim (#1245446) (awilliam)
|
||||||
|
Loading…
Reference in New Issue
Block a user