public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in mail-filter/bogofilter: ChangeLog bogofilter-1.1.6.ebuild
@ 2007-11-28 19:45 Torsten Veller (tove)
  0 siblings, 0 replies; 8+ messages in thread
From: Torsten Veller (tove) @ 2007-11-28 19:45 UTC (permalink / raw
  To: gentoo-commits

tove        07/11/28 19:45:14

  Modified:             ChangeLog
  Added:                bogofilter-1.1.6.ebuild
  Log:
  Version bump
  (Portage version: 2.1.4_rc3)

Revision  Changes    Path
1.93                 mail-filter/bogofilter/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/mail-filter/bogofilter/ChangeLog?rev=1.93&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/mail-filter/bogofilter/ChangeLog?rev=1.93&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/mail-filter/bogofilter/ChangeLog?r1=1.92&r2=1.93

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/mail-filter/bogofilter/ChangeLog,v
retrieving revision 1.92
retrieving revision 1.93
diff -u -r1.92 -r1.93
--- ChangeLog	14 Jul 2007 15:28:42 -0000	1.92
+++ ChangeLog	28 Nov 2007 19:45:13 -0000	1.93
@@ -1,6 +1,11 @@
 # ChangeLog for mail-filter/bogofilter
 # Copyright 2002-2007 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/mail-filter/bogofilter/ChangeLog,v 1.92 2007/07/14 15:28:42 tove Exp $
+# $Header: /var/cvsroot/gentoo-x86/mail-filter/bogofilter/ChangeLog,v 1.93 2007/11/28 19:45:13 tove Exp $
+
+*bogofilter-1.1.6 (28 Nov 2007)
+
+  28 Nov 2007; Torsten Veller <tove@gentoo.org> +bogofilter-1.1.6.ebuild:
+  Version bump.
 
   14 Jul 2007; Torsten Veller <tove@gentoo.org>
   -files/1.1.1-patch.1107.lexer_v3_l, bogofilter-0.92.8.ebuild,



1.1                  mail-filter/bogofilter/bogofilter-1.1.6.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/mail-filter/bogofilter/bogofilter-1.1.6.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/mail-filter/bogofilter/bogofilter-1.1.6.ebuild?rev=1.1&content-type=text/plain

Index: bogofilter-1.1.6.ebuild
===================================================================
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/mail-filter/bogofilter/bogofilter-1.1.6.ebuild,v 1.1 2007/11/28 19:45:13 tove Exp $

inherit db-use flag-o-matic

DESCRIPTION="Bayesian spam filter designed with fast algorithms, and tuned for speed."
HOMEPAGE="http://bogofilter.sourceforge.net/"
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2"

LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sh ~sparc ~x86 ~x86-fbsd"
IUSE="gsl berkdb sqlite"

DEPEND="virtual/libiconv
	berkdb?  ( >=sys-libs/db-3.2 )
	!berkdb? (
		sqlite?  ( >=dev-db/sqlite-3.4.2 )
		!sqlite? ( >=sys-libs/db-3.2 ) )
	gsl? ( sci-libs/gsl )"
#	app-arch/pax" # only needed for bf_tar

src_compile() {
	local myconf="" berkdb=true
	myconf="$(use_with !gsl included-gsl)"

	# determine backend: berkdb *is* default
	if use berkdb && use sqlite ; then
		elog "Both useflags berkdb and sqlite are in USE:"
		elog "Using berkdb as database backend."
	elif use sqlite ; then
		myconf="${myconf} --with-database=sqlite"
		berkdb=false
	elif ! use berkdb ; then
		elog "Neither berkdb nor sqlite are in USE:"
		elog "Using berkdb as database backend."
	fi

	# Include the right berkdb headers for FreeBSD
	if ${berkdb} ; then
		append-flags "-I$(db_includedir)"
	fi

	econf ${myconf} || die "configure failed"
	emake || die "emake failed"
}

src_install() {
	emake DESTDIR="${D}" install || die "make install failed"

	exeinto /usr/share/${PN}/contrib
	doexe contrib/{bogofilter-qfe,parmtest,randomtrain}.sh \
		contrib/{bfproxy,bogominitrain,mime.get.rfc822,printmaildir}.pl \
		contrib/{spamitarium,stripsearch}.pl || die "doexec failed"

	insinto /usr/share/${PN}/contrib
	doins contrib/{README.*,dot-qmail-bogofilter-default} \
		contrib/{bogogrep.c,bogo.R,bogofilter-milter.pl,*.example} \
		contrib/vm-bogofilter.el \
		contrib/{trainbogo,scramble}.sh || die "doins failed"

	dodoc AUTHORS NEWS README RELEASE.NOTES* TODO GETTING.STARTED \
		doc/integrating-with-* doc/README.{db,sqlite} || die "dodoc failed"

	dohtml doc/*.html

	dodir /usr/share/doc/${PF}/samples
	mv "${D}"/etc/bogofilter.cf.example "${D}"/usr/share/doc/${PF}/samples/
	rmdir "${D}"/etc
}

pkg_postinst() {
	echo
	elog "If you need ${ROOT}usr/bin/bf_tar please install app-arch/pax."
	echo
}



-- 
gentoo-commits@gentoo.org mailing list



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

* [gentoo-commits] gentoo-x86 commit in mail-filter/bogofilter: ChangeLog bogofilter-1.1.6.ebuild
@ 2008-02-26  9:58 Christian Faulhammer (opfer)
  0 siblings, 0 replies; 8+ messages in thread
From: Christian Faulhammer (opfer) @ 2008-02-26  9:58 UTC (permalink / raw
  To: gentoo-commits

opfer       08/02/26 09:58:54

  Modified:             ChangeLog bogofilter-1.1.6.ebuild
  Log:
  stable x86, bug 211412
  (Portage version: 2.1.4.4, RepoMan options: --force)

Revision  Changes    Path
1.94                 mail-filter/bogofilter/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/mail-filter/bogofilter/ChangeLog?rev=1.94&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/mail-filter/bogofilter/ChangeLog?rev=1.94&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/mail-filter/bogofilter/ChangeLog?r1=1.93&r2=1.94

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/mail-filter/bogofilter/ChangeLog,v
retrieving revision 1.93
retrieving revision 1.94
diff -u -r1.93 -r1.94
--- ChangeLog	28 Nov 2007 19:45:13 -0000	1.93
+++ ChangeLog	26 Feb 2008 09:58:54 -0000	1.94
@@ -1,6 +1,9 @@
 # ChangeLog for mail-filter/bogofilter
-# Copyright 2002-2007 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/mail-filter/bogofilter/ChangeLog,v 1.93 2007/11/28 19:45:13 tove Exp $
+# Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/mail-filter/bogofilter/ChangeLog,v 1.94 2008/02/26 09:58:54 opfer Exp $
+
+  26 Feb 2008; <fauli@gentoo.org> bogofilter-1.1.6.ebuild:
+  stable x86, bug 211412
 
 *bogofilter-1.1.6 (28 Nov 2007)
 



1.2                  mail-filter/bogofilter/bogofilter-1.1.6.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/mail-filter/bogofilter/bogofilter-1.1.6.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/mail-filter/bogofilter/bogofilter-1.1.6.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/mail-filter/bogofilter/bogofilter-1.1.6.ebuild?r1=1.1&r2=1.2

Index: bogofilter-1.1.6.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/mail-filter/bogofilter/bogofilter-1.1.6.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- bogofilter-1.1.6.ebuild	28 Nov 2007 19:45:13 -0000	1.1
+++ bogofilter-1.1.6.ebuild	26 Feb 2008 09:58:54 -0000	1.2
@@ -1,6 +1,6 @@
-# Copyright 1999-2007 Gentoo Foundation
+# Copyright 1999-2008 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/mail-filter/bogofilter/bogofilter-1.1.6.ebuild,v 1.1 2007/11/28 19:45:13 tove Exp $
+# $Header: /var/cvsroot/gentoo-x86/mail-filter/bogofilter/bogofilter-1.1.6.ebuild,v 1.2 2008/02/26 09:58:54 opfer Exp $
 
 inherit db-use flag-o-matic
 
@@ -10,7 +10,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sh ~sparc ~x86 ~x86-fbsd"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sh ~sparc x86 ~x86-fbsd"
 IUSE="gsl berkdb sqlite"
 
 DEPEND="virtual/libiconv



-- 
gentoo-commits@lists.gentoo.org mailing list



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

* [gentoo-commits] gentoo-x86 commit in mail-filter/bogofilter: ChangeLog bogofilter-1.1.6.ebuild
@ 2008-02-26 12:50 Jeroen Roovers (jer)
  0 siblings, 0 replies; 8+ messages in thread
From: Jeroen Roovers (jer) @ 2008-02-26 12:50 UTC (permalink / raw
  To: gentoo-commits

jer         08/02/26 12:50:38

  Modified:             ChangeLog bogofilter-1.1.6.ebuild
  Log:
  Stable for HPPA (bug #211412).
  (Portage version: 2.1.4.4)

Revision  Changes    Path
1.95                 mail-filter/bogofilter/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/mail-filter/bogofilter/ChangeLog?rev=1.95&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/mail-filter/bogofilter/ChangeLog?rev=1.95&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/mail-filter/bogofilter/ChangeLog?r1=1.94&r2=1.95

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/mail-filter/bogofilter/ChangeLog,v
retrieving revision 1.94
retrieving revision 1.95
diff -u -r1.94 -r1.95
--- ChangeLog	26 Feb 2008 09:58:54 -0000	1.94
+++ ChangeLog	26 Feb 2008 12:50:37 -0000	1.95
@@ -1,6 +1,9 @@
 # ChangeLog for mail-filter/bogofilter
 # Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/mail-filter/bogofilter/ChangeLog,v 1.94 2008/02/26 09:58:54 opfer Exp $
+# $Header: /var/cvsroot/gentoo-x86/mail-filter/bogofilter/ChangeLog,v 1.95 2008/02/26 12:50:37 jer Exp $
+
+  26 Feb 2008; Jeroen Roovers <jer@gentoo.org> bogofilter-1.1.6.ebuild:
+  Stable for HPPA (bug #211412).
 
   26 Feb 2008; <fauli@gentoo.org> bogofilter-1.1.6.ebuild:
   stable x86, bug 211412



1.3                  mail-filter/bogofilter/bogofilter-1.1.6.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/mail-filter/bogofilter/bogofilter-1.1.6.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/mail-filter/bogofilter/bogofilter-1.1.6.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/mail-filter/bogofilter/bogofilter-1.1.6.ebuild?r1=1.2&r2=1.3

Index: bogofilter-1.1.6.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/mail-filter/bogofilter/bogofilter-1.1.6.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- bogofilter-1.1.6.ebuild	26 Feb 2008 09:58:54 -0000	1.2
+++ bogofilter-1.1.6.ebuild	26 Feb 2008 12:50:37 -0000	1.3
@@ -1,6 +1,6 @@
 # Copyright 1999-2008 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/mail-filter/bogofilter/bogofilter-1.1.6.ebuild,v 1.2 2008/02/26 09:58:54 opfer Exp $
+# $Header: /var/cvsroot/gentoo-x86/mail-filter/bogofilter/bogofilter-1.1.6.ebuild,v 1.3 2008/02/26 12:50:37 jer Exp $
 
 inherit db-use flag-o-matic
 
@@ -10,7 +10,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sh ~sparc x86 ~x86-fbsd"
+KEYWORDS="~alpha ~amd64 ~arm hppa ~ia64 ~ppc ~ppc64 ~sh ~sparc x86 ~x86-fbsd"
 IUSE="gsl berkdb sqlite"
 
 DEPEND="virtual/libiconv



-- 
gentoo-commits@lists.gentoo.org mailing list



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

* [gentoo-commits] gentoo-x86 commit in mail-filter/bogofilter: ChangeLog bogofilter-1.1.6.ebuild
@ 2008-02-26 18:25 Gysbert Wassenaar (nixnut)
  0 siblings, 0 replies; 8+ messages in thread
From: Gysbert Wassenaar (nixnut) @ 2008-02-26 18:25 UTC (permalink / raw
  To: gentoo-commits

nixnut      08/02/26 18:25:49

  Modified:             ChangeLog bogofilter-1.1.6.ebuild
  Log:
  Stable on ppc wrt bug 211412
  (Portage version: 2.1.4.4)

Revision  Changes    Path
1.97                 mail-filter/bogofilter/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/mail-filter/bogofilter/ChangeLog?rev=1.97&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/mail-filter/bogofilter/ChangeLog?rev=1.97&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/mail-filter/bogofilter/ChangeLog?r1=1.96&r2=1.97

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/mail-filter/bogofilter/ChangeLog,v
retrieving revision 1.96
retrieving revision 1.97
diff -u -r1.96 -r1.97
--- ChangeLog	26 Feb 2008 13:35:40 -0000	1.96
+++ ChangeLog	26 Feb 2008 18:25:48 -0000	1.97
@@ -1,6 +1,9 @@
 # ChangeLog for mail-filter/bogofilter
 # Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/mail-filter/bogofilter/ChangeLog,v 1.96 2008/02/26 13:35:40 opfer Exp $
+# $Header: /var/cvsroot/gentoo-x86/mail-filter/bogofilter/ChangeLog,v 1.97 2008/02/26 18:25:48 nixnut Exp $
+
+  26 Feb 2008; nixnut <nixnut@gentoo.org> bogofilter-1.1.6.ebuild:
+  Stable on ppc wrt bug 211412
 
   26 Feb 2008; Jeroen Roovers <jer@gentoo.org> bogofilter-1.1.6.ebuild:
   Stable for HPPA (bug #211412).



1.4                  mail-filter/bogofilter/bogofilter-1.1.6.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/mail-filter/bogofilter/bogofilter-1.1.6.ebuild?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/mail-filter/bogofilter/bogofilter-1.1.6.ebuild?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/mail-filter/bogofilter/bogofilter-1.1.6.ebuild?r1=1.3&r2=1.4

Index: bogofilter-1.1.6.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/mail-filter/bogofilter/bogofilter-1.1.6.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- bogofilter-1.1.6.ebuild	26 Feb 2008 12:50:37 -0000	1.3
+++ bogofilter-1.1.6.ebuild	26 Feb 2008 18:25:48 -0000	1.4
@@ -1,6 +1,6 @@
 # Copyright 1999-2008 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/mail-filter/bogofilter/bogofilter-1.1.6.ebuild,v 1.3 2008/02/26 12:50:37 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/mail-filter/bogofilter/bogofilter-1.1.6.ebuild,v 1.4 2008/02/26 18:25:48 nixnut Exp $
 
 inherit db-use flag-o-matic
 
@@ -10,7 +10,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm hppa ~ia64 ~ppc ~ppc64 ~sh ~sparc x86 ~x86-fbsd"
+KEYWORDS="~alpha ~amd64 ~arm hppa ~ia64 ppc ~ppc64 ~sh ~sparc x86 ~x86-fbsd"
 IUSE="gsl berkdb sqlite"
 
 DEPEND="virtual/libiconv



-- 
gentoo-commits@lists.gentoo.org mailing list



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

* [gentoo-commits] gentoo-x86 commit in mail-filter/bogofilter: ChangeLog bogofilter-1.1.6.ebuild
@ 2008-02-26 20:10 Ferris McCormick (fmccor)
  0 siblings, 0 replies; 8+ messages in thread
From: Ferris McCormick (fmccor) @ 2008-02-26 20:10 UTC (permalink / raw
  To: gentoo-commits

fmccor      08/02/26 20:10:51

  Modified:             ChangeLog bogofilter-1.1.6.ebuild
  Log:
  Sparc stable --- Bug #211412 --- tests good.
  (Portage version: 2.2_pre2)

Revision  Changes    Path
1.98                 mail-filter/bogofilter/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/mail-filter/bogofilter/ChangeLog?rev=1.98&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/mail-filter/bogofilter/ChangeLog?rev=1.98&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/mail-filter/bogofilter/ChangeLog?r1=1.97&r2=1.98

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/mail-filter/bogofilter/ChangeLog,v
retrieving revision 1.97
retrieving revision 1.98
diff -u -r1.97 -r1.98
--- ChangeLog	26 Feb 2008 18:25:48 -0000	1.97
+++ ChangeLog	26 Feb 2008 20:10:50 -0000	1.98
@@ -1,6 +1,9 @@
 # ChangeLog for mail-filter/bogofilter
 # Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/mail-filter/bogofilter/ChangeLog,v 1.97 2008/02/26 18:25:48 nixnut Exp $
+# $Header: /var/cvsroot/gentoo-x86/mail-filter/bogofilter/ChangeLog,v 1.98 2008/02/26 20:10:50 fmccor Exp $
+
+  26 Feb 2008; Ferris McCormick <fmccor@gentoo.org> bogofilter-1.1.6.ebuild:
+  Sparc stable --- Bug #211412 --- tests good.
 
   26 Feb 2008; nixnut <nixnut@gentoo.org> bogofilter-1.1.6.ebuild:
   Stable on ppc wrt bug 211412



1.5                  mail-filter/bogofilter/bogofilter-1.1.6.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/mail-filter/bogofilter/bogofilter-1.1.6.ebuild?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/mail-filter/bogofilter/bogofilter-1.1.6.ebuild?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/mail-filter/bogofilter/bogofilter-1.1.6.ebuild?r1=1.4&r2=1.5

Index: bogofilter-1.1.6.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/mail-filter/bogofilter/bogofilter-1.1.6.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- bogofilter-1.1.6.ebuild	26 Feb 2008 18:25:48 -0000	1.4
+++ bogofilter-1.1.6.ebuild	26 Feb 2008 20:10:50 -0000	1.5
@@ -1,6 +1,6 @@
 # Copyright 1999-2008 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/mail-filter/bogofilter/bogofilter-1.1.6.ebuild,v 1.4 2008/02/26 18:25:48 nixnut Exp $
+# $Header: /var/cvsroot/gentoo-x86/mail-filter/bogofilter/bogofilter-1.1.6.ebuild,v 1.5 2008/02/26 20:10:50 fmccor Exp $
 
 inherit db-use flag-o-matic
 
@@ -10,7 +10,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm hppa ~ia64 ppc ~ppc64 ~sh ~sparc x86 ~x86-fbsd"
+KEYWORDS="~alpha ~amd64 ~arm hppa ~ia64 ppc ~ppc64 ~sh sparc x86 ~x86-fbsd"
 IUSE="gsl berkdb sqlite"
 
 DEPEND="virtual/libiconv



-- 
gentoo-commits@lists.gentoo.org mailing list



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

* [gentoo-commits] gentoo-x86 commit in mail-filter/bogofilter: ChangeLog bogofilter-1.1.6.ebuild
@ 2008-02-27 15:10 Raul Porcel (armin76)
  0 siblings, 0 replies; 8+ messages in thread
From: Raul Porcel (armin76) @ 2008-02-27 15:10 UTC (permalink / raw
  To: gentoo-commits

armin76     08/02/27 15:10:20

  Modified:             ChangeLog bogofilter-1.1.6.ebuild
  Log:
  alpha/ia64 stable wrt #211412
  (Portage version: 2.1.4.4)

Revision  Changes    Path
1.99                 mail-filter/bogofilter/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/mail-filter/bogofilter/ChangeLog?rev=1.99&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/mail-filter/bogofilter/ChangeLog?rev=1.99&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/mail-filter/bogofilter/ChangeLog?r1=1.98&r2=1.99

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/mail-filter/bogofilter/ChangeLog,v
retrieving revision 1.98
retrieving revision 1.99
diff -u -r1.98 -r1.99
--- ChangeLog	26 Feb 2008 20:10:50 -0000	1.98
+++ ChangeLog	27 Feb 2008 15:10:19 -0000	1.99
@@ -1,6 +1,9 @@
 # ChangeLog for mail-filter/bogofilter
 # Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/mail-filter/bogofilter/ChangeLog,v 1.98 2008/02/26 20:10:50 fmccor Exp $
+# $Header: /var/cvsroot/gentoo-x86/mail-filter/bogofilter/ChangeLog,v 1.99 2008/02/27 15:10:19 armin76 Exp $
+
+  27 Feb 2008; Raúl Porcel <armin76@gentoo.org> bogofilter-1.1.6.ebuild:
+  alpha/ia64 stable wrt #211412
 
   26 Feb 2008; Ferris McCormick <fmccor@gentoo.org> bogofilter-1.1.6.ebuild:
   Sparc stable --- Bug #211412 --- tests good.



1.6                  mail-filter/bogofilter/bogofilter-1.1.6.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/mail-filter/bogofilter/bogofilter-1.1.6.ebuild?rev=1.6&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/mail-filter/bogofilter/bogofilter-1.1.6.ebuild?rev=1.6&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/mail-filter/bogofilter/bogofilter-1.1.6.ebuild?r1=1.5&r2=1.6

Index: bogofilter-1.1.6.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/mail-filter/bogofilter/bogofilter-1.1.6.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- bogofilter-1.1.6.ebuild	26 Feb 2008 20:10:50 -0000	1.5
+++ bogofilter-1.1.6.ebuild	27 Feb 2008 15:10:19 -0000	1.6
@@ -1,6 +1,6 @@
 # Copyright 1999-2008 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/mail-filter/bogofilter/bogofilter-1.1.6.ebuild,v 1.5 2008/02/26 20:10:50 fmccor Exp $
+# $Header: /var/cvsroot/gentoo-x86/mail-filter/bogofilter/bogofilter-1.1.6.ebuild,v 1.6 2008/02/27 15:10:19 armin76 Exp $
 
 inherit db-use flag-o-matic
 
@@ -10,7 +10,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm hppa ~ia64 ppc ~ppc64 ~sh sparc x86 ~x86-fbsd"
+KEYWORDS="alpha ~amd64 ~arm hppa ia64 ppc ~ppc64 ~sh sparc x86 ~x86-fbsd"
 IUSE="gsl berkdb sqlite"
 
 DEPEND="virtual/libiconv



-- 
gentoo-commits@lists.gentoo.org mailing list



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

* [gentoo-commits] gentoo-x86 commit in mail-filter/bogofilter: ChangeLog bogofilter-1.1.6.ebuild
@ 2008-02-29  3:22 Brent Baude (ranger)
  0 siblings, 0 replies; 8+ messages in thread
From: Brent Baude (ranger) @ 2008-02-29  3:22 UTC (permalink / raw
  To: gentoo-commits

ranger      08/02/29 03:22:52

  Modified:             ChangeLog bogofilter-1.1.6.ebuild
  Log:
  stable ppc64, bug 211412
  (Portage version: 2.1.4.4)

Revision  Changes    Path
1.100                mail-filter/bogofilter/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/mail-filter/bogofilter/ChangeLog?rev=1.100&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/mail-filter/bogofilter/ChangeLog?rev=1.100&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/mail-filter/bogofilter/ChangeLog?r1=1.99&r2=1.100

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/mail-filter/bogofilter/ChangeLog,v
retrieving revision 1.99
retrieving revision 1.100
diff -u -r1.99 -r1.100
--- ChangeLog	27 Feb 2008 15:10:19 -0000	1.99
+++ ChangeLog	29 Feb 2008 03:22:52 -0000	1.100
@@ -1,6 +1,9 @@
 # ChangeLog for mail-filter/bogofilter
 # Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/mail-filter/bogofilter/ChangeLog,v 1.99 2008/02/27 15:10:19 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/mail-filter/bogofilter/ChangeLog,v 1.100 2008/02/29 03:22:52 ranger Exp $
+
+  29 Feb 2008; Brent Baude <ranger@gentoo.org> bogofilter-1.1.6.ebuild:
+  stable ppc64, bug 211412
 
   27 Feb 2008; Raúl Porcel <armin76@gentoo.org> bogofilter-1.1.6.ebuild:
   alpha/ia64 stable wrt #211412



1.7                  mail-filter/bogofilter/bogofilter-1.1.6.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/mail-filter/bogofilter/bogofilter-1.1.6.ebuild?rev=1.7&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/mail-filter/bogofilter/bogofilter-1.1.6.ebuild?rev=1.7&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/mail-filter/bogofilter/bogofilter-1.1.6.ebuild?r1=1.6&r2=1.7

Index: bogofilter-1.1.6.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/mail-filter/bogofilter/bogofilter-1.1.6.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- bogofilter-1.1.6.ebuild	27 Feb 2008 15:10:19 -0000	1.6
+++ bogofilter-1.1.6.ebuild	29 Feb 2008 03:22:52 -0000	1.7
@@ -1,6 +1,6 @@
 # Copyright 1999-2008 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/mail-filter/bogofilter/bogofilter-1.1.6.ebuild,v 1.6 2008/02/27 15:10:19 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/mail-filter/bogofilter/bogofilter-1.1.6.ebuild,v 1.7 2008/02/29 03:22:52 ranger Exp $
 
 inherit db-use flag-o-matic
 
@@ -10,7 +10,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="alpha ~amd64 ~arm hppa ia64 ppc ~ppc64 ~sh sparc x86 ~x86-fbsd"
+KEYWORDS="alpha ~amd64 ~arm hppa ia64 ppc ppc64 ~sh sparc x86 ~x86-fbsd"
 IUSE="gsl berkdb sqlite"
 
 DEPEND="virtual/libiconv



-- 
gentoo-commits@lists.gentoo.org mailing list



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

* [gentoo-commits] gentoo-x86 commit in mail-filter/bogofilter: ChangeLog bogofilter-1.1.6.ebuild
@ 2008-03-01 14:14 Christoph Mende (angelos)
  0 siblings, 0 replies; 8+ messages in thread
From: Christoph Mende (angelos) @ 2008-03-01 14:14 UTC (permalink / raw
  To: gentoo-commits

angelos     08/03/01 14:14:46

  Modified:             ChangeLog bogofilter-1.1.6.ebuild
  Log:
  Stable on amd64, bug #211412
  (Portage version: 2.1.4.4)

Revision  Changes    Path
1.101                mail-filter/bogofilter/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/mail-filter/bogofilter/ChangeLog?rev=1.101&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/mail-filter/bogofilter/ChangeLog?rev=1.101&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/mail-filter/bogofilter/ChangeLog?r1=1.100&r2=1.101

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/mail-filter/bogofilter/ChangeLog,v
retrieving revision 1.100
retrieving revision 1.101
diff -u -r1.100 -r1.101
--- ChangeLog	29 Feb 2008 03:22:52 -0000	1.100
+++ ChangeLog	1 Mar 2008 14:14:46 -0000	1.101
@@ -1,6 +1,9 @@
 # ChangeLog for mail-filter/bogofilter
 # Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/mail-filter/bogofilter/ChangeLog,v 1.100 2008/02/29 03:22:52 ranger Exp $
+# $Header: /var/cvsroot/gentoo-x86/mail-filter/bogofilter/ChangeLog,v 1.101 2008/03/01 14:14:46 angelos Exp $
+
+  01 Mar 2008; Christoph Mende <angelos@gentoo.org> bogofilter-1.1.6.ebuild:
+  Stable on amd64, bug #211412
 
   29 Feb 2008; Brent Baude <ranger@gentoo.org> bogofilter-1.1.6.ebuild:
   stable ppc64, bug 211412



1.8                  mail-filter/bogofilter/bogofilter-1.1.6.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/mail-filter/bogofilter/bogofilter-1.1.6.ebuild?rev=1.8&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/mail-filter/bogofilter/bogofilter-1.1.6.ebuild?rev=1.8&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/mail-filter/bogofilter/bogofilter-1.1.6.ebuild?r1=1.7&r2=1.8

Index: bogofilter-1.1.6.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/mail-filter/bogofilter/bogofilter-1.1.6.ebuild,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- bogofilter-1.1.6.ebuild	29 Feb 2008 03:22:52 -0000	1.7
+++ bogofilter-1.1.6.ebuild	1 Mar 2008 14:14:46 -0000	1.8
@@ -1,6 +1,6 @@
 # Copyright 1999-2008 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/mail-filter/bogofilter/bogofilter-1.1.6.ebuild,v 1.7 2008/02/29 03:22:52 ranger Exp $
+# $Header: /var/cvsroot/gentoo-x86/mail-filter/bogofilter/bogofilter-1.1.6.ebuild,v 1.8 2008/03/01 14:14:46 angelos Exp $
 
 inherit db-use flag-o-matic
 
@@ -10,7 +10,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="alpha ~amd64 ~arm hppa ia64 ppc ppc64 ~sh sparc x86 ~x86-fbsd"
+KEYWORDS="alpha amd64 ~arm hppa ia64 ppc ppc64 ~sh sparc x86 ~x86-fbsd"
 IUSE="gsl berkdb sqlite"
 
 DEPEND="virtual/libiconv



-- 
gentoo-commits@lists.gentoo.org mailing list



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

end of thread, other threads:[~2008-03-01 14:14 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-03-01 14:14 [gentoo-commits] gentoo-x86 commit in mail-filter/bogofilter: ChangeLog bogofilter-1.1.6.ebuild Christoph Mende (angelos)
  -- strict thread matches above, loose matches on Subject: below --
2008-02-29  3:22 Brent Baude (ranger)
2008-02-27 15:10 Raul Porcel (armin76)
2008-02-26 20:10 Ferris McCormick (fmccor)
2008-02-26 18:25 Gysbert Wassenaar (nixnut)
2008-02-26 12:50 Jeroen Roovers (jer)
2008-02-26  9:58 Christian Faulhammer (opfer)
2007-11-28 19:45 Torsten Veller (tove)

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