Received: by mail.netbsd.org (Postfix, from userid 605) id AB4A684DE0; Tue, 2 Jun 2020 08:28:05 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 3092B84DDE for ; Tue, 2 Jun 2020 08:28: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 eDKr4xkagWFG for ; Tue, 2 Jun 2020 08:28:04 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id A15CC84DDD for ; Tue, 2 Jun 2020 08:28:04 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 94D6BFB27; Tue, 2 Jun 2020 08:28:04 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_159108648468410" MIME-Version: 1.0 Date: Tue, 2 Jun 2020 08:28:04 +0000 From: "Adam Ciarcinski" Subject: CVS commit: pkgsrc/textproc/libyaml To: pkgsrc-changes@NetBSD.org Reply-To: adam@netbsd.org X-Mailer: log_accum Message-Id: <20200602082804.94D6BFB27@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. --_----------=_159108648468410 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: adam Date: Tue Jun 2 08:28:04 UTC 2020 Modified Files: pkgsrc/textproc/libyaml: Makefile distinfo Log Message: libyaml: updated to 0.2.5 0.2.5: Allow question marks in plain scalars in flow collections Emitter: Don't output trailing space for empty scalar nodes Emitter: Output space after an alias mapping key Add -h and --flow (on|off|keep) to run-*-test-suite Remove unnecessary include and malloc Add specific files back to .gitignore Output error position in run-parser-test-suite.c A couple patches to improve test suite support To generate a diff of this commit: cvs rdiff -u -r1.16 -r1.17 pkgsrc/textproc/libyaml/Makefile cvs rdiff -u -r1.14 -r1.15 pkgsrc/textproc/libyaml/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_159108648468410 Content-Disposition: inline Content-Length: 1988 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/textproc/libyaml/Makefile diff -u pkgsrc/textproc/libyaml/Makefile:1.16 pkgsrc/textproc/libyaml/Makefile:1.17 --- pkgsrc/textproc/libyaml/Makefile:1.16 Mon Apr 20 07:54:53 2020 +++ pkgsrc/textproc/libyaml/Makefile Tue Jun 2 08:28:04 2020 @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.16 2020/04/20 07:54:53 adam Exp $ +# $NetBSD: Makefile,v 1.17 2020/06/02 08:28:04 adam Exp $ -DISTNAME= yaml-0.2.4 +DISTNAME= yaml-0.2.5 PKGNAME= lib${DISTNAME} CATEGORIES= textproc MASTER_SITES= http://pyyaml.org/download/libyaml/ @@ -11,14 +11,11 @@ COMMENT= YAML 1.1 parser and emitter wri LICENSE= mit USE_LIBTOOL= yes -USE_TOOLS+= autoconf automake +USE_TOOLS+= gmake GNU_CONFIGURE= yes PKGCONFIG_OVERRIDE= yaml-0.1.pc.in TEST_TARGET= check -pre-configure: - cd ${WRKSRC} && autoreconf -fiv - # cmake support is incomplete #USE_CMAKE= yes #CMAKE_ARGS+= -DBUILD_SHARED_LIBS:BOOL=ON Index: pkgsrc/textproc/libyaml/distinfo diff -u pkgsrc/textproc/libyaml/distinfo:1.14 pkgsrc/textproc/libyaml/distinfo:1.15 --- pkgsrc/textproc/libyaml/distinfo:1.14 Mon Apr 20 07:54:53 2020 +++ pkgsrc/textproc/libyaml/distinfo Tue Jun 2 08:28:04 2020 @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.14 2020/04/20 07:54:53 adam Exp $ +$NetBSD: distinfo,v 1.15 2020/06/02 08:28:04 adam Exp $ -SHA1 (yaml-0.2.4.tar.gz) = 22dc72c927a5ff78b54985b3e2f6ee1bbebaa2cb -RMD160 (yaml-0.2.4.tar.gz) = 86d62acb3e6b41c119292c7a71f2715fd1a1691c -SHA512 (yaml-0.2.4.tar.gz) = 8e1d932d9fa80faaa62fa92dc182c9f8d02c7f64057fa63c50c6394b9fd9ceee4037e1df969d681ff770b7435eec6254e88249f2cc7683f91bcbd4415561f4fc -Size (yaml-0.2.4.tar.gz) = 608448 bytes +SHA1 (yaml-0.2.5.tar.gz) = f49b39644caccabef049e3ec8859e8fdf94b686e +RMD160 (yaml-0.2.5.tar.gz) = cc175ed640046722fb7790de828002633407b6b9 +SHA512 (yaml-0.2.5.tar.gz) = dadd7d8e0d88b5ebab005e5d521d56d541580198aa497370966b98c904586e642a1cd4f3881094eb57624f218d50db77417bbfd0ffdce50340f011e35e8c4c02 +Size (yaml-0.2.5.tar.gz) = 609454 bytes --_----------=_159108648468410--