Compare commits
1 commit
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
45b5010852 |
2 changed files with 19 additions and 1 deletions
7
zip.spec
7
zip.spec
|
|
@ -1,7 +1,7 @@
|
||||||
Summary: A file compression and packaging utility compatible with PKZIP
|
Summary: A file compression and packaging utility compatible with PKZIP
|
||||||
Name: zip
|
Name: zip
|
||||||
Version: 3.0
|
Version: 3.0
|
||||||
Release: 9%{?dist}
|
Release: 10%{?dist}
|
||||||
License: BSD
|
License: BSD
|
||||||
Group: Applications/Archiving
|
Group: Applications/Archiving
|
||||||
Source: http://downloads.sourceforge.net/infozip/zip30.tar.gz
|
Source: http://downloads.sourceforge.net/infozip/zip30.tar.gz
|
||||||
|
|
@ -14,6 +14,7 @@ Patch2: zip-3.0-currdir.patch
|
||||||
# Not upstreamed.
|
# Not upstreamed.
|
||||||
Patch3: zip-3.0-time.patch
|
Patch3: zip-3.0-time.patch
|
||||||
Patch4: man.patch
|
Patch4: man.patch
|
||||||
|
Patch5: zipnote.patch
|
||||||
BuildRequires: bzip2-devel
|
BuildRequires: bzip2-devel
|
||||||
|
|
||||||
%description
|
%description
|
||||||
|
|
@ -31,6 +32,7 @@ program.
|
||||||
%patch2 -p1 -b .currdir
|
%patch2 -p1 -b .currdir
|
||||||
%patch3 -p1 -b .time
|
%patch3 -p1 -b .time
|
||||||
%patch4 -p1 -b .man
|
%patch4 -p1 -b .man
|
||||||
|
%patch5 -p1 -b .zipnote
|
||||||
|
|
||||||
%build
|
%build
|
||||||
make -f unix/Makefile prefix=%{_prefix} "CFLAGS_NOOPT=-I. -DUNIX $RPM_OPT_FLAGS" generic_gcc %{?_smp_mflags}
|
make -f unix/Makefile prefix=%{_prefix} "CFLAGS_NOOPT=-I. -DUNIX $RPM_OPT_FLAGS" generic_gcc %{?_smp_mflags}
|
||||||
|
|
@ -57,6 +59,9 @@ make -f unix/Makefile prefix=$RPM_BUILD_ROOT%{_prefix} \
|
||||||
%{_mandir}/man1/zipsplit.1*
|
%{_mandir}/man1/zipsplit.1*
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Wed Jan 28 2015 Petr Stodulka <pstodulk@redhat.com> - 3.0-10
|
||||||
|
- fix crashing zipnote when edit .zip files (#1179420)
|
||||||
|
|
||||||
* Sun Aug 04 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.0-9
|
* Sun Aug 04 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.0-9
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
|
||||||
|
|
||||||
|
|
|
||||||
13
zipnote.patch
Normal file
13
zipnote.patch
Normal file
|
|
@ -0,0 +1,13 @@
|
||||||
|
diff --git a/zipnote.c b/zipnote.c
|
||||||
|
index 5e02cb6..996f012 100644
|
||||||
|
--- a/zipnote.c
|
||||||
|
+++ b/zipnote.c
|
||||||
|
@@ -661,7 +661,7 @@ char **argv; /* command line tokens */
|
||||||
|
if ((r = zipcopy(z)) != ZE_OK)
|
||||||
|
ziperr(r, "was copying an entry");
|
||||||
|
}
|
||||||
|
- fclose(x);
|
||||||
|
+ fclose(in_file);
|
||||||
|
|
||||||
|
/* Write central directory and end of central directory with new comments */
|
||||||
|
if ((c = zftello(y)) == (zoff_t)-1) /* get start of central */
|
||||||
Loading…
Add table
Add a link
Reference in a new issue