New version 2.1.10
- Use addCleanup for test cleanup instead of clening in tearDown (vtrefny) - No longer skip test w/o selinux; mocked (japokorn) - Skip tests when SELinux is disabled (japokorn) - New test for selinux context setting when mounting (japokorn) - Add tests for disklabel type selection and partition weight. (dlehman) - Do not use package version to check version of installed tools (vtrefny) - Update the upstream git URL (vpodzime) - Stop enforcing obsolete limits on partition count. (#1460668) (dlehman) - Do not run FS check as part of updating (re)size info (vpodzime) - Change how we run e2fsck to check ext filesystems (vpodzime) - Round the recommended thpool metadata size to extents (vpodzime) - Respect thin pool's min size when setting its req_size (vpodzime) - Don't crash during populate when lvm plugin is missing. (dlehman) - Actually add space for LUKS metadata when encrypting a VG (vpodzime) - Only consider old and new device sizes when not growing to max (vpodzime) - Do not reserve space for LVM metadata twice (vpodzime) - Do not create a temporary list for sum() (vpodzime) - Refer to self.container as self.vg in the LVMFactory (vpodzime) - Add a couple of extra comments and docstrings to factories (vpodzime) - Use existing VG's PE size if available in LVMFactory (vpodzime) - Add comments warning before a weird nomenclature in factories (vpodzime) - Don't let device state block modification of the model. (dlehman) - Fix error message for format create w/ missing external dep. (dlehman) - Expand coverage of devices_test.dependencies_test a bit. (dlehman) - Account for external dep availabilty in StorageDevice.controllable. (dlehman) - Add the appropriate external dependency to LUKSDevice. (dlehman)
This commit is contained in:
parent
6bba739d24
commit
6405c10d86
1
.gitignore
vendored
1
.gitignore
vendored
@ -104,3 +104,4 @@
|
||||
/blivet-2.1.7.tar.gz
|
||||
/blivet-2.1.8.tar.gz
|
||||
/blivet-2.1.9.tar.gz
|
||||
/blivet-2.1.10.tar.gz
|
||||
|
@ -1,18 +1,17 @@
|
||||
Summary: A python module for system storage configuration
|
||||
Name: python-blivet
|
||||
Url: http://fedoraproject.org/wiki/blivet
|
||||
Version: 2.1.9
|
||||
Url: https://www-rhstorage.rhcloud.com/projects/blivet
|
||||
Version: 2.1.10
|
||||
|
||||
#%%global prerelease .b1
|
||||
# prerelease, if defined, should be something like .a1, .b1, .b2.dev1, or .c2
|
||||
Release: 3%{?prerelease}%{?dist}
|
||||
Release: 1%{?prerelease}%{?dist}
|
||||
Epoch: 1
|
||||
License: LGPLv2+
|
||||
Group: System Environment/Libraries
|
||||
%global realname blivet
|
||||
%global realversion %{version}%{?prerelease}
|
||||
Source0: http://github.com/rhinstaller/blivet/archive/%{realname}-%{realversion}.tar.gz
|
||||
Patch0: 0001-Stop-enforcing-obsolete-limits-on-partition-count.patch
|
||||
Source0: http://github.com/storaged-project/blivet/archive/%{realname}-%{realversion}.tar.gz
|
||||
|
||||
# Versions of required components (done so we make sure the buildrequires
|
||||
# match the requires versions of things).
|
||||
@ -51,7 +50,6 @@ Requires: util-linux >= %{utillinuxver}
|
||||
Requires: dosfstools
|
||||
Requires: e2fsprogs >= %{e2fsver}
|
||||
Requires: lsof
|
||||
Requires: python3-hawkey
|
||||
Requires: python3-gobject-base
|
||||
Requires: systemd-udev
|
||||
Obsoletes: blivet-data < 1:2.0.3
|
||||
@ -63,7 +61,6 @@ configuration.
|
||||
|
||||
%prep
|
||||
%setup -q -n %{realname}-%{realversion}
|
||||
%patch0 -p1
|
||||
|
||||
rm -rf %{py3dir}
|
||||
cp -a . %{py3dir}
|
||||
@ -83,6 +80,34 @@ make PYTHON=%{__python3} DESTDIR=%{buildroot} install
|
||||
%{python3_sitelib}/*
|
||||
|
||||
%changelog
|
||||
* Thu Aug 17 2017 Vojtech Trefny <vtrefny@redhat.com> - 2.1.10-1
|
||||
- Use addCleanup for test cleanup instead of clening in tearDown (vtrefny)
|
||||
- No longer skip test w/o selinux; mocked (japokorn)
|
||||
- Skip tests when SELinux is disabled (japokorn)
|
||||
- New test for selinux context setting when mounting (japokorn)
|
||||
- Add tests for disklabel type selection and partition weight. (dlehman)
|
||||
- Do not use package version to check version of installed tools (vtrefny)
|
||||
- Update the upstream git URL (vpodzime)
|
||||
- Stop enforcing obsolete limits on partition count. (#1460668) (dlehman)
|
||||
- Do not run FS check as part of updating (re)size info (vpodzime)
|
||||
- Change how we run e2fsck to check ext filesystems (vpodzime)
|
||||
- Round the recommended thpool metadata size to extents (vpodzime)
|
||||
- Respect thin pool's min size when setting its req_size (vpodzime)
|
||||
- Don't crash during populate when lvm plugin is missing. (dlehman)
|
||||
- Actually add space for LUKS metadata when encrypting a VG (vpodzime)
|
||||
- Only consider old and new device sizes when not growing to max (vpodzime)
|
||||
- Do not reserve space for LVM metadata twice (vpodzime)
|
||||
- Do not create a temporary list for sum() (vpodzime)
|
||||
- Refer to self.container as self.vg in the LVMFactory (vpodzime)
|
||||
- Add a couple of extra comments and docstrings to factories (vpodzime)
|
||||
- Use existing VG's PE size if available in LVMFactory (vpodzime)
|
||||
- Add comments warning before a weird nomenclature in factories (vpodzime)
|
||||
- Don't let device state block modification of the model. (dlehman)
|
||||
- Fix error message for format create w/ missing external dep. (dlehman)
|
||||
- Expand coverage of devices_test.dependencies_test a bit. (dlehman)
|
||||
- Account for external dep availabilty in StorageDevice.controllable. (dlehman)
|
||||
- Add the appropriate external dependency to LUKSDevice. (dlehman)
|
||||
|
||||
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1:2.1.9-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
|
||||
|
||||
|
2
sources
2
sources
@ -1 +1 @@
|
||||
SHA512 (blivet-2.1.9.tar.gz) = 18765fdcb27ba851bc3f3640a880891f43a15ca93225eef086aa240da173686eeb06304f6abd4d736cb3e6b76498cca3585a1be7d03a4c7de4dd88372cf869b1
|
||||
SHA512 (blivet-2.1.10.tar.gz) = 1f375df54e4e4251f83905434dee226d22e22377ed003ef04451c78d3a844ae63e782cbdb03ac62adf0bf092d0ed3ebaf6401dae80f53e5166f10934d0089ca5
|
||||
|
Loading…
Reference in New Issue
Block a user