Date: Tue, 14 Apr 2009 14:18:26 +0200 (CEST) From: Matthias Andree <matthias.andree@gmx.de> To: FreeBSD-gnats-submit@FreeBSD.org Subject: ports/133726: [MAINTAINER] news/leafnode: bugfix update to release candidate #4 Message-ID: <20090414121826.0A4E433E66@rho.emma.line.org> Resent-Message-ID: <200904141250.n3ECo279008881@freefall.freebsd.org>
next in thread | raw e-mail | index | archive | help
>Number: 133726 >Category: ports >Synopsis: [MAINTAINER] news/leafnode: bugfix update to release candidate #4 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Tue Apr 14 12:50:01 UTC 2009 >Closed-Date: >Last-Modified: >Originator: Matthias Andree >Release: FreeBSD 7.1-RELEASE-p2 i386 >Organization: >Environment: System: FreeBSD rho.emma.line.org 7.1-RELEASE-p2 FreeBSD 7.1-RELEASE-p2 #0: Sun Jan 18 05:55:08 CET 2009 >Description: Update to release candidate #4. Excerpt from NEWS file of relevant changes for this port (this is _NOT_ complete): =================================================================== ### WORKAROUND - fetchnews: If the LN_SUPPRESS_DATE environment variable is defined and set to any value or empty, fetchnews will not test the upstream server's time by means of the "DATE" NNTP command. This can be used to quench related log messages. ### BUGFIXES - Fix logging if texpire unlinks files without further hardlinks from message.id/NNN/ - Fix & change "noactive" so that it can be overridden by "fetchnews -f", as documented in config.example. Regression as side effect of 1.9.50 fix, reported by Jesse F. Hughes. - Print connected to... to console as well at proper verbosity level, found by maintainer while debugging aforementioned bug. - Only emit warning that no server with posting permission was found if that's actually needed. Reported by Christian Weiske. - If corrupted articles had been detected, fetchnews -x NNN would not be able to re-fetch the said article because a 0-sized file remained in message.id, making fetchnews believe the article was in the spool. 0-sized message.id/NNN/ files are now purged when checking if the article is already in the spool. Reported by Peter Bauernfeind. (de.comm.software.newsserver post, May 2008) - Change interface enumeration to track incompatible NetBSD 5 changes. The latter led to bogus connection refusals in NNTPD. SourceForge Bug #2700756, by Aleksey Cheusov, fix suggested by Roy Marples. - Add support for SIOCGIFALIAS where available (BSD) in order to obtain netmasks for 4.4BSD-style IP aliases. getifaddrs() has been suggested as well, but it isn't available everywhere, so we would have to keep the old code around anyways, and we can just fix that rather than introduce alternative code branches. ### CHANGES - leafnode-version now supports an additional "-v" mode to print more information on the installation. The output then is similar, but not identical - due to different feature sets - to the way leafnode-2 prints it. =================================================================== Generated with FreeBSD Port Tools 0.77 >How-To-Repeat: >Fix: --- leafnode-1.11.7.r4.patch begins here --- Index: Makefile =================================================================== RCS file: /home/ncvs/ports/news/leafnode/Makefile,v retrieving revision 1.77 diff -u -u -r1.77 Makefile --- Makefile 21 Aug 2008 06:18:05 -0000 1.77 +++ Makefile 14 Apr 2009 11:57:23 -0000 @@ -6,7 +6,7 @@ # PORTNAME= leafnode -DISTVERSION= 1.11.7.rc1 +DISTVERSION= 1.11.7.rc4 CATEGORIES= news ipv6 #MASTER_SITES= ${MASTER_SITE_SOURCEFORGE_EXTENDED:S/$/:sourceforge/} \ # http://www.dt.e-technik.uni-dortmund.de/~ma/${PORTNAME}/ \ @@ -15,14 +15,16 @@ # ./:DEFAULT \ # system/news/transport/:sunsite #DISTFILES= ${DISTNAME}${EXTRACT_SUFX}:sourceforge,sunsite,DEFAULT -MASTER_SITES= http://www.dt.e-technik.uni-dortmund.de/~ma/${PORTNAME}/ -DISTFILES= ${DISTNAME}${EXTRACT_SUFX} +MASTER_SITES= http://www.dt.e-technik.uni-dortmund.de/~ma/${PORTNAME}/ \ + http://homepages.uni-paderborn.de/mandree/ MAINTAINER= matthias.andree@gmx.de COMMENT= NNTP package for offline news caching and reading LIB_DEPENDS= pcre.0:${PORTSDIR}/devel/pcre +MAKE_JOBS_SAFE= yes + USE_BZIP2= yes GNU_CONFIGURE= yes Index: distinfo =================================================================== RCS file: /home/ncvs/ports/news/leafnode/distinfo,v retrieving revision 1.56 diff -u -u -r1.56 distinfo --- distinfo 7 Feb 2008 04:41:51 -0000 1.56 +++ distinfo 14 Apr 2009 11:57:23 -0000 @@ -1,3 +1,3 @@ -MD5 (leafnode-1.11.7.rc1.tar.bz2) = 8f10af3460d44efad79b1877971687bf -SHA256 (leafnode-1.11.7.rc1.tar.bz2) = be4e5fa67c33bf5cf28e15bb58321ac26d80912beaba145384a2ed946681f23b -SIZE (leafnode-1.11.7.rc1.tar.bz2) = 431374 +MD5 (leafnode-1.11.7.rc4.tar.bz2) = d07d24b1da4bf137943dcc8a0e064c72 +SHA256 (leafnode-1.11.7.rc4.tar.bz2) = 006f61a48fe05fe608264eada6a33dab1767be500dc94a6f1df42ad2e906629f +SIZE (leafnode-1.11.7.rc4.tar.bz2) = 494730 Index: files/pkg-message.in =================================================================== RCS file: /home/ncvs/ports/news/leafnode/files/pkg-message.in,v retrieving revision 1.3 diff -u -u -r1.3 pkg-message.in --- files/pkg-message.in 4 Apr 2004 14:16:18 -0000 1.3 +++ files/pkg-message.in 14 Apr 2009 11:57:23 -0000 @@ -1,5 +1,5 @@ -To finalize the leafnode install, proceed as follows: +To complete the leafnode install, proceed as follows: -1. read %%DOCSDIR%%/INSTALL, starting at item #6. +1. follow %%DOCSDIR%%/INSTALL, starting at item #6. 2. read %%DOCSDIR%%/NEWS, mind the incompatible changes! 3. read %%DOCSDIR%%/README, mind the incompatible changes! --- leafnode-1.11.7.r4.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted:
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20090414121826.0A4E433E66>