Skip to content

Commit 6f762c0

Browse files
committed
abook: update to 0.6.2
1 parent b4e8d8a commit 6f762c0

2 files changed

Lines changed: 22 additions & 3 deletions

File tree

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
--- a/database.c 2026-01-26 11:04:38.000000000 +0100
2+
+++ b/database.c 2026-03-01 02:11:46.310427997 +0000
3+
@@ -12,6 +12,7 @@
4+
#include <string.h>
5+
#include <unistd.h>
6+
#include <assert.h>
7+
+#include <ctype.h>
8+
#ifdef HAVE_CONFIG_H
9+
# include "config.h"
10+
#endif
11+
@@ -737,7 +738,7 @@
12+
{
13+
char* p = str;
14+
while (*str) {
15+
- if (isalnum (*str)) *(p++) = *str;
16+
+ if (isalnum((unsigned char)*str)) *(p++) = *str;
17+
++str;
18+
}
19+
*p = 0;

srcpkgs/abook/template

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Template file for 'abook'
22
pkgname=abook
3-
version=0.6.1
4-
revision=3
3+
version=0.6.2
4+
revision=1
55
build_style=gnu-configure
66
hostmakedepends="automake libtool gettext gettext-devel tar"
77
makedepends="ncurses-devel readline-devel"
@@ -10,7 +10,7 @@ maintainer="Orphaned <orphan@voidlinux.org>"
1010
license="GPL-2.0-or-later"
1111
homepage="http://abook.sourceforge.net/"
1212
distfiles="http://abook.sourceforge.net/devel/${pkgname}-${version}.tar.gz"
13-
checksum=f0a90df8694fb34685ecdd45d97db28b88046c15c95e7b0700596028bd8bc0f9
13+
checksum=2d6bde2d2d03523f164f930e4fdec6025f3a94abe48a43706f543880a1a21ebe
1414

1515
post_extract() {
1616
autoreconf --install

0 commit comments

Comments
 (0)