summaryrefslogtreecommitdiff
path: root/databases/abook
diff options
context:
space:
mode:
authorminskim <minskim>2004-11-29 01:39:17 +0000
committerminskim <minskim>2004-11-29 01:39:17 +0000
commit74f5f1fddc8097ebf0288d525ef5352a40e2a510 (patch)
tree20932872889249153c802e0c1455c4e4d0994ffe /databases/abook
parentfd4f40c1fd2107321579a210d07d7a2a07091391 (diff)
downloadpkgsrc-74f5f1fddc8097ebf0288d525ef5352a40e2a510.tar.gz
Update abook to 0.5.3.
Changes: - add allcvs filters (Christoph Sobotka) - removed a lefover debug message - fixed mutt import filter nickname cutoff - wrap searches - contrib updates
Diffstat (limited to 'databases/abook')
-rw-r--r--databases/abook/Makefile5
-rw-r--r--databases/abook/distinfo7
-rw-r--r--databases/abook/patches/patch-aa32
3 files changed, 5 insertions, 39 deletions
diff --git a/databases/abook/Makefile b/databases/abook/Makefile
index 04236c22fed..ac2755fde23 100644
--- a/databases/abook/Makefile
+++ b/databases/abook/Makefile
@@ -1,8 +1,7 @@
-# $NetBSD: Makefile,v 1.11 2004/11/28 16:04:14 wiz Exp $
+# $NetBSD: Makefile,v 1.12 2004/11/29 01:39:17 minskim Exp $
#
-DISTNAME= abook-0.5.2
-PKGREVISION= 2
+DISTNAME= abook-0.5.3
CATEGORIES= databases
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=abook/}
diff --git a/databases/abook/distinfo b/databases/abook/distinfo
index 29bb82e9d9d..145eb5b3ab4 100644
--- a/databases/abook/distinfo
+++ b/databases/abook/distinfo
@@ -1,5 +1,4 @@
-$NetBSD: distinfo,v 1.5 2004/07/28 02:51:31 kim Exp $
+$NetBSD: distinfo,v 1.6 2004/11/29 01:39:17 minskim Exp $
-SHA1 (abook-0.5.2.tar.gz) = 08f7382bd1a085172c9471922bcc984aa131eb80
-Size (abook-0.5.2.tar.gz) = 183852 bytes
-SHA1 (patch-aa) = c96b08e93dca5aa1a91abfaf8649b368d4f37be2
+SHA1 (abook-0.5.3.tar.gz) = a6c4b7f9d25f3f0b0a67d0ffb0456a0e19018e8f
+Size (abook-0.5.3.tar.gz) = 183011 bytes
diff --git a/databases/abook/patches/patch-aa b/databases/abook/patches/patch-aa
deleted file mode 100644
index 3af1a4dff0a..00000000000
--- a/databases/abook/patches/patch-aa
+++ /dev/null
@@ -1,32 +0,0 @@
-$NetBSD: patch-aa,v 1.2 2004/07/28 02:51:31 kim Exp $
-
---- filter.c 2004/01/23 07:14:32 1.29
-+++ filter.c 2004/03/25 18:19:38 1.30
-@@ -618,6 +618,7 @@
- mutt_read_line(FILE *in, char **alias, char **rest)
- {
- char *line, *ptr, *tmp;
-+ size_t alias_len;
-
- if( !(line = ptr = getaline(in)) )
- return 1; /* error / EOF */
-@@ -640,13 +641,16 @@
- while( ! ISSPACE(*ptr) )
- ptr++;
-
-- if( (*alias = (char *)malloc(ptr - tmp)) == NULL) {
-+ /* includes also the trailing zero */
-+ alias_len = (size_t)(ptr - tmp + 1);
-+
-+ if( (*alias = (char *)malloc(alias_len)) == NULL) {
- free(line);
- return 1;
- }
-
-- strncpy(*alias, tmp, ptr - tmp - 1);
-- *(*alias + (ptr - tmp - 1)) = 0;
-+ strncpy(*alias, tmp, alias_len - 1);
-+ *(*alias + alias_len - 1) = 0;
-
- while(ISSPACE(*ptr))
- ptr++;