Date: Tue, 28 Jan 2020 10:37:58 +0000 (UTC) From: Alex Dupre <ale@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r524469 - in head/lang/solidity: . files Message-ID: <202001281037.00SAbwwU031229@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: ale Date: Tue Jan 28 10:37:57 2020 New Revision: 524469 URL: https://svnweb.freebsd.org/changeset/ports/524469 Log: Update to 0.6.2 release and enable all SMT solvers by default. Added: head/lang/solidity/files/patch-libsolutil_JSON.cpp (contents, props changed) Deleted: head/lang/solidity/files/patch-libdevcore_JSON.cpp Modified: head/lang/solidity/Makefile head/lang/solidity/distinfo head/lang/solidity/files/patch-libevmasm_Instruction.h Modified: head/lang/solidity/Makefile ============================================================================== --- head/lang/solidity/Makefile Tue Jan 28 10:22:57 2020 (r524468) +++ head/lang/solidity/Makefile Tue Jan 28 10:37:57 2020 (r524469) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= solidity -PORTVERSION= 0.6.0 -PORTREVISION= 1 +PORTVERSION= 0.6.2 CATEGORIES= lang MASTER_SITES= https://github.com/ethereum/solidity/releases/download/v${PORTVERSION}/ DISTNAME= ${PORTNAME}_${PORTVERSION} @@ -22,7 +21,7 @@ LIB_DEPENDS= libjsoncpp.so:devel/jsoncpp USES= cmake compiler:c++14-lang OPTIONS_DEFINE= Z3 CVC4 -OPTIONS_DEFAULT=CVC4 +OPTIONS_DEFAULT=Z3 CVC4 Z3_DESC= SMT Checker via Z3 CVC4_DESC= SMT Checker via CVC4 Z3_LIB_DEPENDS= libz3.so:math/z3 Modified: head/lang/solidity/distinfo ============================================================================== --- head/lang/solidity/distinfo Tue Jan 28 10:22:57 2020 (r524468) +++ head/lang/solidity/distinfo Tue Jan 28 10:37:57 2020 (r524469) @@ -1,3 +1,3 @@ -TIMESTAMP = 1576660212 -SHA256 (solidity_0.6.0.tar.gz) = 5f9e874199f6dd2d7dd6fa97232993cd762543a7bf6e3bf36a95d63cd0edbcdb -SIZE (solidity_0.6.0.tar.gz) = 1934622 +TIMESTAMP = 1580203577 +SHA256 (solidity_0.6.2.tar.gz) = 11384d00a9d6cd384810d53979c32194f3ef7d9a587265ba98b50891c9bf1196 +SIZE (solidity_0.6.2.tar.gz) = 1932920 Modified: head/lang/solidity/files/patch-libevmasm_Instruction.h ============================================================================== --- head/lang/solidity/files/patch-libevmasm_Instruction.h Tue Jan 28 10:22:57 2020 (r524468) +++ head/lang/solidity/files/patch-libevmasm_Instruction.h Tue Jan 28 10:37:57 2020 (r524469) @@ -1,11 +1,11 @@ ---- libevmasm/Instruction.h.orig 2018-01-23 11:51:18 UTC +--- libevmasm/Instruction.h.orig 2020-01-28 10:08:51 UTC +++ libevmasm/Instruction.h @@ -26,6 +26,8 @@ - #include <libdevcore/Assertions.h> - #include "Exceptions.h" + #include <libsolutil/Assertions.h> + #include <functional> +#undef MSIZE // remove MSIZE definition from <sys/params.h>, included by boost 1.66.0 + - namespace dev + namespace solidity::evmasm { - namespace solidity + Added: head/lang/solidity/files/patch-libsolutil_JSON.cpp ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/lang/solidity/files/patch-libsolutil_JSON.cpp Tue Jan 28 10:37:57 2020 (r524469) @@ -0,0 +1,15 @@ +--- libsolutil/JSON.cpp.orig 2020-01-27 15:36:51 UTC ++++ libsolutil/JSON.cpp +@@ -31,10 +31,12 @@ + + using namespace std; + ++/* + static_assert( + (JSONCPP_VERSION_MAJOR == 1) && (JSONCPP_VERSION_MINOR == 9) && (JSONCPP_VERSION_PATCH == 2), + "Unexpected jsoncpp version: " JSONCPP_VERSION_STRING ". Expecting 1.9.2." + ); ++*/ + + namespace solidity::util + {
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202001281037.00SAbwwU031229>