From owner-svn-ports-all@freebsd.org Thu Apr 26 09:08:29 2018 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 81C9FFA7180; Thu, 26 Apr 2018 09:08:29 +0000 (UTC) (envelope-from ale@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 33FD86DB53; Thu, 26 Apr 2018 09:08:29 +0000 (UTC) (envelope-from ale@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 2EF0E161C8; Thu, 26 Apr 2018 09:08:29 +0000 (UTC) (envelope-from ale@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w3Q98Sh8044509; Thu, 26 Apr 2018 09:08:28 GMT (envelope-from ale@FreeBSD.org) Received: (from ale@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w3Q98S1D044506; Thu, 26 Apr 2018 09:08:28 GMT (envelope-from ale@FreeBSD.org) Message-Id: <201804260908.w3Q98S1D044506@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: ale set sender to ale@FreeBSD.org using -f From: Alex Dupre Date: Thu, 26 Apr 2018 09:08:28 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r468335 - in head/lang/solidity: . files X-SVN-Group: ports-head X-SVN-Commit-Author: ale X-SVN-Commit-Paths: in head/lang/solidity: . files X-SVN-Commit-Revision: 468335 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.25 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, 26 Apr 2018 09:08:29 -0000 Author: ale Date: Thu Apr 26 09:08:28 2018 New Revision: 468335 URL: https://svnweb.freebsd.org/changeset/ports/468335 Log: Update to 0.4.23 release. Added: head/lang/solidity/files/patch-libdevcore_JSON.cpp (contents, props changed) Modified: head/lang/solidity/Makefile head/lang/solidity/distinfo Modified: head/lang/solidity/Makefile ============================================================================== --- head/lang/solidity/Makefile Thu Apr 26 09:03:48 2018 (r468334) +++ head/lang/solidity/Makefile Thu Apr 26 09:08:28 2018 (r468335) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= solidity -PORTVERSION= 0.4.21 -PORTREVISION= 1 +PORTVERSION= 0.4.23 CATEGORIES= lang MASTER_SITES= https://github.com/ethereum/solidity/releases/download/v${PORTVERSION}/ DISTNAME= ${PORTNAME}_${PORTVERSION} @@ -30,7 +29,6 @@ PLIST_FILES= bin/solc pre-patch: @${CP} ${FILESDIR}/jsoncpp.cmake ${WRKSRC}/cmake/ - @${REINPLACE_CMD} '/jsoncpp/d' ${WRKSRC}/libdevcore/CMakeLists.txt @${REINPLACE_CMD} '/EthCcache/d' ${WRKSRC}/CMakeLists.txt .include Modified: head/lang/solidity/distinfo ============================================================================== --- head/lang/solidity/distinfo Thu Apr 26 09:03:48 2018 (r468334) +++ head/lang/solidity/distinfo Thu Apr 26 09:08:28 2018 (r468335) @@ -1,3 +1,3 @@ -TIMESTAMP = 1521477610 -SHA256 (solidity_0.4.21.tar.gz) = ffbf167a668b884670dd54cd1520d460f39ab4c857f91e25f90d25c19a0807b0 -SIZE (solidity_0.4.21.tar.gz) = 1081265 +TIMESTAMP = 1524729659 +SHA256 (solidity_0.4.23.tar.gz) = 1a01dfd0f19617c543a9dc012d4ae99aecc38bb3931e0c7af88007005e60413f +SIZE (solidity_0.4.23.tar.gz) = 1136930 Added: head/lang/solidity/files/patch-libdevcore_JSON.cpp ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/lang/solidity/files/patch-libdevcore_JSON.cpp Thu Apr 26 09:08:28 2018 (r468335) @@ -0,0 +1,15 @@ +--- libdevcore/JSON.cpp.orig 2018-04-19 21:36:04 UTC ++++ libdevcore/JSON.cpp +@@ -27,10 +27,12 @@ + + using namespace std; + ++/* + static_assert( + (JSONCPP_VERSION_MAJOR == 1) && (JSONCPP_VERSION_MINOR == 7) && (JSONCPP_VERSION_PATCH == 7), + "Unexpected jsoncpp version: " JSONCPP_VERSION_STRING ". Expecting 1.7.7." + ); ++*/ + + namespace dev + {