diff --git a/devel/crc32c/Makefile b/devel/crc32c/Makefile index d33f59f6cc0a..00ac54e27e2e 100644 --- a/devel/crc32c/Makefile +++ b/devel/crc32c/Makefile @@ -1,5 +1,5 @@ PORTNAME= crc32c -DISTVERSION= 1.1.1 +DISTVERSION= 1.1.2 CATEGORIES= devel MAINTAINER= amzo1337@gmail.com diff --git a/devel/crc32c/distinfo b/devel/crc32c/distinfo index 8393cf0b6f7e..3b2b2e8197c3 100644 --- a/devel/crc32c/distinfo +++ b/devel/crc32c/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1575620103 -SHA256 (google-crc32c-1.1.1_GH0.tar.gz) = a6533f45b1670b5d59b38a514d82b09c6fb70cc1050467220216335e873074e8 -SIZE (google-crc32c-1.1.1_GH0.tar.gz) = 29829 +TIMESTAMP = 1634651489 +SHA256 (google-crc32c-1.1.2_GH0.tar.gz) = ac07840513072b7fcebda6e821068aa04889018f24e10e46181068fb214d7e56 +SIZE (google-crc32c-1.1.2_GH0.tar.gz) = 29819 diff --git a/devel/crc32c/files/patch-src_crc32c__read__le.h b/devel/crc32c/files/patch-src_crc32c__read__le.h deleted file mode 100644 index 825ccdae5ef4..000000000000 --- a/devel/crc32c/files/patch-src_crc32c__read__le.h +++ /dev/null @@ -1,25 +0,0 @@ ---- src/crc32c_read_le.h.orig 2019-07-24 07:21:23 UTC -+++ src/crc32c_read_le.h -@@ -30,14 +30,14 @@ inline uint32_t ReadUint32LE(const uint8_t* buffer) { - // Reads a little-endian 64-bit integer from a 64-bit-aligned buffer. - inline uint64_t ReadUint64LE(const uint8_t* buffer) { - #if BYTE_ORDER_BIG_ENDIAN -- return ((static_cast(static_cast(buffer[0]))) | -- (static_cast(static_cast(buffer[1])) << 8) | -- (static_cast(static_cast(buffer[2])) << 16) | -- (static_cast(static_cast(buffer[3])) << 24) | -- (static_cast(static_cast(buffer[4])) << 32) | -- (static_cast(static_cast(buffer[5])) << 40) | -- (static_cast(static_cast(buffer[6])) << 48) | -- (static_cast(static_cast(buffer[7])) << 56)); -+ return ((static_cast(static_cast(buffer[0]))) | -+ (static_cast(static_cast(buffer[1])) << 8) | -+ (static_cast(static_cast(buffer[2])) << 16) | -+ (static_cast(static_cast(buffer[3])) << 24) | -+ (static_cast(static_cast(buffer[4])) << 32) | -+ (static_cast(static_cast(buffer[5])) << 40) | -+ (static_cast(static_cast(buffer[6])) << 48) | -+ (static_cast(static_cast(buffer[7])) << 56)); - #else // !BYTE_ORDER_BIG_ENDIAN - uint64_t result; - // This should be optimized to a single instruction.