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

Annotation of /rpms/clamav/sme9/clamav.spec

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


Revision 1.21 - (hide annotations) (download)
Wed Mar 14 12:56:18 2018 UTC (6 years, 3 months ago) by dani
Branch: MAIN
CVS Tags: clamav-0_99_4-1_el6_sme
Changes since 1.20: +4 -1 lines
* Wed Mar 14 2018 Daniel Berteaud <daniel@firewall-services.com> - 0.99.4-1.sme
- Update to release 0.99.4 [SME: 10529]

1 slords 1.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 dani 1.21 Version: 0.99.4
17 vip-ire 1.18 Release: 1%{?dist}
18 slords 1.1 License: GPL
19     Group: Applications/System
20     URL: http://www.clamav.net/
21    
22 wellsi 1.6 Source: http://downloads.sourceforge.net/project/clamav/clamav/%{version}/clamav-%{version}.tar.gz
23 slords 1.1 Source1: clamav.init
24     Source2: clamav-milter.init
25 wellsi 1.6 Source10: http://db.local.clamav.net/main.cvd
26     Source11: http://db.local.clamav.net/daily.cvd
27 slords 1.1 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 wellsi 1.12 BuildRequires: openssl-devel
37     BuildRequires: libxml2-devel
38 vip-ire 1.17 BuildRequires: pcre-devel
39 wellsi 1.12
40 slords 1.1
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 wellsi 1.4 %{__perl} -pi -e '
127 slords 1.1 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 wellsi 1.4 ' etc/clamd.conf.sample >etc/clamd.conf
155 slords 1.1
156 wellsi 1.4 %{__perl} -pi -e '
157 slords 1.1 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 wellsi 1.4 ' etc/clamav-milter.conf.sample >etc/clamav-milter.conf
167 slords 1.1
168 wellsi 1.4 %{__perl} -p -e '
169 slords 1.1 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 wellsi 1.4 ' etc/freshclam.conf.sample >etc/freshclam.conf
177 slords 1.1
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 vip-ire 1.13 --with-libcurl=%{_prefix} \
228 slords 1.1 --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 wellsi 1.4 %{__install} -Dp -m0644 etc/freshclam.conf %{buildroot}%{_sysconfdir}/freshclam.conf
239 slords 1.1 %{__install} -Dp -m0755 freshclam.cron %{buildroot}%{_sysconfdir}/cron.daily/freshclam
240     %{__install} -Dp -m0644 freshclam.logrotate %{buildroot}%{_sysconfdir}/logrotate.d/freshclam
241 wellsi 1.4 %{__install} -Dp -m0644 etc/clamd.conf %{buildroot}%{_sysconfdir}/clamd.conf
242 slords 1.1 %{__install} -Dp -m0644 clamd.logrotate %{buildroot}%{_sysconfdir}/logrotate.d/clamav
243    
244     %if %{!?_without_milter:1}0
245 wellsi 1.4 %{__install} -Dp -m0644 etc/clamav-milter.conf %{buildroot}%{_sysconfdir}/clamav-milter.conf
246 slords 1.1 %{__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 wellsi 1.4 %doc etc/freshclam.conf.sample
326     %doc docs/*.pdf
327 slords 1.1 ### 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 wellsi 1.8 %doc %{_mandir}/man1/clamsubmit.1*
333 slords 1.1 %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 vip-ire 1.13 %{_bindir}/clamsubmit
341 slords 1.1 %{_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 wellsi 1.4 %exclude %{_sysconfdir}/freshclam.conf.sample
349 slords 1.1
350     %files -n clamd
351     %defattr(-, root, root, 0755)
352 wellsi 1.4 %doc etc/clamd.conf.sample
353 slords 1.1 %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 wellsi 1.4
373 slords 1.1 %exclude %{_localstatedir}/clamav/*
374 wellsi 1.4 %exclude %{_sysconfdir}/clamd.conf.sample
375 slords 1.1
376     %if %{!?_without_milter:1}0
377     %files milter
378     %defattr(-, root, root, 0755)
379 wellsi 1.4 %doc etc/clamav-milter.conf.sample
380 slords 1.1 %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 wellsi 1.4 %exclude %{_sysconfdir}/clamav-milter.conf.sample
390 slords 1.1
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 dani 1.21 * Wed Mar 14 2018 Daniel Berteaud <daniel@firewall-services.com> - 0.99.4-1.sme
412     - Update to release 0.99.4 [SME: 10529]
413    
414 dani 1.20 * Sat Jan 27 2018 Daniel Berteaud <daniel@firewall-services.com> - 0.99.3-1.sme
415     - Update to release 0.99.3 [SME: 10499]
416    
417 vip-ire 1.19 * Tue May 3 2016 Daniel Berteaud <daniel@firewall-services.com> - 0.99.2-1.sme
418     - Update to release 0.99.2 [SME: 9489]
419    
420 vip-ire 1.18 * Thu Mar 3 2016 Daniel Berteaud <daniel@firewall-services.com> - 0.99.1-1.sme
421     - Update to release 0.99.1 [SME: 9267]
422    
423 vip-ire 1.17 * Tue Jan 12 2016 Daniel Berteaud <daniel@firewall-services.com> - 0.99-2.sme
424     - Add pcre-devel to BuildRequires [SME: 9151]
425    
426 vip-ire 1.16 * Wed Jan 6 2016 Daniel Berteaud <daniel@firewall-services.com> - 0.99-1.sme
427     - Update to release 0.99 [SME: 9151]
428    
429 vip-ire 1.15 * Wed May 13 2015 Daniel Berteaud <daniel@firewall-services.com> - 0.98.7-1.sme
430     - Updated to release 0.98.7 [SME: 8922]
431    
432     * Thu Jan 29 2015 Daniel Berteaud <daniel@firewall-services.com> - 0.98.6-1.sme
433 vip-ire 1.14 - Updated to release 0.98.6 [SME: 8822]
434    
435 vip-ire 1.13 * Tue Dec 16 2014 Daniel Berteaud <daniel@firewall-services.com> - 0.98.5-1.sme
436     - Updated to release 0.98.5 [SME: 8729]
437    
438 wellsi 1.12 * Sat Jun 21 2014 Ian Wells <esmith@wellsi.com> - 0.98.4-2.sme
439     - Add BuildRequires for openssl-devel and libxml2-devel [SME: 8457]
440     - Remove Packager and Vendor from spec file.
441    
442 wellsi 1.11 * Thu Jun 17 2014 David Beveridge <dave@bevhost.com> - 0.98.4-1
443     - Updates to release 0.98.4.
444    
445 wellsi 1.8 * Thu May 8 2014 David Beveridge <dave@bevhost.com> - 0.98.3-1
446 wellsi 1.12 - Updated to release 0.98.3.
447 wellsi 1.5
448 wellsi 1.12 * Sun Jan 26 2014 David Beveridge <dave@bevhost.com> - 0.98.1-1
449 wellsi 1.8 - Updates to release 0.98.1.
450 wellsi 1.4
451     * Tue Sep 24 2013 Dag Wieers <dag@wieers.com> - 0.98-1
452     - Updated to release 0.98.
453    
454 wellsi 1.8 * Tue May 07 2013 David Hrbáč <david@hrbac.cz> - 0.97.8-1
455 wellsi 1.2 - Updated to release 0.97.8.
456    
457 slords 1.1 * Wed Mar 20 2013 Dag Wieers <dag@wieers.com> - 0.97.7-1
458     - Updated to release 0.97.7.
459    
460     * Sun Sep 23 2012 Dag Wieers <dag@wieers.com> - 0.97.6-1
461     - Updated to release 0.97.6.
462    
463 wellsi 1.8 * Mon Jun 25 2012 David Hrbáč <david@hrbac.cz> - 0.97.5-2
464 slords 1.1 - removed missing *.cld files (#183)
465    
466 wellsi 1.8 * Thu Jun 21 2012 David Hrbáč <david@hrbac.cz> - 0.97.5-1
467 slords 1.1 - corrected missing DBs
468     - new upstream release
469    
470     * Sat Jun 16 2012 Dag Wieers <dag@wieers.com> - 0.97.5-1
471     - Updated to release 0.97.5.
472    
473     * Thu Mar 15 2012 Dag Wieers <dag@wieers.com> - 0.97.4-1
474     - Updated to release 0.97.4.
475    
476     * Sat Dec 13 2011 Philip J Perry <phil@elrepo.org> - 0.97.3-2
477     - Fix Requires for clamav-milter to also allow use with Postfix.
478    
479     * Mon Oct 17 2011 Dag Wieers <dag@wieers.com> - 0.97.3-1
480     - Updated to release 0.97.3.
481    
482     * Mon Jul 25 2011 Dag Wieers <dag@wieers.com> - 0.97.2-1
483     - Updated to release 0.97.2.
484    
485     * Thu Jun 09 2011 Dag Wieers <dag@wieers.com> - 0.97.1-1
486     - Updated to release 0.97.1.
487    
488     * Tue Feb 08 2011 Dag Wieers <dag@wieers.com> - 0.97-1
489     - Updated to release 0.97.
490    
491     * Tue Nov 30 2010 Dag Wieers <dag@wieers.com> - 0.96.5-1
492     - Updated to release 0.96.5.
493    
494     * Mon Oct 25 2010 Dag Wieers <dag@wieers.com> - 0.96.4-1
495     - Updated to release 0.96.4.
496    
497 wellsi 1.8 * Tue Sep 21 2010 David Hrbáč <david@hrbac.cz> - 0.96.3-2
498 slords 1.1 - Added buildrequires check-devel.
499    
500     * Tue Sep 21 2010 Dag Wieers <dag@wieers.com> - 0.96.3-1
501     - Updated to release 0.96.3.
502    
503     * Tue Aug 17 2010 Dag Wieers <dag@wieers.com> - 0.96.2-2
504     - Added patch that fixes segfault when using SELinux. (Beat Siegenthaler)
505    
506     * Thu Aug 12 2010 Dag Wieers <dag@wieers.com> - 0.96.2-1
507     - Updated to release 0.96.2.
508    
509     * Wed May 19 2010 Dag Wieers <dag@wieers.com> - 0.96.1-1
510     - Updated to release 0.96.1.
511    
512     * Mon May 03 2010 Dag Wieers <dag@wieers.com> - 0.96-3
513     - Restored the LocalSocket configuration option to what it used to be. (Chris Butler)
514    
515     * Wed Apr 07 2010 Dag Wieers <dag@wieers.com> - 0.96-2
516     - Removed test virus documents to prevent triggering clamav itself. (Patrick Mulvany)
517    
518     * Wed Mar 31 2010 Dag Wieers <dag@wieers.com> - 0.96-1
519     - Updated to release 0.96.
520    
521     * Thu Oct 29 2009 Dag Wieers <dag@wieers.com> - 0.95.3-1
522     - Updated to release 0.95.3.
523    
524     * Fri Jun 12 2009 Christoph Maser <cmr@financial.com> - 0.95.2-1
525     - Updated to release 0.95.2.
526    
527     * Mon May 04 2009 Dag Wieers <dag@wieers.com> - 0.95.1-4
528     - Fix the inconsistency between LocalSocket in clamd.conf and clamav-milter.conf. (Gerald Teschl)
529    
530     * Sat May 02 2009 Dag Wieers <dag@wieers.com> - 0.95.1-3
531     - Fix the LocalSocket in clamd.conf. (Gerald Teschl)
532    
533     * Wed Apr 15 2009 Fabian Arrotin <fabian.arrotin@arrfab.net> - 0.95.1-2
534     - Added a missing BuildRequires: ncurses-devel to build clamdtop.
535    
536     * Fri Apr 10 2009 Dag Wieers <dag@wieers.com> - 0.95.1-2
537     - Corrected LogFile definition. (Vadim Druzhin)
538    
539     * Wed Apr 8 2009 Dag Wieers <dag@wieers.com> - 0.95.1-1
540     - Updated to release 0.95.1.
541    
542     * Tue Apr 7 2009 Dries Verachtert <dries@ulyssis.org> - 0.95-3
543     - Ugly fix for clamd which needs the .so files.
544    
545     * Tue Mar 24 2009 Dag Wieers <dag@wieers.com> - 0.95-1
546     - Updated to release 0.95.
547    
548     * Thu Nov 27 2008 Dag Wieers <dag@wieers.com> - 0.94.2-1
549     - Updated to release 0.94.2.
550    
551     * Mon Nov 03 2008 Dag Wieers <dag@wieers.com> - 0.94.1-1
552     - Updated to release 0.94.1.
553    
554     * Tue Sep 02 2008 Dag Wieers <dag@wieers.com> - 0.94-1
555     - Updated to release 0.94.
556    
557     * Wed Jul 09 2008 Dag Wieers <dag@wieers.com> - 0.93.3-1
558     - Updated to release 0.93.3.
559    
560     * Mon Jul 07 2008 Dag Wieers <dag@wieers.com> - 0.93.2-1
561     - Updated to release 0.93.2.
562    
563     * Mon Jun 09 2008 Dag Wieers <dag@wieers.com> - 0.93.1-1
564     - Updated to release 0.93.1.
565    
566     * Wed Apr 16 2008 Dag Wieers <dag@wieers.com> - 0.93-2
567     - Normal build causes linkage against installed library.
568    
569     * Mon Apr 14 2008 Dag Wieers <dag@wieers.com> - 0.93-1
570     - Updated to release 0.93.
571    
572     * Wed Feb 27 2008 Dag Wieers <dag@wieers.com> - queued
573     - Do not require the latest release of clamav-db. (Federico Simoncelli)
574    
575     * Mon Feb 11 2008 Dag Wieers <dag@wieers.com> - 0.92.1-1
576     - Updated to release 0.92.1.
577    
578     * Thu Dec 13 2007 Dag Wieers <dag@wieers.com> - 0.92-1
579     - Updated to release 0.92.
580    
581     * Tue Aug 21 2007 Dag Wieers <dag@wieers.com> - 0.91.2-1
582     - Updated to release 0.91.2.
583    
584     * Tue Jul 17 2007 Dag Wieers <dag@wieers.com> - 0.91.1-1
585     - Updated to release 0.91.1.
586    
587     * Wed Jul 11 2007 Dag Wieers <dag@wieers.com> - 0.91-1
588     - Updated to release 0.91.
589    
590     * Thu May 31 2007 Dag Wieers <dag@wieers.com> - 0.90.3-1
591     - Updated to release 0.90.3.
592    
593     * Fri Apr 27 2007 Dag Wieers <dag@wieers.com> - 0.90.2-2
594     - Added clamav-milter support for EL2.1 now that it comes with a newer sendmail. (Tom G. Christensen)
595    
596     * Sun Apr 15 2007 Dag Wieers <dag@wieers.com> - 0.90.2-1
597     - Updated to release 0.90.2.
598    
599     * Fri Mar 09 2007 Dag Wieers <dag@wieers.com> - 0.90.1-4
600     - Removed circular dependency.
601    
602     * Thu Mar 08 2007 Dag Wieers <dag@wieers.com> - 0.90.1-3
603     - Cleaned up default options to clamav-milter. (Adam T. Bowen)
604     - Removed -b/--bounce as it is no longer recognized. (Gerald Teschl)
605    
606     * Mon Mar 05 2007 Dag Wieers <dag@wieers.com> - 0.90.1-2
607     - Removed the erroneous --dont-clean-log from the clamav-milter sysconfig. (Gerald Teschl)
608    
609     * Fri Mar 02 2007 Dag Wieers <dag@wieers.com> - 0.90.1-1
610     - Updated to release 0.90.1.
611    
612     * Tue Feb 20 2007 Dag Wieers <dag@wieers.com> - 0.90-3
613     - Do the right thing...
614    
615     * Mon Feb 19 2007 Dag Wieers <dag@wieers.com> - 0.90-2
616     - The tarball was re-rolled before public release. Sigh.
617    
618     * Tue Feb 13 2007 Dag Wieers <dag@wieers.com> - 0.90-1
619     - Updated to release 0.90.
620    
621     * Tue Dec 12 2006 Dag Wieers <dag@wieers.com> - 0.88.7-1
622     - Updated to release 0.88.7.
623    
624     * Sun Nov 05 2006 Dag Wieers <dag@wieers.com> - 0.88.6-1
625     - Updated to release 0.88.6.
626     - Added condrestart to sysv scripts. (Tsai Li Ming)
627    
628     * Sat Oct 28 2006 Dag Wieers <dag@wieers.com> - 0.88.5-2
629     - Added missing clamav dependency to clamav-db.
630    
631     * Sun Oct 15 2006 Dag Wieers <dag@wieers.com> - 0.88.5-1
632     - Updated to release 0.88.5.
633    
634     * Mon Aug 07 2006 Dag Wieers <dag@wieers.com> - 0.88.4-1
635     - Updated to release 0.88.4.
636    
637     * Mon Aug 07 2006 Dag Wieers <dag@wieers.com> - 0.88.3-2
638     - Incorporated UPX heap overflow fix.
639    
640     * Sat Jul 01 2006 Dag Wieers <dag@wieers.com> - 0.88.3-1
641     - Updated to release 0.88.3.
642    
643     * Sun Apr 30 2006 Dag Wieers <dag@wieers.com> - 0.88.2-1
644     - Updated to release 0.88.2.
645    
646     * Tue Apr 04 2006 Dag Wieers <dag@wieers.com> - 0.88.1-1
647     - Updated to release 0.88.1.
648    
649     * Mon Jan 09 2006 Dag Wieers <dag@wieers.com> - 0.88-1
650     - Updated to release 0.88.
651    
652     * Sun Nov 13 2005 Dries Verachtert <dries@ulyssis.org> - 0.87.1-1
653     - Updated to release 0.87.1.
654    
655     * Sat Sep 17 2005 Dag Wieers <dag@wieers.com> - 0.87-1
656     - Updated to release 0.87.
657    
658     * Mon Jul 25 2005 Dag Wieers <dag@wieers.com> - 0.86.2-1
659     - Updated to release 0.86.2.
660    
661     * Mon Jul 11 2005 Dag Wieers <dag@wieers.com> - 0.86.1-1
662     - Updated to release 0.86.1.
663    
664     * Mon May 16 2005 Dag Wieers <dag@wieers.com> - 0.85.1-1
665     - Updated to release 0.85.1.
666    
667     * Fri Apr 29 2005 Dag Wieers <dag@wieers.com> - 0.84-1
668     - Updated to release 0.84.
669    
670     * Mon Feb 14 2005 Dag Wieers <dag@wieers.com> - 0.83-1
671     - Updated to release 0.83.
672    
673     * Thu Feb 10 2005 Dag Wieers <dag@wieers.com> - 0.82-2
674     - Fix for false positive on RIFF files. (Roger Jochem)
675    
676     * Mon Feb 07 2005 Dag Wieers <dag@wieers.com> - 0.82-1
677     - Updated to release 0.82.
678    
679     * Thu Jan 27 2005 Dag Wieers <dag@wieers.com> - 0.81-1
680     - Improved logrotate scripts. (Filippo Grassilli)
681     - Updated to release 0.81.
682    
683     * Wed Dec 01 2004 Dag Wieers <dag@wieers.com> - 0.80-2
684     - Added %dir /var/clamav/log. (Adam Bowns)
685     - Changed logrotate script to use clamd.log. (Stuart Schneider)
686     - Added curl dependency. (Petr Kristof)
687     - Synchronized some options from Petr. (Petr Kristof)
688     - Fixed another clamav.conf reference. (Michael Best)
689    
690     * Mon Nov 01 2004 Dag Wieers <dag@wieers.com> - 0.80-1
691     - Updated package description. (Arvin Troels)
692     - Incorporated fixes from Jima. (Jima)
693     - Config clamav.conf renamed to clamd.conf.
694     - Removed obsolete patch.
695     - Added macros for building without milter.
696     - Updated to release 0.80.
697    
698     * Fri Jul 30 2004 Dag Wieers <dag@wieers.com> - 0.75.1-1
699     - Added obsoletes for fedora.us.
700     - Updated to release 0.75.1.
701    
702     * Mon Jul 26 2004 Dag Wieers <dag@wieers.com> - 0.75-2
703     - Fixed a problem where $CODE was empty.
704    
705     * Fri Jul 23 2004 Dag Wieers <dag@wieers.com> - 0.75-1
706     - Updated to release 0.75.
707    
708     * Wed Jun 30 2004 Dag Wieers <dag@wieers.com> - 0.74-1
709     - Updated to release 0.74.
710    
711     * Tue Jun 15 2004 Dag Wieers <dag@wieers.com> - 0.73-1
712     - Updated to release 0.73.
713    
714     * Thu Jun 03 2004 Dag Wieers <dag@wieers.com> - 0.72-1
715     - Updated to release 0.72.
716    
717     * Thu May 20 2004 Dag Wieers <dag@wieers.com> - 0.71-1
718     - Updated to release 0.71.
719    
720     * Sun May 02 2004 Dag Wieers <dag@wieers.com> - 0.70-2
721     - Fixed the installation check for conf files. (Richard Soderberg, Udo Ruecker)
722     - Changed the init-order of the sysv scripts. (Will McCutcheon)
723     - Changes to the default configuration files.
724    
725     * Sat Mar 17 2004 Dag Wieers <dag@wieers.com> - 0.70-1
726     - Updated to release 0.70.
727    
728     * Tue Mar 16 2004 Dag Wieers <dag@wieers.com> - 0.68-1
729     - Updated to release 0.68.
730    
731     * Fri Mar 12 2004 Dag Wieers <dag@wieers.com> - 0.67.1-1
732     - Updated to release 0.67-1.
733     - Added clamdwatch and trashcan to clamd.
734    
735     * Mon Mar 08 2004 Dag Wieers <dag@wieers.com> - 0.67-1
736     - Personalized SPEC file.
737    
738     * Mon Aug 22 2003 Matthias Saou/Che
739     - Added "--without milter" build option. (Matthias Saou)
740     - Fixed freshclam cron (Matthias Saou)
741     - Built the new package. (Che)
742    
743     * Tue Jun 24 2003 Che
744     - clamav-milter introduced.
745     - a few more smaller fixes.
746    
747     * Sun Jun 22 2003 Che
748     - version upgrade
749    
750     * Mon Jun 16 2003 Che
751     - rh9 build
752     - various fixes
753     - got rid of rpm-helper prereq
754    
755     * Fri Mar 24 2003 Che
756     - some cleanups and fixes
757     - new patch added
758    
759     * Fri Nov 22 2002 Che
760     - fixed a config patch issue
761    
762     * Fri Nov 22 2002 Che
763     - version upgrade and some fixes
764    
765     * Sat Nov 02 2002 Che
766     - version upgrade
767    
768     * Wed Oct 24 2002 Che
769     - some important changes for lsb compliance
770    
771     * Wed Oct 23 2002 Che
772     - initial rpm release

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