From 47a405ef7b06e6e0171043d4abda9051ae03f5c7 Mon Sep 17 00:00:00 2001 From: CentOS Buildsys Date: Jun 26 2013 11:13:01 +0000 Subject: import pyparted-3.9-3.el7.src.rpm --- diff --git a/.pyparted.metadata b/.pyparted.metadata new file mode 100644 index 0000000..35e83a1 --- /dev/null +++ b/.pyparted.metadata @@ -0,0 +1 @@ +c23529cf84429f80738b692ea593892cc9674cc8 SOURCES/pyparted-3.9.tar.gz diff --git a/README.md b/README.md deleted file mode 100644 index 0e7897f..0000000 --- a/README.md +++ /dev/null @@ -1,5 +0,0 @@ -The master branch has no content - -Look at the c7 branch if you are working with CentOS-7, or the c4/c5/c6 branch for CentOS-4, 5 or 6 - -If you find this file in a distro specific branch, it means that no content has been checked in yet diff --git a/SOURCES/0001-Do-not-traceback-when-calling-setlocale-875354.patch b/SOURCES/0001-Do-not-traceback-when-calling-setlocale-875354.patch new file mode 100644 index 0000000..6f8123f --- /dev/null +++ b/SOURCES/0001-Do-not-traceback-when-calling-setlocale-875354.patch @@ -0,0 +1,42 @@ +From a43c9ca4e0fb600d425f50d11287f7c4fddee5f3 Mon Sep 17 00:00:00 2001 +From: Chris Lumens +Date: Fri, 14 Dec 2012 13:06:43 -0500 +Subject: [PATCH 01/03] Do not traceback when calling setlocale (#875354). + +This is just a debugging luxury. It's not worth additional tracebacks. +--- + src/parted/decorators.py | 13 +++++++++++-- + 1 file changed, 11 insertions(+), 2 deletions(-) + +diff --git a/src/parted/decorators.py b/src/parted/decorators.py +index 2b583ad..737f72c 100644 +--- a/src/parted/decorators.py ++++ b/src/parted/decorators.py +@@ -24,13 +24,22 @@ import locale + import functools + + def localeC(fn): ++ # setlocale is not thread-safe, and anaconda (at least) may call this from ++ # another thread. This is just a luxury to have untranslated tracebacks, ++ # so it's not worth tracebacking itself. ++ def _setlocale(l): ++ try: ++ locale.setlocale(locale.LC_MESSAGES, l) ++ except: ++ pass ++ + @functools.wraps(fn) + def new(*args, **kwds): + oldlocale = locale.getlocale(locale.LC_MESSAGES) +- locale.setlocale(locale.LC_MESSAGES, 'C') ++ _setlocale('C') + try: + ret = fn(*args, **kwds) + finally: +- locale.setlocale(locale.LC_MESSAGES, oldlocale) ++ _setlocale(oldlocale) + return ret + return new +-- +1.8.1.2 + diff --git a/SOURCES/0002-Convert-Constraint-to-__ped.Constraint-in-partition..patch b/SOURCES/0002-Convert-Constraint-to-__ped.Constraint-in-partition..patch new file mode 100644 index 0000000..07b658e --- /dev/null +++ b/SOURCES/0002-Convert-Constraint-to-__ped.Constraint-in-partition..patch @@ -0,0 +1,26 @@ +From 760a3b7c39a59c2e0f131b40e0a48bdf8240f637 Mon Sep 17 00:00:00 2001 +From: Chris Tyler +Date: Fri, 11 Jan 2013 13:42:29 -0500 +Subject: [PATCH 02/03] Convert Constraint to __ped.Constraint in + partition.getMaxGeometry() + +--- + src/parted/partition.py | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/src/parted/partition.py b/src/parted/partition.py +index 20b6f41..ee3e2d0 100644 +--- a/src/parted/partition.py ++++ b/src/parted/partition.py +@@ -166,7 +166,7 @@ class Partition(object): + def getMaxGeometry(self, constraint): + """Given a constraint, return the maximum Geometry that self can be + grown to. Raises Partitionexception on error.""" +- return parted.Geometry(PedGeometry=self.disk.getPedDisk().get_max_partition_geometry(self.__partition, constraint)) ++ return parted.Geometry(PedGeometry=self.disk.getPedDisk().get_max_partition_geometry(self.__partition, constraint.getPedConstraint())) + + @localeC + def isFlagAvailable(self, flag): +-- +1.8.1.2 + diff --git a/SOURCES/0003-Subject-PATCH-pyparted-export-ped_disk_new-functiona.patch b/SOURCES/0003-Subject-PATCH-pyparted-export-ped_disk_new-functiona.patch new file mode 100644 index 0000000..39665f4 --- /dev/null +++ b/SOURCES/0003-Subject-PATCH-pyparted-export-ped_disk_new-functiona.patch @@ -0,0 +1,131 @@ +From 36384816c56d666bbf3492ddcc531bf4c4a38674 Mon Sep 17 00:00:00 2001 +From: Nageswara R Sastry +Date: Thu, 23 May 2013 09:14:10 -0400 +Subject: [PATCH 03/03] Subject: [PATCH] pyparted: export ped_disk_new + functionality + +Fixed Block Access (FBA) DASDs are mainframe-specific disk devices +which are layed out as a sequence of 512-byte sectors. In contrast +to ECKD DASDs, these disks do not require formatting and resemble +the LBA layout of non-mainframe disks. Despite this resemblance, +the Linux kernel applies special handling during partition detection +for FBA DASDs, resulting in a single, immutable partition being +reported. + +While actual FBA DASD hardware is no longer available, the z/VM +hypervisor can simulate FBA DASD disks, backed by either ECKD or +SCSI devices. + +This patch adds support for FBA DASD partitions and successful +installation by Anaconda. + +Signed-off-by: Nageswara R Sastry +--- + include/pydisk.h | 1 + + src/_pedmodule.c | 7 +++++++ + src/parted/__init__.py | 9 +++++++++ + src/pydisk.c | 32 ++++++++++++++++++++++++++++++++ + 4 files changed, 49 insertions(+) + +diff --git a/include/pydisk.h b/include/pydisk.h +index c0bf92e..a2bcc4f 100644 +--- a/include/pydisk.h ++++ b/include/pydisk.h +@@ -152,6 +152,7 @@ PyObject *py_ped_disk_get_partition(PyObject *, PyObject *); + PyObject *py_ped_disk_get_partition_by_sector(PyObject *, PyObject *); + PyObject *py_ped_disk_extended_partition(PyObject *, PyObject *); + PyObject *py_ped_disk_new_fresh(PyObject *, PyObject *); ++PyObject *py_ped_disk_new(PyObject *, PyObject *); + + #endif /* PYDISK_H_INCLUDED */ + +diff --git a/src/_pedmodule.c b/src/_pedmodule.c +index add0e8c..efdf831 100644 +--- a/src/_pedmodule.c ++++ b/src/_pedmodule.c +@@ -162,6 +162,11 @@ PyDoc_STRVAR(disk_new_fresh_doc, + "will have to use the commit_to_dev() method to write the new label to\n" + "the disk."); + ++PyDoc_STRVAR(disk_new_doc, ++"disk_new(Device) -> Disk\n\n" ++"Given the Device, create a new Disk object. And probe, read the details of\n" ++"the disk."); ++ + PyDoc_STRVAR(disk_flag_get_name_doc, + "disk_flag_get_name(integer) -> string\n\n" + "Return a name for a disk flag constant. If an invalid flag is provided,\n" +@@ -252,6 +257,8 @@ static struct PyMethodDef PyPedModuleMethods[] = { + METH_VARARGS, partition_flag_next_doc}, + {"disk_new_fresh", (PyCFunction) py_ped_disk_new_fresh, + METH_VARARGS, disk_new_fresh_doc}, ++ {"disk_new", (PyCFunction) py_ped_disk_new, ++ METH_VARARGS, disk_new_doc}, + {"disk_flag_get_name", (PyCFunction) py_ped_disk_flag_get_name, + METH_VARARGS, disk_flag_get_name_doc}, + {"disk_flag_get_by_name", (PyCFunction) py_ped_disk_flag_get_by_name, +diff --git a/src/parted/__init__.py b/src/parted/__init__.py +index 01f9575..0eb23d2 100644 +--- a/src/parted/__init__.py ++++ b/src/parted/__init__.py +@@ -418,6 +418,15 @@ def freshDisk(device, ty): + return Disk(PedDisk=peddisk) + + @localeC ++def newDisk(device): ++ """Return a Disk object for this Device. Read the partition table off ++ a device (if one is found).""" ++ from _ped import disk_new ++ ++ peddisk = disk_new(device.getPedDevice()) ++ return Disk(PedDisk=peddisk) ++ ++@localeC + def version(): + """Return a dict containing the pyparted and libparted versions.""" + from _ped import libparted_version +diff --git a/src/pydisk.c b/src/pydisk.c +index f58eeef..4e70f55 100644 +--- a/src/pydisk.c ++++ b/src/pydisk.c +@@ -2004,5 +2004,37 @@ PyObject *py_ped_disk_new_fresh(PyObject *s, PyObject *args) { + return (PyObject *) ret; + } + ++PyObject *py_ped_disk_new(PyObject *s, PyObject *args) { ++ _ped_Device *in_device = NULL; ++ PedDevice *device = NULL; ++ PedDisk *disk = NULL; ++ _ped_Disk *ret = NULL; ++ ++ if (!PyArg_ParseTuple(args, "O!", &_ped_Device_Type_obj, &in_device)) { ++ return NULL; ++ } ++ ++ if ((device = _ped_Device2PedDevice((PyObject *) in_device)) == NULL) { ++ return NULL; ++ } ++ ++ if ((disk = ped_disk_new(device)) == NULL) { ++ if (partedExnRaised) { ++ partedExnRaised = 0; ++ ++ if (!PyErr_ExceptionMatches(PartedException) && ++ !PyErr_ExceptionMatches(PyExc_NotImplementedError)) ++ PyErr_SetString(DiskException, partedExnMessage); ++ } else { ++ PyErr_Format(DiskException, "Could not create new disk label on %s", disk->dev->path); ++ } ++ ++ return NULL; ++ } ++ ++ ret = PedDisk2_ped_Disk(disk); ++ return (PyObject *) ret; ++} ++ + /* vim:tw=78:ts=4:et:sw=4 + */ +-- +1.8.1.2 + diff --git a/SPECS/pyparted.spec b/SPECS/pyparted.spec new file mode 100644 index 0000000..2699422 --- /dev/null +++ b/SPECS/pyparted.spec @@ -0,0 +1,377 @@ +Summary: Python module for GNU parted +Name: pyparted +Epoch: 1 +Version: 3.9 +Release: 3%{?dist} +License: GPLv2+ +Group: System Environment/Libraries +URL: http://fedorahosted.org/pyparted + +Source0: http://fedorahosted.org/releases/p/y/%{name}/%{name}-%{version}.tar.gz +Patch1: 0001-Do-not-traceback-when-calling-setlocale-875354.patch +Patch2: 0002-Convert-Constraint-to-__ped.Constraint-in-partition..patch +Patch3: 0003-Subject-PATCH-pyparted-export-ped_disk_new-functiona.patch + +BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(id -u -n) +BuildRequires: python-devel +BuildRequires: parted-devel >= 3.1 +BuildRequires: pkgconfig + +%description +Python module for the parted library. It is used for manipulating +partition tables. + +%prep +%setup -q +%patch1 -p 1 +%patch2 -p 1 +%patch3 -p 1 + +%build +make %{?_smp_mflags} + +%install +rm -rf %{buildroot} +make install DESTDIR=%{buildroot} + +%clean +rm -rf %{buildroot} + +%files +%defattr(-,root,root,-) +%doc AUTHORS BUGS COPYING ChangeLog NEWS README TODO +%{python_sitearch}/_pedmodule.so +%{python_sitearch}/parted +%{python_sitearch}/%{name}-%{version}-*.egg-info + +%changelog +* Mon Jun 24 2013 Chris Lumens 3.9-3 +- Fix a bunch of unicode-related tracebacks during installation. + +* Thu Feb 14 2013 Fedora Release Engineering - 3.9-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild + +* Wed Dec 05 2012 David Cantrell - 3.9-1 +- Upgrade to pyparted-3.9 + +* Sat Jul 21 2012 Fedora Release Engineering - 3.8-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild + +* Tue Mar 13 2012 Brian C. Lane - 3.8-4 +- Rebuild against parted 3.1 + +* Thu Feb 02 2012 Brian C. Lane - 3.8-3 +- Add patch for new parted PED_DISK_GPT_PMBR_BOOT flag + +* Sat Jan 14 2012 Fedora Release Engineering - 3.8-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild + +* Wed Jun 29 2011 David Cantrell - 3.8-1 +- Upgraded to pyparted-3.8 + +* Wed Jun 29 2011 David Cantrell - 3.7-2 +- BR parted-devel >= 3.0 +- Adjust for distutils build method + +* Wed Jun 29 2011 David Cantrell - 3.7-1 +- Upgraded to pyparted-3.7 (compatibility with parted-3.0) + +* Wed Mar 23 2011 David Cantrell - 3.6-1 +- Upgraded to pyparted-3.6 + +* Thu Mar 17 2011 David Cantrell - 3.5-3 +- Add support for PED_PARTITION_LEGACY_BOOT partition flag now in libparted + +* Tue Feb 08 2011 Fedora Release Engineering - 3.5-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild + +* Mon Jan 17 2011 David Cantrell - 3.5-1 +- Drop dependency on python-decorator module. (dcantrell) +- Differentiate the "Could not commit" messages. (jgranado) +- Import _ped.DiskLabelException into parted namespace (cjwatson) +- Return PED_EXCEPTION_NO for yes/no interactive exceptions. (dcantrell) + +* Wed Jul 21 2010 David Malcolm - 3.4-3 +- Rebuilt for https://fedoraproject.org/wiki/Features/Python_2.7/MassRebuild + +* Fri May 21 2010 David Cantrell - 3.4-2 +- Spec file cleanups to comply with current packaging policies + +* Thu Apr 29 2010 David Cantrell - 3.4-1 +- Handle PED_EXCEPTION_WARNING with PED_EXCEPTION_YES_NO (#575749) + (dcantrell) + +* Wed Apr 21 2010 Chris Lumens - 3.3-1 +- Upgrade to pyparted-3.3 (#583628). + +* Wed Mar 31 2010 David Cantrell - 3.2-2 +- Rebuild for libparted soname change + +* Thu Mar 25 2010 Chris Lumens - 3.2-1 +- Upgrade to pyparted-3.2 (#571940). + +* Mon Mar 01 2010 David Cantrell - 3.1-1 +- Upgrade to pyparted-3.1 (#567576). + +* Tue Jan 12 2010 David Cantrell - 3.0-1 +- Upgrade to pyparted-3.0. + +* Mon Jan 11 2010 Hans de Goede - 2.5-4 +- Rebuild for new parted-2.1 +- Remove py_disk_clobber_exclude function binding, as this function was + removed from parted-2.1 + +* Thu Jan 7 2010 Hans de Goede - 2.5-3 +- Change python_sitearch macro to use %%global as the new rpm will break + using %%define here, see: + https://www.redhat.com/archives/fedora-devel-list/2010-January/msg00093.html + +* Sat Dec 19 2009 David Cantrell - 2.5-2 +- Exclude pyparted-2.4.tar.gz from source RPM (oops) + +* Sat Dec 19 2009 David Cantrell - 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 - 2.4-1 +- Upgrade to pyparted-2.4: + Use PedDevice length instead of DIY (#532023) (hdegoede) + Use sectorSize not physicalSectorSize for size calculations (hdegoede) + +* Tue Nov 03 2009 David Cantrell - 2.3-1 +- Upgrade to pyparted-2.3: + Remove root user requirement in _ped + Add testcases for new _ped device methods + Add python wrapper for new PedDisk partition alignment info function + Add support for new PedDisk parition alignment info function + Add python wrappers for new PedDevice alignment info functions + Add support for new PedDevice alignment info functions + Fix a whole pile of test cases. + Remove ped_disk_commit_to_dev() call from py_ped_disk_new_fresh() + Fix error in Constraint __str__ method + Make _ped_Device2PedDevice properly set / throw exceptions + Fixup various errorhandling issues in pydisk.c + Add missing _ped_Device2PedDevice() retval checks + Use libparted commit() for parted.disk.Disk.commit() (hdegoede). +- BR parted-devel >= 1.9.0-20 + +* Fri Oct 02 2009 David Cantrell - 2.2-1 +- Upgrade to pyparted-2.2: + Fixes PedDisk2_ped_Disk() and avoids losing disk label data + in the conversion process (#526999) + +* Mon Aug 17 2009 Chris Lumens - 2.1.2-1 +- Upgrade to pyparted-2.1.2: + PED_DEVICE_DM is always defined in libparted these days. + Handle parted exceptions arising from ped_device_get (#495433). + +* Tue Aug 04 2009 David Cantrell - 2.1.1-1 +- Upgrade to pyparted-2.1.1 + +* Sun Jul 26 2009 Fedora Release Engineering - 2.1.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + +* Thu Jul 16 2009 David Cantrell - 2.1.0-1 +- Upgrade to pyparted-2.1.0, requires parted-1.9.0-1 or higher + +* Fri Jul 10 2009 David Cantrell - 2.0.12-2 +- Rebuild for new parted + +* Tue Apr 14 2009 David Cantrell - 2.0.12-1 +- Upgrade to pyparted-2.0.12 + +* Mon Apr 13 2009 David Cantrell - 2.0.11-1 +- Upgrade to pyparted-2.0.11 + +* Fri Apr 03 2009 David Cantrell - 2.0.10-1 +- Upgrade to pyparted-2.0.10 + Fix LVM problems around parted.Disk.commit() (#491746) + +* Mon Mar 23 2009 David Cantrell - 2.0.9-1 +- Upgrade to pyparted-2.0.9 + +* Thu Mar 20 2009 David Cantrell - 2.0.8-1 +- Upgrade to pyparted-2.0.8 + +* Thu Mar 19 2009 David Cantrell - 2.0.7-1 +- Upgrade to pyparted-2.0.7 + +* Thu Mar 12 2009 David Cantrell - 2.0.6-1 +- Upgrade to pyparted-2.0.6 + +* Thu Mar 05 2009 David Cantrell - 2.0.5-1 +- Upgrade to pyparted-2.0.5 + +* Sat Feb 28 2009 David Cantrell - 2.0.4-1 +- Upgrade to pyparted-2.0.4 + +* Fri Feb 27 2009 David Cantrell - 2.0.3-1 +- Upgrade to pyparted-2.0.3 + +* Wed Feb 25 2009 David Cantrell - 2.0.2-1 +- Upgrade to pyparted-2.0.2 + +* Mon Feb 16 2009 David Cantrell - 2.0.1-1 +- Upgrade to pyparted-2.0.1 (#485632) + +* Thu Feb 12 2009 David Cantrell - 2.0.0-1 +- Upgrade to pyparted-2.0.0 + +* Sat Nov 29 2008 Ignacio Vazquez-Abrams - 1.8.9-6 +- Rebuild for Python 2.6 + +* Fri Feb 08 2008 David Cantrell - 1.8.9-5 +- Rebuild for gcc-4.3 + +* Wed Jan 02 2008 David Cantrell - 1.8.9-4 +- Rebuild + +* Mon Nov 19 2007 Jeremy Katz - 1.8.9-3 +- Add support for exact constraints + +* Tue Aug 21 2007 David Cantrell - 1.8.9-2 +- Rebuild + +* Fri Aug 10 2007 David Cantrell - 1.8.9-1 +- Update license tag to indicate GPL v2 or later +- Update URLs to point to new upstream location + +* Fri Jun 15 2007 David Cantrell - 1.8.8-1 +- Clean up wording in package description (#226337) +- BR pkgconfig (#226337) + +* Fri Jun 15 2007 David Cantrell - 1.8.7-1 +- Merge review (#226337) + +* Mon Apr 23 2007 David Cantrell - 1.8.6-2 +- Ensure build env CFLAGS are included (#226337) + +* Fri Apr 19 2007 David Cantrell - 1.8.6-1 +- Merge review (#226337) + +* Tue Mar 20 2007 David Cantrell - 1.8.5-4 +- Rebuild for GNU parted-1.8.6 + +* Tue Mar 20 2007 David Cantrell - 1.8.5-3 +- Rebuild for GNU parted-1.8.5 + +* Mon Mar 19 2007 David Cantrell - 1.8.5-2 +- Rebuild for GNU parted-1.8.4 + +* Thu Feb 08 2007 David Cantrell - 1.8.5-1 +- Define and use python_sitearch rather than python_sitelib + +* Thu Feb 08 2007 David Cantrell - 1.8.4-1 +- Use preferred BuildRoot (package review) +- Define and use python_sitelib macro (package review) + +* Fri Jan 12 2007 David Cantrell - 1.8.3-1 +- Required parted-1.8.2 or higher + +* Wed Jan 10 2007 Jeremy Katz - 1.8.2-1 +- use PyObject_DEL instead of PyMem_DEL + +* Thu Dec 7 2006 Jeremy Katz - 1.8.1-3 +- rebuild for python 2.5 + +* Tue Dec 05 2006 David Cantrell - 1.8.1-2 +- Rebuild for GNU parted-1.8.1 + +* Thu Nov 30 2006 David Cantrell - 1.8.1-1 +- Determine Python version to use in %%build so the source RPM is more + easily moved between distribution releases. + +* Fri Nov 17 2006 David Cantrell - 1.8.0-1 +- Bump version to 1.8.0 and require parted >= 1.8.0 +- Remove python-abi Requires line since rpm handles that automatically + +* Wed Aug 30 2006 David Cantrell - 1.7.3-1 +- Include parted/constraint.h in required header files + +* Wed Aug 30 2006 David Cantrell - 1.7.2-2 +- Require parted-1.7.1 or higher + +* Tue Jul 25 2006 David Cantrell - 1.7.2-1 +- Add HPSERVICE, PALO, PREP, and MSFT_RESERVED to partition types list + +* Wed Jul 12 2006 Jesse Keating - 1.7.1-1.1 +- rebuild + +* Sun May 28 2006 David Cantrell - 1.7.1-1 +- Bump version to 1.7.1 and require parted >= 1.7.1 + +* Fri May 19 2006 David Cantrell - 1.7.0-1 +- Bump version to 1.7.0 and require parted >= 1.7.0 + +* Fri Dec 09 2005 Jesse Keating +- rebuilt + +* Fri Nov 11 2005 Peter Jones - 1.6.10-1 +- rebuild for new parted. +- add debugging options for make so debuginfo isn't useless + +* Wed Nov 9 2005 Jeremy Katz - 1.6.9-5 +- rebuild for new parted + +* Wed Aug 31 2005 Chris Lumens 1.6.9-4 +- Rebuilt for new parted library. + +* Wed Mar 16 2005 Chris Lumens 1.6.9-3 +- Updated for gcc4 and python2.4. Fixed build warnings. + +* Tue Dec 14 2004 Jeremy Katz - 1.6.9-2 +- add support for sx8 devices + +* Mon Nov 8 2004 Jeremy Katz - 1.6.8-3 +- rebuild for python 2.4 + +* Mon Oct 11 2004 Warren Togami - 1.6.8-2 +- #135100 req python-abi (Robert Scheck) + +* Tue Aug 17 2004 Jeremy Katz - 1.6.8-1 +- update for new parted ABI + - device -> heads, sectors, cylinders now refer to the bios geometry +- require parted >= 1.6.12 + +* Thu Jul 22 2004 Jeremy Katz - 1.6.7-3 +- build on ppc64 again + +* Thu May 13 2004 Jeremy Katz - 1.6.7-1 +- fix build for newer versions of gcc (fix from Jeff Law) + +* Tue Mar 16 2004 Jeremy Katz 1.6.6-2 +- fix PARTITION_PROTECTED definition (#118451) + +* Fri Mar 12 2004 Jeremy Katz +- Initial build split out into separate source from the parted package. +- Don't build on ppc64 right now due to parted build problems (#118183)