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
|
2019-10-11 15:40:34 +00:00
|
|
|
Version: 3.3
|
2019-12-16 22:31:02 +00:00
|
|
|
Release: 2%{?dist}
|
2008-01-03 02:26:18 +00:00
|
|
|
License: GPLv3+
|
2007-04-19 18:52:23 +00:00
|
|
|
URL: http://www.gnu.org/software/parted
|
2006-06-15 20:16:26 +00:00
|
|
|
|
2014-07-29 19:07:49 +00:00
|
|
|
Source0: https://ftp.gnu.org/gnu/%{name}/%{name}-%{version}.tar.xz
|
|
|
|
Source1: https://ftp.gnu.org/gnu/%{name}/%{name}-%{version}.tar.xz.sig
|
2019-08-09 23:10:35 +00:00
|
|
|
Source2: pubkey.phillip.susi
|
|
|
|
Source3: pubkey.brian.lane
|
2019-01-31 19:35:16 +00:00
|
|
|
|
2019-12-16 22:31:02 +00:00
|
|
|
# Upstream patches since v3.3 release
|
|
|
|
Patch0001: 0001-Switch-gpt-header-move-and-msdos-overlap-to-python3.patch
|
|
|
|
Patch0002: 0003-tests-Test-incomplete-resizepart-command.patch
|
|
|
|
Patch0003: 0004-Fix-end_input-usage-in-do_resizepart.patch
|
2019-01-31 19:35:16 +00:00
|
|
|
|
2018-02-20 00:42:40 +00:00
|
|
|
BuildRequires: gcc
|
2007-12-14 03:34:30 +00:00
|
|
|
BuildRequires: e2fsprogs-devel
|
|
|
|
BuildRequires: readline-devel
|
|
|
|
BuildRequires: ncurses-devel
|
|
|
|
BuildRequires: gettext-devel
|
|
|
|
BuildRequires: texinfo
|
|
|
|
BuildRequires: device-mapper-devel
|
|
|
|
BuildRequires: libselinux-devel
|
2009-07-10 13:16:25 +00:00
|
|
|
BuildRequires: libuuid-devel
|
2009-11-03 12:07:15 +00:00
|
|
|
BuildRequires: libblkid-devel >= 2.17
|
2018-06-07 16:47:30 +00:00
|
|
|
BuildRequires: gnupg2
|
2010-12-17 16:22:03 +00:00
|
|
|
BuildRequires: git
|
2011-06-23 22:58:47 +00:00
|
|
|
BuildRequires: autoconf automake
|
2011-10-31 21:56:09 +00:00
|
|
|
BuildRequires: e2fsprogs
|
2014-04-10 00:17:15 +00:00
|
|
|
BuildRequires: xfsprogs
|
2011-10-31 21:56:09 +00:00
|
|
|
BuildRequires: dosfstools
|
2013-09-11 18:39:51 +00:00
|
|
|
BuildRequires: perl-Digest-CRC
|
2014-04-10 00:17:15 +00:00
|
|
|
BuildRequires: bc
|
2018-06-27 21:44:42 +00:00
|
|
|
Buildrequires: python3
|
2017-05-02 16:41:50 +00:00
|
|
|
BuildRequires: gperf
|
2018-06-27 21:44:42 +00:00
|
|
|
BuildRequires: make
|
2006-03-14 21:12:47 +00:00
|
|
|
|
2012-05-15 17:20:59 +00:00
|
|
|
# bundled gnulib library exception, as per packaging guidelines
|
|
|
|
# https://fedoraproject.org/wiki/Packaging:No_Bundled_Libraries
|
|
|
|
Provides: bundled(gnulib)
|
|
|
|
|
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.
|
|
|
|
|
2010-01-11 14:03:07 +00:00
|
|
|
|
2004-09-09 09:51:30 +00:00
|
|
|
%package devel
|
2007-04-19 18:52:23 +00:00
|
|
|
Summary: Files for developing apps which will manipulate disk partitions
|
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
|
|
|
|
2010-01-11 14:03:07 +00:00
|
|
|
|
2004-09-09 09:51:30 +00:00
|
|
|
%prep
|
2010-01-11 14:03:07 +00:00
|
|
|
%setup -q
|
2018-06-07 16:47:30 +00:00
|
|
|
gpg2 --import %{SOURCE2} %{SOURCE3}
|
|
|
|
gpg2 --verify %{SOURCE1} %{SOURCE0}
|
2010-12-17 16:22:03 +00:00
|
|
|
git init
|
|
|
|
git config user.email "parted-owner@fedoraproject.org"
|
|
|
|
git config user.name "Fedora Ninjas"
|
|
|
|
git add .
|
|
|
|
git commit -a -q -m "%{version} baseline."
|
2014-07-28 19:50:21 +00:00
|
|
|
[ -n "%{patches}" ] && git am %{patches}
|
2010-01-11 14:03:07 +00:00
|
|
|
iconv -f ISO-8859-1 -t UTF8 AUTHORS > tmp; touch -r AUTHORS tmp; mv tmp AUTHORS
|
2010-12-17 16:22:03 +00:00
|
|
|
git commit -a -m "run iconv"
|
2009-07-21 14:55:51 +00:00
|
|
|
|
2004-09-09 09:51:30 +00:00
|
|
|
%build
|
2011-06-23 22:58:47 +00:00
|
|
|
autoreconf
|
|
|
|
autoconf
|
2011-02-09 17:18:23 +00:00
|
|
|
CFLAGS="$RPM_OPT_FLAGS -Wno-unused-but-set-variable"; export CFLAGS
|
2014-07-28 19:50:21 +00:00
|
|
|
%configure --enable-selinux --disable-static --disable-gcc-warnings
|
2010-01-11 14:03:07 +00:00
|
|
|
# Don't use rpath!
|
|
|
|
%{__sed} -i 's|^hardcode_libdir_flag_spec=.*|hardcode_libdir_flag_spec=""|g' libtool
|
|
|
|
%{__sed} -i 's|^runpath_var=LD_RUN_PATH|runpath_var=DIE_RPATH_DIE|g' libtool
|
2010-02-14 09:22:18 +00:00
|
|
|
V=1 %{__make} %{?_smp_mflags}
|
2004-09-09 10:00:21 +00:00
|
|
|
|
2010-01-11 14:03:07 +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
|
|
|
|
|
|
|
# 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
|
2009-10-06 18:53:21 +00:00
|
|
|
%{__rm} -rf %{buildroot}%{_bindir}/disk
|
2004-09-09 09:51:40 +00:00
|
|
|
|
2007-03-20 05:37:27 +00:00
|
|
|
%find_lang %{name}
|
|
|
|
|
2010-01-11 14:03:07 +00:00
|
|
|
|
2010-01-17 15:57:08 +00:00
|
|
|
%check
|
2016-03-07 19:55:00 +00:00
|
|
|
export LD_LIBRARY_PATH=$(pwd)/libparted/.libs:$(pwd)/libparted/fs/.libs
|
2010-01-17 15:57:08 +00:00
|
|
|
make check
|
|
|
|
|
2007-03-20 05:37:27 +00:00
|
|
|
%files -f %{name}.lang
|
2014-07-30 15:00:02 +00:00
|
|
|
%doc AUTHORS NEWS README THANKS
|
|
|
|
%{!?_licensedir:%global license %%doc}
|
|
|
|
%license COPYING
|
2007-03-19 18:39:07 +00:00
|
|
|
%{_sbindir}/parted
|
|
|
|
%{_sbindir}/partprobe
|
|
|
|
%{_mandir}/man8/parted.8.gz
|
|
|
|
%{_mandir}/man8/partprobe.8.gz
|
2016-02-29 20:01:52 +00:00
|
|
|
%{_libdir}/libparted.so.2
|
2019-08-09 23:10:35 +00:00
|
|
|
%{_libdir}/libparted.so.2.0.2
|
2016-02-29 20:01:52 +00:00
|
|
|
%{_libdir}/libparted-fs-resize.so.0
|
2019-08-09 23:10:35 +00:00
|
|
|
%{_libdir}/libparted-fs-resize.so.0.0.2
|
2019-04-24 12:56:38 +00:00
|
|
|
%{_infodir}/parted.info.*
|
2004-09-09 09:51:30 +00:00
|
|
|
|
|
|
|
%files devel
|
2014-05-31 23:10:54 +00:00
|
|
|
%doc TODO doc/API doc/FAT
|
2007-03-19 18:39:07 +00:00
|
|
|
%{_includedir}/parted
|
2016-02-29 20:01:52 +00:00
|
|
|
%{_libdir}/libparted.so
|
|
|
|
%{_libdir}/libparted-fs-resize.so
|
|
|
|
%{_libdir}/pkgconfig/libparted.pc
|
|
|
|
%{_libdir}/pkgconfig/libparted-fs-resize.pc
|
2004-09-09 09:51:30 +00:00
|
|
|
|
2009-12-20 10:19:49 +00:00
|
|
|
|
2004-09-09 09:51:30 +00:00
|
|
|
%changelog
|
2019-12-16 22:31:02 +00:00
|
|
|
* Mon Dec 16 2019 Brian C. Lane <bcl@redhat.com> - 3.3-2
|
|
|
|
- tests: Test incomplete resizepart command
|
|
|
|
- Fix end_input usage in do_resizepart
|
|
|
|
Resolves: rhbz#1701411
|
|
|
|
|
2019-10-11 15:40:34 +00:00
|
|
|
* Fri Oct 11 2019 Brian C. Lane <bcl@redhat.com> - 3.3-1
|
|
|
|
- New upstream release v3.3
|
|
|
|
Includes the DASD virtio-blk fix.
|
|
|
|
- Dropping pre-3.2 changelog entries
|
|
|
|
|
2019-10-02 17:12:38 +00:00
|
|
|
* Wed Oct 02 2019 Brian C. Lane <bcl@redhat.com> - 3.2.153-2
|
|
|
|
- libparted/s390: Re-enabled virtio-attached DASD heuristics
|
|
|
|
Fixes DASD backed virtblk devices
|
|
|
|
|
2019-08-09 23:10:35 +00:00
|
|
|
* Mon Aug 12 2019 Brian C. Lane <bcl@redhat.com> - 3.2.153-1
|
|
|
|
- New upstream ALPHA release v3.2.153
|
|
|
|
- Includes all patches except the python2 -> python3 change for test helpers
|
|
|
|
|
2019-07-26 00:07:25 +00:00
|
|
|
* Fri Jul 26 2019 Fedora Release Engineering <releng@fedoraproject.org> - 3.2-43
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
|
|
|
|
2019-04-24 12:56:38 +00:00
|
|
|
* Wed Apr 24 2019 Björn Esser <besser82@fedoraproject.org> - 3.2-42
|
|
|
|
- Remove hardcoded gzip suffix from GNU info pages
|
|
|
|
|
2019-04-09 22:01:35 +00:00
|
|
|
* Tue Apr 09 2019 Brian C. Lane <bcl@redhat.com> - 3.2-41
|
|
|
|
- Add fix and tests for nilfs2 sigsegv
|
|
|
|
|
2019-01-09 23:36:41 +00:00
|
|
|
* Fri Mar 01 2019 Brian C. Lane <bcl@redhat.com> - 3.2-40
|
|
|
|
- Run the CI tests using rpmbuild
|
|
|
|
- t6000-dm: Stop using private lvm root
|
|
|
|
|
2019-02-17 08:30:52 +00:00
|
|
|
* Sun Feb 17 2019 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 3.2-39
|
|
|
|
- Rebuild for readline 8.0
|
|
|
|
|
2019-01-31 19:35:16 +00:00
|
|
|
* Thu Jan 31 2019 Brian C. Lane <bcl@redhat.com> - 3.2-38
|
|
|
|
- Add missing patches from Wang Dong
|
|
|
|
- fix crash due to improper partition number (dongdwdw)
|
|
|
|
- fix wrong error label jump in mkpart (dongdwdw)
|
|
|
|
- clean the disk information when commands fail (dongdwdw)
|
|
|
|
- Remove PED_ASSERT from ped_partition_set_name (bcl)
|
|
|
|
- Added support for Windows recovery partition (Hans-Joachim.Baader)
|
|
|
|
|
2018-10-16 22:38:03 +00:00
|
|
|
* Tue Oct 16 2018 Brian C. Lane <bcl@redhat.com> - 3.2-37
|
|
|
|
- Read NVMe model names from sysfs (dann.frazier)
|
|
|
|
- Fix warnings from GCC 7's -Wimplicit-fallthrough (dann.frazier)
|
|
|
|
- ped_unit_get_name: Resolve conflicting attributes 'const' and 'pure' (dann.frazier)
|
|
|
|
- Add udf to t1700-probe-fs and to the manpage (bcl)
|
|
|
|
- libparted: Add support for MBR id, GPT GUID and detection of UDF filesystem (pali.rohar)
|
|
|
|
- Fix potential command line buffer overflow (xu.simon)
|
|
|
|
- t6100-mdraid-partitions: Use v0.90 metadata for the test (bcl)
|
|
|
|
- parted.c: Make sure dev_name is freed (bcl)
|
|
|
|
- parted.c: Always free peek_word (bcl)
|
|
|
|
- Fix the length of several strncpy calls (bcl)
|
|
|
|
|
2018-07-19 23:44:11 +00:00
|
|
|
* Thu Jul 19 2018 Brian C. Lane <bcl@redhat.com> - 3.2-36
|
|
|
|
- drop ldconfig, it no longer needs to be called on un/install (bcl)
|
|
|
|
- Fix msdos-overlap py3 conversion (bcl)
|
|
|
|
|
2018-07-13 15:31:44 +00:00
|
|
|
* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 3.2-35
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
|
|
|
|
2018-06-27 21:44:42 +00:00
|
|
|
* Wed Jun 27 2018 Brian C. Lane <bcl@redhat.com> - 3.2-34
|
|
|
|
- Use python3 in buildroot
|
|
|
|
- Add make to BuildRequires
|
|
|
|
- Switch gpt-header-move and msdos-overlap to python3 (bcl)
|
|
|
|
- Modify gpt-header-move and msdos-overlap to work with py2 or py3 (bcl)
|
|
|
|
- Fix atari label false positives (psusi)
|
|
|
|
- Lift 512 byte restriction on fat resize (psusi)
|
|
|
|
- build: Remove unused traces of dynamic loading (cjwatson)
|
|
|
|
- Fix resizepart iec unit end sector (psusi)
|
|
|
|
- mkpart: Allow negative start value when FS-TYPE is not given (mail)
|
|
|
|
- Fix set and disk_set to not crash when no flags are supported (psusi)
|
|
|
|
- tests: fix t6100-mdraid-partitions (psusi)
|
|
|
|
- Fix make check (psusi)
|
|
|
|
- linux: Include <sys/sysmacros.h> for major() macro. (rjones)
|
|
|
|
|
2018-06-07 16:47:30 +00:00
|
|
|
* Thu Jun 07 2018 Brian C. Lane <bcl@redhat.com> - 3.2-33
|
|
|
|
- Use gpg2 for signature checking
|
|
|
|
|
2018-03-24 17:47:51 +00:00
|
|
|
* Sat Mar 24 2018 Richard W.M. Jones <rjones@redhat.com> - 3.2-32
|
|
|
|
- Fix for missing major/minor() macros in glibc 2.27.
|
|
|
|
|
2018-02-20 00:42:40 +00:00
|
|
|
* Mon Feb 19 2018 Brian C. Lane <bcl@redhat.com> - 3.2-31
|
|
|
|
- Add gcc BuildRequires for future minimal buildroot support
|
2018-06-27 21:44:42 +00:00
|
|
|
- Remove %%clean section
|
2018-02-20 00:42:40 +00:00
|
|
|
|
2018-02-08 18:21:27 +00:00
|
|
|
* Thu Feb 08 2018 Fedora Release Engineering <releng@fedoraproject.org> - 3.2-30
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
|
|
|
|
2017-12-19 19:55:37 +00:00
|
|
|
* Tue Dec 19 2017 Brian C. Lane <bcl@redhat.com> - 3.2-29
|
|
|
|
- Add support for NVDIMM devices (sparschauer)
|
|
|
|
- libparted/labels: link with libiconv if needed (arnout)
|
|
|
|
|
2017-07-31 22:34:53 +00:00
|
|
|
* Mon Jul 31 2017 Brian C. Lane <bcl@redhat.com> - 3.2-28
|
|
|
|
- atari.c: Drop xlocale.h
|
|
|
|
Resloves: rhbz#1476934
|
|
|
|
|
2017-07-27 02:13:10 +00:00
|
|
|
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 3.2-27
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
|
|
|
|
|
2017-06-06 18:22:36 +00:00
|
|
|
* Tue Jun 06 2017 Brian C. Lane <bcl@redhat.com> - 3.2-26
|
|
|
|
- libparted: Fix udev cookie leak in _dm_resize_partition (bcl)
|
|
|
|
Resolves: rhbz#1455564
|
|
|
|
|
2017-05-02 16:41:50 +00:00
|
|
|
* Mon May 01 2017 Brian C. Lane <bcl@redhat.com> - 3.2-25
|
|
|
|
+ Updating to upstream patches
|
|
|
|
- tests/t1701-rescue-fs wait for the device to appear. (bcl)
|
|
|
|
- Increase timeout for rmmod scsi_debug and make it a framework failure (bcl)
|
|
|
|
- libparted/dasd: add test cases for the new fdasd functions (dongdwdw)
|
|
|
|
- libparted/dasd: add an exception for changing DASD-LDL partition table
|
|
|
|
(dongdwdw)
|
|
|
|
- libpartd/dasd: improve flag processing for DASD-LDL (dongdwdw)
|
|
|
|
- parted/ui: remove unneccesary information of command line (dongdwdw)
|
|
|
|
- parted: check the name of partition first when to name a partition (dongdwdw)
|
|
|
|
- Add support for RAM drives (sparschauer)
|
|
|
|
- Fix crash when localized (psusi)
|
|
|
|
- libparted: Fix typo in hfs error message (sebras)
|
|
|
|
- libparted: Fix MacOS boot support (laurent)
|
|
|
|
- mac: copy partition type and name correctly (saproj)
|
|
|
|
- libparted: Add support for atari partition tables (glaubitz)
|
|
|
|
- libparted:tests: Move get_sector_size() to common.c (glaubitz)
|
|
|
|
- tests: Update t0220 and t0280 for the swap flag. (bcl)
|
|
|
|
- libparted: set swap flag on GPT partitions (aschnell)
|
|
|
|
- libparted/dasd: add test cases for the new fdasd functions (dongdwdw)
|
|
|
|
- libparted/dasd: add new fdasd functions (dongdwdw)
|
|
|
|
- libparted/dasd: update and improve fdasd functions (dongdwdw)
|
|
|
|
- libparted/dasd: unify vtoc handling for cdl/ldl (dongdwdw)
|
|
|
|
- libparted: Don't warn if no HDIO_GET_IDENTITY ioctl (sparschauer)
|
|
|
|
- libparted: Fix starting CHS in protective MBR (petr.uzel)
|
|
|
|
- tests: Stop timing t9040 (#1172675) (bcl)
|
|
|
|
|
2017-02-11 01:17:52 +00:00
|
|
|
* Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 3.2-24
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
|
|
|
|
|
2017-01-12 16:30:36 +00:00
|
|
|
* Thu Jan 12 2017 Igor Gnatenko <ignatenko@redhat.com> - 3.2-23
|
|
|
|
- Rebuild for readline 7.x
|
|
|
|
|
2016-10-04 22:04:57 +00:00
|
|
|
* Tue Oct 04 2016 Brian C. Lane <bcl@redhat.com> - 3.2-22
|
|
|
|
- tests: t3310-flags.sh: skip pc98 when sector size != 512 (bcl)
|
|
|
|
- tests: Set optimal blocks to 64 for scsi_debug devices (bcl)
|
|
|
|
- tests: t3310-flags.sh: Add tests for remaining table types (mike.fleetwood)
|
|
|
|
- tests: t3310-flags.sh: Add test for dvh table flags (mike.fleetwood)
|
|
|
|
- tests: t3310-flags.sh: Add test for mac table flags (mike.fleetwood)
|
|
|
|
- libparted: Remove commented local variable from bsd_partition_set_flag()
|
|
|
|
(mike.fleetwood)
|
|
|
|
- libparted: Fix to report success when setting lvm flag on bsd table
|
|
|
|
(mike.fleetwood)
|
|
|
|
- tests: t3310-flags.sh: Add test for bsd table flags (mike.fleetwood)
|
|
|
|
- tests: t3310-flags.sh: Stop excluding certain flags from being tested
|
|
|
|
(mike.fleetwood)
|
|
|
|
- tests: t3310-flags.sh: Query libparted for all flags to be tested
|
|
|
|
(mike.fleetwood)
|
|
|
|
- libparted: only IEC units are treated as exact (petr.uzel)
|
|
|
|
- docs: Improve partition description in parted.texi (gareth.randall)
|
|
|
|
- Add support for NVMe devices (petr.uzel)
|
|
|
|
- libparted/dasd: correct the offset where the first partition begins
|
|
|
|
(dongdwdw)
|
|
|
|
|
2016-06-16 00:27:50 +00:00
|
|
|
* Wed Jun 15 2016 Brian C. Lane <bcl@redhat.com> - 3.2-21
|
|
|
|
- Cleanup mkpart manpage entry (#1183077)
|
|
|
|
- doc: Add information about quoting
|
|
|
|
|
2016-05-26 19:05:08 +00:00
|
|
|
* Thu May 26 2016 Brian C. Lane <bcl@redhat.com> - 3.2-20
|
|
|
|
- libparted: Fix probing AIX disks on other arches
|
|
|
|
- partprobe: Open the device once for probing
|
|
|
|
|
2016-04-12 23:51:26 +00:00
|
|
|
* Tue Apr 12 2016 Brian C. Lane <bcl@redhat.com> 3.2-19
|
|
|
|
- libparted: Remove fdasd geometry code from alloc_metadata (#1244833) (bcl)
|
|
|
|
- parted: Display details of partition alignment failure (#726856) (bcl)
|
|
|
|
- docs: Add list of filesystems for fs-type (#1311596) (bcl)
|
|
|
|
- Use disk geometry as basis for ext2 sector sizes. (Steven.Lang)
|
|
|
|
- parted: fix the rescue command (psusi)
|
|
|
|
|
2016-03-29 22:10:13 +00:00
|
|
|
* Tue Mar 29 2016 Brian C. Lane <bcl@redhat.com> 3.2-18
|
|
|
|
- Use BLKSSZGET to get device sector size in _device_probe_geometry()
|
|
|
|
|
2016-03-07 19:55:00 +00:00
|
|
|
* Mon Mar 07 2016 Brian C. Lane <bcl@redhat.com> 3.2-17
|
|
|
|
- lib-fs-resize: Prevent crash resizing FAT with very deep directories
|
|
|
|
- Add libparted/fs/.libs/ to LD_LIBRARY_PATH during make check
|
|
|
|
|
2016-02-29 20:01:52 +00:00
|
|
|
* Mon Feb 29 2016 Brian C. Lane <bcl@redhat.com> 3.2-16
|
|
|
|
- Cleanup library path usage in specfile
|
|
|
|
pkgconfig wasn't finding libparted.pc because it was under /usr/lib64/
|
|
|
|
- Explicitly reference the library files instead of use wildcards.
|
|
|
|
- Move libparted-fs-resize.so to the -devel package where it belongs.
|
|
|
|
- Add a pkgconfig file for the filesystem resize library
|
|
|
|
- tests: Add udevadm settle to wait_for_ loop
|
|
|
|
- tests: Add wait to t9042
|
|
|
|
- tests: Fix t1700 failing on a host with a 4k xfs file
|
|
|
|
|
2016-02-10 01:48:28 +00:00
|
|
|
* Tue Feb 09 2016 Brian C. Lane <bcl@redhat.com> 3.2-15
|
|
|
|
- fdasd.c Safeguard against geometry misprobing.patch (#1305931)
|
|
|
|
|
2016-02-04 11:57:39 +00:00
|
|
|
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 3.2-14
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
|
|
|
|
|
2015-10-29 23:35:49 +00:00
|
|
|
* Thu Oct 29 2015 Brian C. Lane <bcl@redhat.com> 3.2-13
|
|
|
|
- parted: fix build error on s390
|
|
|
|
|
2015-10-28 00:02:48 +00:00
|
|
|
* Tue Oct 27 2015 Brian C. Lane <bcl@redhat.com> 3.2-12
|
|
|
|
- dasd: enhance device probing
|
|
|
|
- fdasd: geometry handling updated from upstream s390-tools
|
|
|
|
|
2015-08-07 22:53:08 +00:00
|
|
|
* Fri Aug 07 2015 Brian C. Lane <bcl@redhat.com> 3.2-11
|
|
|
|
- tests: Fix patch 0012 test for extended partition length
|
|
|
|
- UI: Avoid memory leaks
|
|
|
|
- libparted: Fix memory leaks.patch
|
|
|
|
- libparted: Fix possible memory leaks.patch
|
|
|
|
- libparted: Stop converting . in-sys-path-to /
|
|
|
|
- libparted: Use read-only when probing devices on linux
|
|
|
|
- tests: Use wait_for_dev_to_ functions
|
|
|
|
|
2015-07-14 21:52:14 +00:00
|
|
|
* Mon Jul 13 2015 Brian C. Lane <bcl@redhat.com> 3.2-10
|
|
|
|
- parted: Fix crash with name command and no disklabel (#1226067)
|
|
|
|
|
2015-06-18 00:46:52 +00:00
|
|
|
* Thu Jun 18 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.2-9
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
|
|
|
|
|
2015-06-05 22:46:45 +00:00
|
|
|
* Fri Jun 05 2015 Brian C. Lane <bcl@redhat.com> 3.2-8
|
|
|
|
- tests: Make sure the extended partition length is 2 (#1135493)
|
|
|
|
- libparted: BLKPG_RESIZE_PARTITION uses bytes not sectors (#1135493)
|
|
|
|
|
2015-04-28 22:47:30 +00:00
|
|
|
* Tue Apr 28 2015 Brian C. Lane <bcl@redhat.com> 3.2-7
|
|
|
|
- Add python2 as a BuildRequires, used in some of the tests
|
|
|
|
|
2015-04-28 21:53:11 +00:00
|
|
|
* Tue Apr 28 2015 Brian C. Lane <bcl@redhat.com> 3.2-6
|
|
|
|
- Update manpage NAME so whatis will work (bcl)
|
|
|
|
- libparted: device mapper uses 512b sectors (bcl)
|
|
|
|
- tests: Add a test for device-mapper partition sizes (bcl)
|
|
|
|
- parted: don't crash in disk_set when disk label not found (psusi)
|
|
|
|
|
2014-11-07 19:21:32 +00:00
|
|
|
* Fri Nov 07 2014 Brian C. Lane <bcl@redhat.com> 3.2-5
|
|
|
|
- tests: Change minimum size to 256MiB for t1700-probe-fs
|
|
|
|
|
2014-10-31 20:38:24 +00:00
|
|
|
* Fri Oct 31 2014 Brian C. Lane <bcl@redhat.com> 3.2-4
|
|
|
|
- Update to current master commit ac74b83 to fix fat16 resize (#1159083)
|
|
|
|
- tests: t3000-resize-fs.sh: Add requirement on mkfs.vfat (mike.fleetwood)
|
|
|
|
- tests: t3000-resize-fs.sh: Add FAT16 resizing test (mike.fleetwood)
|
|
|
|
- lib-fs-resize: Prevent crash resizing FAT16 file systems (mike.fleetwood)
|
|
|
|
- libparted: also link to UUID_LIBS (heirecka)
|
|
|
|
|
2014-08-17 14:54:54 +00:00
|
|
|
* Sun Aug 17 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.2-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
|
|
|
|
|
2014-08-13 20:59:06 +00:00
|
|
|
* Wed Aug 13 2014 Brian C. Lane <bcl@redhat.com> 3.2-2
|
|
|
|
- Use a better patch to find the UTF8 locale for t0251
|
|
|
|
|
2014-07-29 19:07:49 +00:00
|
|
|
* Wed Jul 30 2014 Brian C. Lane <bcl@redhat.com> 3.2-1
|
|
|
|
- Rebase on upstream stable release v3.2
|
|
|
|
- Drop upstream patches.
|
|
|
|
- Patch t0251 to use en_US.UTF-8 if possible. Fedora doesn't have C.UTF-8
|