[python-blivet] - IPSeriesPPC now supports GPT in Open Firmware (hamzy) - Fix device name validation for devices tha

Vratislav Podzimek vpodzime at fedoraproject.org
Mon Jun 9 06:07:53 UTC 2014


commit 885ae44ac37fb0be18aaa663c51db4ea3eda8239
Author: Vratislav Podzimek <vpodzime at redhat.com>
Date:   Fri Jun 6 10:28:31 2014 +0200

    - IPSeriesPPC now supports GPT in Open Firmware (hamzy)
    - Fix device name validation for devices that can contain / (#1103751) (dshea)
    - Add a getRaidLevel() convenience method to raid.py (amulhern)
    - Make a StorageDevice.raw_device property and use it where appropriate
      (amulhern)
    - Simplify a small chunk of Blivet.updateKSData() (amulhern)
    - Move the code for getting a space requirement from devicefactory to raid.
      (amulhern)
    - Make all devicefactory classes uses RAID objects instead of strings.
      (amulhern)
    - Remove devicefactory.get_raid_level from blivet (amulhern)
    - Put get_supported_raid_levels in devicefactory.py (amulhern)
    - Make BTRFS devices use RAID objects instead of strings for levels (amulhern)
    - Add lists of supported RAID levels for btrfs and lvm (amulhern)
    - Add "linear" to mdraid's list of supported raid levels. (amulhern)
    - Remove getRaidLevel() from mdraid file and make RAID_levels public (amulhern)
    - Check for required methods in MDRaidLevels.isRaidLevel. (amulhern)
    - Use has_redundancy property to decide how to add a member to an array.
      (amulhern)
    - Update the mdraid.mdadd comments (amulhern)
    - Use has_redundancy raid property when checking whether a device is removable
      (amulhern)
    - Make createBitmap() a property and update tests appropriately. (amulhern)
    - Add a Dup class to the various descendants of RAIDLevel. (amulhern)
    - Add an is_uniform property to the RAID levels. (amulhern)
    - Add a has_redundancy method that returns True if there is actual redundancy
      (amulhern)
    - Add Linear and Single to the RAID classes. (amulhern)
    - Move Container class to raid package and tidy it up (amulhern)
    - Allow the RAID object itself to be a valid RAID descriptor for lookup.
      (amulhern)
    - Adjust RaidLevel hierarchy so that all raid level objects extend RAIDLevel
      (amulhern)
    - No longer use _standard_levels as the default set of RAID levels. (amulhern)
    - Extract selection of members in complete() into a separate method. (amulhern)
    - Remove DMRaidArrayDevice.members property. (amulhern)
    - Comment mdraid.mdcreate() and update tests appropriately. (amulhern)
    - Import name 'lvm' instead of names from lvm package. (amulhern)
     Please enter the commit message for your changes. Lines starting

 .gitignore         |    1 +
 python-blivet.spec |   44 ++++++++++++++++++++++++++++++++++++++++++--
 sources            |    2 +-
 3 files changed, 44 insertions(+), 3 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index d57def3..b013a36 100644
--- a/.gitignore
+++ b/.gitignore
@@ -49,3 +49,4 @@
 /blivet-0.52.tar.gz
 /blivet-0.53.tar.gz
 /blivet-0.54.tar.gz
+/blivet-0.55.tar.gz
diff --git a/python-blivet.spec b/python-blivet.spec
index ae7995c..3cc9f04 100644
--- a/python-blivet.spec
+++ b/python-blivet.spec
@@ -1,8 +1,8 @@
 Summary:  A python module for system storage configuration
 Name: python-blivet
 Url: http://fedoraproject.org/wiki/blivet
-Version: 0.54
-Release: 2%{?dist}
+Version: 0.55
+Release: 1%{?dist}
 License: LGPLv2+
 Group: System Environment/Libraries
 %define realname blivet
@@ -62,6 +62,46 @@ make DESTDIR=%{buildroot} install
 %{python_sitelib}/*
 
 %changelog
+* Mon Jun 09 2014 Vratislav Podzimek <vpodzime at redhat.com> - 0.55-1
+- IPSeriesPPC now supports GPT in Open Firmware (hamzy)
+- Fix device name validation for devices that can contain / (#1103751) (dshea)
+- Add a getRaidLevel() convenience method to raid.py (amulhern)
+- Make a StorageDevice.raw_device property and use it where appropriate
+  (amulhern)
+- Simplify a small chunk of Blivet.updateKSData() (amulhern)
+- Move the code for getting a space requirement from devicefactory to raid.
+  (amulhern)
+- Make all devicefactory classes uses RAID objects instead of strings.
+  (amulhern)
+- Remove devicefactory.get_raid_level from blivet (amulhern)
+- Put get_supported_raid_levels in devicefactory.py (amulhern)
+- Make BTRFS devices use RAID objects instead of strings for levels (amulhern)
+- Add lists of supported RAID levels for btrfs and lvm (amulhern)
+- Add "linear" to mdraid's list of supported raid levels. (amulhern)
+- Remove getRaidLevel() from mdraid file and make RAID_levels public (amulhern)
+- Check for required methods in MDRaidLevels.isRaidLevel. (amulhern)
+- Use has_redundancy property to decide how to add a member to an array.
+  (amulhern)
+- Update the mdraid.mdadd comments (amulhern)
+- Use has_redundancy raid property when checking whether a device is removable
+  (amulhern)
+- Make createBitmap() a property and update tests appropriately. (amulhern)
+- Add a Dup class to the various descendants of RAIDLevel. (amulhern)
+- Add an is_uniform property to the RAID levels. (amulhern)
+- Add a has_redundancy method that returns True if there is actual redundancy
+  (amulhern)
+- Add Linear and Single to the RAID classes. (amulhern)
+- Move Container class to raid package and tidy it up (amulhern)
+- Allow the RAID object itself to be a valid RAID descriptor for lookup.
+  (amulhern)
+- Adjust RaidLevel hierarchy so that all raid level objects extend RAIDLevel
+  (amulhern)
+- No longer use _standard_levels as the default set of RAID levels. (amulhern)
+- Extract selection of members in complete() into a separate method. (amulhern)
+- Remove DMRaidArrayDevice.members property. (amulhern)
+- Comment mdraid.mdcreate() and update tests appropriately. (amulhern)
+- Import name 'lvm' instead of names from lvm package. (amulhern)
+
 * Sat Jun 07 2014 Fedora Release Engineering <rel-eng at lists.fedoraproject.org> - 0.54-2
 - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
 
diff --git a/sources b/sources
index a566662..824c821 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-a193979e38725b89cdded012bfa6cd03  blivet-0.54.tar.gz
+7c19aa686097f494fe5054f9da7d5e67  blivet-0.55.tar.gz


More information about the scm-commits mailing list