Received: by mail.netbsd.org (Postfix, from userid 605) id B15A084F5C; Sun, 11 Aug 2019 22:16:05 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 364A384F5A for ; Sun, 11 Aug 2019 22:16:05 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([127.0.0.1]) by localhost (mail.netbsd.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id f6zKvvNJxcMf for ; Sun, 11 Aug 2019 22:16:04 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 5234D84CE2 for ; Sun, 11 Aug 2019 22:16:04 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 46C9AFBF4; Sun, 11 Aug 2019 22:16:04 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1565561764178730" MIME-Version: 1.0 Date: Sun, 11 Aug 2019 22:16:04 +0000 From: "David H. Gutteridge" Subject: CVS commit: pkgsrc/devel/fossil To: pkgsrc-changes@NetBSD.org Reply-To: gutteridge@netbsd.org X-Mailer: log_accum Message-Id: <20190811221604.46C9AFBF4@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1565561764178730 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: gutteridge Date: Sun Aug 11 22:16:04 UTC 2019 Modified Files: pkgsrc/devel/fossil: Makefile distinfo Log Message: fossil: update to version 2.9 Changes for Version 2.9 (2019-07-13) * Added the [/help?cmd=git|fossil git export] command and instructions for [./mirrortogithub.md|creating a GitHub mirror of a Fossil project]. * Improved handling of relative hyperlinks on the [/help?cmd=/artifact|/artifact] pages for wiki. For example, hyperlinks and the lizard <img> now work correctly for both [/artifact/2ff24ab0887cf522] and [/doc/0d7ac90d575004c2415/www/index.wiki]. * Enhancements to the timeline graph layout, to show more information with less clutter. * Added tool-tips to the /timeline graph. On by default but can be disabled by setting the "Tooltip dwell time" to 0 in the timeline configuration. * Copy buttons added to various check-in hash and branch name links. * Double-clicking on a /timeline graph node now jumps to the /info page for the check-in. So, repurpose the timestamp hyperlink to show all activity around that check-in in time. * Added the [/help?cmd=touch|fossil touch] command, and the --setmtime option on the [/help?cmd=open|fossil open] and [/help?cmd=update|fossil update] commands. * Many documentation enhancements. * For the "[/help?cmd=update|fossil update]" and "[/help?cmd=checkout|fossil checkout]" commands, if a managed file is removed because it is no longer part of the target check-in and the directory containing the file is empty after the file is removed and the directory is not the current working directory and is not on the [/help?cmd=empty-dirs|empty-dirs] list, then also remove the directory. * Update internal Unicode character tables, used in regular expression handling, from version 11.0 to 12.1. * In "[/help?cmd=regexp|fossil regexp]", "[/help?cmd=grep|fossil grep]" and the TH1 "regexp" command, the -nocase option now removes multiple diacritics from the same character (derived from SQLite's remove_diacritics=2) * Added the [/help?cmd=/secureraw|/secureraw] page that requires the complete SHA1 or SHA3 hash, not just a prefix, before it will deliver content. * Accept purely numeric ISO8601 date/time strings as long as they do not conflict with a hash. Example: "20190510134217" instead of "2019-05-10 13:42:17". This helps keep URLs shorter and less complicated * Support both "1)" and "1." for numbered lists in markdown, as commonmark does. * The sync and clone HTTP requests omit the extra /xfer path element from the end of the request URI. All servers since 2010 know that the HTTP request is for a sync or clone from the mimetype so the extra path element is not needed. * If an automatic sync gets a permanent redirect request, then update the saved remote URL to the new address. * Temporary filenames (for example used for external "diff" commands) try to preserve the suffix of the original file. * Added the [/help?cmd=/thisdayinhistory|/thisdayinhistory] web page. * Enhanced parsing of [/help?cmd=/timeline|/timeline] query parameters "ymd=", "ym=", and "yw=". All arguments are option (in which case they default to the current time) and all accept ISO8601 date/times without punctuation. * Automatically disapprove pending moderation requests for a user when that user is deleted. This helps in dealing with spam-bots. * Improvements to the "Capability Summary" section in the [/help?cmd=/secaudit0|Security Audit] web-page. * Use new "ci-lock" and "ci-lock-failed" pragmas in the [./sync.wiki|sync protocol] to try to prevent accident forks caused by concurrent commits when operating in auto-sync mode. * Fix a bug ([https://www.fossil-scm.org/forum/forumpost/c51b9a1169|details]) that can cause repository databases to be overwritten with debugging output, thus corrupting the repository. This is only a factor when CGI debugging is enabled, and even then is a rare occurrence, but it is obviously an important fix. To generate a diff of this commit: cvs rdiff -u -r1.49 -r1.50 pkgsrc/devel/fossil/Makefile cvs rdiff -u -r1.31 -r1.32 pkgsrc/devel/fossil/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1565561764178730 Content-Disposition: inline Content-Length: 1702 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/devel/fossil/Makefile diff -u pkgsrc/devel/fossil/Makefile:1.49 pkgsrc/devel/fossil/Makefile:1.50 --- pkgsrc/devel/fossil/Makefile:1.49 Wed Apr 3 00:32:34 2019 +++ pkgsrc/devel/fossil/Makefile Sun Aug 11 22:16:04 2019 @@ -1,8 +1,7 @@ -# $NetBSD: Makefile,v 1.49 2019/04/03 00:32:34 ryoon Exp $ +# $NetBSD: Makefile,v 1.50 2019/08/11 22:16:04 gutteridge Exp $ -DISTNAME= fossil-src-2.8 +DISTNAME= fossil-src-2.9 PKGNAME= ${DISTNAME:S/-src//} -PKGREVISION= 1 WRKSRC= ${WRKDIR}/${PKGNAME_NOREV} CATEGORIES= devel scm MASTER_SITES= https://www.fossil-scm.org/index.html/uv/ Index: pkgsrc/devel/fossil/distinfo diff -u pkgsrc/devel/fossil/distinfo:1.31 pkgsrc/devel/fossil/distinfo:1.32 --- pkgsrc/devel/fossil/distinfo:1.31 Tue Mar 12 13:20:27 2019 +++ pkgsrc/devel/fossil/distinfo Sun Aug 11 22:16:04 2019 @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.31 2019/03/12 13:20:27 gutteridge Exp $ +$NetBSD: distinfo,v 1.32 2019/08/11 22:16:04 gutteridge Exp $ -SHA1 (fossil-src-2.8.tar.gz) = a55c38d9501ff3d61924943f28cb8c5b5cf156ba -RMD160 (fossil-src-2.8.tar.gz) = c4fbcca83d4690026433e82399f0b8b2f54e7c17 -SHA512 (fossil-src-2.8.tar.gz) = 5c6a8dc1545c43b3c95fbbec343db023e27a9db58f282a881bb7e488e3e26a0f7913a41f505dedf618b884507e48956780bd0e12482e184345d68edd1e79ff8e -Size (fossil-src-2.8.tar.gz) = 5359975 bytes +SHA1 (fossil-src-2.9.tar.gz) = bcb0abdd9d7bb3131187eb3ab941c5e795081c8c +RMD160 (fossil-src-2.9.tar.gz) = a95f8c784dbf633ba8f407db01bb151870d4dfb3 +SHA512 (fossil-src-2.9.tar.gz) = c3786d4ae5517c88917819448863e9e1e37704a7073a1c87c042660313b77ce3a63f32e35e6a56af1c681e7b8a5acc652b4447d0387b8a8a5b3b5aa04dd9a9b5 +Size (fossil-src-2.9.tar.gz) = 5440118 bytes --_----------=_1565561764178730--