/[smeserver]/rpms/clamav/sme9/clamav.spec
ViewVC logotype

Contents of /rpms/clamav/sme9/clamav.spec

Parent Directory Parent Directory | Revision Log Revision Log | View Revision Graph Revision Graph


Revision 1.20 - (show annotations) (download)
Sat Jan 27 10:51:16 2018 UTC (6 years, 4 months ago) by dani
Branch: MAIN
CVS Tags: clamav-0_99_3-1_el6_sme
Changes since 1.19: +4 -1 lines
* Sat Jan 27 2018 Daniel Berteaud <daniel@firewall-services.com> - 0.99.3-1.sme
- Update to release 0.99.3 [SME: 10499]

1 # $Id$
2 # Authority: dag
3 # Upstream: <clamav-devel$lists,sf,net>
4
5 ### FIXME: Sysv script does not have condrestart option (redo sysv script)
6 ### FIXME: amavisd-new requires clamd to run as user vscan, solution needed
7 ### REMINDER: Look and sync with Petr Kristof's work
8
9 %{?el3:%define _without_milter 1}
10 %{?rh9:%define _without_milter 1}
11 %{?rh7:%define _without_milter 1}
12 %{?el2:%define _without_milter 1}
13
14 Summary: Anti-virus software
15 Name: clamav
16 Version: 0.99.3
17 Release: 1%{?dist}
18 License: GPL
19 Group: Applications/System
20 URL: http://www.clamav.net/
21
22 Source: http://downloads.sourceforge.net/project/clamav/clamav/%{version}/clamav-%{version}.tar.gz
23 Source1: clamav.init
24 Source2: clamav-milter.init
25 Source10: http://db.local.clamav.net/main.cvd
26 Source11: http://db.local.clamav.net/daily.cvd
27 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root
28
29 BuildRequires: bzip2-devel
30 BuildRequires: curl-devel
31 BuildRequires: gmp-devel
32 BuildRequires: ncurses-devel
33 BuildRequires: zlib-devel
34 %{!?_without_milter:BuildRequires: sendmail-devel >= 8.12}
35 BuildRequires: check-devel
36 BuildRequires: openssl-devel
37 BuildRequires: libxml2-devel
38 BuildRequires: pcre-devel
39
40
41 ### Do not require the latest release of clamav-db specifically (people may use freshclam onward)
42 #Requires: clamav-db = %{version}-%{release}
43 Requires: clamav-db
44
45 ### Fedora Extras introduced them differently :(
46 Obsoletes: libclamav <= %{version}-%{release}
47 Obsoletes: clamav-lib <= %{version}-%{release}
48 Provides: libclamav
49
50 %description
51 Clam AntiVirus is a GPL anti-virus toolkit for UNIX. The main purpose of
52 this software is the integration with mail servers (attachment scanning).
53 The package provides a flexible and scalable multi-threaded daemon, a
54 command line scanner, and a tool for automatic updating via Internet.
55
56 The programs are based on a shared library distributed with the Clam
57 AntiVirus package, which you can use with your own software. Most
58 importantly, the virus database is kept up to date
59
60 %package -n clamd
61 Summary: The Clam AntiVirus Daemon
62 Group: System Environment/Daemons
63 Requires: clamav = %{version}-%{release}
64 Requires(pre): /usr/sbin/groupadd
65 Requires(pre): /usr/sbin/useradd
66
67 ### Fedora Extras introduced them differently :(
68 Obsoletes: clamav-server <= %{version}-%{release}
69
70 %description -n clamd
71 The Clam AntiVirus Daemon
72
73 %package milter
74 Summary: The Clam AntiVirus sendmail-milter Daemon
75 Group: Applications/System
76 Requires: clamd = %{version}-%{release}
77 Requires: smtpdaemon
78
79 %description milter
80 The Clam AntiVirus sendmail-milter Daemon
81
82 %package db
83 Summary: Virus database for %{name}
84 Group: Applications/Databases
85 ### Remove circular dependency
86 #Requires: clamav = %{version}-%{release}
87 Requires(pre): /usr/sbin/groupadd
88 Requires(pre): /usr/sbin/useradd
89
90 ### Fedora Extras introduced them differently :(
91 Obsoletes: clamav-update <= %{version}-%{release}
92 Obsoletes: clamav-data <= %{version}-%{release}
93
94 %description db
95 The actual virus database for %{name}
96
97 %package devel
98 Summary: Header files, libraries and development documentation for %{name}
99 Group: Development/Libraries
100 Requires: clamav = %{version}-%{release}
101
102 ### Fedora Extras introduced them differently :(
103 Obsoletes: libclamav-static-devel <= %{version}-%{release}
104 Obsoletes: libclamav-devel <= %{version}-%{release}
105 Provides: libclamav-static-devel, libclamav-devel
106
107 %description devel
108 This package contains the header files, static libraries and development
109 documentation for %{name}. If you like to develop programs using %{name},
110 you will need to install %{name}-devel.
111
112 %prep
113 %setup
114
115 %{__perl} -pi.orig -e 's|/lib\b|/%{_lib}|g;' libtool configure
116
117 %{__perl} -pi.orig -e '
118 s|\@DBDIR\@|\$(localstatedir)/clamav|g;
119 s|\@DBINST\@|\$(localstatedir)/clamav|g;
120 s|\@CFGDIR\@|\$(sysconfdir)|g;
121 s|\@CFGINST\@|\$(sysconfdir)|g;
122 s|^\@INSTALL_CLAMAV_CONF_TRUE\@|\t|g;
123 s|^\@INSTALL_FRESHCLAM_CONF_TRUE\@|\t|g;
124 ' database/Makefile.in etc/Makefile.in
125
126 %{__perl} -pi -e '
127 s|^(Example)|#$1|;
128 s|^#(LogFile) .+$|$1 %{_localstatedir}/log/clamav/clamd.log|;
129 s|^#(LogFileMaxSize) .*|$1 0|;
130 s|^#(LogTime)|$1|;
131 s|^#(LogSyslog)|$1|;
132 s|^#(PidFile) .+$|$1 %{_localstatedir}/run/clamav/clamd.pid|;
133 s|^#(TemporaryDirectory) .+$|$1 %{_localstatedir}/tmp|;
134 s|^#(DatabaseDirectory) .+$|$1 %{_localstatedir}/clamav|;
135 s|^#(LocalSocket) .+$|$1 %{_localstatedir}/run/clamav/clamd.sock|;
136 s|^#(FixStaleSocket)|$1|;
137 s|^#(TCPSocket) .+$|$1 3310|;
138 s|^#(TCPAddr) .+$|$1 127.0.0.1|;
139 s|^#(MaxConnectionQueueLength) .+$|$1 30|;
140 s|^#(StreamSaveToDisk)|$1|;
141 s|^#(MaxThreads) .+$|$1 50|;
142 s|^#(ReadTimeout) .+$|$1 300|;
143 s|^#(User) .+$|$1 clamav|;
144 s|^#(AllowSupplementaryGroups).*$|$1 yes|;
145 s|^#(ScanPE) .+$|$1 yes|;
146 s|^#(ScanELF) .+$|$1 yes|;
147 s|^#(DetectBrokenExecutables)|$1|;
148 s|^#(ScanOLE2) .+$|$1 yes|;
149 s|^#(ScanMail)|$1|;
150 s|^#(ScanArchive) .+$|$1 yes|;
151 s|^#(ArchiveMaxCompressionRatio) .+|$1 300|;
152 s|^#(ArchiveBlockEncrypted)|$1|;
153 s|^#(ArchiveBlockMax)|$1|;
154 ' etc/clamd.conf.sample >etc/clamd.conf
155
156 %{__perl} -pi -e '
157 s|^(Example)|#$1|;
158 s|^#(AllowSupplementaryGroups) .+$|$1 yes|;
159 s|^#(ClamdSocket) .+$|$1 unix:%{_localstatedir}/run/clamav/clamd.sock|;
160 s|^#(LogFile) .+$|$1 %{_localstatedir}/log/clamav/clamav-milter.log|;
161 s|^#(LogFileMaxSize) .*|$1 0|;
162 s|^#(LogSyslog)|$1|;
163 s|^#(LogTime)|$1|;
164 s|^#(MilterSocket) /.*$|$1 unix:%{_localstatedir}/clamav/clmilter.socket|;
165 s|^#(User) .+$|$1 clamav|;
166 ' etc/clamav-milter.conf.sample >etc/clamav-milter.conf
167
168 %{__perl} -p -e '
169 s|^(Checks) .+$|$1 24|;
170 s|^(Example)|#$1|;
171 s|^#(DatabaseDirectory) .+$|$1 %{_localstatedir}/clamav|;
172 s|^#(DatabaseOwner) .+$|$1 clamav|;
173 s|^#(LogSyslog)|$1|;
174 s|^#(NotifyClamd) .+$|$1 %{_sysconfdir}/clamd.conf|;
175 s|^#(UpdateLogFile) .+$|$1 %{_localstatedir}/log/clamav/freshclam.log|;
176 ' etc/freshclam.conf.sample >etc/freshclam.conf
177
178 %{__cat} <<EOF >clamd.logrotate
179 %{_localstatedir}/log/clamav/clamd.log {
180 missingok
181 notifempty
182 create 644 clamav clamav
183 postrotate
184 killall -HUP clamd 2>/dev/null || :
185 endscript
186 }
187 EOF
188
189 %{__cat} <<EOF >freshclam.logrotate
190 %{_localstatedir}/log/clamav/freshclam.log {
191 missingok
192 notifempty
193 create 644 clamav clamav
194 }
195 EOF
196
197 %{__cat} <<'EOF' >freshclam.cron
198 #!/bin/sh
199
200 ### A simple update script for the clamav virus database.
201 ### This could as well be replaced by a SysV script.
202
203 %{_bindir}/freshclam --quiet
204 EOF
205
206 %{__cat} <<EOF >clamav-milter.sysconfig
207 ### Simple config file for clamav-milter, you should
208 ### read the documentation and tweak it as you wish.
209
210 CLAMAV_FLAGS="--config-file=%{_sysconfdir}/clamav-milter.conf"
211 EOF
212
213 %build
214 %configure \
215 --program-prefix="%{?_program_prefix}" \
216 --disable-clamav \
217 --disable-llvm \
218 --disable-static \
219 --disable-zlib-vcheck \
220 --enable-check \
221 --enable-clamdtop \
222 --enable-dns \
223 --enable-id-check \
224 %{!?_without_milter:--enable-milter} \
225 --with-dbdir="%{_localstatedir}/clamav" \
226 --with-group="clamav" \
227 --with-libcurl=%{_prefix} \
228 --with-user="clamav"
229 ### Disable JIT until it is implemented securely (RHbz #573191)
230 # --enable-llvm \
231 %{__make} %{?_smp_mflags}
232
233 %install
234 %{__rm} -rf %{buildroot}
235 %{__make} install DESTDIR="%{buildroot}"
236
237 %{__install} -Dp -m0755 %{SOURCE1} %{buildroot}%{_initrddir}/clamd
238 %{__install} -Dp -m0644 etc/freshclam.conf %{buildroot}%{_sysconfdir}/freshclam.conf
239 %{__install} -Dp -m0755 freshclam.cron %{buildroot}%{_sysconfdir}/cron.daily/freshclam
240 %{__install} -Dp -m0644 freshclam.logrotate %{buildroot}%{_sysconfdir}/logrotate.d/freshclam
241 %{__install} -Dp -m0644 etc/clamd.conf %{buildroot}%{_sysconfdir}/clamd.conf
242 %{__install} -Dp -m0644 clamd.logrotate %{buildroot}%{_sysconfdir}/logrotate.d/clamav
243
244 %if %{!?_without_milter:1}0
245 %{__install} -Dp -m0644 etc/clamav-milter.conf %{buildroot}%{_sysconfdir}/clamav-milter.conf
246 %{__install} -Dp -m0755 %{SOURCE2} %{buildroot}%{_initrddir}/clamav-milter
247 %{__install} -Dp -m0644 clamav-milter.sysconfig %{buildroot}%{_sysconfdir}/sysconfig/clamav-milter
248 %else
249 %{__rm} %{buildroot}%{_mandir}/man8/clamav-milter.8*
250 %endif
251
252 %{__install} -d -m0755 %{buildroot}%{_localstatedir}/log/clamav/
253 touch %{buildroot}%{_localstatedir}/log/clamav/freshclam.log
254 touch %{buildroot}%{_localstatedir}/log/clamav/clamd.log
255
256 %{__install} -d -m0755 %{buildroot}%{_localstatedir}/clamav/
257 %{__install} -d -m0755 %{buildroot}%{_localstatedir}/run/clamav/
258
259 #touch %{buildroot}%{_localstatedir}/clamav/daily.cld
260 #touch %{buildroot}%{_localstatedir}/clamav/main.cld
261
262 %{__install} -Dp -m0644 %SOURCE10 %{buildroot}%{_localstatedir}/clamav/main.cvd
263 %{__install} -Dp -m0644 %SOURCE11 %{buildroot}%{_localstatedir}/clamav/daily.cvd
264
265 %post
266 /sbin/ldconfig
267
268 ZONES="/usr/share/zoneinfo/zone.tab"
269 CONFIG="/etc/sysconfig/clock"
270
271 if [ -r "$CONFIG" -a -r "$ZONES" ]; then
272 source "$CONFIG"
273 export CODE="$(grep -E "\b$ZONE\b" "$ZONES" | head -1 | cut -f1 | tr '[A-Z]' '[a-z]')"
274 fi
275
276 if [ -z "$CODE" ]; then
277 export CODE="local"
278 fi
279
280 %{__perl} -pi -e '
281 s|^(DatabaseMirror) database\.clamav\.net$|$1 db.$ENV{"CODE"}.clamav.net\n$1 db.local.clamav.net|;
282 s|^(DatabaseMirror) db\.\.clamav\.net$|$1 db.$ENV{"CODE"}.clamav.net\n$1 db.local.clamav.net|;
283 ' %{_sysconfdir}/freshclam.conf{,.rpmnew} &>/dev/null || :
284
285 %postun -p /sbin/ldconfig
286
287 %pre -n clamd
288 /usr/sbin/groupadd -r clamav 2>/dev/null || :
289 /usr/sbin/useradd -r -d /var/clamav -s /sbin/nologin -c "Clam Anti Virus Checker" -g clamav clamav 2>/dev/null || :
290
291 %post -n clamd
292 /sbin/chkconfig --add clamd
293
294 %preun -n clamd
295 if [ $1 -eq 0 ]; then
296 /sbin/service clamd stop &>/dev/null || :
297 /sbin/chkconfig --del clamd
298 fi
299
300 %postun -n clamd
301 /sbin/service clamd condrestart &>/dev/null || :
302
303 %post milter
304 /sbin/chkconfig --add clamav-milter
305
306 %preun milter
307 if [ $1 -eq 0 ]; then
308 /sbin/service clamav-milter stop &>/dev/null || :
309 /sbin/chkconfig --del clamav-milter
310 fi
311
312 %postun milter
313 /sbin/service clamav-milter condrestart &>/dev/null || :
314
315 %pre db
316 /usr/sbin/groupadd -r clamav 2>/dev/null || :
317 /usr/sbin/useradd -r -d /var/clamav -s /sbin/nologin -c "Clam Anti Virus Checker" -g clamav clamav 2>/dev/null || :
318
319 %clean
320 %{__rm} -rf %{buildroot}
321
322 %files
323 %defattr(-, root, root, 0755)
324 %doc AUTHORS BUGS ChangeLog COPYING FAQ INSTALL NEWS README
325 %doc etc/freshclam.conf.sample
326 %doc docs/*.pdf
327 ### Remove test virus documents as they trigger clamav
328 #%doc test/
329 %doc %{_mandir}/man1/sigtool.1*
330 %doc %{_mandir}/man1/clambc.1*
331 %doc %{_mandir}/man1/clamscan.1*
332 %doc %{_mandir}/man1/clamsubmit.1*
333 %doc %{_mandir}/man1/freshclam.1*
334 %doc %{_mandir}/man5/freshclam.conf.5*
335 %config(noreplace) %{_sysconfdir}/freshclam.conf
336 %{_bindir}/clambc
337 %{_bindir}/clamscan
338 %{_bindir}/freshclam
339 %{_bindir}/sigtool
340 %{_bindir}/clamsubmit
341 %{_libdir}/libclamav.so.*
342 %{_libdir}/libclamunrar.so.*
343 %{_libdir}/libclamunrar_iface.so.*
344 # moved from -devel to here so clamd can work with rars when clamav-devel is not installed.
345 %{_libdir}/libclamav.so
346 %{_libdir}/libclamunrar.so
347 %{_libdir}/libclamunrar_iface.so
348 %exclude %{_sysconfdir}/freshclam.conf.sample
349
350 %files -n clamd
351 %defattr(-, root, root, 0755)
352 %doc etc/clamd.conf.sample
353 %doc %{_mandir}/man1/clambc.1*
354 %doc %{_mandir}/man1/clamconf.1*
355 %doc %{_mandir}/man1/clamdscan.1*
356 %doc %{_mandir}/man1/clamdtop.1*
357 %doc %{_mandir}/man5/clamd.conf.5*
358 %doc %{_mandir}/man8/clamd.8*
359 %config(noreplace) %{_sysconfdir}/clamd.conf
360 %config(noreplace) %{_sysconfdir}/logrotate.d/clamav
361 %config %{_initrddir}/clamd
362 %{_sbindir}/clamd
363 %{_bindir}/clamconf
364 %{_bindir}/clamdscan
365 %{_bindir}/clamdtop
366
367 %defattr(0644, clamav, clamav, 0755)
368 %{_localstatedir}/run/clamav/
369 %dir %{_localstatedir}/clamav/
370 %dir %{_localstatedir}/log/clamav/
371 %ghost %{_localstatedir}/log/clamav/clamd.log
372
373 %exclude %{_localstatedir}/clamav/*
374 %exclude %{_sysconfdir}/clamd.conf.sample
375
376 %if %{!?_without_milter:1}0
377 %files milter
378 %defattr(-, root, root, 0755)
379 %doc etc/clamav-milter.conf.sample
380 %doc %{_mandir}/man5/clamav-milter.conf.5*
381 %doc %{_mandir}/man8/clamav-milter.8*
382 %config(noreplace) %{_sysconfdir}/clamav-milter.conf
383 %config(noreplace) %{_sysconfdir}/sysconfig/clamav-milter
384 %config %{_initrddir}/clamav-milter
385 %{_sbindir}/clamav-milter
386 %else
387 %exclude %{_mandir}/man5/clamav-milter.conf.5*
388 %endif
389 %exclude %{_sysconfdir}/clamav-milter.conf.sample
390
391 %files db
392 %defattr(-, root, root, 0755)
393 %config(noreplace) %{_sysconfdir}/cron.daily/freshclam
394 %config(noreplace) %{_sysconfdir}/logrotate.d/freshclam
395
396 %defattr(0644, clamav, clamav, 0755)
397 %config(noreplace) %verify(user group mode) %{_localstatedir}/clamav/
398 %dir %{_localstatedir}/log/clamav/
399 %ghost %{_localstatedir}/log/clamav/freshclam.log
400
401 %files devel
402 %defattr(-, root, root, 0755)
403 %{_bindir}/clamav-config
404 %{_includedir}/clamav.h
405 %{_libdir}/pkgconfig/libclamav.pc
406 %exclude %{_libdir}/libclamav.la
407 %exclude %{_libdir}/libclamunrar.la
408 %exclude %{_libdir}/libclamunrar_iface.la
409
410 %changelog
411 * Sat Jan 27 2018 Daniel Berteaud <daniel@firewall-services.com> - 0.99.3-1.sme
412 - Update to release 0.99.3 [SME: 10499]
413
414 * Tue May 3 2016 Daniel Berteaud <daniel@firewall-services.com> - 0.99.2-1.sme
415 - Update to release 0.99.2 [SME: 9489]
416
417 * Thu Mar 3 2016 Daniel Berteaud <daniel@firewall-services.com> - 0.99.1-1.sme
418 - Update to release 0.99.1 [SME: 9267]
419
420 * Tue Jan 12 2016 Daniel Berteaud <daniel@firewall-services.com> - 0.99-2.sme
421 - Add pcre-devel to BuildRequires [SME: 9151]
422
423 * Wed Jan 6 2016 Daniel Berteaud <daniel@firewall-services.com> - 0.99-1.sme
424 - Update to release 0.99 [SME: 9151]
425
426 * Wed May 13 2015 Daniel Berteaud <daniel@firewall-services.com> - 0.98.7-1.sme
427 - Updated to release 0.98.7 [SME: 8922]
428
429 * Thu Jan 29 2015 Daniel Berteaud <daniel@firewall-services.com> - 0.98.6-1.sme
430 - Updated to release 0.98.6 [SME: 8822]
431
432 * Tue Dec 16 2014 Daniel Berteaud <daniel@firewall-services.com> - 0.98.5-1.sme
433 - Updated to release 0.98.5 [SME: 8729]
434
435 * Sat Jun 21 2014 Ian Wells <esmith@wellsi.com> - 0.98.4-2.sme
436 - Add BuildRequires for openssl-devel and libxml2-devel [SME: 8457]
437 - Remove Packager and Vendor from spec file.
438
439 * Thu Jun 17 2014 David Beveridge <dave@bevhost.com> - 0.98.4-1
440 - Updates to release 0.98.4.
441
442 * Thu May 8 2014 David Beveridge <dave@bevhost.com> - 0.98.3-1
443 - Updated to release 0.98.3.
444
445 * Sun Jan 26 2014 David Beveridge <dave@bevhost.com> - 0.98.1-1
446 - Updates to release 0.98.1.
447
448 * Tue Sep 24 2013 Dag Wieers <dag@wieers.com> - 0.98-1
449 - Updated to release 0.98.
450
451 * Tue May 07 2013 David Hrbáč <david@hrbac.cz> - 0.97.8-1
452 - Updated to release 0.97.8.
453
454 * Wed Mar 20 2013 Dag Wieers <dag@wieers.com> - 0.97.7-1
455 - Updated to release 0.97.7.
456
457 * Sun Sep 23 2012 Dag Wieers <dag@wieers.com> - 0.97.6-1
458 - Updated to release 0.97.6.
459
460 * Mon Jun 25 2012 David Hrbáč <david@hrbac.cz> - 0.97.5-2
461 - removed missing *.cld files (#183)
462
463 * Thu Jun 21 2012 David Hrbáč <david@hrbac.cz> - 0.97.5-1
464 - corrected missing DBs
465 - new upstream release
466
467 * Sat Jun 16 2012 Dag Wieers <dag@wieers.com> - 0.97.5-1
468 - Updated to release 0.97.5.
469
470 * Thu Mar 15 2012 Dag Wieers <dag@wieers.com> - 0.97.4-1
471 - Updated to release 0.97.4.
472
473 * Sat Dec 13 2011 Philip J Perry <phil@elrepo.org> - 0.97.3-2
474 - Fix Requires for clamav-milter to also allow use with Postfix.
475
476 * Mon Oct 17 2011 Dag Wieers <dag@wieers.com> - 0.97.3-1
477 - Updated to release 0.97.3.
478
479 * Mon Jul 25 2011 Dag Wieers <dag@wieers.com> - 0.97.2-1
480 - Updated to release 0.97.2.
481
482 * Thu Jun 09 2011 Dag Wieers <dag@wieers.com> - 0.97.1-1
483 - Updated to release 0.97.1.
484
485 * Tue Feb 08 2011 Dag Wieers <dag@wieers.com> - 0.97-1
486 - Updated to release 0.97.
487
488 * Tue Nov 30 2010 Dag Wieers <dag@wieers.com> - 0.96.5-1
489 - Updated to release 0.96.5.
490
491 * Mon Oct 25 2010 Dag Wieers <dag@wieers.com> - 0.96.4-1
492 - Updated to release 0.96.4.
493
494 * Tue Sep 21 2010 David Hrbáč <david@hrbac.cz> - 0.96.3-2
495 - Added buildrequires check-devel.
496
497 * Tue Sep 21 2010 Dag Wieers <dag@wieers.com> - 0.96.3-1
498 - Updated to release 0.96.3.
499
500 * Tue Aug 17 2010 Dag Wieers <dag@wieers.com> - 0.96.2-2
501 - Added patch that fixes segfault when using SELinux. (Beat Siegenthaler)
502
503 * Thu Aug 12 2010 Dag Wieers <dag@wieers.com> - 0.96.2-1
504 - Updated to release 0.96.2.
505
506 * Wed May 19 2010 Dag Wieers <dag@wieers.com> - 0.96.1-1
507 - Updated to release 0.96.1.
508
509 * Mon May 03 2010 Dag Wieers <dag@wieers.com> - 0.96-3
510 - Restored the LocalSocket configuration option to what it used to be. (Chris Butler)
511
512 * Wed Apr 07 2010 Dag Wieers <dag@wieers.com> - 0.96-2
513 - Removed test virus documents to prevent triggering clamav itself. (Patrick Mulvany)
514
515 * Wed Mar 31 2010 Dag Wieers <dag@wieers.com> - 0.96-1
516 - Updated to release 0.96.
517
518 * Thu Oct 29 2009 Dag Wieers <dag@wieers.com> - 0.95.3-1
519 - Updated to release 0.95.3.
520
521 * Fri Jun 12 2009 Christoph Maser <cmr@financial.com> - 0.95.2-1
522 - Updated to release 0.95.2.
523
524 * Mon May 04 2009 Dag Wieers <dag@wieers.com> - 0.95.1-4
525 - Fix the inconsistency between LocalSocket in clamd.conf and clamav-milter.conf. (Gerald Teschl)
526
527 * Sat May 02 2009 Dag Wieers <dag@wieers.com> - 0.95.1-3
528 - Fix the LocalSocket in clamd.conf. (Gerald Teschl)
529
530 * Wed Apr 15 2009 Fabian Arrotin <fabian.arrotin@arrfab.net> - 0.95.1-2
531 - Added a missing BuildRequires: ncurses-devel to build clamdtop.
532
533 * Fri Apr 10 2009 Dag Wieers <dag@wieers.com> - 0.95.1-2
534 - Corrected LogFile definition. (Vadim Druzhin)
535
536 * Wed Apr 8 2009 Dag Wieers <dag@wieers.com> - 0.95.1-1
537 - Updated to release 0.95.1.
538
539 * Tue Apr 7 2009 Dries Verachtert <dries@ulyssis.org> - 0.95-3
540 - Ugly fix for clamd which needs the .so files.
541
542 * Tue Mar 24 2009 Dag Wieers <dag@wieers.com> - 0.95-1
543 - Updated to release 0.95.
544
545 * Thu Nov 27 2008 Dag Wieers <dag@wieers.com> - 0.94.2-1
546 - Updated to release 0.94.2.
547
548 * Mon Nov 03 2008 Dag Wieers <dag@wieers.com> - 0.94.1-1
549 - Updated to release 0.94.1.
550
551 * Tue Sep 02 2008 Dag Wieers <dag@wieers.com> - 0.94-1
552 - Updated to release 0.94.
553
554 * Wed Jul 09 2008 Dag Wieers <dag@wieers.com> - 0.93.3-1
555 - Updated to release 0.93.3.
556
557 * Mon Jul 07 2008 Dag Wieers <dag@wieers.com> - 0.93.2-1
558 - Updated to release 0.93.2.
559
560 * Mon Jun 09 2008 Dag Wieers <dag@wieers.com> - 0.93.1-1
561 - Updated to release 0.93.1.
562
563 * Wed Apr 16 2008 Dag Wieers <dag@wieers.com> - 0.93-2
564 - Normal build causes linkage against installed library.
565
566 * Mon Apr 14 2008 Dag Wieers <dag@wieers.com> - 0.93-1
567 - Updated to release 0.93.
568
569 * Wed Feb 27 2008 Dag Wieers <dag@wieers.com> - queued
570 - Do not require the latest release of clamav-db. (Federico Simoncelli)
571
572 * Mon Feb 11 2008 Dag Wieers <dag@wieers.com> - 0.92.1-1
573 - Updated to release 0.92.1.
574
575 * Thu Dec 13 2007 Dag Wieers <dag@wieers.com> - 0.92-1
576 - Updated to release 0.92.
577
578 * Tue Aug 21 2007 Dag Wieers <dag@wieers.com> - 0.91.2-1
579 - Updated to release 0.91.2.
580
581 * Tue Jul 17 2007 Dag Wieers <dag@wieers.com> - 0.91.1-1
582 - Updated to release 0.91.1.
583
584 * Wed Jul 11 2007 Dag Wieers <dag@wieers.com> - 0.91-1
585 - Updated to release 0.91.
586
587 * Thu May 31 2007 Dag Wieers <dag@wieers.com> - 0.90.3-1
588 - Updated to release 0.90.3.
589
590 * Fri Apr 27 2007 Dag Wieers <dag@wieers.com> - 0.90.2-2
591 - Added clamav-milter support for EL2.1 now that it comes with a newer sendmail. (Tom G. Christensen)
592
593 * Sun Apr 15 2007 Dag Wieers <dag@wieers.com> - 0.90.2-1
594 - Updated to release 0.90.2.
595
596 * Fri Mar 09 2007 Dag Wieers <dag@wieers.com> - 0.90.1-4
597 - Removed circular dependency.
598
599 * Thu Mar 08 2007 Dag Wieers <dag@wieers.com> - 0.90.1-3
600 - Cleaned up default options to clamav-milter. (Adam T. Bowen)
601 - Removed -b/--bounce as it is no longer recognized. (Gerald Teschl)
602
603 * Mon Mar 05 2007 Dag Wieers <dag@wieers.com> - 0.90.1-2
604 - Removed the erroneous --dont-clean-log from the clamav-milter sysconfig. (Gerald Teschl)
605
606 * Fri Mar 02 2007 Dag Wieers <dag@wieers.com> - 0.90.1-1
607 - Updated to release 0.90.1.
608
609 * Tue Feb 20 2007 Dag Wieers <dag@wieers.com> - 0.90-3
610 - Do the right thing...
611
612 * Mon Feb 19 2007 Dag Wieers <dag@wieers.com> - 0.90-2
613 - The tarball was re-rolled before public release. Sigh.
614
615 * Tue Feb 13 2007 Dag Wieers <dag@wieers.com> - 0.90-1
616 - Updated to release 0.90.
617
618 * Tue Dec 12 2006 Dag Wieers <dag@wieers.com> - 0.88.7-1
619 - Updated to release 0.88.7.
620
621 * Sun Nov 05 2006 Dag Wieers <dag@wieers.com> - 0.88.6-1
622 - Updated to release 0.88.6.
623 - Added condrestart to sysv scripts. (Tsai Li Ming)
624
625 * Sat Oct 28 2006 Dag Wieers <dag@wieers.com> - 0.88.5-2
626 - Added missing clamav dependency to clamav-db.
627
628 * Sun Oct 15 2006 Dag Wieers <dag@wieers.com> - 0.88.5-1
629 - Updated to release 0.88.5.
630
631 * Mon Aug 07 2006 Dag Wieers <dag@wieers.com> - 0.88.4-1
632 - Updated to release 0.88.4.
633
634 * Mon Aug 07 2006 Dag Wieers <dag@wieers.com> - 0.88.3-2
635 - Incorporated UPX heap overflow fix.
636
637 * Sat Jul 01 2006 Dag Wieers <dag@wieers.com> - 0.88.3-1
638 - Updated to release 0.88.3.
639
640 * Sun Apr 30 2006 Dag Wieers <dag@wieers.com> - 0.88.2-1
641 - Updated to release 0.88.2.
642
643 * Tue Apr 04 2006 Dag Wieers <dag@wieers.com> - 0.88.1-1
644 - Updated to release 0.88.1.
645
646 * Mon Jan 09 2006 Dag Wieers <dag@wieers.com> - 0.88-1
647 - Updated to release 0.88.
648
649 * Sun Nov 13 2005 Dries Verachtert <dries@ulyssis.org> - 0.87.1-1
650 - Updated to release 0.87.1.
651
652 * Sat Sep 17 2005 Dag Wieers <dag@wieers.com> - 0.87-1
653 - Updated to release 0.87.
654
655 * Mon Jul 25 2005 Dag Wieers <dag@wieers.com> - 0.86.2-1
656 - Updated to release 0.86.2.
657
658 * Mon Jul 11 2005 Dag Wieers <dag@wieers.com> - 0.86.1-1
659 - Updated to release 0.86.1.
660
661 * Mon May 16 2005 Dag Wieers <dag@wieers.com> - 0.85.1-1
662 - Updated to release 0.85.1.
663
664 * Fri Apr 29 2005 Dag Wieers <dag@wieers.com> - 0.84-1
665 - Updated to release 0.84.
666
667 * Mon Feb 14 2005 Dag Wieers <dag@wieers.com> - 0.83-1
668 - Updated to release 0.83.
669
670 * Thu Feb 10 2005 Dag Wieers <dag@wieers.com> - 0.82-2
671 - Fix for false positive on RIFF files. (Roger Jochem)
672
673 * Mon Feb 07 2005 Dag Wieers <dag@wieers.com> - 0.82-1
674 - Updated to release 0.82.
675
676 * Thu Jan 27 2005 Dag Wieers <dag@wieers.com> - 0.81-1
677 - Improved logrotate scripts. (Filippo Grassilli)
678 - Updated to release 0.81.
679
680 * Wed Dec 01 2004 Dag Wieers <dag@wieers.com> - 0.80-2
681 - Added %dir /var/clamav/log. (Adam Bowns)
682 - Changed logrotate script to use clamd.log. (Stuart Schneider)
683 - Added curl dependency. (Petr Kristof)
684 - Synchronized some options from Petr. (Petr Kristof)
685 - Fixed another clamav.conf reference. (Michael Best)
686
687 * Mon Nov 01 2004 Dag Wieers <dag@wieers.com> - 0.80-1
688 - Updated package description. (Arvin Troels)
689 - Incorporated fixes from Jima. (Jima)
690 - Config clamav.conf renamed to clamd.conf.
691 - Removed obsolete patch.
692 - Added macros for building without milter.
693 - Updated to release 0.80.
694
695 * Fri Jul 30 2004 Dag Wieers <dag@wieers.com> - 0.75.1-1
696 - Added obsoletes for fedora.us.
697 - Updated to release 0.75.1.
698
699 * Mon Jul 26 2004 Dag Wieers <dag@wieers.com> - 0.75-2
700 - Fixed a problem where $CODE was empty.
701
702 * Fri Jul 23 2004 Dag Wieers <dag@wieers.com> - 0.75-1
703 - Updated to release 0.75.
704
705 * Wed Jun 30 2004 Dag Wieers <dag@wieers.com> - 0.74-1
706 - Updated to release 0.74.
707
708 * Tue Jun 15 2004 Dag Wieers <dag@wieers.com> - 0.73-1
709 - Updated to release 0.73.
710
711 * Thu Jun 03 2004 Dag Wieers <dag@wieers.com> - 0.72-1
712 - Updated to release 0.72.
713
714 * Thu May 20 2004 Dag Wieers <dag@wieers.com> - 0.71-1
715 - Updated to release 0.71.
716
717 * Sun May 02 2004 Dag Wieers <dag@wieers.com> - 0.70-2
718 - Fixed the installation check for conf files. (Richard Soderberg, Udo Ruecker)
719 - Changed the init-order of the sysv scripts. (Will McCutcheon)
720 - Changes to the default configuration files.
721
722 * Sat Mar 17 2004 Dag Wieers <dag@wieers.com> - 0.70-1
723 - Updated to release 0.70.
724
725 * Tue Mar 16 2004 Dag Wieers <dag@wieers.com> - 0.68-1
726 - Updated to release 0.68.
727
728 * Fri Mar 12 2004 Dag Wieers <dag@wieers.com> - 0.67.1-1
729 - Updated to release 0.67-1.
730 - Added clamdwatch and trashcan to clamd.
731
732 * Mon Mar 08 2004 Dag Wieers <dag@wieers.com> - 0.67-1
733 - Personalized SPEC file.
734
735 * Mon Aug 22 2003 Matthias Saou/Che
736 - Added "--without milter" build option. (Matthias Saou)
737 - Fixed freshclam cron (Matthias Saou)
738 - Built the new package. (Che)
739
740 * Tue Jun 24 2003 Che
741 - clamav-milter introduced.
742 - a few more smaller fixes.
743
744 * Sun Jun 22 2003 Che
745 - version upgrade
746
747 * Mon Jun 16 2003 Che
748 - rh9 build
749 - various fixes
750 - got rid of rpm-helper prereq
751
752 * Fri Mar 24 2003 Che
753 - some cleanups and fixes
754 - new patch added
755
756 * Fri Nov 22 2002 Che
757 - fixed a config patch issue
758
759 * Fri Nov 22 2002 Che
760 - version upgrade and some fixes
761
762 * Sat Nov 02 2002 Che
763 - version upgrade
764
765 * Wed Oct 24 2002 Che
766 - some important changes for lsb compliance
767
768 * Wed Oct 23 2002 Che
769 - initial rpm release

admin@koozali.org
ViewVC Help
Powered by ViewVC 1.2.1 RSS 2.0 feed