Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 21 Sep 2018 10:39:14 +0000 (UTC)
From:      =?UTF-8?Q?Romain_Tarti=c3=a8re?= <romain@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r480248 - in head/devel/leatherman: . files
Message-ID:  <201809211039.w8LAdE0U067130@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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]";
+             }



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201809211039.w8LAdE0U067130>