public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in app-antivirus/clamav: ChangeLog clamav-0.91.2-r1.ebuild
@ 2007-12-20  0:29 Andrej Kacian (ticho)
  0 siblings, 0 replies; 7+ messages in thread
From: Andrej Kacian (ticho) @ 2007-12-20  0:29 UTC (permalink / raw
  To: gentoo-commits

ticho       07/12/20 00:29:42

  Modified:             ChangeLog
  Added:                clamav-0.91.2-r1.ebuild
  Log:
  Add patches collected by Robert Buchholz <rbu at gentoo.org> to backport fixes for CVE-2007-5759, CVE-2007-6336 and CVE-2007-6337.
  (Portage version: 2.1.4_rc9)

Revision  Changes    Path
1.258                app-antivirus/clamav/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-antivirus/clamav/ChangeLog?rev=1.258&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-antivirus/clamav/ChangeLog?rev=1.258&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-antivirus/clamav/ChangeLog?r1=1.257&r2=1.258

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-antivirus/clamav/ChangeLog,v
retrieving revision 1.257
retrieving revision 1.258
diff -u -r1.257 -r1.258
--- ChangeLog	17 Dec 2007 18:38:43 -0000	1.257
+++ ChangeLog	20 Dec 2007 00:29:41 -0000	1.258
@@ -1,6 +1,15 @@
 # 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.257 2007/12/17 18:38:43 ticho Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-antivirus/clamav/ChangeLog,v 1.258 2007/12/20 00:29:41 ticho Exp $
+
+*clamav-0.91.2-r1 (20 Dec 2007)
+
+  20 Dec 2007; Andrej Kacian <ticho@gentoo.org>
+  +files/clamav-0.91.2-CVE-2007-5759.patch,
+  +files/clamav-0.91.2-CVE-2007-6336.patch,
+  +files/clamav-0.91.2-CVE-2007-6337.patch, +clamav-0.91.2-r1.ebuild:
+  Add patches collected by Robert Buchholz <rbu at gentoo.org> to backport
+  fixes for CVE-2007-5759, CVE-2007-6336 and CVE-2007-6337.
 
 *clamav-0.92 (17 Dec 2007)
 



1.1                  app-antivirus/clamav/clamav-0.91.2-r1.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-antivirus/clamav/clamav-0.91.2-r1.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-antivirus/clamav/clamav-0.91.2-r1.ebuild?rev=1.1&content-type=text/plain

Index: clamav-0.91.2-r1.ebuild
===================================================================
# 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-r1.ebuild,v 1.1 2007/12/20 00:29:41 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 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 )
	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
	epatch "${FILESDIR}"/${P}-CVE-2007-5759.patch
	epatch "${FILESDIR}"/${P}-CVE-2007-6336.patch
	epatch "${FILESDIR}"/${P}-CVE-2007-6337.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

	diropts ""
	dodir /etc/logrotate.d
	insopts -m0644
	insinto /etc/logrotate.d
	newins "${FILESDIR}"/${PN}.logrotate ${PN}
}

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
}



-- 
gentoo-commits@gentoo.org mailing list



^ permalink raw reply	[flat|nested] 7+ messages in thread

* [gentoo-commits] gentoo-x86 commit in app-antivirus/clamav: ChangeLog clamav-0.91.2-r1.ebuild
@ 2007-12-20  1:35 Brent Baude (ranger)
  0 siblings, 0 replies; 7+ messages in thread
From: Brent Baude (ranger) @ 2007-12-20  1:35 UTC (permalink / raw
  To: gentoo-commits

ranger      07/12/20 01:35:33

  Modified:             ChangeLog clamav-0.91.2-r1.ebuild
  Log:
  Marking clamav-0.91.2-r1 ppc and ppc64 for 202762
  (Portage version: 2.1.3.19)

Revision  Changes    Path
1.260                app-antivirus/clamav/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-antivirus/clamav/ChangeLog?rev=1.260&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-antivirus/clamav/ChangeLog?rev=1.260&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-antivirus/clamav/ChangeLog?r1=1.259&r2=1.260

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-antivirus/clamav/ChangeLog,v
retrieving revision 1.259
retrieving revision 1.260
diff -u -r1.259 -r1.260
--- ChangeLog	20 Dec 2007 00:32:24 -0000	1.259
+++ ChangeLog	20 Dec 2007 01:35:32 -0000	1.260
@@ -1,6 +1,9 @@
 # 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.259 2007/12/20 00:32:24 ticho Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-antivirus/clamav/ChangeLog,v 1.260 2007/12/20 01:35:32 ranger Exp $
+
+  20 Dec 2007; Brent Baude <ranger@gentoo.org> clamav-0.91.2-r1.ebuild:
+  Marking clamav-0.91.2-r1 ppc and ppc64 for 202762
 
   20 Dec 2007; Andrej Kacian <ticho@gentoo.org> -clamav-0.92_rc2.ebuild:
   Remove ebuild for release candidate.



1.2                  app-antivirus/clamav/clamav-0.91.2-r1.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-antivirus/clamav/clamav-0.91.2-r1.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-antivirus/clamav/clamav-0.91.2-r1.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-antivirus/clamav/clamav-0.91.2-r1.ebuild?r1=1.1&r2=1.2

Index: clamav-0.91.2-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-antivirus/clamav/clamav-0.91.2-r1.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- clamav-0.91.2-r1.ebuild	20 Dec 2007 00:29:41 -0000	1.1
+++ clamav-0.91.2-r1.ebuild	20 Dec 2007 01:35:32 -0000	1.2
@@ -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-r1.ebuild,v 1.1 2007/12/20 00:29:41 ticho Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-antivirus/clamav/clamav-0.91.2-r1.ebuild,v 1.2 2007/12/20 01:35:32 ranger Exp $
 
 inherit autotools eutils flag-o-matic fixheadtails
 
@@ -10,7 +10,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
+KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ppc ppc64 ~sparc ~x86 ~x86-fbsd"
 IUSE="bzip2 crypt mailwrapper milter nls selinux"
 
 DEPEND="virtual/libc



-- 
gentoo-commits@gentoo.org mailing list



^ permalink raw reply	[flat|nested] 7+ messages in thread

* [gentoo-commits] gentoo-x86 commit in app-antivirus/clamav: ChangeLog clamav-0.91.2-r1.ebuild
@ 2007-12-20 13:20 Markus Meier (maekke)
  0 siblings, 0 replies; 7+ messages in thread
From: Markus Meier (maekke) @ 2007-12-20 13:20 UTC (permalink / raw
  To: gentoo-commits

maekke      07/12/20 13:20:06

  Modified:             ChangeLog clamav-0.91.2-r1.ebuild
  Log:
  x86 stable, security bug #202762
  (Portage version: 2.1.4_rc10)

Revision  Changes    Path
1.261                app-antivirus/clamav/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-antivirus/clamav/ChangeLog?rev=1.261&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-antivirus/clamav/ChangeLog?rev=1.261&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-antivirus/clamav/ChangeLog?r1=1.260&r2=1.261

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-antivirus/clamav/ChangeLog,v
retrieving revision 1.260
retrieving revision 1.261
diff -u -r1.260 -r1.261
--- ChangeLog	20 Dec 2007 01:35:32 -0000	1.260
+++ ChangeLog	20 Dec 2007 13:20:06 -0000	1.261
@@ -1,6 +1,9 @@
 # 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.260 2007/12/20 01:35:32 ranger Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-antivirus/clamav/ChangeLog,v 1.261 2007/12/20 13:20:06 maekke Exp $
+
+  20 Dec 2007; Markus Meier <maekke@gentoo.org> clamav-0.91.2-r1.ebuild:
+  x86 stable, security bug #202762
 
   20 Dec 2007; Brent Baude <ranger@gentoo.org> clamav-0.91.2-r1.ebuild:
   Marking clamav-0.91.2-r1 ppc and ppc64 for 202762



1.3                  app-antivirus/clamav/clamav-0.91.2-r1.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-antivirus/clamav/clamav-0.91.2-r1.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-antivirus/clamav/clamav-0.91.2-r1.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-antivirus/clamav/clamav-0.91.2-r1.ebuild?r1=1.2&r2=1.3

Index: clamav-0.91.2-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-antivirus/clamav/clamav-0.91.2-r1.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- clamav-0.91.2-r1.ebuild	20 Dec 2007 01:35:32 -0000	1.2
+++ clamav-0.91.2-r1.ebuild	20 Dec 2007 13:20:06 -0000	1.3
@@ -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-r1.ebuild,v 1.2 2007/12/20 01:35:32 ranger Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-antivirus/clamav/clamav-0.91.2-r1.ebuild,v 1.3 2007/12/20 13:20:06 maekke Exp $
 
 inherit autotools eutils flag-o-matic fixheadtails
 
@@ -10,7 +10,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ppc ppc64 ~sparc ~x86 ~x86-fbsd"
+KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ppc ppc64 ~sparc x86 ~x86-fbsd"
 IUSE="bzip2 crypt mailwrapper milter nls selinux"
 
 DEPEND="virtual/libc



-- 
gentoo-commits@gentoo.org mailing list



^ permalink raw reply	[flat|nested] 7+ messages in thread

* [gentoo-commits] gentoo-x86 commit in app-antivirus/clamav: ChangeLog clamav-0.91.2-r1.ebuild
@ 2007-12-20 13:49 Ferris McCormick (fmccor)
  0 siblings, 0 replies; 7+ messages in thread
From: Ferris McCormick (fmccor) @ 2007-12-20 13:49 UTC (permalink / raw
  To: gentoo-commits

fmccor      07/12/20 13:49:17

  Modified:             ChangeLog clamav-0.91.2-r1.ebuild
  Log:
  Sparc stable, security Bug #202762.
  (Portage version: 2.1.4_rc10)

Revision  Changes    Path
1.262                app-antivirus/clamav/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-antivirus/clamav/ChangeLog?rev=1.262&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-antivirus/clamav/ChangeLog?rev=1.262&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-antivirus/clamav/ChangeLog?r1=1.261&r2=1.262

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-antivirus/clamav/ChangeLog,v
retrieving revision 1.261
retrieving revision 1.262
diff -u -r1.261 -r1.262
--- ChangeLog	20 Dec 2007 13:20:06 -0000	1.261
+++ ChangeLog	20 Dec 2007 13:49:17 -0000	1.262
@@ -1,6 +1,9 @@
 # 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.261 2007/12/20 13:20:06 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-antivirus/clamav/ChangeLog,v 1.262 2007/12/20 13:49:17 fmccor Exp $
+
+  20 Dec 2007; Ferris McCormick <fmccor@gentoo.org> clamav-0.91.2-r1.ebuild:
+  Sparc stable, security Bug #202762.
 
   20 Dec 2007; Markus Meier <maekke@gentoo.org> clamav-0.91.2-r1.ebuild:
   x86 stable, security bug #202762



1.4                  app-antivirus/clamav/clamav-0.91.2-r1.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-antivirus/clamav/clamav-0.91.2-r1.ebuild?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-antivirus/clamav/clamav-0.91.2-r1.ebuild?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-antivirus/clamav/clamav-0.91.2-r1.ebuild?r1=1.3&r2=1.4

Index: clamav-0.91.2-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-antivirus/clamav/clamav-0.91.2-r1.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- clamav-0.91.2-r1.ebuild	20 Dec 2007 13:20:06 -0000	1.3
+++ clamav-0.91.2-r1.ebuild	20 Dec 2007 13:49:17 -0000	1.4
@@ -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-r1.ebuild,v 1.3 2007/12/20 13:20:06 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-antivirus/clamav/clamav-0.91.2-r1.ebuild,v 1.4 2007/12/20 13:49:17 fmccor Exp $
 
 inherit autotools eutils flag-o-matic fixheadtails
 
@@ -10,7 +10,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ppc ppc64 ~sparc x86 ~x86-fbsd"
+KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ppc ppc64 sparc x86 ~x86-fbsd"
 IUSE="bzip2 crypt mailwrapper milter nls selinux"
 
 DEPEND="virtual/libc



-- 
gentoo-commits@gentoo.org mailing list



^ permalink raw reply	[flat|nested] 7+ messages in thread

* [gentoo-commits] gentoo-x86 commit in app-antivirus/clamav: ChangeLog clamav-0.91.2-r1.ebuild
@ 2007-12-20 14:52 Jeroen Roovers (jer)
  0 siblings, 0 replies; 7+ messages in thread
From: Jeroen Roovers (jer) @ 2007-12-20 14:52 UTC (permalink / raw
  To: gentoo-commits

jer         07/12/20 14:52:10

  Modified:             ChangeLog clamav-0.91.2-r1.ebuild
  Log:
  Stable for HPPA (bug #202762).
  (Portage version: 2.1.4_rc10)

Revision  Changes    Path
1.263                app-antivirus/clamav/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-antivirus/clamav/ChangeLog?rev=1.263&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-antivirus/clamav/ChangeLog?rev=1.263&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-antivirus/clamav/ChangeLog?r1=1.262&r2=1.263

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-antivirus/clamav/ChangeLog,v
retrieving revision 1.262
retrieving revision 1.263
diff -u -r1.262 -r1.263
--- ChangeLog	20 Dec 2007 13:49:17 -0000	1.262
+++ ChangeLog	20 Dec 2007 14:52:09 -0000	1.263
@@ -1,6 +1,9 @@
 # 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.262 2007/12/20 13:49:17 fmccor Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-antivirus/clamav/ChangeLog,v 1.263 2007/12/20 14:52:09 jer Exp $
+
+  20 Dec 2007; Jeroen Roovers <jer@gentoo.org> clamav-0.91.2-r1.ebuild:
+  Stable for HPPA (bug #202762).
 
   20 Dec 2007; Ferris McCormick <fmccor@gentoo.org> clamav-0.91.2-r1.ebuild:
   Sparc stable, security Bug #202762.



1.5                  app-antivirus/clamav/clamav-0.91.2-r1.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-antivirus/clamav/clamav-0.91.2-r1.ebuild?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-antivirus/clamav/clamav-0.91.2-r1.ebuild?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-antivirus/clamav/clamav-0.91.2-r1.ebuild?r1=1.4&r2=1.5

Index: clamav-0.91.2-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-antivirus/clamav/clamav-0.91.2-r1.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- clamav-0.91.2-r1.ebuild	20 Dec 2007 13:49:17 -0000	1.4
+++ clamav-0.91.2-r1.ebuild	20 Dec 2007 14:52:09 -0000	1.5
@@ -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-r1.ebuild,v 1.4 2007/12/20 13:49:17 fmccor Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-antivirus/clamav/clamav-0.91.2-r1.ebuild,v 1.5 2007/12/20 14:52:09 jer Exp $
 
 inherit autotools eutils flag-o-matic fixheadtails
 
@@ -10,7 +10,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ppc ppc64 sparc x86 ~x86-fbsd"
+KEYWORDS="~alpha ~amd64 hppa ~ia64 ppc ppc64 sparc x86 ~x86-fbsd"
 IUSE="bzip2 crypt mailwrapper milter nls selinux"
 
 DEPEND="virtual/libc



-- 
gentoo-commits@gentoo.org mailing list



^ permalink raw reply	[flat|nested] 7+ messages in thread

* [gentoo-commits] gentoo-x86 commit in app-antivirus/clamav: ChangeLog clamav-0.91.2-r1.ebuild
@ 2007-12-20 16:01 Raul Porcel (armin76)
  0 siblings, 0 replies; 7+ messages in thread
From: Raul Porcel (armin76) @ 2007-12-20 16:01 UTC (permalink / raw
  To: gentoo-commits

armin76     07/12/20 16:01:03

  Modified:             ChangeLog clamav-0.91.2-r1.ebuild
  Log:
  alpha/ia64 stable wrt security #202762
  (Portage version: 2.1.3.19)

Revision  Changes    Path
1.264                app-antivirus/clamav/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-antivirus/clamav/ChangeLog?rev=1.264&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-antivirus/clamav/ChangeLog?rev=1.264&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-antivirus/clamav/ChangeLog?r1=1.263&r2=1.264

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-antivirus/clamav/ChangeLog,v
retrieving revision 1.263
retrieving revision 1.264
diff -u -r1.263 -r1.264
--- ChangeLog	20 Dec 2007 14:52:09 -0000	1.263
+++ ChangeLog	20 Dec 2007 16:01:03 -0000	1.264
@@ -1,6 +1,9 @@
 # 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.263 2007/12/20 14:52:09 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-antivirus/clamav/ChangeLog,v 1.264 2007/12/20 16:01:03 armin76 Exp $
+
+  20 Dec 2007; Raúl Porcel <armin76@gentoo.org> clamav-0.91.2-r1.ebuild:
+  alpha/ia64 stable wrt security #202762
 
   20 Dec 2007; Jeroen Roovers <jer@gentoo.org> clamav-0.91.2-r1.ebuild:
   Stable for HPPA (bug #202762).



1.6                  app-antivirus/clamav/clamav-0.91.2-r1.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-antivirus/clamav/clamav-0.91.2-r1.ebuild?rev=1.6&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-antivirus/clamav/clamav-0.91.2-r1.ebuild?rev=1.6&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-antivirus/clamav/clamav-0.91.2-r1.ebuild?r1=1.5&r2=1.6

Index: clamav-0.91.2-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-antivirus/clamav/clamav-0.91.2-r1.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- clamav-0.91.2-r1.ebuild	20 Dec 2007 14:52:09 -0000	1.5
+++ clamav-0.91.2-r1.ebuild	20 Dec 2007 16:01:03 -0000	1.6
@@ -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-r1.ebuild,v 1.5 2007/12/20 14:52:09 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-antivirus/clamav/clamav-0.91.2-r1.ebuild,v 1.6 2007/12/20 16:01:03 armin76 Exp $
 
 inherit autotools eutils flag-o-matic fixheadtails
 
@@ -10,7 +10,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 hppa ~ia64 ppc ppc64 sparc x86 ~x86-fbsd"
+KEYWORDS="alpha ~amd64 hppa ia64 ppc ppc64 sparc x86 ~x86-fbsd"
 IUSE="bzip2 crypt mailwrapper milter nls selinux"
 
 DEPEND="virtual/libc



-- 
gentoo-commits@gentoo.org mailing list



^ permalink raw reply	[flat|nested] 7+ messages in thread

* [gentoo-commits] gentoo-x86 commit in app-antivirus/clamav: ChangeLog clamav-0.91.2-r1.ebuild
@ 2007-12-26 15:51 Peter Weller (welp)
  0 siblings, 0 replies; 7+ messages in thread
From: Peter Weller (welp) @ 2007-12-26 15:51 UTC (permalink / raw
  To: gentoo-commits

welp        07/12/26 15:51:24

  Modified:             ChangeLog clamav-0.91.2-r1.ebuild
  Log:
  Stable on amd64; bug 202762
  (Portage version: 2.1.3.19)

Revision  Changes    Path
1.265                app-antivirus/clamav/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-antivirus/clamav/ChangeLog?rev=1.265&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-antivirus/clamav/ChangeLog?rev=1.265&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-antivirus/clamav/ChangeLog?r1=1.264&r2=1.265

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-antivirus/clamav/ChangeLog,v
retrieving revision 1.264
retrieving revision 1.265
diff -u -r1.264 -r1.265
--- ChangeLog	20 Dec 2007 16:01:03 -0000	1.264
+++ ChangeLog	26 Dec 2007 15:51:23 -0000	1.265
@@ -1,6 +1,9 @@
 # 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.264 2007/12/20 16:01:03 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-antivirus/clamav/ChangeLog,v 1.265 2007/12/26 15:51:23 welp Exp $
+
+  26 Dec 2007; Peter Weller <welp@gentoo.org> clamav-0.91.2-r1.ebuild:
+  Stable on amd64; bug 202762
 
   20 Dec 2007; Raúl Porcel <armin76@gentoo.org> clamav-0.91.2-r1.ebuild:
   alpha/ia64 stable wrt security #202762



1.7                  app-antivirus/clamav/clamav-0.91.2-r1.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-antivirus/clamav/clamav-0.91.2-r1.ebuild?rev=1.7&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-antivirus/clamav/clamav-0.91.2-r1.ebuild?rev=1.7&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-antivirus/clamav/clamav-0.91.2-r1.ebuild?r1=1.6&r2=1.7

Index: clamav-0.91.2-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-antivirus/clamav/clamav-0.91.2-r1.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- clamav-0.91.2-r1.ebuild	20 Dec 2007 16:01:03 -0000	1.6
+++ clamav-0.91.2-r1.ebuild	26 Dec 2007 15:51:23 -0000	1.7
@@ -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-r1.ebuild,v 1.6 2007/12/20 16:01:03 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-antivirus/clamav/clamav-0.91.2-r1.ebuild,v 1.7 2007/12/26 15:51:23 welp Exp $
 
 inherit autotools eutils flag-o-matic fixheadtails
 
@@ -10,7 +10,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="alpha ~amd64 hppa ia64 ppc ppc64 sparc x86 ~x86-fbsd"
+KEYWORDS="alpha amd64 hppa ia64 ppc ppc64 sparc x86 ~x86-fbsd"
 IUSE="bzip2 crypt mailwrapper milter nls selinux"
 
 DEPEND="virtual/libc



-- 
gentoo-commits@gentoo.org mailing list



^ permalink raw reply	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2007-12-26 15:51 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-12-20  1:35 [gentoo-commits] gentoo-x86 commit in app-antivirus/clamav: ChangeLog clamav-0.91.2-r1.ebuild Brent Baude (ranger)
  -- strict thread matches above, loose matches on Subject: below --
2007-12-26 15:51 Peter Weller (welp)
2007-12-20 16:01 Raul Porcel (armin76)
2007-12-20 14:52 Jeroen Roovers (jer)
2007-12-20 13:49 Ferris McCormick (fmccor)
2007-12-20 13:20 Markus Meier (maekke)
2007-12-20  0:29 Andrej Kacian (ticho)

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox