forked from pool/unzip
ae7f693109
* Support PKWARE ZIP64 extensions, allowing Zip archives and Zip archive entries larger than 4 GiBytes and more than 65536 entries within a single Zip archive. This support is currently only available for Unix, OpenVMS and Win32/Win64. * Support for bzip2 compression method. * Support for UTF-8 encoded entry names, both through PKWARE's "General Purpose Flags Bit 11" indicator and Info-ZIP's new "up" unicode path extra field. (Currently, on Windows the UTF-8 handling is limited to the character subset contained in the configured non-unicode "system code page".) * Fixed "Time of Creation/Time of Use" vulnerability when setting attributes of extracted files, for Unix and Unix-like ports. * Fixed memory leak when processing invalid deflated data. * Fixed long-standing bug in unshrink (partial_clear), added boundary checks against invalid compressed data. * On Unix, keep inherited SGID attribute bit for extracted directories unless restoration of owner/group id or SUID/SGID/Tacky attributes was requested. * On Unix, allow extracted filenames to contain embedded control characters when explicitly requested by specifying the new command line option "-^". * On Unix, support restoration of symbolic link attributes. * On Unix, support restoration of 32-bit UID/GID data using the new "ux" IZUNIX3 extra field introduced with Zip 3.0. * Support symbolic links zipped up on VMS. * New -D option to suppress restoration of timestamps for extracted directory entries (on those ports that support setting of directory timestamps). By specifying "-DD", this new option also allows to suppress timestamp restoration for ALL extracted files on all UnZip ports which support restoration of timestamps. On VMS, the default behaviour is now to skip restoration of directory timestamps; here, "--D" restores ALL timestamps, "-D" restores none. * On OS/2, Win32, and Unix, the (previously optional) feature UNIXBACKUP to allow saving backup copies of overwritten files on extraction is now enabled by default. OBS-URL: https://build.opensuse.org/package/show/Archiving/unzip?expand=0&rev=8
95 lines
2.7 KiB
RPMSpec
95 lines
2.7 KiB
RPMSpec
#
|
|
# spec file for package unzip (Version 5.52)
|
|
#
|
|
# Copyright (c) 2010 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
|
#
|
|
# All modifications and additions to the file contributed by third parties
|
|
# remain the property of their copyright owners, unless otherwise agreed
|
|
# upon. The license for this file, and modifications and additions to the
|
|
# file, is the same license as for the pristine package itself (unless the
|
|
# license for the pristine package is not an Open Source License, in which
|
|
# case the license is the MIT License). An "Open Source License" is a
|
|
# license that conforms to the Open Source Definition (Version 1.9)
|
|
# published by the Open Source Initiative.
|
|
|
|
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
|
#
|
|
|
|
|
|
|
|
Name: unzip
|
|
License: BSD3c
|
|
Group: Productivity/Archiving/Compression
|
|
Provides: crunzip
|
|
Obsoletes: crunzip
|
|
AutoReqProv: on
|
|
Version: 6.00
|
|
%define fileversion 60
|
|
Release: 1
|
|
Summary: A program to unpack compressed files
|
|
Source: %{name}%{fileversion}.tar.bz2
|
|
Url: http://www.info-zip.org/
|
|
Patch0: unzip.dif
|
|
Patch1: unzip-iso8859_2.patch
|
|
Patch3: unzip-optflags.patch
|
|
Patch4: unzip-5.52-filename_too_long.patch
|
|
Patch5: unzip-no_file_name_translation.patch
|
|
Patch8: unzip-open_missing_mode.patch
|
|
Patch10: unzip-5.52-use_librcc.patch
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
|
BuildRequires: librcc-devel
|
|
|
|
%description
|
|
UnZip is an extraction utility for archives compressed in .zip format
|
|
(known as "zip files"). Although highly compatible both with PKWARE's
|
|
PKZIP(tm) and PKUNZIP utilities for MS-DOS and with Info-ZIP's own Zip
|
|
program, our primary objectives have been portability and non-MS-DOS
|
|
functionality. This version can also extract encrypted archives.
|
|
|
|
|
|
|
|
Authors:
|
|
--------
|
|
Info-ZIP <zip-bugs@lists.wku.edu>
|
|
|
|
%prep
|
|
%setup -q -n %{name}%{fileversion}
|
|
%patch0
|
|
%patch1
|
|
%patch3
|
|
%patch4
|
|
%patch5
|
|
%patch8
|
|
%patch10
|
|
|
|
%build
|
|
export RPM_OPT_FLAGS="%optflags -DLARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -fstack-protector -I."
|
|
make %{?jobs:-j%jobs} -f unix/Makefile LF2=-lrcc linux_noasm
|
|
|
|
%install
|
|
mkdir -p $RPM_BUILD_ROOT{%{_bindir},%{_mandir}/man1}
|
|
for i in unzip funzip unzipsfx; \
|
|
do install $i $RPM_BUILD_ROOT%{_bindir};done;
|
|
ln -s unzip $RPM_BUILD_ROOT%{_bindir}/zipinfo
|
|
install unix/zipgrep $RPM_BUILD_ROOT%{_bindir}
|
|
for i in man/*.1; \
|
|
do \
|
|
install -m 644 $i $RPM_BUILD_ROOT%{_mandir}/man1/
|
|
done
|
|
|
|
%clean
|
|
rm -rf $RPM_BUILD_ROOT
|
|
|
|
%files
|
|
%defattr(-,root,root)
|
|
%doc %{_mandir}/man1/*
|
|
%doc BUGS COPYING.OLD Contents History.* INSTALL LICENSE README ToDo WHERE
|
|
%doc *.txt proginfo
|
|
%{_bindir}/unzip
|
|
%{_bindir}/funzip
|
|
%{_bindir}/unzipsfx
|
|
%{_bindir}/zipinfo
|
|
%{_bindir}/zipgrep
|
|
|
|
%changelog
|