Update to new upstream version 1.2.2. Remove now-obsolete patch.

This commit is contained in:
Matthias Andree 2010-07-19 22:43:21 +00:00
parent 165827a5c5
commit ca56b9fa53
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=257982
5 changed files with 8 additions and 26 deletions

View file

@ -6,7 +6,7 @@
#
PORTNAME= bogofilter
PORTREVISION= 1
PORTREVISION= 0
CATEGORIES= mail
PKGNAMESUFFIX= -sqlite

View file

@ -6,7 +6,7 @@
#
PORTNAME= bogofilter
PORTREVISION= 1
PORTREVISION= 0
CATEGORIES= mail
PKGNAMESUFFIX= -tc

View file

@ -6,10 +6,10 @@
#
PORTNAME= bogofilter
PORTVERSION= 1.2.1
PORTREVISION?= 2
PORTVERSION= 1.2.2
PORTREVISION?= 0
CATEGORIES?= mail
MASTER_SITES= SF/bogofilter/bogofilter-stable/bogofilter-${PORTVERSION}
MASTER_SITES= SF/bogofilter/bogofilter-current/bogofilter-${PORTVERSION}
MAINTAINER?= mandree@FreeBSD.org
COMMENT= Fast, teachable, learning spam detector

View file

@ -1,3 +1,3 @@
MD5 (bogofilter-1.2.1.tar.bz2) = 2eb802f4e271b99c3d8f68b14f8df9ef
SHA256 (bogofilter-1.2.1.tar.bz2) = 7f90dd32b2887860896683ab8ba378c1f9c1a7a55ddee64057df5b773c4cb33c
SIZE (bogofilter-1.2.1.tar.bz2) = 857088
MD5 (bogofilter-1.2.2.tar.bz2) = 4bcabdf8c5e7efefcb508eda7e80eebc
SHA256 (bogofilter-1.2.2.tar.bz2) = d8cfd1e68375ac8131de8a6998a38ee5b3f7d1151e71efd2b436183545216039
SIZE (bogofilter-1.2.2.tar.bz2) = 867043

View file

@ -1,18 +0,0 @@
Index: base64.c
===================================================================
--- src/base64.c (Revision 6766)
+++ src/base64.c (Revision 6921)
@@ -61,9 +61,11 @@
d[i] = c;
v = v >> 8;
}
- d += 3 - shorten;
- count += 3 - shorten;
+ if(shorten != 4) {
+ d += 3 - shorten;
+ count += 3 - shorten;
}
+ }
/* XXX do we need this NUL byte? */
if (word->leng)
*d = (byte) '\0'; /* safe, base64 is always longer than original */