forked from storaged-project/blivet
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
12 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
blivet is a python module for examining and modifying the system's storage configuration. | ||
Blivet is a python module for system storage configuration. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,7 @@ | ||
# TODO: finalize summary/description text here, in setup.py and in README | ||
Summary: A python library for working with system storage | ||
Summary: A python module for system storage configuration | ||
Name: blivet | ||
Url: http://fedoraproject.org/wiki/blivet | ||
Version: 0.2 | ||
Version: 0.3 | ||
Release: 1%{?dist} | ||
License: GPLv2 | ||
Group: System Environment/Libraries | ||
|
@@ -44,7 +43,7 @@ Requires: iscsi-initiator-utils-devel >= %{iscsiver} | |
|
||
|
||
%description | ||
The blivet package is a python module for examining and modifying storage configuration. | ||
The blivet package is a full-featured python module for examining and modifying storage configuration. | ||
|
||
%prep | ||
%setup -q | ||
|
@@ -66,6 +65,12 @@ rm -rf %{buildroot} | |
%{python_sitelib}/* | ||
|
||
%changelog | ||
* Fri Jan 18 2013 David Lehman <[email protected]> - 0.2-1 | ||
- Add Requires: iscsi-initiator-utils, fcoe-utils, device-mapper-multipath. (dlehman) | ||
- Use a threading lock to control program log output. (dlehman) | ||
- Fix reference to data to refer to ksdata in Blivet constructor. (dlehman) | ||
- Remove the loop around proc.communicate in util._run_program. (dlehman) | ||
|
||
* Tue Jan 15 2013 David Lehman <[email protected]> 0.2-1 | ||
- Updated source from final pre-split anaconda source. | ||
- Renamed pyanaconda.storage to blivet throughout. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,8 +2,8 @@ | |
|
||
from distutils.core import setup | ||
|
||
setup(name='blivet', version='0.2', | ||
description='Python module for working with system storage', | ||
setup(name='blivet', version='0.3', | ||
description='Python module for system storage configuration', | ||
author='David Lehman', author_email='[email protected]', | ||
url='http://fedoraproject.org/wiki/blivet', | ||
packages=['blivet', 'blivet.devicelibs', 'blivet.formats']) |