Compare commits

...

11 commits

Author SHA1 Message Date
Ville Skyttä
bb170c0ec6 http://fedoraproject.org/wiki/Extras/Schedule/FC6MassRebuild 2006-10-11 21:32:28 +00:00
Ville Skyttä
557c02674e http://fedoraproject.org/wiki/Extras/Schedule/FC6MassRebuild 2006-08-27 21:19:10 +00:00
nim
0c9bbf7691 auto-import zoo-2.10-8.fc5 on branch devel from zoo-2.10-8.fc5.src.rpm use
-fstack-protector-all
2006-03-04 14:20:24 +00:00
nim
211b134df4 auto-import zoo-2.10-7.fc5 on branch devel from zoo-2.10-7.fc5.src.rpm
rebase on opensuse package, CVE-2006-0855 fix #2, bz #183109 fix
2006-03-04 13:30:20 +00:00
nim
1308b454ec auto-import zoo-2.10-6.fc5 on branch devel from zoo-2.10-6.fc5.src.rpm
Apply patch for exploitable buffer overflow
2006-02-26 22:41:20 +00:00
nim
590ada1a62 auto-import zoo-2.10-5.fc5 on branch devel from zoo-2.10-5.fc5.src.rpm
rebuilt for new gcc4.1 snapshot and glibc changes
2006-02-13 21:37:04 +00:00
nim
5cce308b8b auto-import zoo-2.10-4.fc5 on branch devel from zoo-2.10-4.fc5.src.rpm
builds with gcc4.1, warnings all over the place :(
2006-01-16 22:44:21 +00:00
Adrian Reber
e19d817b96 fix gcc4 errors 2005-04-05 11:09:28 +00:00
Matthias Saou
80811e8546 Mass letter "x"," y" and "z" update, one or more apply :
- Drop epoch: 0
- Remove %{epoch} requirements in sub-packages
- Remove trailing white spaces
- Keep consistent between spaces and tabs
2005-03-05 20:07:10 +00:00
Michael Schwendt
21a5eec052 Bump release, strip off fedora.us prefix and dist tag. 2004-12-10 22:03:13 +00:00
gafton
98866ec123 Fix braindead typo from the original import 2004-11-24 05:11:31 +00:00
6 changed files with 1 additions and 104 deletions

View file

@ -1,2 +0,0 @@
zoo_2.10-9.diff.gz
zoo_2.10.orig.tar.gz

View file

@ -1,21 +0,0 @@
# Makefile for source rpm: zoo
# $Id$
NAME := zoo
SPECFILE = $(firstword $(wildcard *.spec))
define find-makefile-common
for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done
endef
MAKEFILE_COMMON := $(shell $(find-makefile-common))
ifeq ($(MAKEFILE_COMMON),)
# attept a checkout
define checkout-makefile-common
test -f CVS/Rootx && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2
endef
MAKEFILE_COMMON := $(shell $(checkout-makefile-common))
endif
include $(MAKEFILE_COMMON)

1
dead.package Normal file
View file

@ -0,0 +1 @@
http://fedoraproject.org/wiki/Extras/Schedule/FC6MassRebuild

View file

@ -1,2 +0,0 @@
2dca488e015f6d6079fb3b2106bcbc5e zoo_2.10-9.diff.gz
dca5f2cf71379a51ea1e66b25f1e0294 zoo_2.10.orig.tar.gz

View file

@ -1,24 +0,0 @@
--- zoo/zoopack.c.tempfile Thu Jul 11 21:08:04 1991
+++ zoo/zoopack.c Fri Jan 18 13:34:56 2002
@@ -171,8 +171,19 @@
} else {
strcpy (temp_file, xes);
}
-mktemp (temp_file); /* ... and make unique */
-new_file = zoocreate (temp_file);
+
+/* make unique name */
+/* my god, this coding style sucks */
+new_file = NOFILE;
+{
+ int fd;
+
+ if ((fd = mkstemp(temp_file)) >= 0) {
+ new_file = zoocreate (temp_file);
+ close(fd);
+ }
+}
+
if (new_file == NOFILE)
prterror ('f', "Could not create temporary file %s.\n", temp_file);

View file

@ -1,55 +0,0 @@
Name: zoo
Version: 2.10
Release: 0.fdr.2.2
Epoch: 0
Summary: File archiving utility with compression
Group: Applications/Archiving
License: Distributable
Source: ftp://ftp.debian.org/debian/pool/non-free/z/zoo/zoo_2.10.orig.tar.gz
Patch0: ftp://ftp.debian.org/debian/pool/non-free/z/zoo/zoo_2.10-9.diff.gz
Patch1: zoo-2.10-tempfile.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
%description
zoo is a file archiving utility for maintaining collections of files.
It uses Lempel-Ziv compression to provide space savings in the
range of 20 to 80 percent depending on the type of data. Written by
Rahul Dhesi, and posted to the USENET newsgroup comp.sources.misc.
%prep
%setup -n zoo-2.10.orig
%patch0 -p1 -b .debian
%patch1 -p1 -b .tempfile
%build
make %{?_smp_mflags} OPTIM="%{optflags}" linux
%install
rm -fr %{buildroot}
install -d -m 0755 %{buildroot}%{_bindir} \
%{buildroot}%{_mandir}/man1
install -m 0755 fiz zoo %{buildroot}%{_bindir}/
install -m 0644 fiz.1 zoo.1 %{buildroot}%{_mandir}/man1/
%clean
rm -fr %{buildroot}
%files
%defattr(0644, root, root, 0755)
%doc %{_mandir}/man1/*
%attr(0755,root,root) %{_bindir}/*
%changelog
* Sun Apr 25 2004 Mailhot <Nicolas.Mailhot at laPoste.net> - 0:2.10-0.fdr.2
* Use debian source
* Tue Apr 20 2004 Nicolas Mailhot <Nicolas.Mailhot at laPoste.net> - 0:2.10-0.fdr.1
* Fedorization
* Sat Dec 06 2003 Dag Wieers <dag@wieers.com> - 2.10-1
- Patch to build on RHFC1.
* Sun Jan 26 2003 Dag Wieers <dag@wieers.com> - 2.10-0
- Initial package. (using DAR)