New version 2.1.9
- Adapt to logging module name change (mkolman) - Updated calls to avoid log spamming (japokorn) - Add a script for generating and pushing updated documentation (vtrefny) - pylint: ignore some false positive warnings in blivet.py and lvm.py (vtrefny) - pylint: remove unused false positives from pocketlint config (vtrefny) - pylint: disable false positive "not-context-manager" for threading.Lock - pylint: ignore "arguments-differ" warnings in blivet.size.Size (vtrefny) - pylint: fix various "arguments-differ" warnings (vtrefny) - pylint: remove init from platform.X86 (vtrefny) - pylint: fix various errors in tests (vtrefny) - pylint: ignore "arguments-differ" warning for "do_tasks" method (vtrefny) - pylint: fix false positive for "catching-non-exception" (vtrefny) - pylint: fix argument name for Device._remove_parent/_add_parent (vtrefny) - Always mount & unmount an XFS file system when writing new UUID (vpodzime) - Do not remove manually created extended partitions (#1440150) (vtrefny) - Look the disk up for a partition by name not sys_name (vpodzime) - Disable pylint "no-member" warnings for re module constants (vtrefny) - Allow custom chunk size specification for MDRaidArrayDevice (vtrefny) - Add RAID chunk size to the generated kickstart file (vtrefny) - Use structured logging for the anaconda logger (mkolman) - Use distutils.spawn.find_executable instead of our custom code (vpodzime) - Add a method to reset file system's UUID (vpodzime) - Try to mount and unmount an XFS FS when writing UUID (vpodzime) - Add a method for a file system to generate a new UUID (vpodzime) - tests/fsuuid: Implement checking invalid UUIDs (aszlig) - formats/swap: Support setting UUID (aszlig) - tests: Add a series of tests for setting UUIDs (aszlig) - tests: Add tests to check the UUID format checkers (aszlig) - tasks: Implement setting UUID after FS creation (aszlig) - formats/fs: Implement setting UUID during mkfs (aszlig) - formats/fs: Add functionality for checking UUIDs (aszlig) - tasks/fsmkfs: Add arguments for setting UUID (aszlig) - Properly unset mountpoint of a snapshot's format (vpodzime) - Update snapshot's format's exists flag based on its origin (vpodzime)
This commit is contained in:
parent
f96713f6cd
commit
2dc4db6f5c
1
.gitignore
vendored
1
.gitignore
vendored
@ -103,3 +103,4 @@
|
||||
/blivet-2.1.6.tar.gz
|
||||
/blivet-2.1.7.tar.gz
|
||||
/blivet-2.1.8.tar.gz
|
||||
/blivet-2.1.9.tar.gz
|
||||
|
@ -1,11 +1,11 @@
|
||||
Summary: A python module for system storage configuration
|
||||
Name: python-blivet
|
||||
Url: http://fedoraproject.org/wiki/blivet
|
||||
Version: 2.1.8
|
||||
Version: 2.1.9
|
||||
|
||||
#%%global prerelease .b1
|
||||
# prerelease, if defined, should be something like .a1, .b1, .b2.dev1, or .c2
|
||||
Release: 2%{?prerelease}%{?dist}
|
||||
Release: 1%{?prerelease}%{?dist}
|
||||
Epoch: 1
|
||||
License: LGPLv2+
|
||||
Group: System Environment/Libraries
|
||||
@ -13,8 +13,6 @@ Group: System Environment/Libraries
|
||||
%global realversion %{version}%{?prerelease}
|
||||
Source0: http://github.com/rhinstaller/blivet/archive/%{realname}-%{realversion}.tar.gz
|
||||
|
||||
Patch0: rhbz1445302.patch
|
||||
|
||||
# Versions of required components (done so we make sure the buildrequires
|
||||
# match the requires versions of things).
|
||||
%global pykickstartver 1.99.22
|
||||
@ -64,7 +62,6 @@ configuration.
|
||||
|
||||
%prep
|
||||
%setup -q -n %{realname}-%{realversion}
|
||||
%patch0 -p1
|
||||
|
||||
rm -rf %{py3dir}
|
||||
cp -a . %{py3dir}
|
||||
@ -84,6 +81,43 @@ make PYTHON=%{__python3} DESTDIR=%{buildroot} install
|
||||
%{python3_sitelib}/*
|
||||
|
||||
%changelog
|
||||
* Thu Jun 01 2017 Vojtech Trefny <vtrefny@redhat.com> - 2.1.9-1
|
||||
- Adapt to logging module name change (mkolman)
|
||||
- Updated calls to avoid log spamming (japokorn)
|
||||
- Add a script for generating and pushing updated documentation (vtrefny)
|
||||
- pylint: ignore some false positive warnings in blivet.py and lvm.py (vtrefny)
|
||||
- pylint: remove unused false positives from pocketlint config (vtrefny)
|
||||
- pylint: disable false positive "not-context-manager" for threading.Lock
|
||||
(vtrefny)
|
||||
- pylint: ignore "arguments-differ" warnings in blivet.size.Size (vtrefny)
|
||||
- pylint: fix various "arguments-differ" warnings (vtrefny)
|
||||
- pylint: remove init from platform.X86 (vtrefny)
|
||||
- pylint: fix various errors in tests (vtrefny)
|
||||
- pylint: ignore "arguments-differ" warning for "do_tasks" method (vtrefny)
|
||||
- pylint: fix false positive for "catching-non-exception" (vtrefny)
|
||||
- pylint: fix argument name for Device._remove_parent/_add_parent (vtrefny)
|
||||
- Always mount & unmount an XFS file system when writing new UUID (vpodzime)
|
||||
- Do not remove manually created extended partitions (#1440150) (vtrefny)
|
||||
- Look the disk up for a partition by name not sys_name (vpodzime)
|
||||
- Disable pylint "no-member" warnings for re module constants (vtrefny)
|
||||
- Allow custom chunk size specification for MDRaidArrayDevice (vtrefny)
|
||||
- Add RAID chunk size to the generated kickstart file (vtrefny)
|
||||
- Use structured logging for the anaconda logger (mkolman)
|
||||
- Use distutils.spawn.find_executable instead of our custom code (vpodzime)
|
||||
- Add a method to reset file system's UUID (vpodzime)
|
||||
- Try to mount and unmount an XFS FS when writing UUID (vpodzime)
|
||||
- Add a method for a file system to generate a new UUID (vpodzime)
|
||||
- tests/fsuuid: Implement checking invalid UUIDs (aszlig)
|
||||
- formats/swap: Support setting UUID (aszlig)
|
||||
- tests: Add a series of tests for setting UUIDs (aszlig)
|
||||
- tests: Add tests to check the UUID format checkers (aszlig)
|
||||
- tasks: Implement setting UUID after FS creation (aszlig)
|
||||
- formats/fs: Implement setting UUID during mkfs (aszlig)
|
||||
- formats/fs: Add functionality for checking UUIDs (aszlig)
|
||||
- tasks/fsmkfs: Add arguments for setting UUID (aszlig)
|
||||
- Properly unset mountpoint of a snapshot's format (vpodzime)
|
||||
- Update snapshot's format's exists flag based on its origin (vpodzime)
|
||||
|
||||
* Wed Apr 19 2017 Vojtech Trefny <vtrefny@redhat.com> - 2.1.8-1
|
||||
- Fix "unknown" SAS device sysfs parsing. (adamw)
|
||||
- Reserve space in a VG when using LVMThinPFactory (vpodzime)
|
||||
|
2
sources
2
sources
@ -1 +1 @@
|
||||
SHA512 (blivet-2.1.8.tar.gz) = 3fd2955547ab89e38401ed2806c776f6f181f385788876a195290fea21bf84da9225c8ba8ba3aeb40a5c1b9e2001d838bc231513776f83c7f8ca9a921a84d5fa
|
||||
SHA512 (blivet-2.1.9.tar.gz) = 18765fdcb27ba851bc3f3640a880891f43a15ca93225eef086aa240da173686eeb06304f6abd4d736cb3e6b76498cca3585a1be7d03a4c7de4dd88372cf869b1
|
||||
|
Loading…
Reference in New Issue
Block a user