summaryrefslogtreecommitdiff
path: root/comms
diff options
context:
space:
mode:
authorjnemeth <jnemeth@pkgsrc.org>2021-06-14 05:30:35 +0000
committerjnemeth <jnemeth@pkgsrc.org>2021-06-14 05:30:35 +0000
commit2a8db9db4a76eb0b3e8c1fb030d96e16e5c0bb52 (patch)
tree24e446a49a5cf7cbc3fdb4481518a8e3d7652972 /comms
parent9841a43b767eb1d0de007117dbbcae6679115128 (diff)
downloadpkgsrc-2a8db9db4a76eb0b3e8c1fb030d96e16e5c0bb52.tar.gz
Update HylaFAX to 6.0.7.
No changelong was provided.
Diffstat (limited to 'comms')
-rw-r--r--comms/hylafax/Makefile6
-rw-r--r--comms/hylafax/distinfo11
-rw-r--r--comms/hylafax/patches/patch-libhylafax_FaxRecvInfo.c++13
3 files changed, 8 insertions, 22 deletions
diff --git a/comms/hylafax/Makefile b/comms/hylafax/Makefile
index 913c88b2bc0..e5f8ce0f486 100644
--- a/comms/hylafax/Makefile
+++ b/comms/hylafax/Makefile
@@ -1,7 +1,7 @@
-# $NetBSD: Makefile,v 1.74 2020/05/14 19:17:45 joerg Exp $
+# $NetBSD: Makefile,v 1.75 2021/06/14 05:30:35 jnemeth Exp $
-DISTNAME= hylafax-6.0.6
-PKGREVISION= 2
+DISTNAME= hylafax-6.0.7
+#PKGREVISION= 2
CATEGORIES= comms
MASTER_SITES= ftp://ftp.hylafax.org/source/
diff --git a/comms/hylafax/distinfo b/comms/hylafax/distinfo
index 586829a5155..33f33d047a0 100644
--- a/comms/hylafax/distinfo
+++ b/comms/hylafax/distinfo
@@ -1,9 +1,9 @@
-$NetBSD: distinfo,v 1.30 2021/02/28 22:16:52 gutteridge Exp $
+$NetBSD: distinfo,v 1.31 2021/06/14 05:30:35 jnemeth Exp $
-SHA1 (hylafax-6.0.6.tar.gz) = 8d8cc9a5f242ef83d7bc6f5cd200fec1351b280e
-RMD160 (hylafax-6.0.6.tar.gz) = 1f6e3022fe9886f2cde9fb406277d5496ee24f1c
-SHA512 (hylafax-6.0.6.tar.gz) = be7e0533a24391c87deac6af35e01c81a79c99977c7f7a931e336d7c737b388d2a7c147faab3bf5eda196b1fa1c8671bee53c05dab2338f2f519010532f7d773
-Size (hylafax-6.0.6.tar.gz) = 1297412 bytes
+SHA1 (hylafax-6.0.7.tar.gz) = ffc5b3d5ae0dd68f4703626002fdfdb2dd92754c
+RMD160 (hylafax-6.0.7.tar.gz) = 2629c538103ee7542071bb1f0d43a9c0d8c7d7d1
+SHA512 (hylafax-6.0.7.tar.gz) = fc57feb416772a7a4bfaf5c3c76a0c2254ead2f63a72b3dfa465444327d440345a0402b7c7dad14f6d03029302ef39cf160c8ef5bfdee2c966fd15fbaac230a3
+Size (hylafax-6.0.7.tar.gz) = 1309111 bytes
SHA1 (patch-aa) = 54f34633757a4925084d9e7e4c1e743bca48e4ba
SHA1 (patch-ab) = 5ee930814178223fa66dd308f365ff400559fd1d
SHA1 (patch-ac) = b2051ac2e43d0635797043605d96f128e535c976
@@ -18,5 +18,4 @@ SHA1 (patch-am) = b004485310a2257630561a42b3f08896604ce986
SHA1 (patch-an) = de131bcdeb22a2f7daadbaf86d0aa00b841512af
SHA1 (patch-ao) = d46c0c4d3e3e6309a807fa5c335888a3c28886d8
SHA1 (patch-ap) = 419036385f1d0582ab6e5dd0710f5bbf41744e0f
-SHA1 (patch-libhylafax_FaxRecvInfo.c++) = 03f77a21b11b4e409e2f860b5056600023621214
SHA1 (patch-rules.in) = 4c9604ce9fc5848764adfdbd2e39cc7576674ebc
diff --git a/comms/hylafax/patches/patch-libhylafax_FaxRecvInfo.c++ b/comms/hylafax/patches/patch-libhylafax_FaxRecvInfo.c++
deleted file mode 100644
index 239e4c487e3..00000000000
--- a/comms/hylafax/patches/patch-libhylafax_FaxRecvInfo.c++
+++ /dev/null
@@ -1,13 +0,0 @@
-$NetBSD: patch-libhylafax_FaxRecvInfo.c++,v 1.1 2020/05/14 19:17:45 joerg Exp $
-
---- libhylafax/FaxRecvInfo.c++.orig 2020-05-12 14:59:48.960689473 +0000
-+++ libhylafax/FaxRecvInfo.c++
-@@ -112,7 +112,7 @@ FaxRecvInfo::decode(const char* cp)
- if (cp == NULL || cp[1] != ',' || cp[2] != '"')
- return (false);
- u_int i = 0;
-- while (cp+2 != '\0') {
-+ while (cp[2] != '\0') {
- callid[i] = cp+3; // +1 for "/+1 for ,/+1 for "
- if (*cp == '\"') break;
- callid[i].resize(callid[i].next(0,'"'));