update to cvsgraph-1.7.1

This commit is contained in:
sthen 2020-06-29 23:49:28 +00:00
parent ca9146ae2f
commit d31c999b45
3 changed files with 7 additions and 25 deletions

View File

@ -1,11 +1,10 @@
# $OpenBSD: Makefile,v 1.23 2019/07/12 20:44:07 sthen Exp $
# $OpenBSD: Makefile,v 1.24 2020/06/29 23:49:28 sthen Exp $
COMMENT= graphical representation of CVS repository
DISTNAME= cvsgraph-1.7.0
DISTNAME= cvsgraph-1.7.1
CATEGORIES= devel
HOMEPAGE= http://www.akhphd.au.dk/~bertho/cvsgraph
REVISION= 0
HOMEPAGE= https://www.vagrearg.org/cvsgraph/
# GPLv2+
PERMIT_PACKAGE= Yes
@ -13,7 +12,8 @@ PERMIT_PACKAGE= Yes
WANTLIB += c fontconfig freetype gd iconv jpeg m png pthread tiff webp
WANTLIB += z
MASTER_SITES= ${HOMEPAGE}/release/
# also https://gitlab.com/bertho/cvsgraph/
MASTER_SITES= https://www.vagrearg.org/cvsgraph/release/
LIB_DEPENDS= converters/libiconv \
graphics/gd

View File

@ -1,2 +1,2 @@
SHA256 (cvsgraph-1.7.0.tar.gz) = dEOPqu/TJceo7SiepdFle+/h0YWdVfj7vMdFL079Q18=
SIZE (cvsgraph-1.7.0.tar.gz) = 202678
SHA256 (cvsgraph-1.7.1.tar.gz) = aJ9DviCul9US3TnF+TeJn5abPtG9CDlgJo7aJE+xM5E=
SIZE (cvsgraph-1.7.1.tar.gz) = 228694

View File

@ -1,18 +0,0 @@
$OpenBSD: patch-cvsgraph_c,v 1.1 2015/08/21 07:03:05 jasper Exp $
cvsgraph.c:193: warning: format '%d' expects type 'int', but argument 3 has type 'size_t'
cvsgraph.c:194: warning: format '%d' expects type 'int', but argument 3 has type 'size_t'
--- cvsgraph.c.orig Fri Aug 21 08:49:55 2015
+++ cvsgraph.c Fri Aug 21 08:51:48 2015
@@ -190,8 +190,8 @@ static void dump_dtext(char *p, dtext_t *d)
{
printf("%sdtext.rev : ", p);
dump_rev("", d->rev);
- printf("%sdtext.log : %d bytes\n", p, d->log ? strlen(d->log) : -1);
- printf("%sdtext.text : %d bytes\n", p, d->text ? strlen(d->text) : -1);
+ printf("%sdtext.log : %ld bytes\n", p, d->log ? strlen(d->log) : -1);
+ printf("%sdtext.text : %ld bytes\n", p, d->text ? strlen(d->text) : -1);
printf("\n");
}