Received: by mail.netbsd.org (Postfix, from userid 605) id A015884D25; Mon, 1 Jan 2024 15:13:06 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id CE6E384CFC for ; Mon, 1 Jan 2024 15:13:05 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id npi4TflwepiR for ; Mon, 1 Jan 2024 15:13:05 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.NetBSD.org [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id 3038884CE2 for ; Mon, 1 Jan 2024 15:13:05 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 1CAA0FA42; Mon, 1 Jan 2024 15:13:05 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1704121985195690" MIME-Version: 1.0 Date: Mon, 1 Jan 2024 15:13:05 +0000 From: "Leonardo Taccari" Subject: CVS commit: pkgsrc/news/sfeed To: pkgsrc-changes@NetBSD.org Reply-To: leot@netbsd.org X-Mailer: log_accum Message-Id: <20240101151305.1CAA0FA42@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1704121985195690 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: leot Date: Mon Jan 1 15:13:05 UTC 2024 Modified Files: pkgsrc/news/sfeed: Makefile distinfo Log Message: sfeed: Update to 2.0 Changes: 2.0 --- Features: * sfeed_update: use xargs -P for improved job handling when updating feeds in parallel. * sfeed_update: update default maxjobs from 8 to 16. Fixes: * sfeed_json: fix name of "url" field for attachments. * sfeed_opml_export and sfeed_update: allow only regular files. * sfeed_update: improve compatibility with zsh as a non-interactive shell, because some variables likes like $path and $status are reserved. * sfeed_update: when the feeds() function is not defined then exit with status code 1 (this was incorrectly status code 0). * sfeed_update: improvements in the cleanup of temporary files for edge-cases. Code improvements: * sfeed_curses/sfeed_gopher: mark functions as static. * sfeed_gopher: fix a clang-analyzer warning (no difference in behaviour). * sfeed_update: in the order() function suppress output to stderr, like merge() already does. * Some small documentation improvements. There was some work in adding tests for sfeed_update. This makes testing for regressions on many platforms faster to spot. To generate a diff of this commit: cvs rdiff -u -r1.27 -r1.28 pkgsrc/news/sfeed/Makefile cvs rdiff -u -r1.26 -r1.27 pkgsrc/news/sfeed/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1704121985195690 Content-Disposition: inline Content-Length: 1434 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/news/sfeed/Makefile diff -u pkgsrc/news/sfeed/Makefile:1.27 pkgsrc/news/sfeed/Makefile:1.28 --- pkgsrc/news/sfeed/Makefile:1.27 Mon Aug 21 13:07:14 2023 +++ pkgsrc/news/sfeed/Makefile Mon Jan 1 15:13:04 2024 @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.27 2023/08/21 13:07:14 leot Exp $ +# $NetBSD: Makefile,v 1.28 2024/01/01 15:13:04 leot Exp $ -DISTNAME= sfeed-1.9 +DISTNAME= sfeed-2.0 CATEGORIES= news MASTER_SITES= https://codemadness.org/releases/sfeed/ Index: pkgsrc/news/sfeed/distinfo diff -u pkgsrc/news/sfeed/distinfo:1.26 pkgsrc/news/sfeed/distinfo:1.27 --- pkgsrc/news/sfeed/distinfo:1.26 Mon Aug 21 13:07:14 2023 +++ pkgsrc/news/sfeed/distinfo Mon Jan 1 15:13:04 2024 @@ -1,5 +1,5 @@ -$NetBSD: distinfo,v 1.26 2023/08/21 13:07:14 leot Exp $ +$NetBSD: distinfo,v 1.27 2024/01/01 15:13:04 leot Exp $ -BLAKE2s (sfeed-1.9.tar.gz) = fdfb93fdd5b48ef6217423c4747722d5c9f499684303046c5d97340328686efb -SHA512 (sfeed-1.9.tar.gz) = 714ce9526ce6a37cdc5777e279512b611f9e329ed0d7d1e9fd8efe8c981a69fe19c6622685d0ac2e16eef1f699096262e616e5b4f5ba81e44624ae99d10de749 -Size (sfeed-1.9.tar.gz) = 67718 bytes +BLAKE2s (sfeed-2.0.tar.gz) = 5b8f8d9e70f33688e0f13ecef146a7e163d4ccc6929bc0ac07bc03489db48a14 +SHA512 (sfeed-2.0.tar.gz) = cc4c0236b14ac6da6a9417d879caef9943c30506e2fee404eefceea53dea597b36814846cfc454d76727ddcca33746f2bac3c1ee6831f9900e68d00f6eb32b5b +Size (sfeed-2.0.tar.gz) = 67584 bytes --_----------=_1704121985195690--