/[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.22 - (hide annotations) (download)
Wed Oct 24 12:03:16 2018 UTC (5 years, 7 months ago) by dani
Branch: MAIN
CVS Tags: clamav-0_100_2-1_el6_sme
Changes since 1.21: +9 -4 lines
* Wed Oct 24 2018 Daniel Berteaud <daniel@firewall-services.com> - 0.100.2-1.sme
- Update to 0.100.2 [SME: 10579]

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

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