auto-import changelog data from e2fsprogs-1.19-4.src.rpm
* Fri Apr 06 2001 Florian La Roche <Florian.LaRoche@redhat.de> - add further IDE and SCSI disks to a hardcoded list in fsck #34190 * Tue Feb 27 2001 Florian La Roche <Florian.LaRoche@redhat.de> - require the main rpm from the devel rpm * Thu Feb 22 2001 Helge Deller <hdeller@redhat.de> - fix fsck -A bug (#21242) * Mon Feb 12 2001 Florian La Roche <Florian.LaRoche@redhat.de> - fix bug with 16 byte long labels #27071
This commit is contained in:
parent
5f41b65080
commit
516dfea656
@ -1,2 +1 @@
|
|||||||
e2fsprogs-1.18.tar.gz
|
e2fsprogs-1.19.tar.gz
|
||||||
e2fsprogs-resize.tar.gz
|
|
||||||
|
@ -3,19 +3,15 @@
|
|||||||
|
|
||||||
Summary: Utilities for managing the second extended (ext2) filesystem.
|
Summary: Utilities for managing the second extended (ext2) filesystem.
|
||||||
Name: e2fsprogs
|
Name: e2fsprogs
|
||||||
Version: 1.18
|
Version: 1.19
|
||||||
Release: 16
|
Release: 4
|
||||||
Copyright: GPL
|
Copyright: GPL
|
||||||
Group: System Environment/Base
|
Group: System Environment/Base
|
||||||
Source: ftp://tsx-11.mit.edu/pub/linux/packages/ext2fs/e2fsprogs-%{version}.tar.gz
|
Source: ftp://download.sourceforge.net/pub/sourceforge/e2fsprogs/e2fsprogs-1.19.tar.gz
|
||||||
# The next source was extracted from:
|
Patch1: e2fsprogs-1.19-mountlabel.patch
|
||||||
# http://download.sourceforge.net/e2fsprogs/e2fsprogs-1.19-WIP.tar.gz
|
Patch2: e2fsprogs-1.19-mountlabel2.patch
|
||||||
Source1: e2fsprogs-resize.tar.gz
|
Patch3: e2fsprogs-1.19-fsck_parallel.patch
|
||||||
Patch0: e2fsprogs-et.patch
|
Patch4: e2fsprogs-1.19-partitions.patch
|
||||||
Patch1: e2fsprogs-debugfsy2k.patch
|
|
||||||
Patch2: e2fsprogs-1.18-linux24.patch
|
|
||||||
Patch3: e2fsprogs-1.18-resize.patch
|
|
||||||
Patch4: e2fsprogs-1.18-mountlabel.patch
|
|
||||||
Prereq: /sbin/ldconfig
|
Prereq: /sbin/ldconfig
|
||||||
BuildRoot: %{_tmppath}/%{name}-root
|
BuildRoot: %{_tmppath}/%{name}-root
|
||||||
|
|
||||||
@ -36,7 +32,7 @@ performance of an ext2 filesystem.
|
|||||||
%package devel
|
%package devel
|
||||||
Summary: Ext2 filesystem-specific static libraries and headers.
|
Summary: Ext2 filesystem-specific static libraries and headers.
|
||||||
Group: Development/Libraries
|
Group: Development/Libraries
|
||||||
Requires: e2fsprogs
|
Requires: e2fsprogs = %{version}
|
||||||
Prereq: /sbin/install-info
|
Prereq: /sbin/install-info
|
||||||
|
|
||||||
%description devel
|
%description devel
|
||||||
@ -48,12 +44,11 @@ filesystem-specific programs. If you install e2fsprogs-devel, you'll
|
|||||||
also want to install e2fsprogs.
|
also want to install e2fsprogs.
|
||||||
|
|
||||||
%prep
|
%prep
|
||||||
%setup -q -a 1
|
%setup -q
|
||||||
%patch0 -p1
|
%patch1 -p1 -b .mountlabel
|
||||||
%patch1 -p1
|
%patch2 -p1 -b .mountlabel2
|
||||||
%patch2 -p1 -b .linux24
|
%patch3 -p1 -b .fsck_parallel
|
||||||
%patch3 -p1 -b .resize
|
%patch4 -p1
|
||||||
%patch4 -p1 -b .mountlabel
|
|
||||||
|
|
||||||
autoconf
|
autoconf
|
||||||
|
|
||||||
@ -65,31 +60,31 @@ make libs progs docs
|
|||||||
rm -rf $RPM_BUILD_ROOT
|
rm -rf $RPM_BUILD_ROOT
|
||||||
export PATH=/sbin:$PATH
|
export PATH=/sbin:$PATH
|
||||||
|
|
||||||
#make install install-libs DESTDIR="$RPM_BUILD_ROOT" \
|
make install install-libs DESTDIR="$RPM_BUILD_ROOT" \
|
||||||
# root_sbindir=%{_root_sbindir} root_libdir=%{_root_libdir}
|
root_sbindir=%{_root_sbindir} root_libdir=%{_root_libdir}
|
||||||
|
|
||||||
%makeinstall \
|
{ cd ${RPM_BUILD_ROOT}%{_libdir}
|
||||||
root_sbindir=${RPM_BUILD_ROOT}%{_root_sbindir} \
|
ln -sf %{_root_libdir}/libcom_err.so.2 libcom_err.so
|
||||||
root_libdir=${RPM_BUILD_ROOT}%{_root_libdir} \
|
ln -sf %{_root_libdir}/libe2p.so.2 libe2p.so
|
||||||
install-libs
|
ln -sf %{_root_libdir}/libext2fs.so.2 libext2fs.so
|
||||||
|
ln -sf %{_root_libdir}/libss.so.2 libss.so
|
||||||
{ cd ${RPM_BUILD_ROOT}
|
ln -sf %{_root_libdir}/libuuid.so.1 libuuid.so
|
||||||
ln -sf ../..%{_root_libdir}/libcom_err.so.2 .%{_libdir}/libcom_err.so
|
|
||||||
ln -sf ../..%{_root_libdir}/libe2p.so.2 .%{_libdir}/libe2p.so
|
|
||||||
ln -sf ../..%{_root_libdir}/libext2fs.so.2 .%{_libdir}/libext2fs.so
|
|
||||||
ln -sf ../..%{_root_libdir}/libss.so.2 .%{_libdir}/libss.so
|
|
||||||
ln -sf ../..%{_root_libdir}/libuuid.so.1 .%{_libdir}/libuuid.so
|
|
||||||
}
|
}
|
||||||
|
|
||||||
%clean
|
%clean
|
||||||
rm -rf $RPM_BUILD_ROOT
|
rm -rf $RPM_BUILD_ROOT
|
||||||
|
|
||||||
%post -p /sbin/ldconfig
|
%post -p /sbin/ldconfig
|
||||||
|
#### Remove possibly old version
|
||||||
|
### /bin/rm -f /usr/sbin/resize2fs
|
||||||
|
|
||||||
|
|
||||||
%postun -p /sbin/ldconfig
|
%postun -p /sbin/ldconfig
|
||||||
|
|
||||||
%post devel
|
%post devel
|
||||||
|
if [ -x /sbin/install-info ]; then
|
||||||
/sbin/install-info %{_infodir}/libext2fs.info.gz %{_infodir}/dir
|
/sbin/install-info %{_infodir}/libext2fs.info.gz %{_infodir}/dir
|
||||||
|
fi
|
||||||
|
|
||||||
%postun devel
|
%postun devel
|
||||||
if [ $1 = 0 ]; then
|
if [ $1 = 0 ]; then
|
||||||
@ -107,6 +102,7 @@ fi
|
|||||||
%{_root_sbindir}/e2label
|
%{_root_sbindir}/e2label
|
||||||
%{_root_sbindir}/fsck
|
%{_root_sbindir}/fsck
|
||||||
%{_root_sbindir}/fsck.ext2
|
%{_root_sbindir}/fsck.ext2
|
||||||
|
%{_root_sbindir}/fsck.ext3
|
||||||
%{_root_sbindir}/mke2fs
|
%{_root_sbindir}/mke2fs
|
||||||
%{_root_sbindir}/mkfs.ext2
|
%{_root_sbindir}/mkfs.ext2
|
||||||
%{_root_sbindir}/resize2fs
|
%{_root_sbindir}/resize2fs
|
||||||
@ -164,17 +160,24 @@ fi
|
|||||||
%{_mandir}/man3/com_err.3*
|
%{_mandir}/man3/com_err.3*
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
* Wed Oct 04 2000 Erik Troan <ewt@redhat.com>
|
* Fri Apr 06 2001 Florian La Roche <Florian.LaRoche@redhat.de>
|
||||||
- fix for 16 character labels
|
- add further IDE and SCSI disks to a hardcoded list in fsck #34190
|
||||||
|
|
||||||
* Wed Aug 30 2000 Matt Wilson <msw@redhat.com>
|
* Tue Feb 27 2001 Florian La Roche <Florian.LaRoche@redhat.de>
|
||||||
- rebuild to cope with glibc locale binary incompatibility, again
|
- require the main rpm from the devel rpm
|
||||||
|
|
||||||
* Wed Aug 16 2000 Jeff Johnson <jbj@redhat.com>
|
* Thu Feb 22 2001 Helge Deller <hdeller@redhat.de>
|
||||||
- correct relative symlinks (#16130).
|
- fix fsck -A bug (#21242)
|
||||||
|
|
||||||
* Mon Aug 14 2000 Preston Brown <pbrown@redhat.com>
|
* Mon Feb 12 2001 Florian La Roche <Florian.LaRoche@redhat.de>
|
||||||
- absolute --> relative symlinks (#16130)
|
- fix bug with 16 byte long labels #27071
|
||||||
|
|
||||||
|
* Mon Sep 11 2000 Jeff Johnson <jbj@redhat.com>
|
||||||
|
- build for Red Hat 7.1.
|
||||||
|
|
||||||
|
* Tue Aug 8 2000 Jeff Johnson <jbj@redhat.com>
|
||||||
|
- merge LABEL patch.
|
||||||
|
- update to 1.19.
|
||||||
|
|
||||||
* Tue Jul 25 2000 Erik Troan <ewt@redhat.com>
|
* Tue Jul 25 2000 Erik Troan <ewt@redhat.com>
|
||||||
- fixed LABEL handling
|
- fixed LABEL handling
|
||||||
|
Loading…
Reference in New Issue
Block a user