Thu Dec 26 21:57:50 2019 UTC ()
tin: Update to 2.4.4

Changes:
-- 2.4.4 release 20191224 "Millburn" --

 017) Dennis Grevenstein <dennis.grevenstein@gmail.com>
      ADD. FD_*-fallback for SunOS-3.5
      FIX. missing_fd.h

 016) Thomas E. Dickey <dickey@invisible-island.net>
      ADD. update configure macros - use xpg3 instead of xpg4 case-statements
      FIX. aclocal.m4, configure[.in]

 015) Dennis Preiser <dennis@d--p.de>
      BUG. 'L'ookupMessageID in select-level could crash if 1st group
           in newsrc is marked bogus
      BUG. memleak in thread_by_multipart
      FIX. active.c, art.c, tin.5

 014) Urs Janssen <urs@tin.org>
      BUG. sigfile attribute with a command ("sigfile=!") would append %G
           on {ATTRIBUTES,TINRC}_VERSION increase even if already present.
      BUG. tinrc normalization_form=5 (NFKC_CF) setting was lost on restart
      BUG. quote_chars with multiple '%s' lead to a crash
      BUG. memleak with stray comments (no scope) in filter file
      ADD. tweak is_art_tex_encoded to allow text umlauts at the beginning
           of a line
      ADD. turned '%s'/'%S' in quote_chars (for initials) into '%I' to be
           consistent with other occurrences
      ADD. repost ('x') now takes mailing_list attribute into account
      ADD. repost prolog looked ugly in multibyte env. if multibyte chars
           were quoted in the prolog
      ADD. disallow supersedes in mailgroups
      ADD. fix handrolled strcasestr() to cast returned value
           (required for cray-unicos cc)
      ADD. configure check for working tolower(), toupper()
           (required for sony-newsos3)
      ADD. configure check for h_addr_list in struct hostent
           (required for sun-sunos3.5)
      ADD. CF_TYPE_FD_SET and CF_CHECK_FD_SET configure checks from
           Thomas E. Dickey
      ADD. fixup autoconf missdetections for *-next-{nextstep,openstep}*
           (WIFEXITED, WIFEXITED, HAVE_SYS_UTSNAME_H, HAVE_SYS_WAIT_H, ...)
      ADD. determine mailbox_name just once
      ADD. switched tinrc.confirm_choice from string to int
      ADD. invoke_metamail() without piping
      ADD. %P expansion (groupname with '.' replaced by '/') in _strfpath()
      ADD. check for gcc >= 2.6 to use __attribute__((unused))
      ADD. GLOBAL_BUGREPORT ('R') to 'M'enu and attachment menu
      ADD. normalize subject for threading
      ADD. xref and path to debug filter output if set and hide subject,
           from and msgid if unset
      ADD. article headers and body to very verbose nntp debug (-D 1 -vv) log
      ADD. score, gnksa and lines to arts debug output for killed articles
      REM. dead code (NEW_HASH_METHOD, gl_init_done, OSNAME, redundant
           conditions)
      REM. non M_UNIX and __BEOS__ code
      ADD. config.guess, config.sub update
      FIX. active.c, art.c, attrib.c, charset.c, config.c, cook.c, curses.c
           debug.c, feed.c, filter.c, getline.c, header.c, inews.c, init.c
           keymap.c, lang.c, list.c, makecfg.c, main.c, mimetypes.c, misc.c
           newsrc.c, nntplib.c, nrctbl.c, options_menu.c, page.c, post.c
           prompt.c, read.c, rfc2046.c, rfc2047.c, save.c, screen.c, select.c
           sigfile.c, signal.c, string.c, version.c, xref.c, bugrep.h, extern.h
           proto.h, tin.h, tnntp.h, version.h, parsdate.y, Makefile[.in]
           config.guess, config.sub, configure[.in], autoconf.hin, tin.1, tin.5

 013) Toomas Soome <tsoome@me.com>
      ADD. updated estonian translation
      FIX. et.po


(leot)
diff -r1.86 -r1.87 pkgsrc/news/tin/Makefile
diff -r1.24 -r1.25 pkgsrc/news/tin/distinfo

cvs diff -r1.86 -r1.87 pkgsrc/news/tin/Makefile (expand / switch to unified diff)

--- pkgsrc/news/tin/Makefile 2019/11/04 19:17:11 1.86
+++ pkgsrc/news/tin/Makefile 2019/12/26 21:57:50 1.87
@@ -1,17 +1,16 @@ @@ -1,17 +1,16 @@
1# $NetBSD: Makefile,v 1.86 2019/11/04 19:17:11 rillig Exp $ 1# $NetBSD: Makefile,v 1.87 2019/12/26 21:57:50 leot Exp $
2 2
3DISTNAME= tin-2.4.3 3DISTNAME= tin-2.4.4
4PKGREVISION= 2 
5CATEGORIES= news 4CATEGORIES= news
6MASTER_SITES= ftp://ftp.tin.org/pub/news/clients/tin/stable/ 5MASTER_SITES= ftp://ftp.tin.org/pub/news/clients/tin/stable/
7MASTER_SITES+= ftp://ftp.funet.fi/pub/unix/news/tin-unoff/ 6MASTER_SITES+= ftp://ftp.funet.fi/pub/unix/news/tin-unoff/
8MASTER_SITES+= ftp://ftp.lip6.fr/pub/unix/news/readers/tin-unoff/ 7MASTER_SITES+= ftp://ftp.lip6.fr/pub/unix/news/readers/tin-unoff/
9MASTER_SITES+= ftp://ftp.cuhk.edu.hk/pub/packages/news/tin/stable/ 8MASTER_SITES+= ftp://ftp.cuhk.edu.hk/pub/packages/news/tin/stable/
10MASTER_SITES+= ftp://sunsite.icm.edu.pl/pub/unix/news/tin/stable/ 9MASTER_SITES+= ftp://sunsite.icm.edu.pl/pub/unix/news/tin/stable/
11EXTRACT_SUFX= .tar.xz 10EXTRACT_SUFX= .tar.xz
12 11
13MAINTAINER= pkgsrc-users@NetBSD.org 12MAINTAINER= pkgsrc-users@NetBSD.org
14HOMEPAGE= http://www.tin.org/ 13HOMEPAGE= http://www.tin.org/
15COMMENT= USENET newsreader (termcap based) 14COMMENT= USENET newsreader (termcap based)
16# See src/nntplib.c, vms/vms.c 15# See src/nntplib.c, vms/vms.c
17LICENSE= tin-license 16LICENSE= tin-license

cvs diff -r1.24 -r1.25 pkgsrc/news/tin/distinfo (expand / switch to unified diff)

--- pkgsrc/news/tin/distinfo 2019/01/15 15:48:17 1.24
+++ pkgsrc/news/tin/distinfo 2019/12/26 21:57:50 1.25
@@ -1,10 +1,10 @@ @@ -1,10 +1,10 @@
1$NetBSD: distinfo,v 1.24 2019/01/15 15:48:17 wiz Exp $ 1$NetBSD: distinfo,v 1.25 2019/12/26 21:57:50 leot Exp $
2 2
3SHA1 (tin-2.4.3.tar.xz) = f0460e6e9aa555864df8d12986c06e3c0c27f70a 3SHA1 (tin-2.4.4.tar.xz) = 7f4c1869cdcac4ac49bb70c6448538691fc19b4a
4RMD160 (tin-2.4.3.tar.xz) = ca9404b46705b75b615b79e6d0434c85e009c616 4RMD160 (tin-2.4.4.tar.xz) = dbb0b44f3365059f155ec53874d283a18da9e0b1
5SHA512 (tin-2.4.3.tar.xz) = 9d4b22ec889cc0b468d9d5488907b6b4a6fc864dcbd18ef2e91a463734e651bc7ff149d6c74805f82cbf0d4f6e7f28b005ba07268966e3c96928b5b20be59eba 5SHA512 (tin-2.4.4.tar.xz) = d9e907b5f8e43b21f348145264f6aeb64e021f1f2e6a2dbfd2d129a571f72690baf318aeea5a6c22a6dd62e4760ce2ea886ab2f3dbeb5b89fd7659df58352142
6Size (tin-2.4.3.tar.xz) = 1538960 bytes 6Size (tin-2.4.4.tar.xz) = 1545016 bytes
7SHA1 (patch-Makefile) = 7f9048d31e70d9630ba6511d834db5d0c60a7de1 7SHA1 (patch-Makefile) = 7f9048d31e70d9630ba6511d834db5d0c60a7de1
8SHA1 (patch-configure) = 02f6c943c7e6cbf8552f163c8ff4922413c9c340 8SHA1 (patch-configure) = 02f6c943c7e6cbf8552f163c8ff4922413c9c340
9SHA1 (patch-include_tin.h) = 75a933e15128e7e102598c311ff292caf9c49041 9SHA1 (patch-include_tin.h) = 75a933e15128e7e102598c311ff292caf9c49041
10SHA1 (patch-src_Makefile.in) = 412f1cd6b01618e64d6a3f713f3758d5a563e79e 10SHA1 (patch-src_Makefile.in) = 412f1cd6b01618e64d6a3f713f3758d5a563e79e