spec file cleanup
This commit is contained in:
parent
2ee90c9b5c
commit
85790f08a5
39
unzip.spec
39
unzip.spec
@ -1,11 +1,10 @@
|
|||||||
Summary: A utility for unpacking zip files
|
Summary: A utility for unpacking zip files
|
||||||
Name: unzip
|
Name: unzip
|
||||||
Version: 6.0
|
Version: 6.0
|
||||||
Release: 2%{?dist}
|
Release: 3%{?dist}
|
||||||
License: BSD
|
License: BSD
|
||||||
Group: Applications/Archiving
|
Group: Applications/Archiving
|
||||||
Source: http://downloads.sourceforge.net/infozip/unzip60.tar.gz
|
Source: http://downloads.sourceforge.net/infozip/unzip60.tar.gz
|
||||||
|
|
||||||
# Not sent to upstream.
|
# Not sent to upstream.
|
||||||
Patch1: unzip-6.0-bzip2-configure.patch
|
Patch1: unzip-6.0-bzip2-configure.patch
|
||||||
# Upstream plans to do this in zip (hopefully also in unzip).
|
# Upstream plans to do this in zip (hopefully also in unzip).
|
||||||
@ -18,9 +17,7 @@ Patch4: unzip-6.0-attribs-overflow.patch
|
|||||||
# Not sent to upstream, as it's Fedora/RHEL specific.
|
# Not sent to upstream, as it's Fedora/RHEL specific.
|
||||||
# Modify the configure script not to request the strip of binaries.
|
# Modify the configure script not to request the strip of binaries.
|
||||||
Patch5: unzip-6.0-nostrip.patch
|
Patch5: unzip-6.0-nostrip.patch
|
||||||
|
|
||||||
URL: http://www.info-zip.org/UnZip.html
|
URL: http://www.info-zip.org/UnZip.html
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
|
|
||||||
BuildRequires: bzip2-devel
|
BuildRequires: bzip2-devel
|
||||||
|
|
||||||
%description
|
%description
|
||||||
@ -49,16 +46,18 @@ make -f unix/Makefile CF_NOOPT="-I. -DUNIX $RPM_OPT_FLAGS" generic_gcc %{?_smp_m
|
|||||||
rm -rf $RPM_BUILD_ROOT
|
rm -rf $RPM_BUILD_ROOT
|
||||||
make -f unix/Makefile prefix=$RPM_BUILD_ROOT%{_prefix} MANDIR=$RPM_BUILD_ROOT/%{_mandir}/man1 INSTALL="cp -p" install
|
make -f unix/Makefile prefix=$RPM_BUILD_ROOT%{_prefix} MANDIR=$RPM_BUILD_ROOT/%{_mandir}/man1 INSTALL="cp -p" install
|
||||||
|
|
||||||
%clean
|
|
||||||
rm -rf $RPM_BUILD_ROOT
|
|
||||||
|
|
||||||
%files
|
%files
|
||||||
%defattr(-,root,root)
|
%defattr(-,root,root)
|
||||||
%doc README BUGS LICENSE
|
%doc README BUGS LICENSE
|
||||||
%{_bindir}/*
|
%{_bindir}/*
|
||||||
%{_mandir}/*/*
|
%{_mandir}/*/*
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Mon May 24 2010 Karel Klic <kklic@redhat.com> - 6.0-3
|
||||||
|
- Removed BuildRoot tag
|
||||||
|
- Removed %%clean section
|
||||||
|
- Removed trailing whitespaces in the spec file
|
||||||
|
|
||||||
* Mon Nov 30 2009 Karel Klic <kklic@redhat.com> - 6.0-2
|
* Mon Nov 30 2009 Karel Klic <kklic@redhat.com> - 6.0-2
|
||||||
- Fixed a buffer overflow (rhbz#532380, unzip-6.0-attribs-overflow.patch)
|
- Fixed a buffer overflow (rhbz#532380, unzip-6.0-attribs-overflow.patch)
|
||||||
- Generate debuginfos (rhbz#540220, unzip-6.0-nostrip.patch)
|
- Generate debuginfos (rhbz#540220, unzip-6.0-nostrip.patch)
|
||||||
@ -66,19 +65,19 @@ rm -rf $RPM_BUILD_ROOT
|
|||||||
* Mon Nov 16 2009 Karel Klic <kklic@redhat.com> - 6.0-1
|
* Mon Nov 16 2009 Karel Klic <kklic@redhat.com> - 6.0-1
|
||||||
- New upstream version
|
- New upstream version
|
||||||
- Compiled using `make generic_gcc` (includes asm)
|
- Compiled using `make generic_gcc` (includes asm)
|
||||||
- Removed unzip542-rpmoptflags.patch, because RPM_OPT_FLAGS
|
- Removed unzip542-rpmoptflags.patch, because RPM_OPT_FLAGS
|
||||||
are provided using command line
|
are provided using command line
|
||||||
- Removed unzip-5.51-link-segv.patch, because the link file
|
- Removed unzip-5.51-link-segv.patch, because the link file
|
||||||
is not reopened in the current version
|
is not reopened in the current version
|
||||||
- Removed unzip-5.51-link-segv2.patch, the bug was already fixed
|
- Removed unzip-5.51-link-segv2.patch, the bug was already fixed
|
||||||
in open_outfile in 5.52
|
in open_outfile in 5.52
|
||||||
- Removed unzip-5.52-toctou.patch (CAN-2005-2475), the vulnerability
|
- Removed unzip-5.52-toctou.patch (CAN-2005-2475), the vulnerability
|
||||||
is fixed in the current version
|
is fixed in the current version
|
||||||
- Removed unzip-5.52-near-4GB.patch, unzip-5.52-near-4GB2.patch,
|
- Removed unzip-5.52-near-4GB.patch, unzip-5.52-near-4GB2.patch,
|
||||||
unzip-5.52-4GB3.patch, and unzip-5.52-4GB_types.patch, because
|
unzip-5.52-4GB3.patch, and unzip-5.52-4GB_types.patch, because
|
||||||
the current version supports large files
|
the current version supports large files
|
||||||
- Removed unzip-5.52-long-filename.patch, the current version
|
- Removed unzip-5.52-long-filename.patch, the current version
|
||||||
fixes the vulnerability by checking the length of command line
|
fixes the vulnerability by checking the length of command line
|
||||||
arguments in unzip.c
|
arguments in unzip.c
|
||||||
- Removed unzip-5.52-makefile.patch, because we no longer create
|
- Removed unzip-5.52-makefile.patch, because we no longer create
|
||||||
the link manually
|
the link manually
|
||||||
@ -110,10 +109,10 @@ rm -rf $RPM_BUILD_ROOT
|
|||||||
- fix open call
|
- fix open call
|
||||||
|
|
||||||
* Wed Feb 7 2007 Ivana Varekova <varekova@redhat.com> - 5.52-4
|
* Wed Feb 7 2007 Ivana Varekova <varekova@redhat.com> - 5.52-4
|
||||||
- incorporate the next peckage review comment
|
- incorporate the next peckage review comment
|
||||||
|
|
||||||
* Tue Feb 6 2007 Ivana Varekova <varekova@redhat.com> - 5.52-3
|
* Tue Feb 6 2007 Ivana Varekova <varekova@redhat.com> - 5.52-3
|
||||||
- Resolves: 226516
|
- Resolves: 226516
|
||||||
Incorporate the package review
|
Incorporate the package review
|
||||||
|
|
||||||
* Wed Jul 12 2006 Jesse Keating <jkeating@redhat.com> - 5.52-2.2.1
|
* Wed Jul 12 2006 Jesse Keating <jkeating@redhat.com> - 5.52-2.2.1
|
||||||
@ -139,7 +138,7 @@ rm -rf $RPM_BUILD_ROOT
|
|||||||
- fix bug 164928 - TOCTOU issue in unzip
|
- fix bug 164928 - TOCTOU issue in unzip
|
||||||
|
|
||||||
* Mon May 9 2005 Ivana Varekova <varekova@redhat.com> 5.51-11
|
* Mon May 9 2005 Ivana Varekova <varekova@redhat.com> 5.51-11
|
||||||
- fix bug 156959 – invalid file mode on created files
|
- fix bug 156959 – invalid file mode on created files
|
||||||
|
|
||||||
* Mon Mar 7 2005 Ivana Varekova <varekova@redhat.com> 5.51-10
|
* Mon Mar 7 2005 Ivana Varekova <varekova@redhat.com> 5.51-10
|
||||||
- rebuilt
|
- rebuilt
|
||||||
@ -291,7 +290,7 @@ include quote and/or control characters.
|
|||||||
* Mon May 21 2001 Trond Eivind Glomsrød <teg@redhat.com>
|
* Mon May 21 2001 Trond Eivind Glomsrød <teg@redhat.com>
|
||||||
- 5.42
|
- 5.42
|
||||||
- Don't strip binaries explicitly
|
- Don't strip binaries explicitly
|
||||||
- build without assembly, it doesn't seem to increase performance
|
- build without assembly, it doesn't seem to increase performance
|
||||||
- make it respect RPM_OPT_FLAGS, define _GNU_SOURCE
|
- make it respect RPM_OPT_FLAGS, define _GNU_SOURCE
|
||||||
- use %%{_tmppath}
|
- use %%{_tmppath}
|
||||||
- "License:" replaces "Copyright:"
|
- "License:" replaces "Copyright:"
|
||||||
@ -314,7 +313,7 @@ include quote and/or control characters.
|
|||||||
* Fri Jul 30 1999 Bill Nottingham <notting@redhat.com>
|
* Fri Jul 30 1999 Bill Nottingham <notting@redhat.com>
|
||||||
- update to 5.40
|
- update to 5.40
|
||||||
|
|
||||||
* Sun Mar 21 1999 Cristian Gafton <gafton@redhat.com>
|
* Sun Mar 21 1999 Cristian Gafton <gafton@redhat.com>
|
||||||
- auto rebuild in the new build environment (release 5)
|
- auto rebuild in the new build environment (release 5)
|
||||||
|
|
||||||
* Thu Dec 17 1998 Michael Maher <mike@redhat.com>
|
* Thu Dec 17 1998 Michael Maher <mike@redhat.com>
|
||||||
|
Loading…
Reference in New Issue
Block a user