Received: by mail.netbsd.org (Postfix, from userid 605) id 2D23084DD6; Tue, 16 Mar 2021 16:29:44 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 6453F84D26 for ; Tue, 16 Mar 2021 16:29:43 +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 txAF-3VFWeGn for ; Tue, 16 Mar 2021 16:29:42 +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 CFA9B84CEC for ; Tue, 16 Mar 2021 16:29:42 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id BE98DFA95; Tue, 16 Mar 2021 16:29:42 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1615912182274150" MIME-Version: 1.0 Date: Tue, 16 Mar 2021 16:29:42 +0000 From: "Frederic Cambus" Subject: CVS commit: pkgsrc/www/stagit To: pkgsrc-changes@NetBSD.org Reply-To: fcambus@netbsd.org X-Mailer: log_accum Message-Id: <20210316162942.BE98DFA95@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1615912182274150 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: fcambus Date: Tue Mar 16 16:29:42 UTC 2021 Modified Files: pkgsrc/www/stagit: Makefile distinfo Log Message: stagit: update to 0.9.5. ChangeLog: - change STAGIT_BASEURL to an -u option and also update the example script - add $STAGIT_BASEURL environment variable to make Atom links absolute - README: mention tags.xml feature - micro-optimization: fputc (function) -> putc (macro/inline function) - fix warning with libgit2 v0.99+, remain compatible with older versions - add abbreviated commit hash to submodule file - add meta viewport for scaling on mobile - style.css: improve contrast - use size_t to count lines - avoid shadowed `name' global variable - refs_cmp: remove unneeded cast - use LEN() macros for arrays To generate a diff of this commit: cvs rdiff -u -r1.5 -r1.6 pkgsrc/www/stagit/Makefile cvs rdiff -u -r1.3 -r1.4 pkgsrc/www/stagit/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1615912182274150 Content-Disposition: inline Content-Length: 1552 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/www/stagit/Makefile diff -u pkgsrc/www/stagit/Makefile:1.5 pkgsrc/www/stagit/Makefile:1.6 --- pkgsrc/www/stagit/Makefile:1.5 Mon Aug 17 20:59:54 2020 +++ pkgsrc/www/stagit/Makefile Tue Mar 16 16:29:42 2021 @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.5 2020/08/17 20:59:54 fcambus Exp $ +# $NetBSD: Makefile,v 1.6 2021/03/16 16:29:42 fcambus Exp $ -DISTNAME= stagit-0.9.4 +DISTNAME= stagit-0.9.5 CATEGORIES= www MASTER_SITES= https://codemadness.org/releases/stagit/ Index: pkgsrc/www/stagit/distinfo diff -u pkgsrc/www/stagit/distinfo:1.3 pkgsrc/www/stagit/distinfo:1.4 --- pkgsrc/www/stagit/distinfo:1.3 Mon Aug 17 20:59:54 2020 +++ pkgsrc/www/stagit/distinfo Tue Mar 16 16:29:42 2021 @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.3 2020/08/17 20:59:54 fcambus Exp $ +$NetBSD: distinfo,v 1.4 2021/03/16 16:29:42 fcambus Exp $ -SHA1 (stagit-0.9.4.tar.gz) = 4597beb3f65cb009d69ab81822ff1d175cf44d89 -RMD160 (stagit-0.9.4.tar.gz) = 8278c51c554b4be5ca4ab217eb72e23f27c26fa5 -SHA512 (stagit-0.9.4.tar.gz) = 12ef71123a12a77f5d5c2245ae54f0ed6a97c80f8b97c9654f086eca88ab7945ce599afdb526b2db843becf86d48b018181a5068e09c32bfceefad1d50b98c94 -Size (stagit-0.9.4.tar.gz) = 18912 bytes +SHA1 (stagit-0.9.5.tar.gz) = e4e8c201119733bf44a721fa2bebb868c274bfc9 +RMD160 (stagit-0.9.5.tar.gz) = 9dba8f86477fd9fe6152f82b56e26ee067e1643b +SHA512 (stagit-0.9.5.tar.gz) = a215815f1e748fca86ea8e8c22d24488c7e0d3b5168748afb58a0ce14295a976ae2e82824e48cd16f83f4a98dca31fb6cc5a8c9498001ba035da81f0f87fd61f +Size (stagit-0.9.5.tar.gz) = 19115 bytes --_----------=_1615912182274150--