From owner-svn-ports-head@freebsd.org Fri Sep 21 10:39:15 2018 Return-Path: Delivered-To: svn-ports-head@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 300F110957C1; Fri, 21 Sep 2018 10:39:15 +0000 (UTC) (envelope-from romain@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id C9CCC78123; Fri, 21 Sep 2018 10:39:14 +0000 (UTC) (envelope-from romain@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 BFA1C3DE1; Fri, 21 Sep 2018 10:39:14 +0000 (UTC) (envelope-from romain@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w8LAdEnP067133; Fri, 21 Sep 2018 10:39:14 GMT (envelope-from romain@FreeBSD.org) Received: (from romain@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w8LAdE0U067130; Fri, 21 Sep 2018 10:39:14 GMT (envelope-from romain@FreeBSD.org) Message-Id: <201809211039.w8LAdE0U067130@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: romain set sender to romain@FreeBSD.org using -f From: =?UTF-8?Q?Romain_Tarti=c3=a8re?= Date: Fri, 21 Sep 2018 10:39:14 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r480248 - in head/devel/leatherman: . files X-SVN-Group: ports-head X-SVN-Commit-Author: romain X-SVN-Commit-Paths: in head/devel/leatherman: . files X-SVN-Commit-Revision: 480248 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.27 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 21 Sep 2018 10:39:15 -0000 Author: romain Date: Fri Sep 21 10:39:13 2018 New Revision: 480248 URL: https://svnweb.freebsd.org/changeset/ports/480248 Log: Update to 1.5.0 While here, add a patch to workaround bugs that make the regression test suite fail. With hat: puppet Added: head/devel/leatherman/files/patch-json__container_tests_json__container__test.cc (contents, props changed) Modified: head/devel/leatherman/Makefile head/devel/leatherman/distinfo Modified: head/devel/leatherman/Makefile ============================================================================== --- head/devel/leatherman/Makefile Fri Sep 21 10:38:03 2018 (r480247) +++ head/devel/leatherman/Makefile Fri Sep 21 10:39:13 2018 (r480248) @@ -1,8 +1,7 @@ # $FreeBSD$ PORTNAME= leatherman -PORTVERSION= 1.4.2 -PORTREVISION= 1 +PORTVERSION= 1.5.0 CATEGORIES= devel MAINTAINER= puppet@FreeBSD.org Modified: head/devel/leatherman/distinfo ============================================================================== --- head/devel/leatherman/distinfo Fri Sep 21 10:38:03 2018 (r480247) +++ head/devel/leatherman/distinfo Fri Sep 21 10:39:13 2018 (r480248) @@ -1,3 +1,3 @@ -TIMESTAMP = 1530532778 -SHA256 (puppetlabs-leatherman-1.4.2_GH0.tar.gz) = 32ccdb21db3ccc326bac255b35fc6c16b2ddbe39bbd5afdddcadc622e2814fc2 -SIZE (puppetlabs-leatherman-1.4.2_GH0.tar.gz) = 814263 +TIMESTAMP = 1537283687 +SHA256 (puppetlabs-leatherman-1.5.0_GH0.tar.gz) = f7da4432ecaf1c4bfc7cfd398bcf76f9b90c27bce5d4b94111fc07b021407ad8 +SIZE (puppetlabs-leatherman-1.5.0_GH0.tar.gz) = 814292 Added: head/devel/leatherman/files/patch-json__container_tests_json__container__test.cc ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/leatherman/files/patch-json__container_tests_json__container__test.cc Fri Sep 21 10:39:13 2018 (r480248) @@ -0,0 +1,16 @@ +--- json_container/tests/json_container_test.cc.orig ++++ json_container/tests/json_container_test.cc +@@ -22,11 +22,13 @@ + std::string json_value {}; + + SECTION("it should instantiate by passing any JSON value") { ++ json_value = "{}"; + SECTION("object") { + json_value = JSON; + } + + SECTION("array") { ++ json_value = "[]"; + SECTION("of numbers") { + json_value = "[1, 2, 3]"; + }