rpms/pyparted/devel .cvsignore, 1.39, 1.40 pyparted.spec, 1.71, 1.72 sources, 1.44, 1.45

David Cantrell dcantrel at fedoraproject.org
Sat Dec 19 22:37:23 UTC 2009


Author: dcantrel

Update of /cvs/pkgs/rpms/pyparted/devel
In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14539

Modified Files:
	.cvsignore pyparted.spec sources 
Log Message:
* Sat Dec 19 2009 David Cantrell <dcantrell at redhat.com> - 2.5-1
- Update release instructions. (dcantrell)
- Remove old cylinder alignment test cases for _ped. (dcantrell)
- Add tests for max partition length / start sector (hdegoede)
- Add _pedmodule and parted functions for max partition length / start
  sector (hdegoede)
- Remove align_to_cylinders function bindings (hdegoede)
- Add tests for disk flag methods (hdegoede)
- Add _pedmodule and parted functions for per disk flags (hdegoede)
- Every tuple member requires a comma after it. (dcantrell)
- Fill out a lot of simple _ped.Disk test cases. (dcantrell)
- Disable DeviceDestroyTestCase for now. (dcantrell)
- Add RequiresLabeledDevice to tests/_ped/baseclass.py. (dcantrell)
- Attempt at fixing _ped.Device.destroy(), no dice. (dcantrell)
- Fix UnitFormatCustomTestCase and UnitFormatTestCase. (dcantrell)
- Fix UnitFormatCustomByteTestCase and UnitFormatByteTestCase. (dcantrell)
- Add DeviceStrTestCase, disable DeviceDestroyTestCase. (dcantrell)
- Add DeviceDestroyTestCase and DeviceCacheRemoveTestCase. (dcantrell)
- Implemented ConstraintIsSolutionTestCase(). (dcantrell)
- Implement ConstraintSolveMaxTestCase(). (dcantrell)
- Implement ConstraintSolveNearestTestCase(). (dcantrell)
- Correct py_ped_file_system_probe_specific() for NULL returns. (dcantrell)
- Implement FileSystemProbeSpecificTestCase(). (dcantrell)
- Implement FileSystemProbeTestCase(). (dcantrell)
- Add RequiresFileSystem to tests/_ped/baseclass.py. (dcantrell)
- Add disk alignment test cases in test_ped.py. (dcantrell)
- Fix CHSGeometryStrTestCase(). (dcantrell)
- Fix ConstraintDuplicateTestCase...finally. (dcantrell)
- Put a deprecation warning in py_ped_constraint_duplicate(). (dcantrell)
- Note that we need parted from Fedora for pyparted. (dcantrell)
- Fix UnitGetSizeTestCase in _ped test cases for _ped.UNIT_PERCENT.
  (dcantrell)
- Add testcase for new _ped disk get_partition_alignment method (hdegoede)



Index: .cvsignore
===================================================================
RCS file: /cvs/pkgs/rpms/pyparted/devel/.cvsignore,v
retrieving revision 1.39
retrieving revision 1.40
diff -u -p -r1.39 -r1.40
--- .cvsignore	7 Nov 2009 02:13:05 -0000	1.39
+++ .cvsignore	19 Dec 2009 22:37:23 -0000	1.40
@@ -1 +1,2 @@
 pyparted-2.4.tar.gz
+pyparted-2.5.tar.gz


Index: pyparted.spec
===================================================================
RCS file: /cvs/pkgs/rpms/pyparted/devel/pyparted.spec,v
retrieving revision 1.71
retrieving revision 1.72
diff -u -p -r1.71 -r1.72
--- pyparted.spec	7 Nov 2009 02:13:05 -0000	1.71
+++ pyparted.spec	19 Dec 2009 22:37:23 -0000	1.72
@@ -2,7 +2,7 @@
 
 Summary: Python module for GNU parted
 Name:    pyparted
-Version: 2.4
+Version: 2.5
 Release: 1%{?dist}
 License: GPLv2+
 Group:   System Environment/Libraries
@@ -12,7 +12,7 @@ Source0: http://fedorahosted.org/release
 
 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
 BuildRequires: python-devel
-BuildRequires: parted-devel >= 1.9.0-20
+BuildRequires: parted-devel >= 1.9.0-24
 BuildRequires: pkgconfig
 BuildRequires: python-decorator
 
@@ -44,6 +44,40 @@ partition tables.
 %{python_sitearch}/parted
 
 %changelog
+* Sat Dec 19 2009 David Cantrell <dcantrell at redhat.com> - 2.5-1
+- Update release instructions. (dcantrell)
+- Remove old cylinder alignment test cases for _ped. (dcantrell)
+- Add tests for max partition length / start sector (hdegoede)
+- Add _pedmodule and parted functions for max partition length / start
+  sector (hdegoede)
+- Remove align_to_cylinders function bindings (hdegoede)
+- Add tests for disk flag methods (hdegoede)
+- Add _pedmodule and parted functions for per disk flags (hdegoede)
+- Every tuple member requires a comma after it. (dcantrell)
+- Fill out a lot of simple _ped.Disk test cases. (dcantrell)
+- Disable DeviceDestroyTestCase for now. (dcantrell)
+- Add RequiresLabeledDevice to tests/_ped/baseclass.py. (dcantrell)
+- Attempt at fixing _ped.Device.destroy(), no dice. (dcantrell)
+- Fix UnitFormatCustomTestCase and UnitFormatTestCase. (dcantrell)
+- Fix UnitFormatCustomByteTestCase and UnitFormatByteTestCase. (dcantrell)
+- Add DeviceStrTestCase, disable DeviceDestroyTestCase. (dcantrell)
+- Add DeviceDestroyTestCase and DeviceCacheRemoveTestCase. (dcantrell)
+- Implemented ConstraintIsSolutionTestCase(). (dcantrell)
+- Implement ConstraintSolveMaxTestCase(). (dcantrell)
+- Implement ConstraintSolveNearestTestCase(). (dcantrell)
+- Correct py_ped_file_system_probe_specific() for NULL returns. (dcantrell)
+- Implement FileSystemProbeSpecificTestCase(). (dcantrell)
+- Implement FileSystemProbeTestCase(). (dcantrell)
+- Add RequiresFileSystem to tests/_ped/baseclass.py. (dcantrell)
+- Add disk alignment test cases in test_ped.py. (dcantrell)
+- Fix CHSGeometryStrTestCase(). (dcantrell)
+- Fix ConstraintDuplicateTestCase...finally. (dcantrell)
+- Put a deprecation warning in py_ped_constraint_duplicate(). (dcantrell)
+- Note that we need parted from Fedora for pyparted. (dcantrell)
+- Fix UnitGetSizeTestCase in _ped test cases for _ped.UNIT_PERCENT.
+  (dcantrell)
+- Add testcase for new _ped disk get_partition_alignment method (hdegoede)
+
 * Fri Nov 06 2009 David Cantrell <dcantrell at redhat.com> - 2.4-1
 - Upgrade to pyparted-2.4:
       Use PedDevice length instead of DIY (#532023) (hdegoede)


Index: sources
===================================================================
RCS file: /cvs/pkgs/rpms/pyparted/devel/sources,v
retrieving revision 1.44
retrieving revision 1.45
diff -u -p -r1.44 -r1.45
--- sources	7 Nov 2009 02:13:05 -0000	1.44
+++ sources	19 Dec 2009 22:37:23 -0000	1.45
@@ -1 +1,2 @@
 f244958142c9fd3ff5ee95f578e2f76d  pyparted-2.4.tar.gz
+af74247bbe7cd13ef263f4b450d21854  pyparted-2.5.tar.gz




More information about the scm-commits mailing list