From owner-svn-ports-all@freebsd.org Thu Apr 11 15:56:41 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id A38451587ADD; Thu, 11 Apr 2019 15:56:41 +0000 (UTC) (envelope-from jpaetzel@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 44BFE6CB24; Thu, 11 Apr 2019 15:56:41 +0000 (UTC) (envelope-from jpaetzel@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 003A7C6C7; Thu, 11 Apr 2019 15:56:41 +0000 (UTC) (envelope-from jpaetzel@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x3BFuemZ065190; Thu, 11 Apr 2019 15:56:40 GMT (envelope-from jpaetzel@FreeBSD.org) Received: (from jpaetzel@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x3BFuea7065187; Thu, 11 Apr 2019 15:56:40 GMT (envelope-from jpaetzel@FreeBSD.org) Message-Id: <201904111556.x3BFuea7065187@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jpaetzel set sender to jpaetzel@FreeBSD.org using -f From: Josh Paetzel Date: Thu, 11 Apr 2019 15:56:40 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r498674 - head/textproc/libyaml X-SVN-Group: ports-head X-SVN-Commit-Author: jpaetzel X-SVN-Commit-Paths: head/textproc/libyaml X-SVN-Commit-Revision: 498674 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 44BFE6CB24 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.94 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.998,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; NEURAL_HAM_SHORT(-0.94)[-0.941,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 11 Apr 2019 15:56:41 -0000 Author: jpaetzel Date: Thu Apr 11 15:56:40 2019 New Revision: 498674 URL: https://svnweb.freebsd.org/changeset/ports/498674 Log: Update to 0.2.2 Fix portlint errors in Makefile Changes in 0.2.2: * https://github.com/yaml/libyaml/pull/95 -- build: do not install config.h * https://github.com/yaml/libyaml/pull/97 -- appveyor.yml: fix Release build * https://github.com/yaml/libyaml/pull/103 -- Remove unused code in yaml_document_delete * https://github.com/yaml/libyaml/pull/104 -- Allow colons in plain scalars inside flow collections * https://github.com/yaml/libyaml/pull/109 -- Fix comparison in tests/run-emitter.c * https://github.com/yaml/libyaml/pull/117 -- Fix typo error * https://github.com/yaml/libyaml/pull/119 -- The closing single quote needs to be indented... * https://github.com/yaml/libyaml/pull/121 -- fix token name typos in comments * https://github.com/yaml/libyaml/pull/122 -- Revert removing of open_ended after top level plain scalar * https://github.com/yaml/libyaml/pull/125 -- Cherry-picks from PR 27 * https://github.com/yaml/libyaml/pull/135 -- Windows/C89 compatibility * https://github.com/yaml/libyaml/pull/136 -- allow override of Windows static lib name Modified: head/textproc/libyaml/Makefile head/textproc/libyaml/distinfo head/textproc/libyaml/pkg-plist Modified: head/textproc/libyaml/Makefile ============================================================================== --- head/textproc/libyaml/Makefile Thu Apr 11 15:50:45 2019 (r498673) +++ head/textproc/libyaml/Makefile Thu Apr 11 15:56:40 2019 (r498674) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= libyaml -PORTVERSION= 0.2.1 +PORTVERSION= 0.2.2 CATEGORIES= textproc MASTER_SITES= http://pyyaml.org/download/libyaml/ DISTNAME= yaml-${PORTVERSION} @@ -14,9 +14,11 @@ COMMENT= YAML 1.1 parser and emitter written in C LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE +USES= cpe libtool pathfix + GNU_CONFIGURE= yes + INSTALL_TARGET= install-strip -USES= cpe libtool pathfix CPE_VENDOR= pyyaml USE_LDCONFIG= yes Modified: head/textproc/libyaml/distinfo ============================================================================== --- head/textproc/libyaml/distinfo Thu Apr 11 15:50:45 2019 (r498673) +++ head/textproc/libyaml/distinfo Thu Apr 11 15:56:40 2019 (r498674) @@ -1,3 +1,3 @@ -TIMESTAMP = 1538967622 -SHA256 (repacked/yaml-0.2.1.tar.gz) = 78281145641a080fb32d6e7a87b9c0664d611dcb4d542e90baf731f51cbb59cd -SIZE (repacked/yaml-0.2.1.tar.gz) = 599727 +TIMESTAMP = 1554956021 +SHA256 (repacked/yaml-0.2.2.tar.gz) = 4a9100ab61047fd9bd395bcef3ce5403365cafd55c1e0d0299cde14958e47be9 +SIZE (repacked/yaml-0.2.2.tar.gz) = 609359 Modified: head/textproc/libyaml/pkg-plist ============================================================================== --- head/textproc/libyaml/pkg-plist Thu Apr 11 15:50:45 2019 (r498673) +++ head/textproc/libyaml/pkg-plist Thu Apr 11 15:56:40 2019 (r498674) @@ -1,6 +1,6 @@ include/yaml.h lib/libyaml-0.so.2 -lib/libyaml-0.so.2.0.5 +lib/libyaml-0.so.2.0.6 lib/libyaml.a lib/libyaml.so libdata/pkgconfig/yaml-0.1.pc