pyparted/pyparted.spec

325 lines
12 KiB
RPMSpec
Raw Normal View History

%{!?python_sitearch: %global python_sitearch %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib(1)")}
Summary: Python module for GNU parted
Name: pyparted
Version: 3.4
2010-04-21 17:37:17 +00:00
Release: 1%{?dist}
License: GPLv2+
Group: System Environment/Libraries
2009-02-12 22:05:51 +00:00
URL: http://fedorahosted.org/pyparted
2009-02-12 22:05:51 +00:00
Source0: http://fedorahosted.org/releases/p/y/%{name}/%{name}-%{version}.tar.gz
2007-04-20 15:37:57 +00:00
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
2009-02-12 22:05:51 +00:00
BuildRequires: python-devel
BuildRequires: parted-devel >= 2.1
2009-02-12 22:05:51 +00:00
BuildRequires: pkgconfig
BuildRequires: python-decorator
Requires: python-decorator
%description
Python module for the parted library. It is used for manipulating
partition tables.
%prep
%setup -q
%build
2009-02-12 22:05:51 +00:00
%configure
%{__make} %{?_smp_mflags}
%install
2007-06-14 18:41:16 +00:00
%{__rm} -rf %{buildroot}
2007-04-20 15:37:57 +00:00
%{__make} install DESTDIR=%{buildroot}
2009-02-12 22:05:51 +00:00
%{__rm} -rf %{buildroot}%{python_sitearch}/_pedmodule.la
%clean
2007-04-20 15:37:57 +00:00
%{__rm} -rf %{buildroot}
%files
%defattr(-,root,root,-)
%doc AUTHORS BUGS COPYING ChangeLog NEWS README TODO
2009-02-12 22:05:51 +00:00
%{python_sitearch}/_pedmodule.so
%{python_sitearch}/parted
%changelog
* Thu Apr 29 2010 David Cantrell <dcantrell@redhat.com> - 3.4-1
- Handle PED_EXCEPTION_WARNING with PED_EXCEPTION_YES_NO (#575749)
(dcantrell)
* Wed Apr 21 2010 Chris Lumens <clumens@redhat.com> - 3.3-1
2010-04-21 17:37:17 +00:00
- Upgrade to pyparted-3.3 (#583628).
2010-03-31 17:46:46 +00:00
* Wed Mar 31 2010 David Cantrell <dcantrell@redhat.com> - 3.2-2
- Rebuild for libparted soname change
2010-03-25 19:11:24 +00:00
* Thu Mar 25 2010 Chris Lumens <clumens@redhat.com> - 3.2-1
- Upgrade to pyparted-3.2 (#571940).
2010-03-01 22:38:04 +00:00
* Mon Mar 01 2010 David Cantrell <dcantrell@redhat.com> - 3.1-1
- Upgrade to pyparted-3.1 (#567576).
2010-01-12 22:34:43 +00:00
* Tue Jan 12 2010 David Cantrell <dcantrell@redhat.com> - 3.0-1
- Upgrade to pyparted-3.0.
* Mon Jan 11 2010 Hans de Goede <hdegoede@redhat.com> - 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 <hdegoede@redhat.com> - 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 <dcantrell@redhat.com> - 2.5-2
- Exclude pyparted-2.4.tar.gz from source RPM (oops)
- 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)
2009-12-19 22:37:23 +00:00
* Sat Dec 19 2009 David Cantrell <dcantrell@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@redhat.com> - 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 <dcantrell@redhat.com> - 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 <dcantrell@redhat.com> - 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 <clumens@redhat.com> - 2.1.2-1
2009-08-17 17:50:50 +00:00
- 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).
2009-08-04 22:50:04 +00:00
* Tue Aug 04 2009 David Cantrell <dcantrell@redhat.com> - 2.1.1-1
- Upgrade to pyparted-2.1.1
* Sun Jul 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.1.0-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
* Thu Jul 16 2009 David Cantrell <dcantrell@redhat.com> - 2.1.0-1
- Upgrade to pyparted-2.1.0, requires parted-1.9.0-1 or higher
2009-07-11 02:09:31 +00:00
* Fri Jul 10 2009 David Cantrell <dcantrell@redhat.com> - 2.0.12-2
- Rebuild for new parted
2009-04-15 03:18:53 +00:00
* Tue Apr 14 2009 David Cantrell <dcantrell@redhat.com> - 2.0.12-1
- Upgrade to pyparted-2.0.12
2009-04-13 19:52:59 +00:00
* Mon Apr 13 2009 David Cantrell <dcantrell@redhat.com> - 2.0.11-1
- Upgrade to pyparted-2.0.11
* Fri Apr 03 2009 David Cantrell <dcantrell@redhat.com> - 2.0.10-1
- Upgrade to pyparted-2.0.10
Fix LVM problems around parted.Disk.commit() (#491746)
2009-03-24 03:56:43 +00:00
* Mon Mar 23 2009 David Cantrell <dcantrell@redhat.com> - 2.0.9-1
- Upgrade to pyparted-2.0.9
2009-03-21 03:32:51 +00:00
* Thu Mar 20 2009 David Cantrell <dcantrell@redhat.com> - 2.0.8-1
- Upgrade to pyparted-2.0.8
2009-03-20 04:37:02 +00:00
* Thu Mar 19 2009 David Cantrell <dcantrell@redhat.com> - 2.0.7-1
- Upgrade to pyparted-2.0.7
2009-03-12 21:15:26 +00:00
* Thu Mar 12 2009 David Cantrell <dcantrell@redhat.com> - 2.0.6-1
- Upgrade to pyparted-2.0.6
2009-03-06 01:08:32 +00:00
* Thu Mar 05 2009 David Cantrell <dcantrell@redhat.com> - 2.0.5-1
- Upgrade to pyparted-2.0.5
2009-03-01 04:52:04 +00:00
* Sat Feb 28 2009 David Cantrell <dcantrell@redhat.com> - 2.0.4-1
- Upgrade to pyparted-2.0.4
2009-02-28 00:57:27 +00:00
* Fri Feb 27 2009 David Cantrell <dcantrell@redhat.com> - 2.0.3-1
- Upgrade to pyparted-2.0.3
2009-02-26 00:52:12 +00:00
* Wed Feb 25 2009 David Cantrell <dcantrell@redhat.com> - 2.0.2-1
- Upgrade to pyparted-2.0.2
2009-02-17 02:27:35 +00:00
* Mon Feb 16 2009 David Cantrell <dcantrell@redhat.com> - 2.0.1-1
- Upgrade to pyparted-2.0.1 (#485632)
2009-02-12 22:05:51 +00:00
* Thu Feb 12 2009 David Cantrell <dcantrell@redhat.com> - 2.0.0-1
- Upgrade to pyparted-2.0.0
2008-11-29 06:16:18 +00:00
* Sat Nov 29 2008 Ignacio Vazquez-Abrams <ivazqueznet+rpm@gmail.com> - 1.8.9-6
- Rebuild for Python 2.6
2008-02-08 21:58:03 +00:00
* Fri Feb 08 2008 David Cantrell <dcantrell@redhat.com> - 1.8.9-5
- Rebuild for gcc-4.3
2008-01-03 02:37:45 +00:00
* Wed Jan 02 2008 David Cantrell <dcantrell@redhat.com> - 1.8.9-4
- Rebuild
2007-11-19 16:34:01 +00:00
* Mon Nov 19 2007 Jeremy Katz <katzj@redhat.com> - 1.8.9-3
- Add support for exact constraints
2007-08-21 19:48:21 +00:00
* Tue Aug 21 2007 David Cantrell <dcantrell@redhat.com> - 1.8.9-2
- Rebuild
* Fri Aug 10 2007 David Cantrell <dcantrell@redhat.com> - 1.8.9-1
- Update license tag to indicate GPL v2 or later
- Update URLs to point to new upstream location
2007-08-08 22:35:48 +00:00
* Fri Jun 15 2007 David Cantrell <dcantrell@redhat.com> - 1.8.8-1
- Clean up wording in package description (#226337)
- BR pkgconfig (#226337)
2007-06-14 18:41:16 +00:00
* Fri Jun 15 2007 David Cantrell <dcantrell@redhat.com> - 1.8.7-1
- Merge review (#226337)
* Mon Apr 23 2007 David Cantrell <dcantrell@redhat.com> - 1.8.6-2
- Ensure build env CFLAGS are included (#226337)
2007-04-20 15:37:57 +00:00
* Fri Apr 19 2007 David Cantrell <dcantrell@redhat.com> - 1.8.6-1
- Merge review (#226337)
2007-03-20 18:32:34 +00:00
* Tue Mar 20 2007 David Cantrell <dcantrell@redhat.com> - 1.8.5-4
- Rebuild for GNU parted-1.8.6
2007-03-20 06:10:00 +00:00
* Tue Mar 20 2007 David Cantrell <dcantrell@redhat.com> - 1.8.5-3
- Rebuild for GNU parted-1.8.5
2007-03-19 19:06:23 +00:00
* Mon Mar 19 2007 David Cantrell <dcantrell@redhat.com> - 1.8.5-2
- Rebuild for GNU parted-1.8.4
* Thu Feb 08 2007 David Cantrell <dcantrell@redhat.com> - 1.8.5-1
- Define and use python_sitearch rather than python_sitelib
* Thu Feb 08 2007 David Cantrell <dcantrell@redhat.com> - 1.8.4-1
- Use preferred BuildRoot (package review)
- Define and use python_sitelib macro (package review)
2007-01-12 20:20:41 +00:00
* Fri Jan 12 2007 David Cantrell <dcantrell@redhat.com> - 1.8.3-1
- Required parted-1.8.2 or higher
* Wed Jan 10 2007 Jeremy Katz <katzj@redhat.com> - 1.8.2-1
- use PyObject_DEL instead of PyMem_DEL
2006-12-07 16:08:37 +00:00
* Thu Dec 7 2006 Jeremy Katz <katzj@redhat.com> - 1.8.1-3
- rebuild for python 2.5
2006-12-05 16:01:50 +00:00
* Tue Dec 05 2006 David Cantrell <dcantrell@redhat.com> - 1.8.1-2
- Rebuild for GNU parted-1.8.1
* Thu Nov 30 2006 David Cantrell <dcantrell@redhat.com> - 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 <dcantrell@redhat.com> - 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
2006-10-04 21:09:24 +00:00
* Wed Aug 30 2006 David Cantrell <dcantrell@redhat.com> - 1.7.3-1
- Include parted/constraint.h in required header files
* Wed Aug 30 2006 David Cantrell <dcantrell@redhat.com> - 1.7.2-2
- Require parted-1.7.1 or higher
2006-07-25 17:26:46 +00:00
* Tue Jul 25 2006 David Cantrell <dcantrell@redhat.com> - 1.7.2-1
- Add HPSERVICE, PALO, PREP, and MSFT_RESERVED to partition types list
2006-07-12 07:55:45 +00:00
* Wed Jul 12 2006 Jesse Keating <jkeating@redhat.com> - 1.7.1-1.1
- rebuild
2006-05-29 14:37:54 +00:00
* Sun May 28 2006 David Cantrell <dcantrell@redhat.com> - 1.7.1-1
- Bump version to 1.7.1 and require parted >= 1.7.1
2006-05-19 20:50:30 +00:00
* Fri May 19 2006 David Cantrell <dcantrell@redhat.com> - 1.7.0-1
- Bump version to 1.7.0 and require parted >= 1.7.0
2006-02-07 13:39:22 +00:00
2005-12-09 22:42:52 +00:00
* Fri Dec 09 2005 Jesse Keating <jkeating@redhat.com>
- rebuilt
2005-11-11 22:16:15 +00:00
* Fri Nov 11 2005 Peter Jones <pjones@redhat.com> - 1.6.10-1
- rebuild for new parted.
- add debugging options for make so debuginfo isn't useless
2005-11-09 23:44:31 +00:00
* Wed Nov 9 2005 Jeremy Katz <katzj@redhat.com> - 1.6.9-5
- rebuild for new parted
* Wed Aug 31 2005 Chris Lumens <clumens@redhat.com> 1.6.9-4
- Rebuilt for new parted library.
* Wed Mar 16 2005 Chris Lumens <clumens@redhat.com> 1.6.9-3
- Updated for gcc4 and python2.4. Fixed build warnings.
2004-12-14 21:48:12 +00:00
* Tue Dec 14 2004 Jeremy Katz <katzj@redhat.com> - 1.6.9-2
- add support for sx8 devices
2004-11-08 21:46:35 +00:00
* Mon Nov 8 2004 Jeremy Katz <katzj@redhat.com> - 1.6.8-3
- rebuild for python 2.4
2004-10-12 01:28:00 +00:00
* Mon Oct 11 2004 Warren Togami <wtogami@redhat.com> - 1.6.8-2
- #135100 req python-abi (Robert Scheck)
* Tue Aug 17 2004 Jeremy Katz <katzj@redhat.com> - 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 <katzj@redhat.com> - 1.6.7-3
- build on ppc64 again
* Thu May 13 2004 Jeremy Katz <katzj@redhat.com> - 1.6.7-1
- fix build for newer versions of gcc (fix from Jeff Law)
* Tue Mar 16 2004 Jeremy Katz <katzj@redhat.com> 1.6.6-2
- fix PARTITION_PROTECTED definition (#118451)
* Fri Mar 12 2004 Jeremy Katz <katzj@redhat.com>
- Initial build split out into separate source from the parted package.
- Don't build on ppc64 right now due to parted build problems (#118183)