diff --git a/lang/solidity/Makefile b/lang/solidity/Makefile index 4a2b8337020f..b327015520fc 100644 --- a/lang/solidity/Makefile +++ b/lang/solidity/Makefile @@ -1,48 +1,48 @@ # Created by: Alex Dupre PORTNAME= solidity -PORTVERSION= 0.8.13 +PORTVERSION= 0.8.14 CATEGORIES= lang MASTER_SITES= https://github.com/ethereum/solidity/releases/download/v${PORTVERSION}/ DISTNAME= ${PORTNAME}_${PORTVERSION} MAINTAINER= ale@FreeBSD.org COMMENT= Solidity Contract-Oriented Programming Language LICENSE= GPLv3 NOT_FOR_ARCHS= powerpc powerpc64 powerpcspe sparc64 NOT_FOR_ARCHS_REASON= solidity currently does not support big endian systems BUILD_DEPENDS= boost-libs>=0:devel/boost-libs \ libfmt>=0:devel/libfmt \ range-v3>=0:devel/range-v3 LIB_DEPENDS= libjsoncpp.so:devel/jsoncpp USES= cmake compiler:c++14-lang cpe CPE_VENDOR= ${PORTNAME}lang OPTIONS_DEFINE= Z3 CVC4 OPTIONS_DEFAULT=Z3 CVC4 Z3_DESC= SMT Checker via Z3 CVC4_DESC= SMT Checker via CVC4 Z3_LIB_DEPENDS= libz3.so:math/z3 CVC4_LIB_DEPENDS= libcvc4.so:math/cvc4 libgmp.so:math/gmp Z3_CMAKE_OFF= USE_Z3 CVC4_CMAKE_OFF= USE_CVC4 CMAKE_ARGS+= -DUSE_LD_GOLD=OFF -DTESTS=OFF \ -DRANGE_V3_INCLUDE_DIR="${LOCALBASE}/include" \ -DJSONCPP_INCLUDE_DIR:STRING="${LOCALBASE}/include/jsoncpp" \ -DJSONCPP_LIB_DIR:STRING="${LOCALBASE}/lib" \ -DSTRICT_Z3_VERSION=OFF PLIST_FILES= bin/solc \ bin/solidity-upgrade \ bin/yul-phaser pre-patch: @${CP} ${FILESDIR}/fmtlib.cmake ${FILESDIR}/jsoncpp.cmake ${WRKSRC}/cmake/ @${REINPLACE_CMD} '/EthCcache/d' ${WRKSRC}/CMakeLists.txt .include diff --git a/lang/solidity/distinfo b/lang/solidity/distinfo index 557825a2ffad..64d2bfcc474e 100644 --- a/lang/solidity/distinfo +++ b/lang/solidity/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1648132604 -SHA256 (solidity_0.8.13.tar.gz) = 474c76b30f6de12e1d84171d094a110f4a9dbee8e110313de430e7ebabccb3da -SIZE (solidity_0.8.13.tar.gz) = 3183155 +TIMESTAMP = 1652802997 +SHA256 (solidity_0.8.14.tar.gz) = 7ccdf20c889206103d0a48fe10b1c3f1f21269070861e80382f7ede8785e61d4 +SIZE (solidity_0.8.14.tar.gz) = 3214611 diff --git a/lang/solidity/files/patch-cmake_EthCompilerSettings.cmake b/lang/solidity/files/patch-cmake_EthCompilerSettings.cmake deleted file mode 100644 index 587c71b9b8a1..000000000000 --- a/lang/solidity/files/patch-cmake_EthCompilerSettings.cmake +++ /dev/null @@ -1,14 +0,0 @@ ---- cmake/EthCompilerSettings.cmake.orig 2020-12-16 17:41:40 UTC -+++ cmake/EthCompilerSettings.cmake -@@ -53,9 +53,10 @@ if (("${CMAKE_CXX_COMPILER_ID}" MATCHES "GNU") OR ("${ - add_compile_options(-Wimplicit-fallthrough) - add_compile_options(-Wsign-conversion) - add_compile_options(-Wconversion) -+ add_compile_options(-Qunused-arguments) - - eth_add_cxx_compiler_flag_if_supported( -- $<$:-Wextra-semi> -+ -Wextra-semi - ) - eth_add_cxx_compiler_flag_if_supported(-Wfinal-dtor-non-final-class) - eth_add_cxx_compiler_flag_if_supported(-Wnewline-eof)