2004-09-09 09:57:06 +00:00
|
|
|
%define _sbindir /sbin
|
2008-01-14 08:10:01 +00:00
|
|
|
%define _libdir /%{_lib}
|
2004-09-09 09:57:06 +00:00
|
|
|
|
2007-02-08 16:00:22 +00:00
|
|
|
Summary: The GNU disk partition manipulation program
|
2006-08-22 20:43:14 +00:00
|
|
|
Name: parted
|
2008-01-03 02:26:18 +00:00
|
|
|
Version: 1.8.8
|
2008-12-13 17:46:59 +00:00
|
|
|
Release: 11%{?dist}
|
2008-01-03 02:26:18 +00:00
|
|
|
License: GPLv3+
|
2007-04-11 16:33:52 +00:00
|
|
|
Group: Applications/System
|
2007-04-19 18:52:23 +00:00
|
|
|
URL: http://www.gnu.org/software/parted
|
2006-06-15 20:16:26 +00:00
|
|
|
|
2007-04-19 18:52:23 +00:00
|
|
|
Source: ftp://ftp.gnu.org/gnu/%{name}/%{name}-%{version}.tar.bz2
|
2008-01-03 02:26:18 +00:00
|
|
|
Patch0: %{name}-1.8.8-xvd.patch
|
|
|
|
Patch1: %{name}-1.8.8-devmapper-header.patch
|
|
|
|
Patch2: %{name}-1.8.8-noinst-headers.patch
|
|
|
|
Patch3: %{name}-1.8.8-manpage.patch
|
2008-02-05 22:42:44 +00:00
|
|
|
Patch4: %{name}-1.8.8-gcc-4.3.patch
|
2008-04-10 19:24:21 +00:00
|
|
|
Patch5: %{name}-1.8.8-nofixgpt.patch
|
2008-04-10 20:37:13 +00:00
|
|
|
Patch6: %{name}-1.8.8-alpha.patch
|
2008-05-29 17:26:02 +00:00
|
|
|
Patch7: %{name}-1.8.8-dospartrec.patch
|
2008-06-05 19:45:57 +00:00
|
|
|
Patch8: %{name}-1.8.8-appletv.patch
|
2008-11-06 13:31:20 +00:00
|
|
|
Patch9: %{name}-1.8.8-s390-compile.patch
|
2008-12-13 17:09:55 +00:00
|
|
|
Patch10: %{name}-1.8.8-sparc-enableraid.patch
|
2007-03-20 18:18:19 +00:00
|
|
|
|
2007-02-08 16:00:22 +00:00
|
|
|
Buildroot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
|
2007-12-14 03:34:30 +00:00
|
|
|
BuildRequires: e2fsprogs-devel
|
|
|
|
BuildRequires: readline-devel
|
|
|
|
BuildRequires: ncurses-devel
|
|
|
|
BuildRequires: libtool
|
|
|
|
BuildRequires: gettext-devel
|
|
|
|
BuildRequires: texinfo
|
|
|
|
BuildRequires: device-mapper-devel
|
|
|
|
BuildRequires: libselinux-devel
|
2006-03-14 21:12:47 +00:00
|
|
|
|
2007-04-11 16:33:52 +00:00
|
|
|
Requires(post): /sbin/ldconfig
|
|
|
|
Requires(post): /sbin/install-info
|
|
|
|
Requires(preun): /sbin/install-info
|
|
|
|
Requires(postun): /sbin/ldconfig
|
2004-09-09 10:00:21 +00:00
|
|
|
|
2004-09-09 09:51:30 +00:00
|
|
|
%description
|
2004-09-09 09:52:03 +00:00
|
|
|
The GNU Parted program allows you to create, destroy, resize, move,
|
|
|
|
and copy hard disk partitions. Parted can be used for creating space
|
|
|
|
for new operating systems, reorganizing disk usage, and copying data
|
2004-09-09 09:51:30 +00:00
|
|
|
to new hard disks.
|
|
|
|
|
|
|
|
%package devel
|
2007-04-19 18:52:23 +00:00
|
|
|
Summary: Files for developing apps which will manipulate disk partitions
|
2007-04-11 16:33:52 +00:00
|
|
|
Group: Development/Libraries
|
2007-12-14 03:34:30 +00:00
|
|
|
Requires: %{name} = %{version}-%{release}
|
|
|
|
Requires: pkgconfig
|
|
|
|
|
2004-09-09 09:51:30 +00:00
|
|
|
%description devel
|
2004-09-09 09:52:03 +00:00
|
|
|
The GNU Parted library is a set of routines for hard disk partition
|
|
|
|
manipulation. If you want to develop programs that manipulate disk
|
|
|
|
partitions and filesystems using the routines provided by the GNU
|
|
|
|
Parted library, you need to install this package.
|
2004-09-09 09:51:30 +00:00
|
|
|
|
|
|
|
%prep
|
|
|
|
%setup -q
|
2008-01-03 02:26:18 +00:00
|
|
|
%patch0 -p1 -b .xvd
|
|
|
|
%patch1 -p1 -b .devmapper
|
|
|
|
%patch2 -p1 -b .noinst
|
|
|
|
%patch3 -p1 -b .manpage
|
2008-02-05 22:42:44 +00:00
|
|
|
%patch4 -p1 -b .gcc43
|
2008-04-10 19:24:21 +00:00
|
|
|
%patch5 -p1 -b .nofixgpt
|
2008-04-10 20:37:13 +00:00
|
|
|
%patch6 -p1 -b .alpha
|
2008-05-29 17:26:02 +00:00
|
|
|
%patch7 -p1 -b .dospartrec
|
2008-06-05 19:45:57 +00:00
|
|
|
%patch8 -p1 -b .appletv
|
2008-11-06 13:31:20 +00:00
|
|
|
%patch9 -p1 -b .s390-compile
|
2008-12-13 17:09:55 +00:00
|
|
|
%patch10 -p1 -b .sparc-raid
|
2004-09-09 10:02:38 +00:00
|
|
|
|
2004-09-09 09:51:30 +00:00
|
|
|
%build
|
2007-04-13 15:23:49 +00:00
|
|
|
%configure --enable-device-mapper --enable-selinux --disable-static
|
2007-03-19 18:39:07 +00:00
|
|
|
%{__make} %{?_smp_mflags}
|
2004-09-09 10:00:21 +00:00
|
|
|
|
2004-09-09 09:51:30 +00:00
|
|
|
%install
|
2007-03-19 18:39:07 +00:00
|
|
|
%{__rm} -rf %{buildroot}
|
|
|
|
%{__make} install DESTDIR=%{buildroot}
|
2008-01-14 08:10:01 +00:00
|
|
|
|
|
|
|
# Move devel package components in to the correct location
|
|
|
|
%{__mkdir} -p %{buildroot}%{_exec_prefix}/%{_lib}
|
|
|
|
%{__mv} %{buildroot}%{_libdir}/libparted.so %{buildroot}%{_exec_prefix}/%{_lib}
|
|
|
|
%{__mv} %{buildroot}%{_libdir}/pkgconfig %{buildroot}%{_exec_prefix}/%{_lib}
|
|
|
|
pushd %{buildroot}%{_exec_prefix}/%{_lib}
|
|
|
|
reallibrary="$(readlink libparted.so)"
|
|
|
|
%{__rm} -f libparted.so
|
|
|
|
ln -sf ../../%{_lib}/${reallibrary} libparted.so
|
|
|
|
popd
|
|
|
|
|
|
|
|
# Remove components we do not ship
|
2007-03-19 18:39:07 +00:00
|
|
|
%{__rm} -rf %{buildroot}%{_libdir}/*.la
|
|
|
|
%{__rm} -rf %{buildroot}%{_infodir}/dir
|
2008-01-03 02:26:18 +00:00
|
|
|
%{__rm} -rf %{buildroot}%{_bindir}/label
|
2004-09-09 09:51:40 +00:00
|
|
|
|
2007-03-20 05:37:27 +00:00
|
|
|
%find_lang %{name}
|
|
|
|
|
2004-09-09 09:51:30 +00:00
|
|
|
%clean
|
2007-03-19 18:39:07 +00:00
|
|
|
%{__rm} -rf %{buildroot}
|
2004-09-09 09:51:30 +00:00
|
|
|
|
2007-04-11 16:33:52 +00:00
|
|
|
%post
|
2004-09-09 10:01:57 +00:00
|
|
|
/sbin/ldconfig
|
2007-03-19 18:39:07 +00:00
|
|
|
/sbin/install-info %{_infodir}/parted.info.gz %{_infodir}/dir || :
|
2004-09-09 09:52:03 +00:00
|
|
|
|
2006-06-26 16:14:18 +00:00
|
|
|
%preun
|
2007-04-11 16:33:52 +00:00
|
|
|
if [ $1 = 0 ]; then
|
|
|
|
/sbin/install-info --delete %{_infodir}/parted.info.gz %{_infodir}/dir >/dev/null 2>&1 || :
|
2006-06-26 16:14:18 +00:00
|
|
|
fi
|
|
|
|
|
2007-04-11 16:33:52 +00:00
|
|
|
%postun -p /sbin/ldconfig
|
2004-09-09 09:52:03 +00:00
|
|
|
|
2007-03-20 05:37:27 +00:00
|
|
|
%files -f %{name}.lang
|
2007-03-19 18:39:07 +00:00
|
|
|
%defattr(-,root,root,-)
|
2004-09-09 10:00:21 +00:00
|
|
|
%doc AUTHORS BUGS COPYING ChangeLog NEWS README THANKS TODO doc/API doc/FAT
|
2007-03-19 18:39:07 +00:00
|
|
|
%{_sbindir}/parted
|
|
|
|
%{_sbindir}/partprobe
|
|
|
|
%{_mandir}/man8/parted.8.gz
|
|
|
|
%{_mandir}/man8/partprobe.8.gz
|
|
|
|
%{_libdir}/libparted-*.so.*
|
|
|
|
%{_infodir}/parted.info.gz
|
2004-09-09 09:51:30 +00:00
|
|
|
|
|
|
|
%files devel
|
2007-03-19 18:39:07 +00:00
|
|
|
%defattr(-,root,root,-)
|
|
|
|
%{_includedir}/parted
|
2008-01-14 08:10:01 +00:00
|
|
|
%{_exec_prefix}/%{_lib}/libparted.so
|
|
|
|
%{_exec_prefix}/%{_lib}/pkgconfig/libparted.pc
|
2004-09-09 09:51:30 +00:00
|
|
|
|
|
|
|
%changelog
|
2008-12-13 17:46:59 +00:00
|
|
|
* Sat Dec 13 2008 Tom "spot" Callaway <tcallawa@redhat.com> - 1.8.8-11
|
|
|
|
- fix typo in last patch
|
|
|
|
|
2008-12-13 17:09:55 +00:00
|
|
|
* Sat Dec 13 2008 Tom "spot" Callaway <tcallawa@redhat.com> - 1.8.8-10
|
|
|
|
- enable RAID partition types on sun disklabels for sparc
|
|
|
|
|
2008-11-06 13:31:20 +00:00
|
|
|
* Thu Nov 06 2008 Joel Granados <jgranado@redhat.com> - 1.8.8-9
|
|
|
|
- Fix the build for the s390(x) archs (#470211).
|
|
|
|
|
2008-06-05 21:32:09 +00:00
|
|
|
* Thu Jun 05 2008 Peter Jones <pjones@redhat.com> - 1.8.8-8
|
|
|
|
- Fix some of the atvrecv code (and the msftres code) so that the flags
|
|
|
|
actually stick.
|
|
|
|
|
2008-06-05 19:45:57 +00:00
|
|
|
* Thu Jun 05 2008 Peter Jones <pjones@redhat.com> - 1.8.8-7
|
|
|
|
- Added "atvrecv" flag patch from atv-bootloader project.
|
|
|
|
|
2008-05-29 17:26:02 +00:00
|
|
|
* Thu May 29 2008 Joel Granados <jgranado@redhat.com> - 1.8.8-6
|
|
|
|
- Do a better job at recognizing the dos partition. (#246423)
|
|
|
|
|
2008-04-10 20:37:13 +00:00
|
|
|
* Thu Apr 10 2008 David Cantrell <dcantrell@redhat.com> - 1.8.8-5
|
|
|
|
- Allow RAID or LVM partition types on BSD disklabels.
|
|
|
|
(jay.estabrook AT hp.com, #427114)
|
|
|
|
|
2008-04-10 19:24:21 +00:00
|
|
|
* Thu Apr 10 2008 Peter Jones <pjones@redhat.com> - 1.8.8-4
|
|
|
|
- Don't interactively ask to fix an AlternateGPT's location when not
|
|
|
|
at the end of the disk; this is so that disk images written to a
|
|
|
|
usb-key can work reasonably.
|
|
|
|
|
2008-02-05 22:42:44 +00:00
|
|
|
* Mon Feb 04 2008 David Cantrell <dcantrell@redhat.com> - 1.8.8-3
|
|
|
|
- Fixes so parted compiles with gcc-4.3 (#431397)
|
|
|
|
|
2008-01-14 08:11:56 +00:00
|
|
|
* Sun Jan 13 2008 David Cantrell <dcantrell@redhat.com> - 1.8.8-2
|
2008-01-14 08:10:01 +00:00
|
|
|
- Move libparted libraries to /lib (#428420)
|
|
|
|
|
2008-01-03 02:26:18 +00:00
|
|
|
* Wed Jan 02 2008 David Cantrell <dcantrell@redhat.com> - 1.8.8-1
|
|
|
|
- Upgraded to GNU parted-1.8.8
|
|
|
|
- License for GNU parted is now GPLv3+
|
|
|
|
|
2007-12-14 03:34:30 +00:00
|
|
|
* Thu Dec 13 2007 David Cantrell <dcantrell@redhat.com> - 1.8.6-13
|
|
|
|
- Modify parted man page to indicate which flags are valid for which
|
|
|
|
disk labels (#242711)
|
|
|
|
|
2007-11-05 19:17:23 +00:00
|
|
|
* Mon Nov 05 2007 David Cantrell <dcantrell@redhat.com> - 1.8.6-12
|
|
|
|
- Add KNOWN ISSUES section to parted(8) man page explaining that we cannot
|
|
|
|
currently do ext3 resizing inside parted (#367101)
|
|
|
|
- Update the xvd patch to include 'xvd' in the string table that parted
|
|
|
|
uses when printing device types (#366971)
|
|
|
|
- Do not install the linux.h or gnu.h headers
|
|
|
|
|
2007-10-30 19:15:47 +00:00
|
|
|
* Tue Oct 30 2007 David Cantrell <dcantrell@redhat.com> - 1.8.6-11
|
|
|
|
- Do not install fdasd.h and vtoc.h header files
|
|
|
|
|
2007-10-04 20:13:31 +00:00
|
|
|
* Thu Oct 04 2007 David Cantrell <dcantrell@redhat.com> - 1.8.6-10
|
|
|
|
- Do not install the testsuite tools
|
|
|
|
|
2007-10-04 19:52:24 +00:00
|
|
|
* Thu Oct 04 2007 David Cantrell <dcantrell@redhat.com> - 1.8.6-9
|
|
|
|
- Always define PED_DEVICE_DM regardless of compile time options
|
|
|
|
|
2007-08-21 18:24:24 +00:00
|
|
|
* Tue Aug 21 2007 David Cantrell <dcantrell@redhat.com> - 1.8.6-8
|
|
|
|
- Rebuild
|
|
|
|
|
2007-08-08 22:29:49 +00:00
|
|
|
* Wed Aug 08 2007 David Cantrell <dcantrell@redhat.com> - 1.8.6-7
|
|
|
|
- Update License tag to GPLv2+
|
|
|
|
|
2007-08-07 18:11:31 +00:00
|
|
|
* Tue Aug 07 2007 David Cantrell <dcantrell@redhat.com> - 1.8.6-6
|
|
|
|
- Detect Xen virtual block devices and set model name appropriately
|
|
|
|
|
2007-04-19 18:52:23 +00:00
|
|
|
* Thu Apr 19 2007 David Cantrell <dcantrell@redhat.com> - 1.8.6-5
|
|
|
|
- Spec file cleanups for merge review (#226230)
|
|
|
|
|
2007-04-13 15:23:49 +00:00
|
|
|
* Fri Apr 13 2007 David Cantrell <dcantrell@redhat.com> - 1.8.6-4
|
|
|
|
- Fix primary partition cylinder alignment error for DOS disk labels (#229745)
|
|
|
|
- Do not build and package up libparted.a, only the shared library
|
|
|
|
|
2007-04-11 16:33:52 +00:00
|
|
|
* Wed Apr 11 2007 David Cantrell <dcantrell@redhat.com> - 1.8.6-3
|
|
|
|
- Fix off-by-one bug in parted(8) when displaying disk label (#235901)
|
|
|
|
|
2007-03-21 15:02:34 +00:00
|
|
|
* Wed Mar 21 2007 David Cantrell <dcantrell@redhat.com> - 1.8.6-2
|
|
|
|
- Do not translate partition name from disk label (#224182)
|
|
|
|
|
2007-03-20 17:51:52 +00:00
|
|
|
* Tue Mar 20 2007 David Cantrell <dcantrell@redhat.com> - 1.8.6-1
|
|
|
|
- Upgrade to GNU parted-1.8.6, summary of major change(s):
|
|
|
|
a) Revert linux-swap(new) and linux-swap(old) fs types, it's
|
|
|
|
linux-swap for all swap types (#233085)
|
|
|
|
|
2007-03-20 05:13:09 +00:00
|
|
|
* Tue Mar 20 2007 David Cantrell <dcantrell@redhat.com> - 1.8.5-1
|
|
|
|
- Upgrade to GNU parted-1.8.5 (added missing po files)
|
|
|
|
|
2007-03-19 18:39:07 +00:00
|
|
|
* Fri Mar 16 2007 David Cantrell <dcantrell@redhat.com> - 1.8.4-1
|
|
|
|
- Upgrade to GNU parted-1.8.4, summary of major changes:
|
|
|
|
a) Update to use newest GNU developer tools
|
|
|
|
b) Use gnulib, the GNU portability library
|
|
|
|
c) HFS+ resize support
|
|
|
|
d) Windows Vista fixes
|
|
|
|
e) AIX disk label fixes
|
|
|
|
f) >512 byte logical sector read support on Linux
|
|
|
|
- Spec file cleanups per Fedora packaging guidelines
|
|
|
|
|
2007-02-08 16:00:22 +00:00
|
|
|
* Thu Feb 08 2007 David Cantrell <dcantrell@redhat.com> - 1.8.2-5
|
|
|
|
- Remove period from end of summary line (package review)
|
|
|
|
- Use preferred BuildRoot (package review)
|
2007-02-08 16:27:14 +00:00
|
|
|
- BR device-mapper-devel
|
2007-02-08 16:00:22 +00:00
|
|
|
|
2007-01-30 20:11:29 +00:00
|
|
|
* Tue Jan 30 2007 David Cantrell <dcantrell@redhat.com> - 1.8.2-4
|
|
|
|
- Patched parted.8 man page to show partition names apply to GPT disklabels
|
|
|
|
as well as Mac and PC98 disklabels (#221600)
|
|
|
|
|
2007-01-22 21:13:16 +00:00
|
|
|
* Mon Jan 22 2007 David Cantrell <dcantrell@redhat.com> - 1.8.2-3
|
|
|
|
- Remove BR for libtermcap-devel
|
|
|
|
- Specifically preserve starting alignment of 0x800 on Windows Vista
|
|
|
|
(see http://support.microsoft.com/kb/923332 for details)
|
|
|
|
- Fix incorrect sector parameter used to initialize a new PedAlignment
|
|
|
|
|
2007-01-19 16:47:02 +00:00
|
|
|
* Thu Jan 18 2007 David Cantrell <dcantrell@redhat.com> - 1.8.2-2
|
|
|
|
- Preserve starting sector for primary NTFS 3.1 partitions (Windows
|
|
|
|
Vista) when modifying the DOS disk label. NTFS 3.1 partitions do
|
|
|
|
not start on the 2nd head of the 1st cylinder at the beginning of
|
|
|
|
the drive.
|
|
|
|
|
2007-01-12 20:07:49 +00:00
|
|
|
* Fri Jan 12 2007 David Cantrell <dcantrell@redhat.com> - 1.8.2-1
|
|
|
|
- Upgrade to GNU parted-1.8.2
|
|
|
|
|
2006-12-15 20:59:23 +00:00
|
|
|
* Fri Dec 15 2006 David Cantrell <dcantrell@redhat.com> - 1.8.1-2
|
|
|
|
- Fix a segfault when initializing new volumes (pjones)
|
|
|
|
|
2006-12-04 20:09:55 +00:00
|
|
|
* Mon Dec 04 2006 David Cantrell <dcantrell@redhat.com> - 1.8.1-1
|
|
|
|
- Upgrade to GNU parted-1.8.1
|
|
|
|
|
2006-11-17 19:11:11 +00:00
|
|
|
* Fri Nov 17 2006 David Cantrell <dcantrell@redhat.com> - 1.8.0-1
|
2006-12-04 20:09:55 +00:00
|
|
|
- Upgrade to GNU parted-1.8.0
|
2006-11-17 19:11:11 +00:00
|
|
|
|
2006-11-02 22:58:05 +00:00
|
|
|
* Thu Nov 02 2006 David Cantrell <dcantrell@redhat.com> - 1.7.1-18
|
|
|
|
- Detect Apple_Boot partition types correctly (#204714)
|
|
|
|
|
2006-10-26 20:34:12 +00:00
|
|
|
* Thu Oct 26 2006 David Cantrell <dcantrell@redhat.com> - 1.7.1-17
|
|
|
|
- For init_generic() failures on user-mode Linux block devices, goto
|
|
|
|
error_free_arch_specific instead of error_free_dev.
|
|
|
|
|
2006-10-04 20:32:16 +00:00
|
|
|
* Wed Oct 04 2006 David Cantrell <dcantrell@redhat.com> - 1.7.1-16
|
|
|
|
- Don't throw PED_EXCEPTION_ERROR in ped_geometry_read() if accessing
|
|
|
|
sectors outside of partition boundary, since returning false will
|
|
|
|
shift ped_geometry_check() to the correct sectors.
|
2006-09-13 17:52:43 +00:00
|
|
|
|
2006-08-23 17:58:19 +00:00
|
|
|
* Wed Aug 23 2006 David Cantrell <dcantrell@redhat.com> - 1.7.1-15
|
|
|
|
- Fixed gpt patch (*asked_already -> asked_already, whoops)
|
|
|
|
|
2006-08-22 20:43:14 +00:00
|
|
|
* Tue Aug 22 2006 David Cantrell <dcantrell@redhat.com> - 1.7.1-14
|
|
|
|
- Improve error message returned by _parse_header() on GPT-labeled disks
|
|
|
|
so users actually have an idea of how to correct the problem
|
|
|
|
- Fix off-by-one error with LastUsableLBA and PartitionEntryLBA overlap
|
|
|
|
to prevent possible data corruption when using non-parted GPT editing
|
|
|
|
tools
|
|
|
|
|
2006-08-21 20:49:16 +00:00
|
|
|
* Mon Aug 21 2006 Peter Jones <pjones@redhat.com> - 1.7.1-13
|
|
|
|
- Don't use the "volume name" as the device node name on dm device
|
|
|
|
partitions, it isn't really what we want at all.
|
|
|
|
|
2006-08-17 17:52:06 +00:00
|
|
|
* Thu Aug 17 2006 David Cantrell <dcantrell@redhat.com> - 1.7.1-12
|
|
|
|
- Updated O_DIRECT patch to work around s390 problems
|
|
|
|
- Update LastUsableLBA on GPT-labeled disks after LUN resize (#194238)
|
|
|
|
- Fix exception when backup GPT table is not in the correction location
|
|
|
|
and parted tries to move it (#194238)
|
|
|
|
|
2006-08-15 20:04:16 +00:00
|
|
|
* Tue Aug 15 2006 David Cantrell <dcantrell@redhat.com> - 1.7.1-11
|
|
|
|
- Expand error buffer to 8192 bytes in vtoc_error()
|
|
|
|
- Do not apply O_DIRECT patch on S/390 or S/390x platforms
|
|
|
|
|
2006-08-14 18:27:16 +00:00
|
|
|
* Mon Aug 14 2006 David Cantrell <dcantrell@redhat.com> - 1.7.1-10
|
|
|
|
- Removed bad header file patch (#200577)
|
|
|
|
|
2006-07-12 07:38:51 +00:00
|
|
|
* Wed Jul 12 2006 Jesse Keating <jkeating@redhat.com> - 1.7.1-9.1
|
|
|
|
- rebuild
|
|
|
|
|
2006-07-05 19:36:55 +00:00
|
|
|
* Wed Jul 5 2006 Peter Jones <pjones@redhat.com> - 1.7.1-9
|
|
|
|
- add ped_exception_get_handler()
|
|
|
|
|
|
|
|
* Mon Jun 26 2006 Florian La Roche <laroche@redhat.com> - 1.7.1-8
|
2006-06-26 16:14:18 +00:00
|
|
|
- remove info files in preun
|
|
|
|
|
2006-06-22 18:35:07 +00:00
|
|
|
* Thu Jun 22 2006 David Cantrell <dcantrell@redhat.com> - 1.7.1-7
|
|
|
|
- PED_SECTOR_SIZE -> PED_SECTOR_SIZE_DEFAULT
|
|
|
|
|
2006-06-22 18:26:53 +00:00
|
|
|
* Thu Jun 22 2006 David Cantrell <dcantrell@redhat.com> - 1.7.1-6
|
|
|
|
- Roll dasd patches together
|
|
|
|
- Use O_DIRECT to prevent first partition corruption on GPT disks
|
|
|
|
|
2006-06-15 20:16:26 +00:00
|
|
|
* Thu Jun 15 2006 Jeremy Katz <katzj@redhat.com> - 1.7.1-5
|
|
|
|
- fix segfaults with dasd devices
|
|
|
|
|
2006-06-07 21:39:07 +00:00
|
|
|
* Wed Jun 7 2006 Jeremy Katz <katzj@redhat.com> - 1.7.1-4
|
|
|
|
- move .so symlink to -devel subpackage
|
|
|
|
|
2006-05-29 14:47:27 +00:00
|
|
|
* Sun May 28 2006 David Cantrell <dcantrell@redhat.com> - 1.7.1-3
|
|
|
|
- Rebuild
|
|
|
|
|
2006-05-29 02:03:00 +00:00
|
|
|
* Sun May 28 2006 David Cantrell <dcantrell@redhat.com> - 1.7.1-2
|
|
|
|
- Removed mac-swraid patch (added upstream)
|
|
|
|
- Updated device-mapper patch for parted-1.7.1
|
|
|
|
|
2006-05-27 11:55:09 +00:00
|
|
|
* Sat May 27 2006 David Cantrell <dcantrell@redhat.com> - 1.7.1-1
|
|
|
|
- Upgraded to parted-1.7.1
|
|
|
|
|
2006-05-19 17:05:12 +00:00
|
|
|
* Fri May 19 2006 David Cantrell <dcantrell@redhat.com> - 1.7.0-1
|
|
|
|
- Upgraded to parted-1.7.0
|
|
|
|
|
2006-04-13 15:35:20 +00:00
|
|
|
* Thu Apr 13 2006 David Cantrell <dcantrell@redhat.com> - 1.6.25.1-1
|
|
|
|
- Upgraded to parted-1.6.25.1
|
|
|
|
- BuildRequires libtool
|
|
|
|
|
2006-03-14 21:12:47 +00:00
|
|
|
* Tue Mar 14 2006 Jeremy Katz <katzj@redhat.com> - 1.6.25-8
|
|
|
|
- fix ppc swraid
|
|
|
|
- BR gettext-devel
|
|
|
|
|
2006-02-23 02:02:46 +00:00
|
|
|
* Wed Feb 22 2006 Peter Jones <pjones@redhat.com> - 1.6.25-7
|
|
|
|
- close /proc/devices correctly
|
|
|
|
|
2006-02-11 04:56:26 +00:00
|
|
|
* Fri Feb 10 2006 Jesse Keating <jkeating@redhat.com> - 1.6.25-6.1
|
|
|
|
- bump again for double-long bug on ppc(64)
|
|
|
|
|
2006-02-07 23:13:12 +00:00
|
|
|
* Tue Feb 7 2006 Peter Jones <pjones@redhat.com> 1.6.25-6
|
|
|
|
- Fix dm partition naming.
|
|
|
|
|
|
|
|
* Tue Feb 7 2006 Jesse Keating <jkeating@redhat.com> 1.6.25-5.2
|
2006-02-07 13:24:16 +00:00
|
|
|
- rebuilt for new gcc4.1 snapshot and glibc changes
|
|
|
|
|
2006-02-07 23:13:12 +00:00
|
|
|
* Fri Dec 9 2005 Jesse Keating <jkeating@redhat.com>
|
2005-12-09 22:42:38 +00:00
|
|
|
- rebuilt
|
|
|
|
|
2005-12-02 22:09:30 +00:00
|
|
|
* Fri Dec 2 2005 Peter Jones <pjones@redhat.com> 1.6.25-5
|
|
|
|
- rebuild for new device-mapper
|
|
|
|
|
2005-12-01 22:23:20 +00:00
|
|
|
* Thu Dec 1 2005 Peter Jones <pjones@redhat.com> 1.6.25-4
|
|
|
|
- change device-mapper code to call dm_task_update_nodes() after
|
|
|
|
tasks which change device nodes.
|
|
|
|
|
2005-11-17 04:39:06 +00:00
|
|
|
* Wed Nov 16 2005 Peter Jones <pjones@redhat.com> 1.6.25-3
|
|
|
|
- fix /proc/devices parser bug
|
|
|
|
|
2005-11-16 00:40:42 +00:00
|
|
|
* Tue Nov 15 2005 Peter Jones <pjones@redhat.com> 1.6.25-2
|
|
|
|
- add support for partitions on dm devices
|
|
|
|
|
2005-11-09 19:18:54 +00:00
|
|
|
* Wed Nov 09 2005 Chris Lumens <clumens@redhat.com> 1.6.25-1
|
|
|
|
- Updated to 1.6.25.
|
|
|
|
- Update DASD, iseries, and SX8 patches.
|
|
|
|
|
2005-08-30 15:10:19 +00:00
|
|
|
* Tue Aug 30 2005 Chris Lumens <clumens@redhat.com> 1.6.24-1
|
|
|
|
- Updated to 1.6.24.
|
|
|
|
|
2005-07-18 14:22:40 +00:00
|
|
|
* Mon Jul 18 2005 Chris Lumens <clumens@redhat.com> 1.6.23-2
|
|
|
|
- Add buildreq for texinfo.
|
|
|
|
|
2005-07-08 15:24:52 +00:00
|
|
|
* Fri Jul 08 2005 Chris Lumens <clumens@redhat.com> 1.6.23-1
|
|
|
|
- Updated to 1.6.23.
|
|
|
|
- Get rid of separate Mac patches that are now included in upstream.
|
|
|
|
- Update DASD and AIX patches.
|
|
|
|
|
2005-06-07 15:05:28 +00:00
|
|
|
* Tue Jun 07 2005 Chris Lumens <clumens@redhat.com> 1.6.22-3
|
|
|
|
- Modified Apple_Free patch to take care of the case where the partitions
|
|
|
|
are unnamed, causing many errors to be printed (#159047).
|
|
|
|
|
2005-05-05 14:13:41 +00:00
|
|
|
* Thu May 05 2005 Chris Lumens <clumens@redhat.com> 1.6.22-2
|
|
|
|
- Added upstream patch to display certain Apple_Free partitions (#154479).
|
|
|
|
|
2005-03-23 15:39:41 +00:00
|
|
|
* Wed Mar 23 2005 Chris Lumens <clumens@redhat.com> 1.6.22-1
|
|
|
|
- Updated to 1.6.22.
|
|
|
|
- Get rid of separate gc4 patch that's now included upstream.
|
|
|
|
- Take Mac LVM patch from parted CVS.
|
|
|
|
|
2005-03-14 18:58:48 +00:00
|
|
|
* Mon Mar 14 2005 Chris Lumens <clumens@redhat.com> 1.6.21-3
|
|
|
|
- Include patches from parted CVS for new gcc4 warnings.
|
|
|
|
|
2005-02-21 04:22:46 +00:00
|
|
|
* Sun Feb 20 2005 Paul Nasrat <pnasrat@redhat.com> 1.6.21-2
|
|
|
|
- Support lvm flags on mac partitions (#121266)
|
|
|
|
|
2005-01-21 20:19:33 +00:00
|
|
|
* Fri Jan 21 2005 Chris Lumens <clumens@redhat.com> 1.6.21-1
|
|
|
|
- Updated to 1.6.21
|
|
|
|
|
2005-01-12 15:27:03 +00:00
|
|
|
* Wed Jan 12 2005 Tim Waugh <twaugh@redhat.com> 1.6.20-2
|
|
|
|
- Rebuilt for new readline.
|
|
|
|
|
2005-01-07 20:19:20 +00:00
|
|
|
* Fri Jan 07 2005 Chris Lumens <clumens@redhat.com> 1.6.20-1
|
|
|
|
- Updated to 1.6.20 (#139257, #142100).
|
|
|
|
- Updated DASD and AIX patches for 1.6.20.
|
|
|
|
|
2004-12-14 21:37:56 +00:00
|
|
|
* Tue Dec 14 2004 Jeremy Katz <katzj@redhat.com> - 1.6.19-2
|
|
|
|
- add support for Promise SX8 devices
|
|
|
|
|
2004-11-28 22:18:21 +00:00
|
|
|
* Sun Nov 28 2004 Jeremy Katz <katzj@redhat.com> - 1.6.19-1
|
2004-11-30 22:51:00 +00:00
|
|
|
- update to 1.6.19 (#138419)
|
2004-11-28 22:18:21 +00:00
|
|
|
|
2004-11-22 04:07:34 +00:00
|
|
|
* Sun Nov 21 2004 Jeremy Katz <katzj@redhat.com> - 1.6.18-1
|
|
|
|
- update to 1.6.18
|
|
|
|
|
2004-11-20 20:18:46 +00:00
|
|
|
* Sat Nov 20 2004 Miloslav Trmac <mitr@redhat.com> - 1.6.16-3
|
|
|
|
- Convert pt_BR-parted.8 to UTF-8
|
|
|
|
|
2004-11-11 21:36:54 +00:00
|
|
|
* Thu Nov 11 2004 Jeremy Katz <katzj@redhat.com> - 1.6.16-2
|
|
|
|
- add patch from Matt Domsch to fix consistency of GPT disk labels
|
|
|
|
with the EFI specification for disks > 2TB (#138480)
|
|
|
|
- understand the new Sun UFS partition ID
|
|
|
|
- merge the new geometry probing from CVS to see if that helps the
|
|
|
|
assertions people are seeing (#138419)
|
|
|
|
|
2004-11-08 19:47:19 +00:00
|
|
|
* Mon Nov 8 2004 Jeremy Katz <katzj@redhat.com> - 1.6.16-1
|
|
|
|
- update to 1.6.16
|
|
|
|
- rebuild for python 2.4
|
|
|
|
|
2004-10-18 17:06:54 +00:00
|
|
|
* Mon Oct 18 2004 Jeremy Katz <katzj@redhat.com> - 1.6.15-5
|
2004-10-18 16:07:37 +00:00
|
|
|
- add patch from Matt Domsch to add a unique signature to new DOS labels
|
|
|
|
so that we can later determine which BIOS disk is which (#106674)
|
|
|
|
|
2004-10-15 14:12:01 +00:00
|
|
|
* Fri Oct 15 2004 Phil Knirsch <pknirsch@redhat.com> 1.6.15-4
|
|
|
|
- Fixed dasd patch (had some duplicate file patches in it)
|
|
|
|
- Fixed problem with parted segfaulting on SCSI discs on s390 (#133997)
|
|
|
|
|
2004-10-13 01:47:04 +00:00
|
|
|
* Tue Oct 12 2004 Jeremy Katz <katzj@redhat.com> - 1.6.15-3
|
|
|
|
- add patch from peterm to fix printing of the size of large devices (#135468)
|
|
|
|
|
2004-10-07 19:23:42 +00:00
|
|
|
* Thu Oct 07 2004 Phil Knirsch <pknirsch@redhat.com> 1.6.15-2
|
|
|
|
- Fixed geometry calculation for bios_geo in dasd_init()
|
|
|
|
|
2004-09-20 16:15:19 +00:00
|
|
|
* Mon Sep 20 2004 Jeremy Katz <katzj@redhat.com> - 1.6.15-1
|
|
|
|
- 1.6.15
|
|
|
|
|
2004-09-10 21:41:08 +00:00
|
|
|
* Fri Sep 10 2004 Jeremy Katz <katzj@redhat.com> - 1.6.14-1
|
|
|
|
- update to 1.6.14
|
|
|
|
|
2004-09-09 10:03:09 +00:00
|
|
|
* Tue Aug 24 2004 Jeremy Katz <katzj@redhat.com> - 1.6.12-2
|
|
|
|
- fix assertion error when checking flags on non-active partition (#130692)
|
|
|
|
- buildrequires: gettext-devel
|
|
|
|
|
2004-09-09 10:03:03 +00:00
|
|
|
* Mon Aug 16 2004 Jeremy Katz <katzj@redhat.com> - 1.6.12-1
|
|
|
|
- update to 1.6.12 with major changes to CHS handling to hopefully fix #115980
|
|
|
|
- adjust dasd patch accordingly, drop some included patches
|
|
|
|
|
2004-09-09 10:01:57 +00:00
|
|
|
* Mon Jul 19 2004 Karsten Hopp <karsten@redhat.de> 1.6.11-4
|
|
|
|
- update dasd patch for dos-type partitions on mainframes (scsi disks)
|
|
|
|
|
|
|
|
* Fri Jun 25 2004 Jeremy Katz <katzj@redhat.com> - 1.6.11-3
|
|
|
|
- install-info (#77687)
|
|
|
|
|
|
|
|
* Tue Jun 15 2004 Elliot Lee <sopwith@redhat.com> - 1.6.11-2
|
2004-09-09 10:01:49 +00:00
|
|
|
- rebuilt
|
|
|
|
|
|
|
|
* Tue Jun 1 2004 Jeremy Katz <katzj@redhat.com>
|
|
|
|
- -devel requires main package (#124938)
|
|
|
|
|
2004-09-09 10:01:38 +00:00
|
|
|
* Thu May 13 2004 Jeremy Katz <katzj@redhat.com> - 1.6.11-1
|
|
|
|
- update to 1.6.11
|
|
|
|
|
|
|
|
* Tue May 11 2004 Jeremy Katz <katzj@redhat.com> - 1.6.9-4
|
|
|
|
- add patch from Matt Domsch to not use the get/set last sector ioctls
|
|
|
|
with a 2.6 kernel (#121455)
|
|
|
|
|
|
|
|
* Thu Apr 15 2004 David Woodhouse <dwmw2@redhat.com> - 1.6.9-3
|
|
|
|
- Fix Mac partition detection to close #112937
|
|
|
|
|
|
|
|
* Tue Apr 13 2004 Jeremy Katz <katzj@redhat.com> - 1.6.9-2
|
|
|
|
- another minor tweak for 2.6's lack of sane geometry handling
|
|
|
|
|
|
|
|
* Mon Apr 12 2004 Jeremy Katz <katzj@redhat.com> - 1.6.9-1
|
|
|
|
- update to 1.6.9
|
|
|
|
- need automake17
|
|
|
|
- python-devel is superfluous with pyparted as a separate package
|
|
|
|
- lose the fake-libtool stuff, 1.6.9 was disted with newer auto*
|
|
|
|
|
2004-09-09 10:00:21 +00:00
|
|
|
* Mon Mar 15 2004 Elliot Lee <sopwith@redhat.com> 1.6.6-2
|
|
|
|
- Fix parted's "part-static" option to close #118183. Woohoo, a fake-libtool.sh :)
|
|
|
|
|
|
|
|
* Fri Mar 12 2004 Jeremy Katz <katzj@redhat.com> - 1.6.6-1
|
|
|
|
- update to 1.6.6
|
|
|
|
- split dasd into a patch instead of included in the tarball
|
|
|
|
- python module is now in the pyparted package (separate src.rpm)
|
|
|
|
- ExcludeArch: ppc64 (#118183)
|
|
|
|
|
|
|
|
* Tue Mar 02 2004 Elliot Lee <sopwith@redhat.com>
|
|
|
|
- rebuilt
|
|
|
|
|
|
|
|
* Fri Feb 13 2004 Elliot Lee <sopwith@redhat.com>
|
|
|
|
- rebuilt
|
|
|
|
|
|
|
|
* Fri Feb 6 2004 Jeremy Katz <katzj@redhat.com>
|
|
|
|
- add automake buildrequires (#115063)
|
|
|
|
|
2004-09-09 09:59:47 +00:00
|
|
|
* Thu Jan 22 2004 Jeremy Katz <katzj@redhat.com> 1.6.3-33
|
|
|
|
- 2.6 removes the geometry fixups that used to be present for IDE disks.
|
|
|
|
According to Andries, just follow what's in the partition table and don't
|
|
|
|
worry about what Linux "detects"
|
|
|
|
|
|
|
|
* Thu Nov 6 2003 Jeremy Katz <katzj@redhat.com> 1.6.3-32
|
|
|
|
- rebuild for python 2.3
|
|
|
|
|
2004-09-09 09:59:35 +00:00
|
|
|
* Mon Oct 27 2003 Jeremy Katz <katzj@redhat.com> 1.6.3-31
|
|
|
|
- add patch from Michael Schwendt <mschwendt@users.sf.net> for segfault
|
|
|
|
|
|
|
|
* Wed Sep 17 2003 Jeremy Katz <katzj@redhat.com> 1.6.3-30
|
|
|
|
- rebuild
|
|
|
|
|
|
|
|
* Wed Sep 17 2003 Jeremy Katz <katzj@redhat.com> 1.6.3-29
|
|
|
|
- and don't barf on the old (broken) 1.02 gpt rev
|
|
|
|
|
|
|
|
* Tue Sep 16 2003 Jeremy Katz <katzj@redhat.com> 1.6.3-28
|
|
|
|
- rebuild
|
|
|
|
|
|
|
|
* Tue Sep 16 2003 Jeremy Katz <katzj@redhat.com> 1.6.3-27
|
|
|
|
- write out the correct gpt revision (#103664)
|
|
|
|
- add buildrequires on ncurses-devel
|
|
|
|
|
|
|
|
* Thu Sep 4 2003 Bill Nottingham <notting@redhat.com> 1.6.3-26
|
|
|
|
- rebuild
|
|
|
|
|
|
|
|
* Thu Sep 4 2003 Bill Nottingham <notting@redhat.com> 1.6.3-25
|
|
|
|
- don't buildreq libunicode-devel
|
|
|
|
|
|
|
|
* Thu Aug 07 2003 Elliot Lee <sopwith@redhat.com> 1.6.3-24
|
|
|
|
- Fix libtool
|
|
|
|
|
|
|
|
* Wed Jul 09 2003 Phil Knirsch <pknirsch@redhat.com> 1.6.3-23
|
|
|
|
- Fixed dasd_write and dasd_read to support lvm and raid partitions.
|
|
|
|
|
|
|
|
* Wed Jun 18 2003 Phil Knirsch <pknirsch@redhat.com> 1.6.3-22
|
|
|
|
- Fixed a small bug in VTOC fdasd_check_volume() (#97300).
|
|
|
|
|
|
|
|
* Wed Jun 04 2003 Elliot Lee <sopwith@redhat.com> 1.6.3-21
|
|
|
|
- rebuilt
|
|
|
|
|
|
|
|
* Wed Jun 4 2003 Matt Wilson <msw@redhat.com> 1.6.3-20
|
|
|
|
- don't detect AIX physical volumes as msdos partition tables (#91748)
|
|
|
|
- added stubbed code for manipulating AIX PVs, enough to clobber the
|
|
|
|
signature. (#91748)
|
|
|
|
|
|
|
|
* Wed Jun 04 2003 Phil Knirsch <pknirsch@redhat.com> 1.6.3-19
|
|
|
|
- Added LDL disk layout support for s390(x).
|
|
|
|
|
|
|
|
* Sun May 18 2003 Matt Wilson <msw@redhat.com> 1.6.3-18
|
|
|
|
- use metadata partitions to protect DASD VTOC
|
|
|
|
- stash DASD specific data in disk specific areas, not arch specific
|
|
|
|
areas.
|
|
|
|
|
|
|
|
* Fri May 16 2003 Matt Wilson <msw@redhat.com> 1.6.3-18
|
|
|
|
- recongnize iseries viodasd (#90449)
|
|
|
|
|
|
|
|
* Thu May 08 2003 Phil Knirsch <pknirsch@redhat.com> 1.6.3-17
|
|
|
|
- Fixed problem with probing partitions on s390(x) with new partition code.
|
|
|
|
|
|
|
|
* Mon May 05 2003 Phil Knirsch <pknirsch@redhat.com> 1.6.3-16
|
|
|
|
- Fixed partiton reread code for s390(x).
|
|
|
|
|
|
|
|
* Fri May 02 2003 Phil Knirsch <pknirsch@redhat.com> 1.6.3-15
|
|
|
|
- Rewrote partition handling for s390(x) dasd devices. No more empty partitions.
|
|
|
|
|
|
|
|
* Wed Mar 12 2003 Phil Knirsch <pknirsch@redhat.com> 1.6.3-13
|
|
|
|
- Finished updating vtoc and fdasd code to latest s390-utils version.
|
|
|
|
|
|
|
|
* Thu Mar 06 2003 Phil Knirsch <pknirsch@redhat.com> 1.6.3-12
|
|
|
|
- Fixed vtoc handling on s390(x) dasd devices.
|
|
|
|
|
2004-09-09 09:57:06 +00:00
|
|
|
* Thu Feb 06 2003 Karsten Hopp <karsten@redhat.de> 1.6.3-11
|
|
|
|
- use different define to enable DASD debugging
|
|
|
|
Otherwise we'll get a lot of dasd debug output because DEBUG is
|
|
|
|
always defined
|
|
|
|
|
|
|
|
* Wed Jan 22 2003 Tim Powers <timp@redhat.com>
|
|
|
|
- rebuilt
|
|
|
|
|
|
|
|
* Wed Jan 22 2003 Karsten Hopp <karsten@redhat.de> 1.6.3-9
|
|
|
|
- missed one debug message
|
|
|
|
|
|
|
|
* Tue Jan 21 2003 Karsten Hopp <karsten@redhat.de> 1.6.3-8
|
|
|
|
- add patch from CVS to disable debug messages on s390
|
|
|
|
|
|
|
|
* Tue Jan 14 2003 Matt Wilson <msw@redhat.com> 1.6.3-7
|
|
|
|
- updated to a new tarball of parted that includes a fs.probe_specific binding
|
|
|
|
|
|
|
|
* Sun Dec 1 2002 Matt Wilson <msw@redhat.com> 1.6.3-6
|
|
|
|
- hack in partition.native_type (#78118)
|
|
|
|
|
|
|
|
* Thu Nov 7 2002 Matt Wilson <msw@redhat.com>
|
|
|
|
- added a patch to avoid SIGFPE when fat sector size is 0
|
|
|
|
|
|
|
|
* Tue Nov 5 2002 Matt Wilson <msw@redhat.com>
|
|
|
|
- use --disable-dynamic-loading
|
|
|
|
|
|
|
|
* Mon Nov 4 2002 Matt Wilson <msw@redhat.com>
|
|
|
|
- add device.disk_new_fresh()
|
|
|
|
|
|
|
|
* Fri Nov 1 2002 Matt Wilson <msw@redhat.com>
|
|
|
|
- 1.6.3
|
|
|
|
|
|
|
|
* Fri Oct 4 2002 Jeremy Katz <katzj@redhat.com> 1.4.24-7
|
|
|
|
- use make LIBTOOL=/usr/bin/libtool instead of recreating everything
|
|
|
|
- add patch from Jack Howarth <howarth@bromo.med.uc.edu> to self host properly
|
|
|
|
- add patch to treat GPT structs as little-endian always and treat GUIDS
|
|
|
|
as little-endian blobs
|
|
|
|
- add patch to recognize hp service partitions
|
|
|
|
|
|
|
|
* Wed Sep 25 2002 Jeremy Katz <katzj@redhat.com> 1.4.24-6hammer
|
|
|
|
- libtoolize, etc for x86_64
|
|
|
|
- hack to get the python module in the right place until python.m4
|
|
|
|
from automake is fixed
|
2004-09-09 09:56:18 +00:00
|
|
|
|
2004-09-09 09:57:06 +00:00
|
|
|
* Fri Jun 21 2002 Tim Powers <timp@redhat.com> 1.4.24-6
|
2004-09-09 09:56:03 +00:00
|
|
|
- automated rebuild
|
|
|
|
|
2004-09-09 09:57:06 +00:00
|
|
|
* Sun May 26 2002 Tim Powers <timp@redhat.com> 1.4.24-5
|
2004-09-09 09:55:15 +00:00
|
|
|
- automated rebuild
|
|
|
|
|
|
|
|
* Wed May 22 2002 Jeremy Katz <katzj@redhat.com> 1.4.24-4
|
|
|
|
- rebuild in new environment
|
|
|
|
|
2004-09-09 09:54:49 +00:00
|
|
|
* Fri Mar 22 2002 Matt Wilson <msw@redhat.com> 1.4.24-3
|
|
|
|
- fixed the probe-with-open behavior (again)
|
|
|
|
|
2004-09-09 09:54:46 +00:00
|
|
|
* Fri Feb 22 2002 Matt Wilson <msw@redhat.com> 1.4.24-1
|
|
|
|
- rebuild
|
|
|
|
|
|
|
|
* Tue Feb 12 2002 Matt Wilson <msw@redhat.com> 1.4.24-1
|
|
|
|
- 1.4.24
|
|
|
|
|
|
|
|
* Wed Jan 09 2002 Tim Powers <timp@redhat.com>
|
|
|
|
- automated rebuild
|
|
|
|
|
|
|
|
* Mon Jan 7 2002 Jeremy Katz <katzj@redhat.com> 1.4.20-4
|
|
|
|
- build with final python 2.2
|
|
|
|
|
|
|
|
* Wed Dec 12 2001 Jeremy Katz <katzj@redhat.com> 1.4.20-3
|
|
|
|
- update from CVS and rebuild in new environment
|
|
|
|
|
|
|
|
* Thu Oct 25 2001 Jeremy Katz <katzj@redhat.com> 1.4.20-2
|
|
|
|
- build both python1.5 and python2 modules
|
|
|
|
|
2004-09-09 09:53:44 +00:00
|
|
|
* Fri Oct 19 2001 Matt Wilson <msw@redhat.com> 1.4.20-1
|
|
|
|
- 1.4.20 final
|
2004-09-09 09:53:26 +00:00
|
|
|
|
2004-09-09 09:53:44 +00:00
|
|
|
* Thu Oct 11 2001 Matt Wilson <msw@redhat.com> 1.4.20-0.1pre3
|
|
|
|
- new dist from CVS with new autoconf and automake
|
|
|
|
- gpt is in 1.4.20, removed patch1 (gpt support)
|
|
|
|
- partstatic is in 1.4.20, removed patch2 (partstatic patch)
|
2004-09-09 09:53:12 +00:00
|
|
|
|
2004-09-09 09:52:48 +00:00
|
|
|
* Tue Aug 28 2001 Matt Wilson <msw@redhat.com> 1.4.16-8
|
|
|
|
- new dist from cvs with changes to the python binding: register
|
|
|
|
DEVICE_I20 and DEVICE_ATARAID, check to make sure that a partition
|
|
|
|
exists in the PedDisk when using it to find ped_disk_next_partition
|
|
|
|
|
2004-09-09 09:52:22 +00:00
|
|
|
* Tue Aug 21 2001 Matt Wilson <msw@redhat.com> 1.4.16-7
|
|
|
|
- really disable pc98 support (SF #51632)
|
|
|
|
|
2004-09-09 09:52:10 +00:00
|
|
|
* Fri Aug 17 2001 Matt Wilson <msw@redhat.com> 1.4.16-6
|
|
|
|
- added a patch (Patch1) to link the c library in dynamically, the
|
|
|
|
rest of the libs statically for the parted binary (MF #49358)
|
|
|
|
|
2004-09-09 09:52:03 +00:00
|
|
|
* Tue Aug 7 2001 Matt Wilson <msw@redhat.com>
|
|
|
|
- made a new dist from CVS that includes binding for
|
|
|
|
disk.get_partition_by_sector and accessing the name of a disk type
|
|
|
|
|
|
|
|
* Mon Aug 6 2001 Matt Wilson <msw@redhat.com> 1.4.16-4
|
|
|
|
- created a new dist from CVS that fixes ext3 detection when
|
|
|
|
_probe_with_open is needed (#50292)
|
|
|
|
|
|
|
|
* Fri Jul 20 2001 Matt Wilson <msw@redhat.com>
|
|
|
|
- rewrite scsi id code (#49533)
|
|
|
|
|
|
|
|
* Fri Jul 20 2001 Matt Wilson <msw@redhat.com>
|
|
|
|
- added build requires (#49549)
|
|
|
|
|
|
|
|
* Tue Jul 17 2001 Matt Wilson <msw@redhat.com>
|
|
|
|
- 1.4.16
|
|
|
|
- regenerated gpt patch against 1.4.16, incorporated
|
|
|
|
parted-1.4.15-pre1-gpt-printf.patch into the same patch, removed Patch1
|
|
|
|
|
|
|
|
* Tue Jul 10 2001 Matt Wilson <msw@redhat.com>
|
|
|
|
- added a new dist tarball that contains python wrappers to get disk types
|
|
|
|
|
|
|
|
* Tue Jul 10 2001 Tim Powers <timp@redhat.com>
|
|
|
|
- run ldconfig on un/install
|
|
|
|
|
|
|
|
* Tue Jul 10 2001 Matt Wilson <msw@redhat.com>
|
|
|
|
- added a fix from clausen for border case when there is an extended
|
|
|
|
on the last cyl
|
|
|
|
|
|
|
|
* Mon Jul 9 2001 Matt Wilson <msw@redhat.com>
|
|
|
|
- 1.4.15
|
|
|
|
|
|
|
|
* Thu Jul 5 2001 Matt Wilson <msw@redhat.com>
|
|
|
|
- added patch from Arjan to enable ataraid support
|
|
|
|
|
|
|
|
* Wed Jul 4 2001 Matt Wilson <msw@redhat.com>
|
|
|
|
- imported 1.4.15-pre2 into CVS and made a new dist tarball
|
|
|
|
|
|
|
|
* Tue Jun 26 2001 Matt Wilson <msw@redhat.com>
|
|
|
|
- added a new dist tarball that contains a check in python code to
|
|
|
|
make sure that a partition exists within a disk before trying to
|
|
|
|
remove it from the disk
|
|
|
|
- also changed _probe_with_open to make the first probed filesystem win
|
|
|
|
|
|
|
|
* Tue Jun 26 2001 Bill Nottingham <notting@redhat.com>
|
|
|
|
- fix filesystem type reading on GPT disks
|
|
|
|
|
|
|
|
* Tue Jun 26 2001 Matt Wilson <msw@redhat.com>
|
|
|
|
- added another fix for ext2/ext3
|
|
|
|
- added Patch4 to move the crc32 function into its own namespace so
|
|
|
|
we don't colide with zlib when both are in the same executable space
|
|
|
|
|
|
|
|
* Mon Jun 25 2001 Matt Wilson <msw@redhat.com>
|
|
|
|
- added a new dist tarball from CVS that includes
|
|
|
|
ext3 probing
|
|
|
|
|
|
|
|
* Wed Jun 6 2001 Matt Wilson <msw@redhat.com>
|
|
|
|
- updated dist with binding for partition.geom.disk
|
|
|
|
|
|
|
|
* Tue Jun 5 2001 Matt Wilson <msw@redhat.com>
|
|
|
|
- make a new dist tarball that has new python binding changes
|
|
|
|
|
2004-09-09 09:51:53 +00:00
|
|
|
* Tue May 29 2001 Bill Nottingham <notting@redhat.com>
|
|
|
|
- add major numbers for cciss
|
|
|
|
- add libunicode-devel buildprereq
|
|
|
|
|
|
|
|
* Sun May 27 2001 Matthew Wilson <msw@redhat.com>
|
|
|
|
- added type, heads, and sectors to the python binding for PedDevice
|
|
|
|
|
2004-09-09 09:51:43 +00:00
|
|
|
* Fri May 4 2001 Matt Wilson <msw@redhat.com>
|
|
|
|
- added parted-1.4.11-gpt-pmbralign.patch from Matt Domsch
|
|
|
|
|
|
|
|
* Wed May 2 2001 Matt Wilson <msw@redhat.com>
|
|
|
|
- include python binding
|
|
|
|
- enable shared library (for python binding, we want fpic code)
|
|
|
|
with --enable-shared
|
|
|
|
- build parted binary static with --enable-all-static
|
|
|
|
- don't run libtoolize on this.
|
|
|
|
|
|
|
|
* Wed May 02 2001 Bill Nottingham <notting@redhat.com>
|
|
|
|
- update to 1.4.11
|
|
|
|
- add EFI GPT patch from Matt Domsch (<Matt_Domsch@dell.com>)
|
|
|
|
- don't run autoconf, it relies on a newer non-released version
|
|
|
|
of autoconf...
|
|
|
|
|
2004-09-09 09:57:06 +00:00
|
|
|
* Fri Feb 23 2001 Trond Eivind Glomsrød <teg@redhat.com>
|
2004-09-09 09:51:40 +00:00
|
|
|
- langify
|
|
|
|
|
|
|
|
* Wed Jan 17 2001 Florian La Roche <Florian.LaRoche@redhat.de>
|
|
|
|
- update to 1.4.7
|
|
|
|
|
|
|
|
* Thu Dec 14 2000 Bill Nottingham <notting@redhat.com>
|
|
|
|
- rebuild because of broken fileutils
|
|
|
|
|
|
|
|
* Fri Nov 03 2000 Florian La Roche <Florian.LaRoche@redhat.de>
|
|
|
|
- update to 1.2.12
|
|
|
|
|
|
|
|
* Wed Nov 01 2000 Florian La Roche <Florian.LaRoche@redhat.de>
|
|
|
|
- update to 1.2.11
|
|
|
|
|
|
|
|
* Tue Oct 17 2000 Florian La Roche <Florian.LaRoche@redhat.de>
|
|
|
|
- update to 1.2.10
|
|
|
|
|
|
|
|
* Sun Sep 10 2000 Florian La Roche <Florian.LaRoche@redhat.de>
|
|
|
|
- update to 1.2.9
|
|
|
|
|
2004-09-09 09:51:30 +00:00
|
|
|
* Tue Aug 29 2000 Florian La Roche <Florian.LaRoche@redhat.com>
|
|
|
|
- fix bug when just hitting "return" with no user input
|
|
|
|
|
|
|
|
* Sun Aug 20 2000 Florian La Roche <Florian.LaRoche@redhat.com>
|
|
|
|
- 1.2.8
|
|
|
|
- blksize patch not needed anymore
|
|
|
|
- move changelog to the end of the spec file
|
|
|
|
|
|
|
|
* Wed Aug 16 2000 Matt Wilson <msw@redhat.com>
|
|
|
|
- 1.2.7
|
|
|
|
- patched configure script to ignore the 2.4 blkpg.h header (fixes #15835).
|
|
|
|
|
|
|
|
* Fri Aug 4 2000 Florian La Roche <Florian.LaRoche@redhat.de>
|
|
|
|
- update to 1.2.6
|
|
|
|
|
|
|
|
* Sat Jul 22 2000 Florian La Roche <Florian.LaRoche@redhat.de>
|
|
|
|
- update to 1.2.5
|
|
|
|
- add more docu
|
|
|
|
|
|
|
|
* Wed Jul 12 2000 Prospector <bugzilla@redhat.com>
|
|
|
|
- automatic rebuild
|
|
|
|
|
|
|
|
* Mon Jun 12 2000 Matt Wilson <msw@redhat.com>
|
|
|
|
- initialization of spec file.
|