Sat Jan 1 18:53:02 2022 UTC ()
comms/gkermit: update to 2.01

Version 1.00 : 25 December 1999
Version 2.00 : 26 May 2021

Version 2.00 is identical to 1.00 except that the source code has
been tailored to build successfully on modern Unix platforms.

November 14, 2021... G-Kermit 2.01 - a few more adjustments to our
ever-changing Unix APIs.

  .................................
  Wed May 26 08:47:48 2021:
  In the years following the initial rlease of this program, which was
  designed to be eternal, the C libraries and header files changed and
  changed and changed to the extent that in 2021 G-Kermit 1.0 ccan't be
  built at all an most Unix platforms, and even on those where a functional
  executable is generated, dozens or hundreds of warnings are issued.
  This, for code that generated zero warnings or errors when compiled
  in 1999.  Thus version 2.0 of May 26, 2021.  The only changes are:

  1. The version identification just below, and:
  2. The inclusion of four previously unneeded header files in gkermit.h.

  .................................
  Mon Nov 15 08:31:48 2021:
  From Kenji Rikitake, two patches added to gkermit.h for macOS with Xcode:

  1. macOS with Xcode has no <malloc.h>
  2. macOS with Xcode has the prototype of sleep() in <unistd.h>
  Conditional if(n)def with __APPLE__ flag, dedicated for macOS.

  It seems unistd.h is now required on many platforms; I now #include it
  in all builds by default; to suppress the #include on platforms that
  don't have unistd.h, do: make "KFLAGS=-DNOUNISTD" ...


(rhialto)
diff -r1.29 -r1.30 pkgsrc/comms/gkermit/Makefile
diff -r1.9 -r1.10 pkgsrc/comms/gkermit/distinfo
diff -r1.1 -r0 pkgsrc/comms/gkermit/patches/patch-aa

cvs diff -r1.29 -r1.30 pkgsrc/comms/gkermit/Makefile (expand / switch to unified diff)

--- pkgsrc/comms/gkermit/Makefile 2021/04/21 09:03:45 1.29
+++ pkgsrc/comms/gkermit/Makefile 2022/01/01 18:53:02 1.30
@@ -1,24 +1,24 @@ @@ -1,24 +1,24 @@
1# $NetBSD: Makefile,v 1.29 2021/04/21 09:03:45 wiz Exp $ 1# $NetBSD: Makefile,v 1.30 2022/01/01 18:53:02 rhialto Exp $
2 2
3DISTNAME= gku100 3DISTNAME= gku201
4PKGNAME= gkermit-1.00 4PKGNAME= gkermit-2.01
5PKGREVISION= 1 
6CATEGORIES= comms 5CATEGORIES= comms
7MASTER_SITES= # ftp://kermit.columbia.edu/kermit/archives/ 6MASTER_SITES= https://www.kermitproject.org/ftp/kermit/archives/
8 7
9MAINTAINER= pkgsrc-users@NetBSD.org 8MAINTAINER= pkgsrc-users@NetBSD.org
10HOMEPAGE= http://www.columbia.edu/kermit/gkermit.html 9HOMEPAGE= https://www.kermitproject.org/gkermit.html
11COMMENT= Minimal implementation of the ``kermit'' protocol (GPL'd) 10COMMENT= Minimal implementation of the ``kermit'' protocol (GPL'd)
 11LICENSE= gnu-gpl-v2 OR gnu-gpl-v3
12 12
13WRKSRC= ${WRKDIR} 13WRKSRC= ${WRKDIR}
14BUILD_TARGET= posix 14BUILD_TARGET= posix
15MAKE_FILE= makefile 15MAKE_FILE= makefile
16MAKE_ENV+= KFLAGS=${CFLAGS:M*:Q} 16MAKE_ENV+= KFLAGS=${CFLAGS:M*:Q}
17 17
18.include "../../mk/bsd.prefs.mk" 18.include "../../mk/bsd.prefs.mk"
19 19
20CFLAGS+= -DERRNO_H 20CFLAGS+= -DERRNO_H
21 21
22INSTALLATION_DIRS= bin ${PKGMANDIR}/man1 share/doc/gkermit 22INSTALLATION_DIRS= bin ${PKGMANDIR}/man1 share/doc/gkermit
23 23
24do-install: 24do-install:

cvs diff -r1.9 -r1.10 pkgsrc/comms/gkermit/distinfo (expand / switch to unified diff)

--- pkgsrc/comms/gkermit/distinfo 2021/10/26 10:05:59 1.9
+++ pkgsrc/comms/gkermit/distinfo 2022/01/01 18:53:02 1.10
@@ -1,6 +1,5 @@ @@ -1,6 +1,5 @@
1$NetBSD: distinfo,v 1.9 2021/10/26 10:05:59 nia Exp $ 1$NetBSD: distinfo,v 1.10 2022/01/01 18:53:02 rhialto Exp $
2 2
3BLAKE2s (gku100.tar.gz) = 26608f871dad28e9b8a632f66d859717a28bcb934f9b1cffbf74364d19d1dc68 3BLAKE2s (gku201.tar.gz) = 9013ac67c575d3d3cdc16051f9db95a2b89bf1fd4ab07ee065430b0ec6831f62
4SHA512 (gku100.tar.gz) = 7dd8476b9f92b3a5453493486313cf6f2018b698f0c2d7076a7bfaf4be3ff94024602a41495449591bd0c5ca699b324205847ce1b3498e27c418c0a0175cf64f 4SHA512 (gku201.tar.gz) = df44f55fc1444518599f0d06b1473c35d80bbc8e26c8f1d9bf57fc958b9601b270a29ebcc33b0c5e080e23461afcc6689b94694254cd8c460d1fb2c8a37711cf
5Size (gku100.tar.gz) = 62195 bytes 5Size (gku201.tar.gz) = 62877 bytes
6SHA1 (patch-aa) = 7fd1df0ac08751ae01f3ca16032a672bdba99675 

File Deleted: pkgsrc/comms/gkermit/patches/Attic/patch-aa