Received: by mail.netbsd.org (Postfix, from userid 605) id 756D384DD3; Sun, 17 Jun 2018 02:25:40 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 6E8C084D62 for ; Sun, 17 Jun 2018 02:25:39 +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 tCSkEVDjXPZy for ; Sun, 17 Jun 2018 02:25:38 +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 853A384CCE for ; Sun, 17 Jun 2018 02:25:38 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 7335BFBEC; Sun, 17 Jun 2018 02:25:38 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1529202338227050" MIME-Version: 1.0 Date: Sun, 17 Jun 2018 02:25:38 +0000 From: "Min Sik Kim" Subject: CVS commit: pkgsrc/devel/go-blackfriday To: pkgsrc-changes@NetBSD.org Reply-To: minskim@netbsd.org X-Mailer: log_accum Message-Id: <20180617022538.7335BFBEC@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. --_----------=_1529202338227050 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="UTF-8" Module Name: pkgsrc Committed By: minskim Date: Sun Jun 17 02:25:38 UTC 2018 Modified Files: pkgsrc/devel/go-blackfriday: Makefile PLIST distinfo Log Message: devel/go-blackfriday: Update to 1.5.1 Changes since 1.4.0: Added HTML_SMARTYPANTS_QUOTES_NBSP, which allows having nonbreakable spaces inside « French guillemets » (Issue #378) Added EXTENSION_JOIN_LINES, which joins newline-separated lines into a single paragraph. Useful for Chinese text. Implemented support for CDATA section (Issue #165) Fixed links with parentheses (Issue #116) Fixed fenced code blocks inside lists (Issue #228) Fixed regression, panic in reference links (Issues #172 and #173) Fixed adjacent list merging (Issue #235) Fixed definition lists that contain other lists (Issue #263) Fixed fenced code pre-processing (Issue #279) Fixed panic with recursive footnotes (Issue #241) Removed rel="footnote", which is no longer valid. To generate a diff of this commit: cvs rdiff -u -r1.5 -r1.6 pkgsrc/devel/go-blackfriday/Makefile cvs rdiff -u -r1.1 -r1.2 pkgsrc/devel/go-blackfriday/PLIST \ pkgsrc/devel/go-blackfriday/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1529202338227050 Content-Disposition: inline Content-Length: 3009 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/devel/go-blackfriday/Makefile diff -u pkgsrc/devel/go-blackfriday/Makefile:1.5 pkgsrc/devel/go-blackfriday/Makefile:1.6 --- pkgsrc/devel/go-blackfriday/Makefile:1.5 Tue Jun 12 17:50:23 2018 +++ pkgsrc/devel/go-blackfriday/Makefile Sun Jun 17 02:25:38 2018 @@ -1,8 +1,7 @@ -# $NetBSD: Makefile,v 1.5 2018/06/12 17:50:23 bsiegert Exp $ +# $NetBSD: Makefile,v 1.6 2018/06/17 02:25:38 minskim Exp $ -DISTNAME= blackfriday-1.4 +DISTNAME= blackfriday-1.5.1 PKGNAME= go-${DISTNAME} -PKGREVISION= 3 MASTER_SITES= ${MASTER_SITE_GITHUB:=russross/} CATEGORIES= devel GITHUB_TAG= v${PKGVERSION_NOREV} Index: pkgsrc/devel/go-blackfriday/PLIST diff -u pkgsrc/devel/go-blackfriday/PLIST:1.1 pkgsrc/devel/go-blackfriday/PLIST:1.2 --- pkgsrc/devel/go-blackfriday/PLIST:1.1 Thu Aug 17 01:17:16 2017 +++ pkgsrc/devel/go-blackfriday/PLIST Sun Jun 17 02:25:38 2018 @@ -1,14 +1,16 @@ -@comment $NetBSD: PLIST,v 1.1 2017/08/17 01:17:16 gavan Exp $ +@comment $NetBSD: PLIST,v 1.2 2018/06/17 02:25:38 minskim Exp $ gopkg/pkg/${GO_PLATFORM}/github.com/russross/blackfriday.a gopkg/src/github.com/russross/blackfriday/LICENSE.txt gopkg/src/github.com/russross/blackfriday/README.md gopkg/src/github.com/russross/blackfriday/block.go gopkg/src/github.com/russross/blackfriday/block_test.go +gopkg/src/github.com/russross/blackfriday/doc.go gopkg/src/github.com/russross/blackfriday/html.go gopkg/src/github.com/russross/blackfriday/inline.go gopkg/src/github.com/russross/blackfriday/inline_test.go gopkg/src/github.com/russross/blackfriday/latex.go gopkg/src/github.com/russross/blackfriday/markdown.go +gopkg/src/github.com/russross/blackfriday/markdown_test.go gopkg/src/github.com/russross/blackfriday/ref_test.go gopkg/src/github.com/russross/blackfriday/smartypants.go gopkg/src/github.com/russross/blackfriday/testdata/Amps and angle encoding.html Index: pkgsrc/devel/go-blackfriday/distinfo diff -u pkgsrc/devel/go-blackfriday/distinfo:1.1 pkgsrc/devel/go-blackfriday/distinfo:1.2 --- pkgsrc/devel/go-blackfriday/distinfo:1.1 Thu Aug 17 01:17:16 2017 +++ pkgsrc/devel/go-blackfriday/distinfo Sun Jun 17 02:25:38 2018 @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.1 2017/08/17 01:17:16 gavan Exp $ +$NetBSD: distinfo,v 1.2 2018/06/17 02:25:38 minskim Exp $ -SHA1 (blackfriday-1.4.tar.gz) = b12fb0b8a25b5f05188db7d85dce3bdb9ae369e9 -RMD160 (blackfriday-1.4.tar.gz) = 49585d2d6269eac455488c4e8dda6129d0308d8d -SHA512 (blackfriday-1.4.tar.gz) = 595b0c2cef166bbebdae39bbda3987409ff3c849a3eb0de73cfeff1b9afd64b4febfaa5ed3f7ef4b8020bbecbf5dfb479e7034249c58651429b3e7e5fb5107be -Size (blackfriday-1.4.tar.gz) = 69438 bytes +SHA1 (blackfriday-1.5.1.tar.gz) = 3f1aa38f936f11b3dc58f1298bfa142d5cfddd9a +RMD160 (blackfriday-1.5.1.tar.gz) = c7e53d33282bfa2e1c2bc58544880fc858967383 +SHA512 (blackfriday-1.5.1.tar.gz) = 97589691599322db93619d0dfe3c02357f2eef1b00c94f38f99fe72429cc7a2e2f39fd37cf2d6a25474b21a649932e840fbae782fe2d3f9b7856782bad3d8f19 +Size (blackfriday-1.5.1.tar.gz) = 75044 bytes --_----------=_1529202338227050--