Update to 0.6.1

Take maintainership

0.6.1
 - custom output format (Raphaël Droz)
 - remove duplicates (Fabio Zanini)
 - merge entries (Fabio Zanini)
 - mutt groups support (Fabio Zanini)
 - vcard initial input filter (Michael Krolikowski)
 - vcard parser improvements (Fabio Zanini, Raphaël Droz)
 - color support (Thorsten Wißmann)
 - mouse support (Thorsten Wißmann)
 - extra-fields deletion bugfix (Jorrit Tijben)
 - additional keybindings (Hagen Fuchs)
 - autotools update (Fabio Zanini)
 - case-sensitive ldif fields parsing (Christian Brabandt)
 - ldif standard input support (Raphaël Droz)
 - ldif extensible field management rewrite (Raphaël Droz)
 - html output fixes (Stéphane Aulery)
 - memory bugfixes (Peter Wu)
 - vcard birthday export fix (Gaetan Bisson)

0.6.0
 - configurable views (Cedric Duval)
 - new field types, lists and improved custom field support (Cedric Duval)
 - index_format option (Cedric Duval)
 - Italian translation (Claudio Stazzone)
This commit is contained in:
Baptiste Daroussin
2016-11-26 15:21:51 +00:00
parent bac77c855d
commit 18a6cf0460
4 changed files with 13 additions and 28 deletions

View File

@@ -2,22 +2,18 @@
# $FreeBSD$
PORTNAME= abook
PORTVERSION= 0.5.6
PORTREVISION= 4
PORTVERSION= 0.6.1
CATEGORIES= mail
MASTER_SITES= SF
MASTER_SITES= http://abook.sourceforge.net/devel/
MAINTAINER= ports@FreeBSD.org
MAINTAINER= bapt@FreeBSD.org
COMMENT= Addressbook program with mutt mail client support
LICENSE= GPLv2
USES= ncurses readline
USES= ncurses readline autoreconf localbase
GNU_CONFIGURE= yes
CPPFLAGS+= -I${LOCALBASE}/include
LDFLAGS+= -L${LOCALBASE}/lib
PORTDOCS= ANNOUNCE AUTHORS BUGS ChangeLog FAQ INSTALL NEWS README \
THANKS TODO

View File

@@ -1,2 +1,3 @@
SHA256 (abook-0.5.6.tar.gz) = 0646f6311a94ad3341812a4de12a5a940a7a44d5cb6e9da5b0930aae9f44756e
SIZE (abook-0.5.6.tar.gz) = 393097
TIMESTAMP = 1480172791
SHA256 (abook-0.6.1.tar.gz) = f0a90df8694fb34685ecdd45d97db28b88046c15c95e7b0700596028bd8bc0f9
SIZE (abook-0.6.1.tar.gz) = 319558

View File

@@ -1,18 +0,0 @@
--- ui.c 10 Apr 2006 08:15:46 -0000 1.57
+++ ui.c 6 Sep 2006 02:24:33 -0000 1.58
@@ -569,9 +569,13 @@
} else {
char *s;
s = ui_readline("/", findstr, MAX_FIELD_LEN - 1, 0);
- strncpy(findstr, s, MAX_FIELD_LEN);
- free(s);
refresh_screen();
+ if(s == NULL) {
+ return; /* user cancelled (ctrl-G) */
+ } else {
+ strncpy(findstr, s, MAX_FIELD_LEN);
+ free(s);
+ }
}
if( (item = find_item(findstr, curitem + !!next, search_fields)) < 0 &&

View File

@@ -2,6 +2,12 @@ bin/abook
man/man1/abook.1.gz
man/man5/abookrc.5.gz
%%NLS%%share/locale/de/LC_MESSAGES/abook.mo
%%NLS%%share/locale/de/LC_TIME/abook.mo
%%NLS%%share/locale/fr/LC_MESSAGES/abook.mo
%%NLS%%share/locale/fr/LC_TIME/abook.mo
%%NLS%%share/locale/it/LC_MESSAGES/abook.mo
%%NLS%%share/locale/it/LC_TIME/abook.mo
%%NLS%%share/locale/ja/LC_MESSAGES/abook.mo
%%NLS%%share/locale/ja/LC_TIME/abook.mo
%%NLS%%share/locale/sv/LC_MESSAGES/abook.mo
%%NLS%%share/locale/sv/LC_TIME/abook.mo