summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlex Dupre <ale@FreeBSD.org>2020-05-05 08:22:02 +0000
committerAlex Dupre <ale@FreeBSD.org>2020-05-05 08:22:02 +0000
commitd21ebe082550cadcdc2ed0183cd3efbe9e37feab (patch)
tree02f9fb2406d649da96e8174d36da9b74937a42e5
parentwww/py-django-solo: Switch to Django 2.2 (current LTS release) (diff)
Update to 0.6.7 release.
Notes
Notes: svn path=/head/; revision=534038
-rw-r--r--lang/solidity/Makefile2
-rw-r--r--lang/solidity/distinfo6
-rw-r--r--lang/solidity/files/patch-libsolutil_IpfsHash.cpp11
3 files changed, 4 insertions, 15 deletions
diff --git a/lang/solidity/Makefile b/lang/solidity/Makefile
index 6c6d8c2f770e..a7d1542a595b 100644
--- a/lang/solidity/Makefile
+++ b/lang/solidity/Makefile
@@ -2,7 +2,7 @@
# $FreeBSD$
PORTNAME= solidity
-PORTVERSION= 0.6.6
+PORTVERSION= 0.6.7
CATEGORIES= lang
MASTER_SITES= https://github.com/ethereum/solidity/releases/download/v${PORTVERSION}/
DISTNAME= ${PORTNAME}_${PORTVERSION}
diff --git a/lang/solidity/distinfo b/lang/solidity/distinfo
index 2aa5f0a68dcd..7f6a5c7c149d 100644
--- a/lang/solidity/distinfo
+++ b/lang/solidity/distinfo
@@ -1,3 +1,3 @@
-TIMESTAMP = 1586762819
-SHA256 (solidity_0.6.6.tar.gz) = 057f0263c891eb54e2efc5e94e9be8f2c16dc52702e20e17f2e707fe9be35c54
-SIZE (solidity_0.6.6.tar.gz) = 2094191
+TIMESTAMP = 1588604518
+SHA256 (solidity_0.6.7.tar.gz) = 0056ba89c900dcc28306d22d9eba590ac1eab65d87f4683d38b30d5489c90e69
+SIZE (solidity_0.6.7.tar.gz) = 2132121
diff --git a/lang/solidity/files/patch-libsolutil_IpfsHash.cpp b/lang/solidity/files/patch-libsolutil_IpfsHash.cpp
deleted file mode 100644
index 0e75c1084e7b..000000000000
--- a/lang/solidity/files/patch-libsolutil_IpfsHash.cpp
+++ /dev/null
@@ -1,11 +0,0 @@
---- libsolutil/IpfsHash.cpp.orig 2020-04-16 09:14:46 UTC
-+++ libsolutil/IpfsHash.cpp
-@@ -160,7 +160,7 @@ bytes solidity::util::ipfsHash(string _data)
-
- Chunks allChunks;
-
-- for (unsigned long chunkIndex = 0; chunkIndex < chunkCount; chunkIndex++)
-+ for (size_t chunkIndex = 0; chunkIndex < chunkCount; chunkIndex++)
- {
- bytes chunkBytes = asBytes(
- _data.substr(chunkIndex * maxChunkSize, min(maxChunkSize, _data.length() - chunkIndex * maxChunkSize))