Commit graph

24 commits

Author SHA1 Message Date
nros
8d90c7e6e3 ifile: fix ssp build on NetBSD 2021-12-26 23:54:01 +00:00
nia
f413f7fded mail: Replace RMD160 checksums with BLAKE2s checksums
All checksums have been double-checked against existing RMD160 and
SHA512 hashes

The following distfiles were unfetchable (possibly fetched
conditionally?):

./mail/qmail/distinfo netqmail-1.05-TAI-leapsecs.patch
2021-10-26 10:53:53 +00:00
nia
be020196fe mail: Remove SHA1 hashes for distfiles 2021-10-07 14:25:11 +00:00
agc
ddbf6ddecd Add SHA512 digests for distfiles for mail category
Problems found locating distfiles:
	Package mutt: missing distfile patch-1.5.24.rr.compressed.gz
	Package p5-Email-Valid: missing distfile Email-Valid-1.198.tar.gz
	Package pine: missing distfile fancy.patch.gz
	Package postgrey: missing distfile targrey-0.31-postgrey-1.34.patch
	Package qmail: missing distfile badrcptto.patch
	Package qmail: missing distfile outgoingip.patch
	Package qmail: missing distfile qmail-1.03-realrcptto-2006.12.10.patch
	Package qmail: missing distfile qmail-smtpd-viruscan-1.3.patch
	Package thunderbird24: missing distfile enigmail-1.7.2.tar.gz
	Package thunderbird31: missing distfile enigmail-1.7.2.tar.gz

Otherwise, existing SHA1 digests verified and found to be the same on
the machine holding the existing distfiles (morden).  All existing
SHA1 digests retained for now as an audit trail.
2015-11-03 23:27:00 +00:00
shattered
369827c875 Update to 1.3.8. Changes:
Fix segv if no folders in DB or #folders less than 2 and -T is set.

Fix LOOCV query (as I got it): if folder's not already there, don't create it.
2013-03-03 10:59:08 +00:00
joerg
c8c7867f96 Forgotten patch to fix inline usage. 2012-10-20 22:13:28 +00:00
joerg
369ec28299 Fix inline usage. 2012-10-15 09:35:16 +00:00
asau
d70c8e374b Drop PKG_DESTDIR_SUPPORT setting, "user-destdir" is default these days. 2012-10-08 12:19:01 +00:00
obache
ef51d3ae5e Convert sh-like conditional style to gmake's one.
gmake-3.82 dislike it.
2010-10-03 12:47:20 +00:00
joerg
e8c3c91783 DESTDIR support 2010-02-04 02:20:24 +00:00
obache
4b2d2c4716 1.3.4 in old. 2008-03-17 11:25:15 +00:00
joerg
5911def816 Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
jlam
585534220c Remove USE_GNU_TOOLS and replace with the correct USE_TOOLS definitions:
USE_GNU_TOOLS	-> USE_TOOLS
	awk		-> gawk
	m4		-> gm4
	make		-> gmake
	sed		-> gsed
	yacc		-> bison
2005-05-22 20:07:36 +00:00
tv
f816d81489 Remove USE_BUILDLINK3 and NO_BUILDLINK; these are no longer used. 2005-04-11 21:44:48 +00:00
agc
8758983939 Add RMD160 digests. 2005-02-24 09:59:20 +00:00
salo
9bf93a7b1f Correct checksum, distfile changed without version bump.
Upstream maintainers asked not to do it again..

Changes:
- manual page updates

*sigh*
2004-12-12 23:39:36 +00:00
salo
e89786bc37 Update to version 1.3.4.
1.3.4:
======
- add threshold support

1.3.3:
======
- don't use __attributes__ for non-GCC compilers (from pkgsrc)
2004-08-20 11:47:40 +00:00
salo
6f5ada535a bl3ify 2004-04-16 12:59:17 +00:00
grant
f1ab3f4ed4 replace deprecated USE_GMAKE with USE_GNU_TOOLS+=make. 2004-01-24 13:51:13 +00:00
salo
dec3b84c44 Updated to version 1.3.2.
Changes:

- fix for non-GCC compilers

1.3.2:
======
- ifile.c: add setlocale command; fixes bug 1500.
- opts.c: Change // comment to /**/ (use C style comments)
2003-07-25 15:25:12 +00:00
grant
0155927c43 s/netbsd.org/NetBSD.org/ 2003-07-17 21:41:05 +00:00
salo
5ecf2a386d Updated to version 1.3.1.
Changes:

- opts.c: update mailing list address
- database.c: make error messages refer to temp_data_file; free
  temp_data_file
- database.c (ifile_write_db): check for errors while writing
  database.  Fixes bug 2955.
- Fixed problems in configure and autoconf scripts for the case
  of selecting non-gcc C compiler.  Fixes bug 2535.
2003-04-18 10:29:20 +00:00
salo
6ffac57211 Updated to version 1.3.0.
Changes:

- add local patch for configure generated with new autoconf, the old
  one doesn't accept CFLAGS & the like. (already fixed in ifile cvs)

1.3.0:
======
- include/extendable_array.h:  Fixed bug in EXT_ARRAY_INIT_N_SET()
  macro.  Fixes bug 2516, where new folders caused the database to
  be garbled.

- Performance improvements:  On a Sun SPARC-based system running
  Solaris 10, with a database of about 16500 words, got a 40%
  improvement in words processed per second when reading the
  database, using the changes listed here.

- include/ifile.h:  Changed prototypes for readline(),
  ifile_read_header() and ifile_read_word_frequencies() to reflect
  new calling conventions.

- include/extendable_array.h:  New macro EXT_ARRAY_INIT_N_SET()
  combines the effects of EXT_ARRAY_INIT() and multiple calls to
  EXT_ARRAY_SET() in a smarter way, saving many realloc() calls and
  many manipulations of the array metadata.

- utils.c:  Rewrote readline to take a char-- bufp and use the
  data within -bufp to parse a line, and update -bufp to point
  beyond the first line.  This avoids at least one copy of the
  data.

- primes.c:  Cast values returned by ifile_realloc() correctly.

- int4str.c:  Cast argument to free() to void - in
  ifile_int4str_free_contents(), to fix compiler complaints.

- hash.c:  Added an include of <string.h> to fix compiler
  complaints.

- database.c:  Made ifile_read_db() read the whole database in one
  fell swoop and modified callers of readline() to just pass in a
  pointer to the buffered database.

  Also made ifile_read_word_entry() call a new macro
  EXT_ARRAY_INIT_N_SET() in place of EXT_ARRAY_INIT() and multiple
  calls to EXT_ARRAY_SET(), saving many calls to realloc() and many
  manipulations of the extendable array metadata.
2003-02-25 11:34:37 +00:00
salo
33eee4c2ed Initial import of ifile, version 1.2.1.
ifile is a general mail filtering system which uses a modern-day text learning
algorithm to intelligently filter mail according to the way the user tends to
organize mail.

ifile is different from other mail filtering programs in three major ways:

 1. ifile does not require the user to generate a set of rules in order to
    successfully filter mail
 2. ifile uses the entire content of messages for filtering purposes
 3. ifile learns as the user moves incorrectly filtered messages to new
    mailboxes

ifile is not dependent upon any specific mail system and should be adaptable
to any system which allows an outside program to perform mail filtering.
2002-12-13 09:39:15 +00:00