2012-10-26 11:27:27 +00:00
|
|
|
%global library_version 1.0.6
|
|
|
|
|
2007-01-08 09:05:10 +00:00
|
|
|
Summary: A file compression utility
|
2004-09-09 03:39:02 +00:00
|
|
|
Name: bzip2
|
2010-09-22 08:45:46 +00:00
|
|
|
Version: 1.0.6
|
2014-06-07 03:47:34 +00:00
|
|
|
Release: 12%{?dist}
|
2004-09-09 03:39:56 +00:00
|
|
|
License: BSD
|
2004-09-09 03:39:02 +00:00
|
|
|
Group: Applications/File
|
2007-02-16 09:00:12 +00:00
|
|
|
URL: http://www.bzip.org/
|
2012-10-26 11:27:27 +00:00
|
|
|
Source: http://www.bzip.org/%{version}/%{name}-%{version}.tar.gz
|
|
|
|
|
2007-01-08 09:05:10 +00:00
|
|
|
Patch0: bzip2-1.0.4-saneso.patch
|
2012-10-26 11:27:27 +00:00
|
|
|
Patch1: bzip2-1.0.4-cflags.patch
|
|
|
|
# resolves: #226979
|
|
|
|
Patch2: bzip2-1.0.4-bzip2recover.patch
|
2004-09-09 03:39:02 +00:00
|
|
|
|
|
|
|
%description
|
|
|
|
Bzip2 is a freely available, patent-free, high quality data compressor.
|
2012-10-26 11:27:27 +00:00
|
|
|
Bzip2 compresses files to within 10 to 15 percent of the capabilities
|
|
|
|
of the best techniques available. However, bzip2 has the added benefit
|
|
|
|
of being approximately two times faster at compression and six times
|
|
|
|
faster at decompression than those techniques. Bzip2 is not the
|
|
|
|
fastest compression utility, but it does strike a balance between speed
|
2004-09-09 03:39:02 +00:00
|
|
|
and compression capability.
|
|
|
|
|
|
|
|
Install bzip2 if you need a compression utility.
|
|
|
|
|
|
|
|
%package devel
|
2012-10-26 11:27:27 +00:00
|
|
|
Summary: Libraries and header files for apps which will use bzip2
|
2004-09-09 03:39:02 +00:00
|
|
|
Group: Development/Libraries
|
2007-02-16 09:00:12 +00:00
|
|
|
Requires: bzip2-libs = %{version}-%{release}
|
2004-09-09 03:39:02 +00:00
|
|
|
|
|
|
|
%description devel
|
|
|
|
|
2009-03-17 07:29:21 +00:00
|
|
|
Header files and a library of bzip2 functions, for developing apps
|
2004-09-09 03:39:02 +00:00
|
|
|
which will use the library.
|
|
|
|
|
2004-09-09 03:39:56 +00:00
|
|
|
%package libs
|
|
|
|
Summary: Libraries for applications using bzip2
|
|
|
|
Group: System Environment/Libraries
|
|
|
|
|
|
|
|
%description libs
|
|
|
|
|
|
|
|
Libraries for applications using the bzip2 compression format.
|
|
|
|
|
2004-09-09 03:39:02 +00:00
|
|
|
%prep
|
2012-10-26 11:27:27 +00:00
|
|
|
%setup -q
|
2005-08-29 13:48:08 +00:00
|
|
|
%patch0 -p1 -b .saneso
|
2012-10-26 11:27:27 +00:00
|
|
|
%patch1 -p1 -b .cflags
|
|
|
|
%patch2 -p1 -b .bz2recover
|
2004-09-09 03:39:02 +00:00
|
|
|
|
|
|
|
%build
|
2014-02-12 08:57:58 +00:00
|
|
|
%if 0%{?rhel} >= 7
|
|
|
|
%ifarch ppc64
|
|
|
|
export O3="-O3"
|
|
|
|
%else
|
|
|
|
export O3=""
|
|
|
|
%endif
|
|
|
|
%else
|
|
|
|
export O3=""
|
|
|
|
%endif
|
|
|
|
|
2008-09-01 11:33:00 +00:00
|
|
|
make -f Makefile-libbz2_so CC="%{__cc}" AR="%{__ar}" RANLIB="%{__ranlib}" \
|
2014-02-12 08:57:58 +00:00
|
|
|
CFLAGS="$RPM_OPT_FLAGS -D_FILE_OFFSET_BITS=64 -fpic -fPIC $O3" \
|
2012-10-26 11:27:27 +00:00
|
|
|
%{?_smp_mflags} all
|
2004-09-09 03:40:17 +00:00
|
|
|
|
2004-09-09 03:40:02 +00:00
|
|
|
rm -f *.o
|
2008-09-01 11:33:00 +00:00
|
|
|
make CC="%{__cc}" AR="%{__ar}" RANLIB="%{__ranlib}" \
|
2014-02-12 08:57:58 +00:00
|
|
|
CFLAGS="$RPM_OPT_FLAGS -D_FILE_OFFSET_BITS=64 $O3" \
|
2012-10-26 11:27:27 +00:00
|
|
|
%{?_smp_mflags} all
|
2004-09-09 03:39:02 +00:00
|
|
|
|
|
|
|
%install
|
2012-10-26 12:31:06 +00:00
|
|
|
chmod 644 bzlib.h
|
|
|
|
mkdir -p $RPM_BUILD_ROOT{%{_bindir},%{_mandir}/man1,%{_libdir},%{_includedir}}
|
2007-03-15 14:00:20 +00:00
|
|
|
cp -p bzlib.h $RPM_BUILD_ROOT%{_includedir}
|
2012-10-26 12:31:06 +00:00
|
|
|
install -m 755 libbz2.so.%{library_version} $RPM_BUILD_ROOT%{_libdir}
|
2007-04-04 13:40:29 +00:00
|
|
|
install -m 755 bzip2-shared $RPM_BUILD_ROOT%{_bindir}/bzip2
|
|
|
|
install -m 755 bzip2recover bzgrep bzdiff bzmore $RPM_BUILD_ROOT%{_bindir}/
|
2007-03-15 14:00:20 +00:00
|
|
|
cp -p bzip2.1 bzdiff.1 bzgrep.1 bzmore.1 $RPM_BUILD_ROOT%{_mandir}/man1/
|
|
|
|
ln -s bzip2 $RPM_BUILD_ROOT%{_bindir}/bunzip2
|
|
|
|
ln -s bzip2 $RPM_BUILD_ROOT%{_bindir}/bzcat
|
|
|
|
ln -s bzdiff $RPM_BUILD_ROOT%{_bindir}/bzcmp
|
|
|
|
ln -s bzmore $RPM_BUILD_ROOT%{_bindir}/bzless
|
2013-12-11 14:46:02 +00:00
|
|
|
ln -s bzgrep $RPM_BUILD_ROOT%{_bindir}/bzegrep
|
|
|
|
ln -s bzgrep $RPM_BUILD_ROOT%{_bindir}/bzfgrep
|
2012-10-26 12:31:06 +00:00
|
|
|
ln -s libbz2.so.%{library_version} $RPM_BUILD_ROOT%{_libdir}/libbz2.so.1
|
|
|
|
ln -s libbz2.so.1 $RPM_BUILD_ROOT%{_libdir}/libbz2.so
|
2007-03-15 14:00:20 +00:00
|
|
|
ln -s bzip2.1 $RPM_BUILD_ROOT%{_mandir}/man1/bzip2recover.1
|
|
|
|
ln -s bzip2.1 $RPM_BUILD_ROOT%{_mandir}/man1/bunzip2.1
|
|
|
|
ln -s bzip2.1 $RPM_BUILD_ROOT%{_mandir}/man1/bzcat.1
|
|
|
|
ln -s bzdiff.1 $RPM_BUILD_ROOT%{_mandir}/man1/bzcmp.1
|
|
|
|
ln -s bzmore.1 $RPM_BUILD_ROOT%{_mandir}/man1/bzless.1
|
2013-12-11 14:46:02 +00:00
|
|
|
ln -s bzgrep.1 $RPM_BUILD_ROOT%{_mandir}/man1/bzegrep.1
|
|
|
|
ln -s bzgrep.1 $RPM_BUILD_ROOT%{_mandir}/man1/bzfgrep.1
|
2004-09-09 03:39:02 +00:00
|
|
|
|
2004-09-09 03:39:56 +00:00
|
|
|
%post libs -p /sbin/ldconfig
|
2004-09-09 03:39:02 +00:00
|
|
|
|
2004-09-09 03:39:56 +00:00
|
|
|
%postun libs -p /sbin/ldconfig
|
2004-09-09 03:39:02 +00:00
|
|
|
|
|
|
|
%files
|
2012-10-26 11:27:27 +00:00
|
|
|
%doc LICENSE CHANGES README
|
2004-09-09 03:39:02 +00:00
|
|
|
%{_bindir}/*
|
|
|
|
%{_mandir}/*/*
|
2004-09-09 03:39:56 +00:00
|
|
|
|
|
|
|
%files libs
|
2010-07-12 05:38:08 +00:00
|
|
|
%doc LICENSE
|
2012-10-26 12:31:06 +00:00
|
|
|
%{_libdir}/libbz2.so.1*
|
2004-09-09 03:39:02 +00:00
|
|
|
|
|
|
|
%files devel
|
2007-02-15 14:46:45 +00:00
|
|
|
%doc manual.html manual.pdf
|
2004-09-09 03:39:02 +00:00
|
|
|
%{_includedir}/*
|
2012-10-26 12:31:06 +00:00
|
|
|
%{_libdir}/*.so
|
2004-09-09 03:39:02 +00:00
|
|
|
|
|
|
|
%changelog
|
2014-06-07 03:47:34 +00:00
|
|
|
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.0.6-12
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
|
|
|
|
|
2014-02-12 08:57:58 +00:00
|
|
|
* Tue Feb 11 2014 jchaloup <jchaloup@redhat.com> - 1.0.6-11
|
|
|
|
- resolves: #1063849
|
|
|
|
recompiled with -O3 flag for ppc64 arch
|
|
|
|
|
2013-12-11 14:46:02 +00:00
|
|
|
* Wed Dec 11 2013 Peter Schiffer <pschiffe@redhat.com> - 1.0.6-10
|
|
|
|
- resolves: #1034855
|
|
|
|
provided missing bzegrep and bzfgrep shortcuts
|
|
|
|
|
2013-08-03 04:11:14 +00:00
|
|
|
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.0.6-9
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
|
|
|
|
|
2013-02-13 18:09:10 +00:00
|
|
|
* Wed Feb 13 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.0.6-8
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
|
|
|
|
|
2012-10-26 12:31:06 +00:00
|
|
|
* Fri Oct 26 2012 Peter Schiffer <pschiffe@redhat.com> - 1.0.6-7
|
|
|
|
- moved libraries from /lib to /usr/lib
|
|
|
|
|
2012-10-26 11:27:27 +00:00
|
|
|
* Fri Oct 26 2012 Peter Schiffer <pschiffe@redhat.com> - 1.0.6-6
|
|
|
|
- .spec file cleanup
|
|
|
|
|
2012-07-18 18:28:20 +00:00
|
|
|
* Wed Jul 18 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.0.6-5
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
|
|
|
|
|
2012-01-12 22:56:20 +00:00
|
|
|
* Thu Jan 12 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.0.6-4
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
|
|
|
|
|
2011-02-08 06:11:32 +00:00
|
|
|
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.0.6-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
|
|
|
|
|
2010-09-29 21:00:04 +00:00
|
|
|
* Wed Sep 29 2010 jkeating - 1.0.6-2
|
|
|
|
- Rebuilt for gcc bug 634757
|
|
|
|
|
2010-09-22 08:45:46 +00:00
|
|
|
* Wed Sep 22 2010 Ivana Hutarova Varekova <varekova@redhat.com> - 1.0.6-1
|
|
|
|
- update to 1.0.6
|
|
|
|
|
2010-07-12 05:38:08 +00:00
|
|
|
* Mon Jul 12 2010 Ivana Hutarova Varekova <varekova@redhat.com> - 1.0.5-7
|
|
|
|
- add LICENSE to bzip2-libs
|
|
|
|
|
2009-07-24 18:32:34 +00:00
|
|
|
* Fri Jul 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.0.5-6
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
|
|
|
|
|
2009-03-17 07:29:21 +00:00
|
|
|
* Tue Mar 17 2009 Ivana Varekova <varekova@redhat.com> 1.0.5-5
|
|
|
|
- remove static library
|
|
|
|
|
2009-02-24 06:14:42 +00:00
|
|
|
* Mon Feb 23 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.0.5-4
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
|
|
|
|
|
2008-09-01 10:30:41 +00:00
|
|
|
* Mon Sep 1 2008 Ivana Varekova <varekova@redhat.com> 1.0.5-3
|
|
|
|
- minor spec file changew
|
|
|
|
|
2008-04-10 07:19:49 +00:00
|
|
|
* Thu Apr 10 2008 Ivana Varekova <varekova@redhat.com> 1.0.5-2
|
|
|
|
- Resolves: #441775
|
|
|
|
fix libs link
|
|
|
|
|
2008-03-25 13:02:53 +00:00
|
|
|
* Tue Mar 25 2008 Ivana Varekova <varekova@redhat.com> 1.0.5-1
|
|
|
|
- update to 1.0.5
|
|
|
|
|
2008-02-20 06:32:55 +00:00
|
|
|
* Wed Feb 20 2008 Fedora Release Engineering <rel-eng@fedoraproject.org> - 1.0.4-14
|
|
|
|
- Autorebuild for GCC 4.3
|
|
|
|
|
2008-01-23 15:56:06 +00:00
|
|
|
* Wed Jan 23 2008 Ivana Varekova <varekova@redhat.com> 1.0.4-13
|
|
|
|
- rebuild
|
|
|
|
|
2007-05-21 12:25:47 +00:00
|
|
|
* Mon May 21 2007 Ivana Varekova <varekova@redhat.com> 1.0.4-12
|
|
|
|
- fix *.so,*.a directory
|
|
|
|
|
2007-05-21 09:20:37 +00:00
|
|
|
* Mon May 21 2007 Ivana Varekova <varekova@redhat.com> 1.0.4-11
|
|
|
|
- remove libbz2.* from /usr/lib* to /lib*
|
|
|
|
|
2007-04-04 13:55:03 +00:00
|
|
|
* Wed Apr 4 2007 Ivana Varekova <varekova@redhat.com> 1.0.4-10
|
|
|
|
- change libz.a permissions
|
|
|
|
|
2007-04-04 13:40:29 +00:00
|
|
|
* Wed Apr 4 2007 Ivana Varekova <varekova@redhat.com> 1.0.4-9
|
|
|
|
- remove useless -p
|
|
|
|
|
2007-03-15 14:00:20 +00:00
|
|
|
* Thu Mar 15 2007 Ivana Varekova <varekova@redhat.com> 1.0.4-8
|
|
|
|
- remove unnecessary "/" after RPM_BUILD_ROOT macro
|
|
|
|
|
2007-02-19 20:26:05 +00:00
|
|
|
* Mon Feb 19 2007 Jesse Keating <jkeating@redhat.com> 1.0.4-7
|
|
|
|
- Temporarily add static lib back in for rpm
|
|
|
|
|
2007-02-16 09:00:12 +00:00
|
|
|
* Fri Feb 16 2007 Ivana Varekova <varekova@redhat.com> 1.0.4-6
|
|
|
|
- incorporate the next review feedback
|
|
|
|
|
2007-02-15 14:46:45 +00:00
|
|
|
* Thu Feb 15 2007 Ivana Varekova <varekova@redhat.com> 1.0.4-5
|
|
|
|
- incorporate package review feedback
|
|
|
|
|
2007-02-06 14:50:41 +00:00
|
|
|
* Tue Feb 6 2007 Ivana Varekova <varekova@redhat.com> 1.0.4-4
|
|
|
|
- fix bzip2recover patch
|
|
|
|
|
2007-02-05 12:06:55 +00:00
|
|
|
* Mon Feb 5 2007 Ivana Varekova <varekova@redhat.com> 1.0.4-3
|
2007-02-05 11:12:02 +00:00
|
|
|
- Resolves: 226979
|
|
|
|
Buffer overflow in bzip2's bzip2recover
|
|
|
|
|
2007-01-08 09:07:55 +00:00
|
|
|
* Mon Jan 8 2007 Ivana Varekova <varekova@redhat.com> 1.0.4-1
|
2007-01-08 09:05:10 +00:00
|
|
|
- update to 1.0.4
|
|
|
|
- spec file cleanup
|
|
|
|
|
2006-07-17 08:11:20 +00:00
|
|
|
* Mon Jul 17 2006 Ivana Varekova <varekova@redhat.com> 1.0.3-3
|
|
|
|
- add cflags (#198926)
|
|
|
|
|
2006-07-12 05:29:54 +00:00
|
|
|
* Wed Jul 12 2006 Jesse Keating <jkeating@redhat.com> - 1.0.3-2.2.2
|
|
|
|
- rebuild
|
|
|
|
|
2006-02-11 02:13:09 +00:00
|
|
|
* Fri Feb 10 2006 Jesse Keating <jkeating@redhat.com> - 1.0.3-2.2.1
|
|
|
|
- bump again for double-long bug on ppc(64)
|
|
|
|
|
2006-02-07 11:12:23 +00:00
|
|
|
* Tue Feb 07 2006 Jesse Keating <jkeating@redhat.com> - 1.0.3-2.2
|
|
|
|
- rebuilt for new gcc4.1 snapshot and glibc changes
|
|
|
|
|
2005-12-09 22:39:51 +00:00
|
|
|
* Fri Dec 09 2005 Jesse Keating <jkeating@redhat.com>
|
|
|
|
- rebuilt
|
|
|
|
|
2005-11-25 14:44:39 +00:00
|
|
|
* Fri Nov 25 2005 Ivana Varekova <varekova@redhat.com> 1.0.3-2
|
|
|
|
- fix bug 174172 - CAN-2005-0758 bzgrep has security issue in sed usage
|
|
|
|
|
2005-08-29 13:48:08 +00:00
|
|
|
* Mon Aug 29 2005 Ivana Varekova <varekova@redhat.com> 1.0.3-1
|
|
|
|
- 1.0.3
|
|
|
|
- add NULL-ptr-check patch
|
|
|
|
(patch author: Mihai Limbasan <mihailim@gmail.com)
|
|
|
|
|
2005-05-19 12:51:19 +00:00
|
|
|
* Thu May 19 2005 Jiri Ryska <jryska@redhat.com>
|
|
|
|
- fixed permission setting for decompressed files #155742
|
|
|
|
- fixed decompression bomb (DoS) #157548
|
|
|
|
|
2005-03-04 16:20:52 +00:00
|
|
|
* Fri Mar 04 2005 Jiri Ryska <jryska@redhat.com>
|
|
|
|
- rebuilt
|
|
|
|
|
2004-12-09 15:06:00 +00:00
|
|
|
* Thu Dec 09 2004 Jiri Ryska <jryska@redhat.com>
|
|
|
|
- changed temp file creation in bzdiff #92444
|
|
|
|
|
2004-09-09 03:41:34 +00:00
|
|
|
* Tue Jun 15 2004 Elliot Lee <sopwith@redhat.com>
|
|
|
|
- rebuilt
|
|
|
|
|
2004-09-09 03:41:31 +00:00
|
|
|
* Tue Mar 02 2004 Elliot Lee <sopwith@redhat.com>
|
|
|
|
- rebuilt
|
|
|
|
|
|
|
|
* Fri Feb 13 2004 Elliot Lee <sopwith@redhat.com>
|
|
|
|
- rebuilt
|
|
|
|
|
|
|
|
* Tue Jun 17 2003 Jeff Johnson <jbj@redhat.com> 1.0.2-11
|
|
|
|
- rebuilt because of crt breakage on ppc64.
|
|
|
|
|
2004-09-09 03:40:50 +00:00
|
|
|
* Wed Jun 04 2003 Elliot Lee <sopwith@redhat.com>
|
|
|
|
- rebuilt
|
|
|
|
|
|
|
|
* Mon Mar 31 2003 Jeff Johnson <jbj@redhat.com> 1.0.2-9
|
|
|
|
- rebuild to get rid of undefined __ctype_b in libbz2.a.
|
|
|
|
|
2004-09-09 03:40:17 +00:00
|
|
|
* Wed Jan 22 2003 Tim Powers <timp@redhat.com>
|
|
|
|
- rebuilt
|
|
|
|
|
|
|
|
* Thu Nov 21 2002 Elliot Lee <sopwith@redhat.com>
|
|
|
|
- Pass __cc/__ar/__ranlib to makefiles
|
|
|
|
- Use _smp_mflags
|
|
|
|
|
|
|
|
* Tue Nov 19 2002 Tim Powers <timp@redhat.com>
|
|
|
|
- rebuild on all arches
|
|
|
|
- fix %%doc file list
|
|
|
|
|
2004-09-09 03:40:12 +00:00
|
|
|
* Fri Jun 21 2002 Tim Powers <timp@redhat.com>
|
|
|
|
- automated rebuild
|
|
|
|
|
2004-09-09 03:40:09 +00:00
|
|
|
* Thu May 23 2002 Tim Powers <timp@redhat.com>
|
|
|
|
- automated rebuild
|
|
|
|
|
2007-01-08 09:05:10 +00:00
|
|
|
* Thu Apr 25 2002 Trond Eivind Glomsrød <teg@redhat.com> 1.0.2-3
|
2004-09-09 03:40:09 +00:00
|
|
|
- Rebuild in new environment
|
|
|
|
|
2007-01-08 09:05:10 +00:00
|
|
|
* Thu Feb 21 2002 Trond Eivind Glomsrød <teg@redhat.com> 1.0.2-2
|
2004-09-09 03:40:02 +00:00
|
|
|
- Rebuild
|
|
|
|
|
2007-01-08 09:05:10 +00:00
|
|
|
* Wed Jan 30 2002 Trond Eivind Glomsrød <teg@redhat.com> 1.0.2-1
|
2004-09-09 03:40:02 +00:00
|
|
|
- 1.0.2
|
|
|
|
- Total overhaul of build precedure
|
|
|
|
- Add many small helper programs added to 1.0.2
|
|
|
|
- drop old patches
|
|
|
|
|
|
|
|
* Wed Jan 09 2002 Tim Powers <timp@redhat.com>
|
|
|
|
- automated rebuild
|
|
|
|
|
2007-01-08 09:05:10 +00:00
|
|
|
* Mon Nov 26 2001 Trond Eivind Glomsrød <teg@redhat.com> 1.0.1-5
|
2004-09-09 03:40:02 +00:00
|
|
|
- Don't segfault when infile is a directory and "-f" is used (#56623)
|
|
|
|
- Automake is evil. Add workaround
|
|
|
|
|
2007-01-08 09:05:10 +00:00
|
|
|
* Fri Mar 30 2001 Trond Eivind Glomsrød <teg@redhat.com>
|
2004-09-09 03:39:56 +00:00
|
|
|
- use "License" instead of "Copyright"
|
|
|
|
- split out libs
|
|
|
|
|
2007-01-08 09:05:10 +00:00
|
|
|
* Fri Jul 21 2000 Trond Eivind Glomsrød <teg@redhat.com>
|
2004-09-09 03:39:02 +00:00
|
|
|
- new URL and source location
|
|
|
|
|
|
|
|
* Wed Jul 12 2000 Prospector <bugzilla@redhat.com>
|
|
|
|
- automatic rebuild
|
|
|
|
|
2007-01-08 09:05:10 +00:00
|
|
|
* Sat Jul 01 2000 Trond Eivind Glomsrød <teg@redhat.com>
|
2004-09-09 03:39:02 +00:00
|
|
|
- 1.0.1
|
|
|
|
- ported my patch
|
|
|
|
|
|
|
|
* Tue Jun 13 2000 Jeff Johnson <jbj@redhat.com>
|
|
|
|
- FHS packaging to build on solaris2.5.1.
|
|
|
|
- remove config.cache from autoconf patch.
|
|
|
|
- sparc: use %%configure, but not the m4 macros.
|
|
|
|
|
2007-01-08 09:05:10 +00:00
|
|
|
* Tue Jun 06 2000 Trond Eivind Glomsrød <teg@redhat.com>
|
2004-09-09 03:39:02 +00:00
|
|
|
- Use %%configure, %%makeinstall, %%{_manpath} and %%{_tmpdir}
|
|
|
|
|
2007-01-08 09:05:10 +00:00
|
|
|
* Wed May 17 2000 Trond Eivind Glomsrød <teg@redhat.com>
|
2004-09-09 03:39:02 +00:00
|
|
|
- 1.0.0 - ported my 1.0pre8 libtoolizedautoconf patch
|
|
|
|
|
2007-01-08 09:05:10 +00:00
|
|
|
* Tue May 16 2000 Trond Eivind Glomsrød <teg@redhat.com>
|
2004-09-09 03:39:02 +00:00
|
|
|
- use soft links, not hardlinks, for binaries
|
|
|
|
- mv .so to devel
|
|
|
|
|
2007-01-08 09:05:10 +00:00
|
|
|
* Mon May 15 2000 Trond Eivind Glomsrød <teg@redhat.com>
|
2004-09-09 03:39:02 +00:00
|
|
|
- autoconfed and libtoolized package
|
|
|
|
- fixed Copyright (it's BSD, not GPL)
|
|
|
|
- dumped bzless (less works fine with bz2-files)
|
|
|
|
- rewrote build and install parts
|
|
|
|
- separated main package and devel package
|
|
|
|
|
2007-01-08 09:05:10 +00:00
|
|
|
* Mon May 8 2000 Bernhard Rosenkränzer <bero@redhat.com>
|
2004-09-09 03:39:02 +00:00
|
|
|
- 1.0pre8
|
|
|
|
|
2007-01-08 09:05:10 +00:00
|
|
|
* Fri Apr 14 2000 Bernhard Rosenkränzer <bero@redhat.com>
|
2004-09-09 03:39:02 +00:00
|
|
|
- Add bzgrep (a version of zgrep hacked to do bzip2)
|
|
|
|
|
|
|
|
* Mon Feb 7 2000 Bill Nottingham <notting@redhat.com>
|
|
|
|
- handle compressed manpages
|
|
|
|
|
2007-01-08 09:05:10 +00:00
|
|
|
* Fri Dec 31 1999 Bernhard Rosenkränzer <bero@redhat.com>
|
2004-09-09 03:39:02 +00:00
|
|
|
- 0.9.5d
|
|
|
|
- Update download URL, add URL: tag in header
|
|
|
|
|
|
|
|
* Tue Aug 10 1999 Jeff Johnson <jbj@redhat.com>
|
|
|
|
- upgrade to 0.9.5c.
|
|
|
|
|
|
|
|
* Mon Aug 9 1999 Bill Nottingham <notting@redhat.com>
|
|
|
|
- install actual bzip2 binary, not libtool cruft.
|
|
|
|
|
|
|
|
* Sun Aug 8 1999 Jeff Johnson <jbj@redhat.com>
|
|
|
|
- run ldconfig to get shared library.
|
|
|
|
|
|
|
|
* Mon Aug 2 1999 Jeff Johnson <jbj@redhat.com>
|
|
|
|
- create shared libbz1.so.* library.
|
|
|
|
|
|
|
|
* Sun Apr 4 1999 Jeff Johnson <jbj@redhat.com>
|
|
|
|
- update to bzip2-0.9.0c.
|
|
|
|
|
|
|
|
* Sun Mar 21 1999 Cristian Gafton <gafton@redhat.com>
|
|
|
|
- auto rebuild in the new build environment (release 4)
|
|
|
|
|
|
|
|
* Thu Dec 17 1998 Cristian Gafton <gafton@redhat.com>
|
|
|
|
- build against glibc 2.1
|
|
|
|
|
|
|
|
* Wed Sep 30 1998 Cristian Gafton <gafton@redhat.com>
|
|
|
|
- force compilation with egcs to avoid gcc optimization bug (thank God
|
|
|
|
we haven't been beaten by it)
|
|
|
|
|
|
|
|
* Wed Sep 09 1998 Cristian Gafton <gafton@redhat.com>
|
|
|
|
- version 0.9.0b
|
|
|
|
|
|
|
|
* Tue Sep 08 1998 Cristian Gafton <gafton@redhat.com>
|
|
|
|
- updated to 0.9.0
|
|
|
|
|
|
|
|
* Thu Apr 09 1998 Cristian Gafton <gafton@redhat.com>
|
|
|
|
- first build for Manhattan
|