Updated filters to 4.0.13
This commit is contained in:
parent
a398c2c516
commit
d55a3eb18b
1
.gitignore
vendored
1
.gitignore
vendored
@ -6,3 +6,4 @@
|
||||
/foomatic-filters-4.0.7.tar.gz
|
||||
/foomatic-db-engine-4.0.8.tar.gz
|
||||
/foomatic-filters-4.0.8.tar.gz
|
||||
/foomatic-filters-4.0.13.tar.gz
|
||||
|
@ -1,32 +0,0 @@
|
||||
diff -up foomatic-filters-4.0.8/foomaticrip.c.CVE-2011-2924 foomatic-filters-4.0.8/foomaticrip.c
|
||||
--- foomatic-filters-4.0.8/foomaticrip.c.CVE-2011-2924 2011-08-18 16:27:57.277636643 +0100
|
||||
+++ foomatic-filters-4.0.8/foomaticrip.c 2011-08-18 16:33:37.680136675 +0100
|
||||
@@ -1188,9 +1188,13 @@ int main(int argc, char** argv)
|
||||
if (arglist_remove_flag(arglist, "--debug"))
|
||||
debug = 1;
|
||||
|
||||
- if (debug)
|
||||
- logh = fopen(LOG_FILE ".log", "w"); /* insecure, use for debugging only */
|
||||
- else if (quiet && !verbose)
|
||||
+ if (debug) {
|
||||
+ int fd = mkstemp (LOG_FILE "-XXXXXX.log");
|
||||
+ if (fd != -1)
|
||||
+ logh = fdopen(fd, "w");
|
||||
+ else
|
||||
+ logh = stderr;
|
||||
+ } else if (quiet && !verbose)
|
||||
logh = NULL; /* Quiet mode, do not log */
|
||||
else
|
||||
logh = stderr; /* Default: log to stderr */
|
||||
diff -up foomatic-filters-4.0.8/renderer.c.CVE-2011-2924 foomatic-filters-4.0.8/renderer.c
|
||||
--- foomatic-filters-4.0.8/renderer.c.CVE-2011-2924 2011-07-25 10:50:57.000000000 +0100
|
||||
+++ foomatic-filters-4.0.8/renderer.c 2011-08-18 14:36:14.120153309 +0100
|
||||
@@ -434,7 +434,7 @@ int exec_kid3(FILE *in, FILE *out, void
|
||||
}
|
||||
|
||||
/* Save the data supposed to be fed into the renderer also into a file*/
|
||||
- dstrprepend(commandline, "tee -a " LOG_FILE ".ps | ( ");
|
||||
+ dstrprepend(commandline, "tee $(mktemp " LOG_FILE "-XXXXXX.ps) | ( ");
|
||||
dstrcat(commandline, ")");
|
||||
}
|
||||
|
@ -1,5 +1,5 @@
|
||||
%define enginever 4.0.8
|
||||
%define filtersver 4.0.8
|
||||
%define filtersver 4.0.13
|
||||
|
||||
Summary: Tools for using the foomatic database of printers and printer drivers
|
||||
Name: foomatic
|
||||
@ -15,8 +15,7 @@ Source0: http://www.openprinting.org/download/foomatic/foomatic-db-engine-%{engi
|
||||
Source1: http://www.openprinting.org/download/foomatic/foomatic-filters-%{filtersver}.tar.gz
|
||||
|
||||
## PATCHES FOR FOOMATIC-FILTERS (PATCHES 1 TO 100)
|
||||
Patch1: foomatic-filters-CVE-2011-2924.patch
|
||||
Patch2: foomatic-filters-debug-string.patch
|
||||
Patch1: foomatic-filters-debug-string.patch
|
||||
|
||||
## PATCHES FOR FOOMATIC-DB-ENGINE (PATCHES 101 TO 200)
|
||||
|
||||
@ -74,12 +73,8 @@ CUPS print filters for the foomatic package.
|
||||
%setup -q -c -a 1
|
||||
|
||||
pushd foomatic-filters-%{filtersver}
|
||||
# Use mktemp when creating debug log file in foomatic-rip
|
||||
# (CVE-2011-2924, bug #726426).
|
||||
%patch1 -p1 -b .CVE-2011-2924
|
||||
|
||||
# Too few arguments for format in a debugging string (bug #726384)
|
||||
%patch2 -p1 -b .debug-string
|
||||
%patch1 -p1 -b .debug-string
|
||||
|
||||
aclocal
|
||||
automake --add-missing
|
||||
@ -146,7 +141,6 @@ exit 0
|
||||
|
||||
|
||||
%files
|
||||
%defattr(-,root,root)
|
||||
%doc --parents foomatic-db-engine-%{enginever}/COPYING
|
||||
%config(noreplace) %{_sysconfdir}/foomatic/defaultspooler
|
||||
%{_bindir}/foomatic-combo-xml
|
||||
@ -174,7 +168,6 @@ exit 0
|
||||
%{_var}/cache/foomatic
|
||||
|
||||
%files filters
|
||||
%defattr(-,root,root,-)
|
||||
%doc --parents foomatic-filters-%{filtersver}/COPYING
|
||||
%dir %{_sysconfdir}/foomatic
|
||||
%config(noreplace) %{_sysconfdir}/foomatic/filter.conf
|
||||
@ -183,6 +176,9 @@ exit 0
|
||||
%{_mandir}/man1/foomatic-rip.1*
|
||||
|
||||
%changelog
|
||||
* Tue Mar 13 2012 Jiri Popelka <jpopelka@redhat.com> - 4.0.8-5
|
||||
- Updated filters to 4.0.13
|
||||
|
||||
* Mon Oct 24 2011 Jiri Popelka <jpopelka@redhat.com> - 4.0.8-4
|
||||
- Use _cups_serverbin macro from cups-devel instead of hard-coded /usr/lib/cups.
|
||||
- No need to define BuildRoot and clean it in clean and install section anymore.
|
||||
|
Loading…
Reference in New Issue
Block a user