summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrej Kacian <ticho@gentoo.org>2007-11-14 19:25:06 +0000
committerAndrej Kacian <ticho@gentoo.org>2007-11-14 19:25:06 +0000
commit4e094bb3eea52a82ff558296733b24febce4c85e (patch)
tree9264b05ede94dad368bc99b50d0c9b1bffd0c8cd /app-antivirus
parentamd64 stable, bug 196616 (diff)
downloadgentoo-2-4e094bb3eea52a82ff558296733b24febce4c85e.tar.gz
gentoo-2-4e094bb3eea52a82ff558296733b24febce4c85e.tar.bz2
gentoo-2-4e094bb3eea52a82ff558296733b24febce4c85e.zip
Version cleanup. Get rid of logrotate USE flag - bug #198901.
(Portage version: 2.1.3.18)
Diffstat (limited to 'app-antivirus')
-rw-r--r--app-antivirus/clamav/ChangeLog6
-rw-r--r--app-antivirus/clamav/clamav-0.91.1.ebuild143
-rw-r--r--app-antivirus/clamav/clamav-0.91.2.ebuild35
-rw-r--r--app-antivirus/clamav/clamav-0.91.ebuild143
-rw-r--r--app-antivirus/clamav/clamav-0.92_rc2.ebuild37
-rw-r--r--app-antivirus/clamav/files/digest-clamav-0.913
-rw-r--r--app-antivirus/clamav/files/digest-clamav-0.91.13
7 files changed, 38 insertions, 332 deletions
diff --git a/app-antivirus/clamav/ChangeLog b/app-antivirus/clamav/ChangeLog
index 22fdf394e974..845074ee1773 100644
--- a/app-antivirus/clamav/ChangeLog
+++ b/app-antivirus/clamav/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for app-antivirus/clamav
# Copyright 2002-2007 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-antivirus/clamav/ChangeLog,v 1.255 2007/10/10 08:47:41 lordvan Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-antivirus/clamav/ChangeLog,v 1.256 2007/11/14 19:25:05 ticho Exp $
+
+ 14 Nov 2007; Andrej Kacian <ticho@gentoo.org> -clamav-0.91.ebuild,
+ -clamav-0.91.1.ebuild, clamav-0.91.2.ebuild, clamav-0.92_rc2.ebuild:
+ Version cleanup. Get rid of logrotate USE flag - bug #198901.
*clamav-0.92_rc2 (10 Oct 2007)
diff --git a/app-antivirus/clamav/clamav-0.91.1.ebuild b/app-antivirus/clamav/clamav-0.91.1.ebuild
deleted file mode 100644
index 206f3c5f8173..000000000000
--- a/app-antivirus/clamav/clamav-0.91.1.ebuild
+++ /dev/null
@@ -1,143 +0,0 @@
-# Copyright 1999-2007 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-antivirus/clamav/clamav-0.91.1.ebuild,v 1.1 2007/07/17 03:27:01 ticho Exp $
-
-inherit autotools eutils flag-o-matic fixheadtails
-
-DESCRIPTION="Clam Anti-Virus Scanner"
-HOMEPAGE="http://www.clamav.net/"
-SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
-IUSE="bzip2 crypt logrotate mailwrapper milter nls selinux"
-
-DEPEND="virtual/libc
- bzip2? ( app-arch/bzip2 )
- crypt? ( >=dev-libs/gmp-4.1.2 )
- milter? ( || ( mail-filter/libmilter mail-mta/sendmail ) )
- nls? ( sys-devel/gettext )
- dev-libs/gmp
- >=sys-libs/zlib-1.2.1-r3
- >=sys-apps/sed-4"
-RDEPEND="${DEPEND}
- selinux? ( sec-policy/selinux-clamav )
- logrotate? ( app-admin/logrotate )
- sys-apps/grep"
-PROVIDE="virtual/antivirus"
-
-pkg_setup() {
- if use milter; then
- if [ ! -e /usr/lib/libmilter.a ] ; then
- ewarn "In order to enable milter support, clamav needs sendmail with enabled milter"
- ewarn "USE flag. Either recompile sendmail with milter USE flag enabled, or disable"
- ewarn "this flag for clamav as well to disable milter support."
- die "need milter-enabled sendmail"
- fi
- fi
- enewgroup clamav
- enewuser clamav -1 -1 /dev/null clamav
-}
-
-src_unpack() {
- unpack "${A}"
- cd "${S}"
- epatch "${FILESDIR}"/${PN}-0.90-compat.patch
- epatch "${FILESDIR}"/${PN}-0.90-nls.patch
- eautoreconf
-}
-
-src_compile() {
- has_version =sys-libs/glibc-2.2* && filter-lfs-flags
-
- local myconf
-
- # we depend on fixed zlib, so we can disable this check to prevent redundant
- # warning (bug #61749)
- myconf="${myconf} --disable-zlib-vcheck"
- # use id utility instead of /etc/passwd parsing (bug #72540)
- myconf="${myconf} --enable-id-check"
- use milter && {
- myconf="${myconf} --enable-milter"
- use mailwrapper && \
- myconf="${myconf} --with-sendmail=/usr/sbin/sendmail.sendmail"
- }
-
- ht_fix_file configure
- econf ${myconf} \
- $(use_enable bzip2) \
- $(use_enable nls) \
- --disable-experimental \
- --with-dbdir=/var/lib/clamav || die
- emake || die
-}
-
-src_install() {
- make DESTDIR=${D} install || die
- dodoc AUTHORS BUGS NEWS README ChangeLog FAQ
- newconfd ${FILESDIR}/clamd.conf clamd
- newinitd ${FILESDIR}/clamd.rc clamd
- dodoc ${FILESDIR}/clamav-milter.README.gentoo
-
- dodir /var/run/clamav
- keepdir /var/run/clamav
- fowners clamav:clamav /var/run/clamav
- dodir /var/log/clamav
- keepdir /var/log/clamav
- fowners clamav:clamav /var/log/clamav
-
- # Change /etc/clamd.conf to be usable out of the box
- sed -i -e "s:^\(Example\):\# \1:" \
- -e "s:.*\(PidFile\) .*:\1 /var/run/clamav/clamd.pid:" \
- -e "s:.*\(LocalSocket\) .*:\1 /var/run/clamav/clamd.sock:" \
- -e "s:.*\(User\) .*:\1 clamav:" \
- -e "s:^\#\(LogFile\) .*:\1 /var/log/clamav/clamd.log:" \
- -e "s:^\#\(LogTime\).*:\1 yes:" \
- ${D}/etc/clamd.conf
-
- # Do the same for /etc/freshclam.conf
- sed -i -e "s:^\(Example\):\# \1:" \
- -e "s:.*\(PidFile\) .*:\1 /var/run/clamav/freshclam.pid:" \
- -e "s:.*\(DatabaseOwner\) .*:\1 clamav:" \
- -e "s:^\#\(UpdateLogFile\) .*:\1 /var/log/clamav/freshclam.log:" \
- -e "s:^\#\(NotifyClamd\).*:\1 /etc/clamd.conf:" \
- -e "s:^\#\(ScriptedUpdates\).*:\1 yes:" \
- ${D}/etc/freshclam.conf
-
- if use milter ; then
- echo "START_MILTER=no" \
- >> ${D}/etc/conf.d/clamd
- echo "MILTER_SOCKET=\"/var/run/clamav/clmilter.sock\"" \
- >>${D}/etc/conf.d/clamd
- echo "MILTER_OPTS=\"-m 10 --timeout=0\"" \
- >>${D}/etc/conf.d/clamd
- fi
-
- if use logrotate ; then
- diropts ""
- dodir /etc/logrotate.d
- insopts -m0644
- insinto /etc/logrotate.d
- newins ${FILESDIR}/${PN}.logrotate ${PN}
- fi
-}
-
-pkg_postinst() {
- echo
- if use milter ; then
- elog "For simple instructions how to setup the clamav-milter"
- elog "read /usr/share/doc/${PF}/clamav-milter.README.gentoo.gz"
- echo
- fi
- ewarn "Warning: clamd and/or freshclam have not been restarted."
- ewarn "You should restart them to start using new version: /etc/init.d/clamd restart"
- echo
- ewarn "The soname for libclamav has changed after clamav-0.90."
- ewarn "If you have upgraded from that or earlier version, it is recommended to run:"
- ewarn
- ewarn "revdep-rebuild --library libclamav.so.1"
- ewarn
- ewarn "This will fix linking errors caused by this change."
- echo
-}
diff --git a/app-antivirus/clamav/clamav-0.91.2.ebuild b/app-antivirus/clamav/clamav-0.91.2.ebuild
index 7183fbe3fd78..0aad2538f0c9 100644
--- a/app-antivirus/clamav/clamav-0.91.2.ebuild
+++ b/app-antivirus/clamav/clamav-0.91.2.ebuild
@@ -1,6 +1,6 @@
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-antivirus/clamav/clamav-0.91.2.ebuild,v 1.8 2007/08/29 10:27:34 corsair Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-antivirus/clamav/clamav-0.91.2.ebuild,v 1.9 2007/11/14 19:25:05 ticho Exp $
inherit autotools eutils flag-o-matic fixheadtails
@@ -11,7 +11,7 @@ SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="alpha amd64 hppa ia64 ppc ppc64 sparc x86 ~x86-fbsd"
-IUSE="bzip2 crypt logrotate mailwrapper milter nls selinux"
+IUSE="bzip2 crypt mailwrapper milter nls selinux"
DEPEND="virtual/libc
bzip2? ( app-arch/bzip2 )
@@ -23,7 +23,6 @@ DEPEND="virtual/libc
>=sys-apps/sed-4"
RDEPEND="${DEPEND}
selinux? ( sec-policy/selinux-clamav )
- logrotate? ( app-admin/logrotate )
sys-apps/grep"
PROVIDE="virtual/antivirus"
@@ -74,11 +73,11 @@ src_compile() {
}
src_install() {
- make DESTDIR=${D} install || die
+ make DESTDIR="${D}" install || die
dodoc AUTHORS BUGS NEWS README ChangeLog FAQ
- newconfd ${FILESDIR}/clamd.conf clamd
- newinitd ${FILESDIR}/clamd.rc clamd
- dodoc ${FILESDIR}/clamav-milter.README.gentoo
+ newconfd "${FILESDIR}"/clamd.conf clamd
+ newinitd "${FILESDIR}"/clamd.rc clamd
+ dodoc "${FILESDIR}"/clamav-milter.README.gentoo
dodir /var/run/clamav
keepdir /var/run/clamav
@@ -94,7 +93,7 @@ src_install() {
-e "s:.*\(User\) .*:\1 clamav:" \
-e "s:^\#\(LogFile\) .*:\1 /var/log/clamav/clamd.log:" \
-e "s:^\#\(LogTime\).*:\1 yes:" \
- ${D}/etc/clamd.conf
+ "${D}"/etc/clamd.conf
# Do the same for /etc/freshclam.conf
sed -i -e "s:^\(Example\):\# \1:" \
@@ -103,24 +102,22 @@ src_install() {
-e "s:^\#\(UpdateLogFile\) .*:\1 /var/log/clamav/freshclam.log:" \
-e "s:^\#\(NotifyClamd\).*:\1 /etc/clamd.conf:" \
-e "s:^\#\(ScriptedUpdates\).*:\1 yes:" \
- ${D}/etc/freshclam.conf
+ "${D}"/etc/freshclam.conf
if use milter ; then
echo "START_MILTER=no" \
- >> ${D}/etc/conf.d/clamd
+ >> "${D}"/etc/conf.d/clamd
echo "MILTER_SOCKET=\"/var/run/clamav/clmilter.sock\"" \
- >>${D}/etc/conf.d/clamd
+ >>"${D}"/etc/conf.d/clamd
echo "MILTER_OPTS=\"-m 10 --timeout=0\"" \
- >>${D}/etc/conf.d/clamd
+ >>"${D}"/etc/conf.d/clamd
fi
- if use logrotate ; then
- diropts ""
- dodir /etc/logrotate.d
- insopts -m0644
- insinto /etc/logrotate.d
- newins ${FILESDIR}/${PN}.logrotate ${PN}
- fi
+ diropts ""
+ dodir /etc/logrotate.d
+ insopts -m0644
+ insinto /etc/logrotate.d
+ newins "${FILESDIR}"/${PN}.logrotate ${PN}
}
pkg_postinst() {
diff --git a/app-antivirus/clamav/clamav-0.91.ebuild b/app-antivirus/clamav/clamav-0.91.ebuild
deleted file mode 100644
index e1fe323693b6..000000000000
--- a/app-antivirus/clamav/clamav-0.91.ebuild
+++ /dev/null
@@ -1,143 +0,0 @@
-# Copyright 1999-2007 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-antivirus/clamav/clamav-0.91.ebuild,v 1.7 2007/07/17 06:13:53 jer Exp $
-
-inherit autotools eutils flag-o-matic fixheadtails
-
-DESCRIPTION="Clam Anti-Virus Scanner"
-HOMEPAGE="http://www.clamav.net/"
-SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="alpha amd64 hppa ia64 ppc ppc64 sparc x86 ~x86-fbsd"
-IUSE="bzip2 crypt logrotate mailwrapper milter nls selinux"
-
-DEPEND="virtual/libc
- bzip2? ( app-arch/bzip2 )
- crypt? ( >=dev-libs/gmp-4.1.2 )
- milter? ( || ( mail-filter/libmilter mail-mta/sendmail ) )
- nls? ( sys-devel/gettext )
- dev-libs/gmp
- >=sys-libs/zlib-1.2.1-r3
- >=sys-apps/sed-4"
-RDEPEND="${DEPEND}
- selinux? ( sec-policy/selinux-clamav )
- logrotate? ( app-admin/logrotate )
- sys-apps/grep"
-PROVIDE="virtual/antivirus"
-
-pkg_setup() {
- if use milter; then
- if [ ! -e /usr/lib/libmilter.a ] ; then
- ewarn "In order to enable milter support, clamav needs sendmail with enabled milter"
- ewarn "USE flag. Either recompile sendmail with milter USE flag enabled, or disable"
- ewarn "this flag for clamav as well to disable milter support."
- die "need milter-enabled sendmail"
- fi
- fi
- enewgroup clamav
- enewuser clamav -1 -1 /dev/null clamav
-}
-
-src_unpack() {
- unpack "${A}"
- cd "${S}"
- epatch "${FILESDIR}"/${PN}-0.90-compat.patch
- epatch "${FILESDIR}"/${PN}-0.90-nls.patch
- eautoreconf
-}
-
-src_compile() {
- has_version =sys-libs/glibc-2.2* && filter-lfs-flags
-
- local myconf
-
- # we depend on fixed zlib, so we can disable this check to prevent redundant
- # warning (bug #61749)
- myconf="${myconf} --disable-zlib-vcheck"
- # use id utility instead of /etc/passwd parsing (bug #72540)
- myconf="${myconf} --enable-id-check"
- use milter && {
- myconf="${myconf} --enable-milter"
- use mailwrapper && \
- myconf="${myconf} --with-sendmail=/usr/sbin/sendmail.sendmail"
- }
-
- ht_fix_file configure
- econf ${myconf} \
- $(use_enable bzip2) \
- $(use_enable nls) \
- --disable-experimental \
- --with-dbdir=/var/lib/clamav || die
- emake || die
-}
-
-src_install() {
- make DESTDIR=${D} install || die
- dodoc AUTHORS BUGS NEWS README ChangeLog FAQ
- newconfd ${FILESDIR}/clamd.conf clamd
- newinitd ${FILESDIR}/clamd.rc clamd
- dodoc ${FILESDIR}/clamav-milter.README.gentoo
-
- dodir /var/run/clamav
- keepdir /var/run/clamav
- fowners clamav:clamav /var/run/clamav
- dodir /var/log/clamav
- keepdir /var/log/clamav
- fowners clamav:clamav /var/log/clamav
-
- # Change /etc/clamd.conf to be usable out of the box
- sed -i -e "s:^\(Example\):\# \1:" \
- -e "s:.*\(PidFile\) .*:\1 /var/run/clamav/clamd.pid:" \
- -e "s:.*\(LocalSocket\) .*:\1 /var/run/clamav/clamd.sock:" \
- -e "s:.*\(User\) .*:\1 clamav:" \
- -e "s:^\#\(LogFile\) .*:\1 /var/log/clamav/clamd.log:" \
- -e "s:^\#\(LogTime\).*:\1 yes:" \
- ${D}/etc/clamd.conf
-
- # Do the same for /etc/freshclam.conf
- sed -i -e "s:^\(Example\):\# \1:" \
- -e "s:.*\(PidFile\) .*:\1 /var/run/clamav/freshclam.pid:" \
- -e "s:.*\(DatabaseOwner\) .*:\1 clamav:" \
- -e "s:^\#\(UpdateLogFile\) .*:\1 /var/log/clamav/freshclam.log:" \
- -e "s:^\#\(NotifyClamd\).*:\1 /etc/clamd.conf:" \
- -e "s:^\#\(ScriptedUpdates\).*:\1 yes:" \
- ${D}/etc/freshclam.conf
-
- if use milter ; then
- echo "START_MILTER=no" \
- >> ${D}/etc/conf.d/clamd
- echo "MILTER_SOCKET=\"/var/run/clamav/clmilter.sock\"" \
- >>${D}/etc/conf.d/clamd
- echo "MILTER_OPTS=\"-m 10 --timeout=0\"" \
- >>${D}/etc/conf.d/clamd
- fi
-
- if use logrotate ; then
- diropts ""
- dodir /etc/logrotate.d
- insopts -m0644
- insinto /etc/logrotate.d
- newins ${FILESDIR}/${PN}.logrotate ${PN}
- fi
-}
-
-pkg_postinst() {
- echo
- if use milter ; then
- elog "For simple instructions how to setup the clamav-milter"
- elog "read /usr/share/doc/${PF}/clamav-milter.README.gentoo.gz"
- echo
- fi
- ewarn "Warning: clamd and/or freshclam have not been restarted."
- ewarn "You should restart them to start using new version: /etc/init.d/clamd restart"
- echo
- ewarn "The soname for libclamav has changed after clamav-0.90."
- ewarn "If you have upgraded from that or earlier version, it is recommended to run:"
- ewarn
- ewarn "revdep-rebuild --library libclamav.so.1"
- ewarn
- ewarn "This will fix linking errors caused by this change."
- echo
-}
diff --git a/app-antivirus/clamav/clamav-0.92_rc2.ebuild b/app-antivirus/clamav/clamav-0.92_rc2.ebuild
index a64458308145..b5d274200c0c 100644
--- a/app-antivirus/clamav/clamav-0.92_rc2.ebuild
+++ b/app-antivirus/clamav/clamav-0.92_rc2.ebuild
@@ -1,6 +1,6 @@
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-antivirus/clamav/clamav-0.92_rc2.ebuild,v 1.1 2007/10/10 08:47:41 lordvan Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-antivirus/clamav/clamav-0.92_rc2.ebuild,v 1.2 2007/11/14 19:25:05 ticho Exp $
inherit autotools eutils flag-o-matic fixheadtails
@@ -12,7 +12,7 @@ SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
-IUSE="bzip2 crypt logrotate mailwrapper milter nls selinux"
+IUSE="bzip2 crypt mailwrapper milter nls selinux"
DEPEND="virtual/libc
bzip2? ( app-arch/bzip2 )
@@ -24,7 +24,6 @@ DEPEND="virtual/libc
>=sys-apps/sed-4"
RDEPEND="${DEPEND}
selinux? ( sec-policy/selinux-clamav )
- logrotate? ( app-admin/logrotate )
sys-apps/grep"
PROVIDE="virtual/antivirus"
@@ -45,7 +44,7 @@ pkg_setup() {
src_unpack() {
unpack "${A}"
cd "${S}"
- echo $S
+ echo "${S}"
epatch "${FILESDIR}"/${PN}-0.90-compat.patch
epatch "${FILESDIR}"/${PN}-0.90-nls.patch
eautoreconf
@@ -77,11 +76,11 @@ src_compile() {
}
src_install() {
- make DESTDIR=${D} install || die
+ make DESTDIR="${D}" install || die
dodoc AUTHORS BUGS NEWS README ChangeLog FAQ
- newconfd ${FILESDIR}/clamd.conf clamd
- newinitd ${FILESDIR}/clamd.rc clamd
- dodoc ${FILESDIR}/clamav-milter.README.gentoo
+ newconfd "${FILESDIR}"/clamd.conf clamd
+ newinitd "${FILESDIR}"/clamd.rc clamd
+ dodoc "${FILESDIR}"/clamav-milter.README.gentoo
dodir /var/run/clamav
keepdir /var/run/clamav
@@ -97,7 +96,7 @@ src_install() {
-e "s:.*\(User\) .*:\1 clamav:" \
-e "s:^\#\(LogFile\) .*:\1 /var/log/clamav/clamd.log:" \
-e "s:^\#\(LogTime\).*:\1 yes:" \
- ${D}/etc/clamd.conf
+ "${D}"/etc/clamd.conf
# Do the same for /etc/freshclam.conf
sed -i -e "s:^\(Example\):\# \1:" \
@@ -106,24 +105,22 @@ src_install() {
-e "s:^\#\(UpdateLogFile\) .*:\1 /var/log/clamav/freshclam.log:" \
-e "s:^\#\(NotifyClamd\).*:\1 /etc/clamd.conf:" \
-e "s:^\#\(ScriptedUpdates\).*:\1 yes:" \
- ${D}/etc/freshclam.conf
+ "${D}"/etc/freshclam.conf
if use milter ; then
echo "START_MILTER=no" \
- >> ${D}/etc/conf.d/clamd
+ >>"${D}"/etc/conf.d/clamd
echo "MILTER_SOCKET=\"/var/run/clamav/clmilter.sock\"" \
- >>${D}/etc/conf.d/clamd
+ >>"${D}"/etc/conf.d/clamd
echo "MILTER_OPTS=\"-m 10 --timeout=0\"" \
- >>${D}/etc/conf.d/clamd
+ >>"${D}"/etc/conf.d/clamd
fi
- if use logrotate ; then
- diropts ""
- dodir /etc/logrotate.d
- insopts -m0644
- insinto /etc/logrotate.d
- newins ${FILESDIR}/${PN}.logrotate ${PN}
- fi
+ diropts ""
+ dodir /etc/logrotate.d
+ insopts -m0644
+ insinto /etc/logrotate.d
+ newins "${FILESDIR}"/${PN}.logrotate ${PN}
}
pkg_postinst() {
diff --git a/app-antivirus/clamav/files/digest-clamav-0.91 b/app-antivirus/clamav/files/digest-clamav-0.91
deleted file mode 100644
index 562107614581..000000000000
--- a/app-antivirus/clamav/files/digest-clamav-0.91
+++ /dev/null
@@ -1,3 +0,0 @@
-MD5 35192423e44642c86ea69dc93f59cfb1 clamav-0.91.tar.gz 13026634
-RMD160 192acbe2fa290030df2fd60c7f323b434acc7a69 clamav-0.91.tar.gz 13026634
-SHA256 329ad13ae12390d3758017297e307ca06744bfb4e3fb61424b4f064faf5a2bbb clamav-0.91.tar.gz 13026634
diff --git a/app-antivirus/clamav/files/digest-clamav-0.91.1 b/app-antivirus/clamav/files/digest-clamav-0.91.1
deleted file mode 100644
index 591b861a25ba..000000000000
--- a/app-antivirus/clamav/files/digest-clamav-0.91.1
+++ /dev/null
@@ -1,3 +0,0 @@
-MD5 60152bf1e24b3fbdf0473794199e5215 clamav-0.91.1.tar.gz 13099119
-RMD160 a9b1526d11264d55e3ac38b7c16d27db43bf8a4e clamav-0.91.1.tar.gz 13099119
-SHA256 f98edecae40473c142fe49a0e02f5ff7fb28d778c4bd510dad747d208d20cb00 clamav-0.91.1.tar.gz 13099119